Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement storage area #102

Open
wants to merge 424 commits into
base: main
Choose a base branch
from
Open

Implement storage area #102

wants to merge 424 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Mar 3, 2023

  1. Configuration menu
    Copy the full SHA
    b2a01ab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f5b5c5f View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2023

  1. Configuration menu
    Copy the full SHA
    bda00ef View commit details
    Browse the repository at this point in the history
  2. Fix build

    gritcsenko committed Mar 4, 2023
    Configuration menu
    Copy the full SHA
    626da89 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    38f1af7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2d60f3a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    19e0554 View commit details
    Browse the repository at this point in the history
  6. Fix test run

    gritcsenko committed Mar 4, 2023
    Configuration menu
    Copy the full SHA
    be95620 View commit details
    Browse the repository at this point in the history
  7. Update packages

    gritcsenko committed Mar 4, 2023
    Configuration menu
    Copy the full SHA
    dec02ec View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    23b4de4 View commit details
    Browse the repository at this point in the history
  9. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Api/Program.cs
    gritcsenko committed Mar 4, 2023
    Configuration menu
    Copy the full SHA
    12219de View commit details
    Browse the repository at this point in the history
  10. Move System.Linq.Async

    gritcsenko committed Mar 4, 2023
    Configuration menu
    Copy the full SHA
    f613b94 View commit details
    Browse the repository at this point in the history
  11. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/Authentication/Commands/Register/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Authentication/Queries/Authenticate/AuthenticateQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/HomeInventory.Application.csproj
    #	src/HomeInventory/HomeInventory.Application/Mapping/GenericValueObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/GuidIdConverter.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/MappingProfile.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/ValueObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/GuidIdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IIdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IValueObjectFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Domain/Primitives/ValueObjectFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/AmountFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/IAmountFactory.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/HomeInventory.Infrastructure.csproj
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Mapping/AmountValueObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Mapping/ModelMappings.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/IPersistentModel.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/ProductAmountModel.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UserRepository.cs
    #	src/HomeInventory/HomeInventory.Tests/Architecture/Namespaces.cs
    #	src/HomeInventory/HomeInventory.Tests/Customizations/FromFactoryCustomization.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/DomainDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/InfrastructureDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/WebDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/AmountFactoryTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/AmountTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Helpers/FixtureExtensions.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/AuthenticationControllerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/AuthenticateQueryHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/BaseMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserRepositoryTests.cs
    #	src/HomeInventory/HomeInventory.Web/Controllers/AuthenticationController.cs
    #	src/HomeInventory/HomeInventory.Web/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Web/Mapping/ContractsMappings.cs
    gritcsenko committed Mar 4, 2023
    Configuration menu
    Copy the full SHA
    76fb44e View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2023

  1. Configuration menu
    Copy the full SHA
    00aa89d View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Tests/Helpers/OkResultAssertions.cs
    #	src/HomeInventory/HomeInventory.Tests/Helpers/ServiceCollectionExtensions.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/AuthenticationModuleTests.cs
    #	src/HomeInventory/HomeInventory.Web/Authorization/Dynamic/Permission.cs
    #	src/HomeInventory/HomeInventory.Web/Extensions/EndpointRouteBuilderExtensions.cs
    #	src/HomeInventory/HomeInventory.Web/Extensions/HttpContextExtensions.cs
    #	src/HomeInventory/HomeInventory.Web/Extensions/RouteHandlerBuilderExtensions.cs
    #	src/HomeInventory/HomeInventory.Web/Modules/ApiModule.cs
    #	src/HomeInventory/HomeInventory.Web/Modules/AuthenticationModule.cs
    #	src/HomeInventory/HomeInventory.Web/ValidationFilter.cs
    gritcsenko committed Mar 5, 2023
    Configuration menu
    Copy the full SHA
    9ce6369 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Tests/Middlewares/CorrelationIdMiddlewareTests.cs
    #	src/HomeInventory/HomeInventory.Web/DependencyInjection.cs
    gritcsenko committed Mar 5, 2023
    Configuration menu
    Copy the full SHA
    eae8742 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Tests/Systems/Authentication/JwtTokenGeneratorTests.cs
    #	src/HomeInventory/HomeInventory.Web/Authentication/JwtTokenGenerator.cs
    #	src/HomeInventory/HomeInventory.Web/Authorization/Dynamic/DynamicAuthorizationHandler.cs
    #	src/HomeInventory/HomeInventory.Web/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Web/Modules/PermissionModule.cs
    #	src/HomeInventory/HomeInventory.Web/OpenApi/ConfigureSwaggerOptions.cs
    #	src/HomeInventory/HomeInventory.Web/OpenApi/SwaggerDefaultValues.cs
    gritcsenko committed Mar 6, 2023
    Configuration menu
    Copy the full SHA
    39243d3 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Contracts/LoginRequest.cs
    #	src/HomeInventory/HomeInventory.Contracts/LoginResponse.cs
    #	src/HomeInventory/HomeInventory.Domain/Aggregates/User.cs
    #	src/HomeInventory/HomeInventory.Tests/Customizations/UserIdCustomization.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/DateTimeServiceExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/EnumerableExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/Primitives/TypeExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/UserModelConfigurationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/AuthenticateQueryHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/LoggingBehaviorTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/CreateUserSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/HasIdSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/SpecificationExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserHasEmailSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserRepositoryTests.cs
    gritcsenko committed Mar 6, 2023
    Configuration menu
    Copy the full SHA
    dbe8f63 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2023

  1. Configuration menu
    Copy the full SHA
    7f8980e View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2023

  1. Configuration menu
    Copy the full SHA
    a087007 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2023

  1. Configuration menu
    Copy the full SHA
    5b7b17c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac7ef2b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    27b1132 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2023

  1. Update solution

    gritcsenko committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    d51feda View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/HomeInventory.Application.csproj
    #	src/HomeInventory/HomeInventory.Domain/HomeInventory.Domain.csproj
    #	src/HomeInventory/HomeInventory.Infrastructure/HomeInventory.Infrastructure.csproj
    gritcsenko committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    0608eb3 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2023

  1. Configuration menu
    Copy the full SHA
    d02bf1a View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2023

  1. Configuration menu
    Copy the full SHA
    cba0122 View commit details
    Browse the repository at this point in the history
  2. Add FsCheck to tests

    gritcsenko committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    fa9e964 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2023

  1. Configuration menu
    Copy the full SHA
    f715189 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommand.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegistrationResult.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateQuery.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateResult.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/MappingProfile.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/AuthenticationModuleTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/AuthenticateQueryHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/LoggingBehaviorTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Web/Mapping/ContractsMappings.cs
    #	src/HomeInventory/HomeInventory.Web/Modules/AuthenticationModule.cs
    gritcsenko committed Mar 26, 2023
    Configuration menu
    Copy the full SHA
    04b61aa View commit details
    Browse the repository at this point in the history
  3. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/UserId/UserIdQuery.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/UserId/UserIdQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Messaging/CommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Messaging/QueryHandler.cs
    gritcsenko committed Mar 26, 2023
    Configuration menu
    Copy the full SHA
    ce6bef6 View commit details
    Browse the repository at this point in the history
  4. Update lineendings

    gritcsenko committed Mar 26, 2023
    Configuration menu
    Copy the full SHA
    4aad22d View commit details
    Browse the repository at this point in the history
  5. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommand.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Authentication/IAuthenticationTokenGenerator.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/IUserRepository.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/CreateUserSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/UserHasEmailSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/UserSpecifications.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/MappingProfile.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Equatable.cs
    #	src/HomeInventory/HomeInventory.Domain/Aggregates/User.cs
    #	src/HomeInventory/HomeInventory.Domain/Primitives/Enumeration.cs
    #	src/HomeInventory/HomeInventory.Domain/Primitives/GuidIdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/Primitives/GuidIdentifierObject.cs
    #	src/HomeInventory/HomeInventory.Domain/Primitives/ValueObject.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/Amount.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/Email.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/EmailFactory.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Mapping/ModelMappings.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/IPersistentModel.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UserRepository.cs
    #	src/HomeInventory/HomeInventory.Tests/Helpers/FixtureExtensions.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/AuthenticateQueryHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/LoggingBehaviorTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/BaseDatabaseContextTest.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/BaseRepositoryTest.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/CreateUserSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/HasIdSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/SpecificationExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserHasEmailSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserRepositoryTests.cs
    gritcsenko committed Mar 26, 2023
    Configuration menu
    Copy the full SHA
    d35c646 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Domain/HomeInventory.Domain.csproj
    gritcsenko committed Mar 27, 2023
    Configuration menu
    Copy the full SHA
    088f135 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2023

  1. Configuration menu
    Copy the full SHA
    031c89f View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2023

  1. Configuration menu
    Copy the full SHA
    796f64e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e780d15 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Infrastructure/HomeInventory.Infrastructure.csproj
    #	src/HomeInventory/HomeInventory.Tests/HomeInventory.Tests.csproj
    gritcsenko committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    9e012c6 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2023

  1. Configuration menu
    Copy the full SHA
    f64906f View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2023

  1. Update line endings

    gritcsenko committed Apr 20, 2023
    Configuration menu
    Copy the full SHA
    9bc4e0a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7be1637 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Behaviors/LoggingBehavior.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommand.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateQuery.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/UserId/UserIdQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Messaging/CommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Messaging/ICommand.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Messaging/ICommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Messaging/IQuery.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Messaging/IQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Messaging/QueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/IRepository.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/IUserRepository.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/BinarySpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/CreateUserSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/ExpressionSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/FilterSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/HasIdSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/ICreateEntitySpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/IExpressionSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/IFilterSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/ParameterReplacer.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/SpecificationExtensions.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/UnarySpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/UserHasEmailSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/UserSpecifications.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/GenericValueObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/MappingProfile.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/ValueObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Equatable.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Extensions/TypeExtensions.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IValueObjectFactory.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/ValueObjectFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/Aggregates/User.cs
    #	src/HomeInventory/HomeInventory.Domain/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/ConflictError.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/DuplicateEmailError.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/InvalidCredentialsError.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/NotFoundError.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/ObjectValidationError.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/UserCreationError.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/ValidationError.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/ValidatorNotFoundError.cs
    #	src/HomeInventory/HomeInventory.Domain/Extensions/DateTimeServiceExtensions.cs
    #	src/HomeInventory/HomeInventory.Domain/Extensions/LazyExtensions.cs
    #	src/HomeInventory/HomeInventory.Domain/Primitives/Entity.cs
    #	src/HomeInventory/HomeInventory.Domain/Primitives/Enumeration.cs
    #	src/HomeInventory/HomeInventory.Domain/Primitives/IEnumeration.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/Amount.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/AmountFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/Email.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/EmailFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/IAmountFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/IMaterialIdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/IProductIdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/IUserIdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/MaterialIdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/ProductIdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/UserIdFactory.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/DatabaseContext.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/IDatabaseContext.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/IDbContext.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Mapping/AmountValueObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Mapping/ModelMappings.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/Configurations/UserModelConfiguration.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/UserModel.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UserRepository.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Features/AddJugOfLiquid.feature.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/DomainDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/InfrastructureDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/DateTimeServiceExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/EntityTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/EnumerableExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/Primitives/TypeExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/AmountFactoryTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/AmountTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/UserModelConfigurationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Helpers/EnumerableExtensions.cs
    #	src/HomeInventory/HomeInventory.Tests/HomeInventory.Tests.csproj
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/AuthenticationModuleTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/HomeInventoryProblemDetailsFactoryTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/AuthenticateQueryHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/LoggingBehaviorTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/BaseDatabaseContextTest.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/CreateUserSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/HasIdSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/SpecificationExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserHasEmailSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserRepositoryTests.cs
    #	src/HomeInventory/HomeInventory.Web/Authorization/Dynamic/DynamicAuthorizationHandler.cs
    #	src/HomeInventory/HomeInventory.Web/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Web/Extensions/HttpContextExtensions.cs
    #	src/HomeInventory/HomeInventory.Web/Infrastructure/HomeInventoryProblemDetailsFactory.cs
    #	src/HomeInventory/HomeInventory.Web/Infrastructure/HttpContextItems.cs
    #	src/HomeInventory/HomeInventory.Web/Mapping/ContractsMappings.cs
    #	src/HomeInventory/HomeInventory.Web/Modules/AuthenticationModule.cs
    #	src/HomeInventory/HomeInventory.sln
    gritcsenko committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    d59ebf6 View commit details
    Browse the repository at this point in the history
  2. Move extensions

    gritcsenko committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    834331d View commit details
    Browse the repository at this point in the history
  3. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/UserId/UserIdQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/AggregateRoot.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Entity.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Enumeration.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Errors/ConflictError.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Errors/NotFoundError.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Errors/ObjectValidationError.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Errors/UserCreationError.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Errors/ValidationError.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/HomeInventory.Domain.Primitives.csproj
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IEntity.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IEnumeration.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/ValueObjectFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/ValidatorNotFoundError.cs
    #	src/HomeInventory/HomeInventory.Domain/HomeInventory.Domain.csproj
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/BaseDatabaseContextTest.cs
    #	src/HomeInventory/HomeInventory.sln
    gritcsenko committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    3c723fa View commit details
    Browse the repository at this point in the history
  4. Fix build

    gritcsenko committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    55fb415 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2023

  1. Update line endings

    gritcsenko committed Apr 24, 2023
    Configuration menu
    Copy the full SHA
    a4fae33 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Equatable.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/HomeInventory.Domain.Primitives.csproj
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/AmountUnitTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/MeasurementTypeTests.cs
    #	src/HomeInventory/HomeInventory.Tests/FixedTestingDateTimeService.cs
    #	src/HomeInventory/HomeInventory.Tests/ServiceDescriptorExtensions.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/CreateUserSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/HasIdSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/SpecificationExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/TestingLogger.cs
    gritcsenko committed Apr 24, 2023
    Configuration menu
    Copy the full SHA
    a5eb450 View commit details
    Browse the repository at this point in the history
  3. Fix tests

    gritcsenko committed Apr 24, 2023
    Configuration menu
    Copy the full SHA
    e4bec58 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2023

  1. Configuration menu
    Copy the full SHA
    7148b10 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2023

  1. Configuration menu
    Copy the full SHA
    529dfa9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9daed0d View commit details
    Browse the repository at this point in the history
  3. Cleanup

    gritcsenko committed Apr 30, 2023
    Configuration menu
    Copy the full SHA
    8f54dce View commit details
    Browse the repository at this point in the history

Commits on May 5, 2023

  1. Configuration menu
    Copy the full SHA
    4edd036 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Domain.Primitives/DictionaryExtensions.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/EntityTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/AuthenticationModuleTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/AuthenticateQueryHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/LoggingBehaviorTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserRepositoryTests.cs
    gritcsenko committed May 6, 2023
    Configuration menu
    Copy the full SHA
    fbefa09 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2023

  1. Update file

    gritcsenko committed May 8, 2023
    Configuration menu
    Copy the full SHA
    a8f245d View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Entity.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/EntityTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/AuthenticationModuleTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/BaseDatabaseContextTest.cs
    #	src/HomeInventory/HomeInventory.Web/Authentication/GuidJwtIdentityGenerator.cs
    gritcsenko committed May 8, 2023
    Configuration menu
    Copy the full SHA
    92fadb7 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Behaviors/LoggingBehavior.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommand.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/UserId/UserIdQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Messaging/ICommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/GenericValueObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/ValueObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Errors/Error.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Errors/UserCreationError.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/HomeInventory.Domain.Primitives.csproj
    #	src/HomeInventory/HomeInventory.Domain.Primitives/ValueObjectFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/Errors/ValidatorNotFoundError.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/AmountFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/IUserIdFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/UserIdFactory.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Mapping/AmountValueObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Services/SystemDateTimeService.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/AuthenticationModuleTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/AuthenticateQueryHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Web/Authorization/Dynamic/DynamicAuthorizationHandler.cs
    gritcsenko committed May 9, 2023
    Configuration menu
    Copy the full SHA
    9f37ffd View commit details
    Browse the repository at this point in the history

Commits on May 12, 2023

  1. Configuration menu
    Copy the full SHA
    fe7b5d6 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Behaviors/LoggingBehavior.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UserRepository.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/DomainDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/InfrastructureDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/AuthenticationModuleTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Controllers/HomeInventoryProblemDetailsFactoryTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserRepositoryTests.cs
    #	src/HomeInventory/HomeInventory.Web/Infrastructure/HomeInventoryProblemDetailsFactory.cs
    gritcsenko committed May 13, 2023
    Configuration menu
    Copy the full SHA
    9835e2c View commit details
    Browse the repository at this point in the history
  2. Fix tests

    gritcsenko committed May 13, 2023
    Configuration menu
    Copy the full SHA
    cc569bb View commit details
    Browse the repository at this point in the history

Commits on May 16, 2023

  1. Configuration menu
    Copy the full SHA
    0e0790d View commit details
    Browse the repository at this point in the history

Commits on May 17, 2023

  1. Update lineendings

    gritcsenko committed May 17, 2023
    Configuration menu
    Copy the full SHA
    1b7a20a View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Authentication/IAuthenticationTokenGenerator.cs
    #	src/HomeInventory/HomeInventory.Domain/PersistenceHealthCheck.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Tests/BaseTest.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/WebDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/FixedTestingDateTimeService.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Authentication/JwtTokenGeneratorTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/AuthenticateQueryHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Services/SystemDateTimeServiceTests.cs
    #	src/HomeInventory/HomeInventory.Web/Authentication/JwtTokenGenerator.cs
    gritcsenko committed May 17, 2023
    Configuration menu
    Copy the full SHA
    b7b547f View commit details
    Browse the repository at this point in the history

Commits on May 18, 2023

  1. Update disposables

    gritcsenko committed May 18, 2023
    Configuration menu
    Copy the full SHA
    f4d2966 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    304e71f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    83ac4dd View commit details
    Browse the repository at this point in the history

Commits on May 22, 2023

  1. Configuration menu
    Copy the full SHA
    3b5a946 View commit details
    Browse the repository at this point in the history
  2. Update line endings

    gritcsenko committed May 22, 2023
    Configuration menu
    Copy the full SHA
    cc38be0 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/HomeInventory.Application.csproj
    #	src/HomeInventory/HomeInventory.Application/Interfaces/Persistence/Specifications/CreateUserSpecification.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/MappingProfile.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Disposable.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/DisposeAction.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/HomeInventory.Domain.Primitives.csproj
    #	src/HomeInventory/HomeInventory.Domain.Primitives/ValueObject.cs
    #	src/HomeInventory/HomeInventory.Domain/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Domain/HomeInventory.Domain.csproj
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/AmountFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/Email.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/EmailFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/MaterialId.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/ProductId.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/UserId.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/HomeInventory.Infrastructure.csproj
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/Configurations/UserModelConfiguration.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/UserModel.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UserRepository.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/DomainDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/InfrastructureDependencyInjectionTests.cs
    #	src/HomeInventory/HomeInventory.Tests/DependencyInjection/TestAppBuilder.cs
    #	src/HomeInventory/HomeInventory.Tests/HomeInventory.Tests.csproj
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/CreateUserSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserRepositoryTests.cs
    #	src/HomeInventory/HomeInventory.Web/Authorization/Dynamic/DynamicAuthorizationHandler.cs
    #	src/HomeInventory/HomeInventory.Web/HomeInventory.Web.csproj
    gritcsenko committed May 23, 2023
    Configuration menu
    Copy the full SHA
    51be543 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2023

  1. Update lineendings

    gritcsenko committed May 24, 2023
    Configuration menu
    Copy the full SHA
    da60394 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Commands/Register/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/Authenticate/AuthenticateQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Queries/UserId/UserIdQueryHandler.cs
    #	src/HomeInventory/HomeInventory.Application/Mapping/MappingProfile.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Enumeration.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IEnumeration.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IReadOnlyRepository.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IRepository.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IUnitOfWork.cs
    #	src/HomeInventory/HomeInventory.Domain/Aggregates/User.cs
    #	src/HomeInventory/HomeInventory.Domain/Persistence/IUserRepository.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/AmountUnit.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Repository.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UnitOfWork.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UserRepository.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Specifications/ByIdFilterSpecification.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Specifications/UserHasEmailSpecification.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Specifications/UserHasIdSpecification.cs
    #	src/HomeInventory/HomeInventory.Tests/OptionAssertions.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/AuthenticateQueryHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Handlers/RegisterCommandHandlerTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/ByIdFilterSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/RepositoryTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserRepositoryTests.cs
    #	src/HomeInventory/HomeInventory.Web/Mapping/ContractsMappings.cs
    #	src/HomeInventory/HomeInventory.sln
    gritcsenko committed May 24, 2023
    Configuration menu
    Copy the full SHA
    10fe5d1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5c50c1f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1ce8484 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    45fa5b4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    491d742 View commit details
    Browse the repository at this point in the history
  7. Remove extra usings

    gritcsenko committed May 24, 2023
    Configuration menu
    Copy the full SHA
    9e539ee View commit details
    Browse the repository at this point in the history
  8. Remove StronglyTypedId

    gritcsenko committed May 24, 2023
    Configuration menu
    Copy the full SHA
    9ee9e3b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    520a6e0 View commit details
    Browse the repository at this point in the history
  10. Refactor AmountFactory

    gritcsenko committed May 24, 2023
    Configuration menu
    Copy the full SHA
    82f2b1c View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed May 25, 2023
    Configuration menu
    Copy the full SHA
    2b90827 View commit details
    Browse the repository at this point in the history
  2. Update lineendings

    gritcsenko committed May 25, 2023
    Configuration menu
    Copy the full SHA
    b528ded View commit details
    Browse the repository at this point in the history
  3. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/AmountFactory.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/Email.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/MeasurementType.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/Configurations/EntityTypeBuilderExtensions.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Specifications/ByIdFilterSpecification.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/AmountFactoryTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/ValueObjects/AmountTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/ByIdFilterSpecificationTests.cs
    #	src/HomeInventory/HomeInventory.Web/DependencyInjection.cs
    #	src/HomeInventory/HomeInventory.Web/Modules/AuthenticationModule.cs
    gritcsenko committed May 25, 2023
    Configuration menu
    Copy the full SHA
    4b0b668 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/DatabaseContext.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/ApiDriver.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/HomeInventoryAPIDriver.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/IApiDriver.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/IHomeInventoryAPIDriver.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/ITestingConfiguration.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/IUserManagementAPIDriver.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/TestingConfiguration.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/UserManagementAPIDriver.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Features/UserRegistration.feature
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/HomeInventory.Tests.Acceptance.csproj
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/StepDefinitions/UserRegistrationStepDefinitions.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Support/Hooks.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Transformations/FormattedTransformer.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/Primitives/EnumerableExtensionsTests.cs
    gritcsenko committed May 26, 2023
    Configuration menu
    Copy the full SHA
    8bac408 View commit details
    Browse the repository at this point in the history
  2. Reduce changes with main

    gritcsenko committed May 26, 2023
    Configuration menu
    Copy the full SHA
    811d66b View commit details
    Browse the repository at this point in the history

Commits on May 29, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    #	src/HomeInventory/HomeInventory.Domain.Primitives/ValueObject.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Mapping/ModelMappings.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Services/PersistenceHealthCheck.cs
    #	src/HomeInventory/HomeInventory.Tests/EnumerableExtensions.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Web/DependencyInjection.cs
    gritcsenko committed May 29, 2023
    Configuration menu
    Copy the full SHA
    64eb175 View commit details
    Browse the repository at this point in the history
  2. Fix lineendings

    gritcsenko committed May 29, 2023
    Configuration menu
    Copy the full SHA
    0068f2d View commit details
    Browse the repository at this point in the history

Commits on May 30, 2023

  1. Configuration menu
    Copy the full SHA
    f863a14 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Domain/Entities/Material.cs
    #	src/HomeInventory/HomeInventory.Domain/Entities/Product.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Repository.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UnitOfWork.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UnitOfWorkContainer.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/UserRepository.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/RepositoryTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/UserRepositoryTests.cs
    gritcsenko committed May 30, 2023
    Configuration menu
    Copy the full SHA
    defa03d View commit details
    Browse the repository at this point in the history
  3. Fix failed test

    gritcsenko committed May 30, 2023
    Configuration menu
    Copy the full SHA
    ad62ff5 View commit details
    Browse the repository at this point in the history
  4. Move Acceptance to the end

    gritcsenko committed May 30, 2023
    Configuration menu
    Copy the full SHA
    ee357eb View commit details
    Browse the repository at this point in the history

Commits on May 31, 2023

  1. Configuration menu
    Copy the full SHA
    3c31b84 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2983e93 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c7bcf53 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e39ec2c View commit details
    Browse the repository at this point in the history
  5. Fix mapping

    gritcsenko committed May 31, 2023
    Configuration menu
    Copy the full SHA
    532201b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    39e5886 View commit details
    Browse the repository at this point in the history
  7. Fix failed startup

    gritcsenko committed May 31, 2023
    Configuration menu
    Copy the full SHA
    32113a6 View commit details
    Browse the repository at this point in the history
  8. Cleanup program bootstrap

    gritcsenko committed May 31, 2023
    Configuration menu
    Copy the full SHA
    3533fb0 View commit details
    Browse the repository at this point in the history
  9. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Tests/HomeInventory.Tests.csproj
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/BaseDatabaseContextTest.cs
    gritcsenko committed May 31, 2023
    Configuration menu
    Copy the full SHA
    8ad8135 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    99629dc View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. Configuration menu
    Copy the full SHA
    73f4d43 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2023

  1. Configuration menu
    Copy the full SHA
    010e489 View commit details
    Browse the repository at this point in the history
  2. Update cache

    gritcsenko committed Jun 6, 2023
    Configuration menu
    Copy the full SHA
    12ada45 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2023

  1. update lineendings

    gritcsenko committed Jun 10, 2023
    Configuration menu
    Copy the full SHA
    b7d18f5 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	.github/workflows/build.yml
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/HomeInventoryAPIDriver.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/IHomeInventoryAPIDriver.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/BaseDatabaseContextTest.cs
    gritcsenko committed Jun 10, 2023
    Configuration menu
    Copy the full SHA
    f780d96 View commit details
    Browse the repository at this point in the history
  3. Cleanup repository

    gritcsenko committed Jun 10, 2023
    Configuration menu
    Copy the full SHA
    6bb2b03 View commit details
    Browse the repository at this point in the history
  4. Update Pool

    gritcsenko committed Jun 10, 2023
    Configuration menu
    Copy the full SHA
    f70c86a View commit details
    Browse the repository at this point in the history
  5. Fix build

    gritcsenko committed Jun 10, 2023
    Configuration menu
    Copy the full SHA
    7272704 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2023

  1. Configuration menu
    Copy the full SHA
    e1d2113 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    42d41f3 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/DatabaseContext.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/Configurations/OutboxMessageConfiguration.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/Configurations/PolymorphicDomainEventTypeResolver.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/BaseDatabaseContextTest.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/RepositoryTests.cs
    gritcsenko committed Jun 11, 2023
    Configuration menu
    Copy the full SHA
    e16b22f View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    #	src/HomeInventory/HomeInventory.Tests/HomeInventory.Tests.csproj
    gritcsenko committed Jun 14, 2023
    Configuration menu
    Copy the full SHA
    b10c2a1 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Jun 14, 2023
    Configuration menu
    Copy the full SHA
    a6b26d0 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2023

  1. Configuration menu
    Copy the full SHA
    791ad0a View commit details
    Browse the repository at this point in the history
  2. Move Mediator.Abstractions

    gritcsenko committed Jun 16, 2023
    Configuration menu
    Copy the full SHA
    44d6ea7 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2023

  1. Configuration menu
    Copy the full SHA
    7bab797 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/OutboxMessage.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/ApiRequestBuilderExtensions.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/RepositoryTests.cs
    gritcsenko committed Jun 19, 2023
    Configuration menu
    Copy the full SHA
    b1be4f8 View commit details
    Browse the repository at this point in the history
  2. Fix bad merge

    gritcsenko committed Jun 19, 2023
    Configuration menu
    Copy the full SHA
    6eb324f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    355ed1b View commit details
    Browse the repository at this point in the history
  4. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/RepositoryTests.cs
    gritcsenko committed Jun 19, 2023
    Configuration menu
    Copy the full SHA
    d000fb8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0104f2e View commit details
    Browse the repository at this point in the history
  6. Fix bad merge

    gritcsenko committed Jun 19, 2023
    Configuration menu
    Copy the full SHA
    fabfebd View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2638664 View commit details
    Browse the repository at this point in the history
  8. Cleanup

    gritcsenko committed Jun 19, 2023
    Configuration menu
    Copy the full SHA
    1c104c1 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2023

  1. Configuration menu
    Copy the full SHA
    d85659f View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Jun 21, 2023
    Configuration menu
    Copy the full SHA
    e15e03a View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2023

  1. Configuration menu
    Copy the full SHA
    08ff5cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6bed2bd View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Jun 24, 2023
    Configuration menu
    Copy the full SHA
    676a2fd View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2023

  1. Configuration menu
    Copy the full SHA
    112825a View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2023

  1. Configuration menu
    Copy the full SHA
    09680cd View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Core/EnumerableExtensions.cs
    #	src/HomeInventory/HomeInventory.Domain.UserManagement/Events/ProductAddedEvent.cs
    #	src/HomeInventory/HomeInventory.Domain.UserManagement/Events/ProductRemovedEvent.cs
    #	src/HomeInventory/HomeInventory.Domain.UserManagement/Persistence/IStorageAreaRepository.cs
    #	src/HomeInventory/HomeInventory.Infrastructure.Framework/Specifications/ByIdFilterSpecification.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/DatabaseContext.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Mapping/ModelMappings.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/Configurations/PolymorphicDomainEventTypeResolver.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/ServiceCollectionExtensions.cs
    #	src/HomeInventory/HomeInventory.Tests/Core/PoolTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/RepositoryTests.cs
    #	src/HomeInventory/HomeInventory.Web/Mapping/ContractsMappings.cs
    #	src/HomeInventory/HomeInventory.Web/ServiceCollectionExtensions.cs
    gritcsenko committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    e3b4293 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2023

  1. Fix build

    gritcsenko committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    bbd0de2 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2023

  1. Fix tests

    gritcsenko committed Jul 7, 2023
    Configuration menu
    Copy the full SHA
    07f223c View commit details
    Browse the repository at this point in the history
  2. Increase test coverage

    gritcsenko committed Jul 7, 2023
    Configuration menu
    Copy the full SHA
    e03e136 View commit details
    Browse the repository at this point in the history
  3. Fix test

    gritcsenko committed Jul 7, 2023
    Configuration menu
    Copy the full SHA
    4ebd96b View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. Configuration menu
    Copy the full SHA
    0d2a2c8 View commit details
    Browse the repository at this point in the history
  2. Fix xUnit1028

    gritcsenko committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    ec8c1bd View commit details
    Browse the repository at this point in the history
  3. Fix CA1305

    gritcsenko committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    81c52e3 View commit details
    Browse the repository at this point in the history
  4. Fix failed tests

    gritcsenko committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    0352990 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5458dba View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. Fix AreaModule

    gritcsenko committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    426164d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6cf0d9d View commit details
    Browse the repository at this point in the history
  3. Register appliers

    gritcsenko committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    9c87ad5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c1d2caa View commit details
    Browse the repository at this point in the history
  5. Fix database mapping

    gritcsenko committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    898f671 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Api/AppBuilder.cs
    gritcsenko committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    d69aaeb View commit details
    Browse the repository at this point in the history
  7. Fix unit test

    gritcsenko committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    6a4ca88 View commit details
    Browse the repository at this point in the history
  8. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    b9443e8 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2023

  1. Configuration menu
    Copy the full SHA
    b8aa881 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    659aa82 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f879490 View commit details
    Browse the repository at this point in the history
  4. Fix argument name

    gritcsenko committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    15c37e3 View commit details
    Browse the repository at this point in the history
  5. Update AppBuilder

    gritcsenko committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    564e6b5 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2023

  1. Cleanup registration

    gritcsenko committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    77a8721 View commit details
    Browse the repository at this point in the history
  2. Fix traits for PoolTests

    gritcsenko committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    74422f4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    640230e View commit details
    Browse the repository at this point in the history
  4. Refactor object builder

    gritcsenko committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    0822072 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Api/Program.cs
    #	src/HomeInventory/HomeInventory.Application.Framework/IMappingAssemblySource.cs
    #	src/HomeInventory/HomeInventory.Application.Framework/MappingAssemblySource.cs
    #	src/HomeInventory/HomeInventory.Web/ServiceCollectionExtensions.cs
    gritcsenko committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    83283ba View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fc24c7a View commit details
    Browse the repository at this point in the history
  7. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Tests/Core/DictionaryExtensionsTests.cs
    gritcsenko committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    c5aba87 View commit details
    Browse the repository at this point in the history
  8. Update solution

    gritcsenko committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    8f11679 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application.UserManagement.Interfaces/Commands/RegisterCommandExtensions.cs
    #	src/HomeInventory/HomeInventory.Application.UserManagement/Commands/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/BuilderObjectConverter.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/Errors/ObjectValidationError.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/UlidIdentifierObjectBuilder.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/ValueObjectBuilder.cs
    #	src/HomeInventory/HomeInventory.Tests.Framework/Customizations/FixtureExtensions.cs
    gritcsenko committed Jul 15, 2023
    Configuration menu
    Copy the full SHA
    d8297eb View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. Configuration menu
    Copy the full SHA
    7319932 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2023

  1. Configuration menu
    Copy the full SHA
    cf20d26 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2023

  1. Configuration menu
    Copy the full SHA
    445b495 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2023

  1. Configuration menu
    Copy the full SHA
    7b6f0d0 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Tests.Framework/BaseTest.cs
    gritcsenko committed Jul 28, 2023
    Configuration menu
    Copy the full SHA
    a9c2789 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2023

  1. Configuration menu
    Copy the full SHA
    32cba15 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. Configuration menu
    Copy the full SHA
    f634615 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. Configuration menu
    Copy the full SHA
    9526cb6 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. Configuration menu
    Copy the full SHA
    07f1895 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    b6c8ae1 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    ac53f70 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. Configuration menu
    Copy the full SHA
    89a4e7f View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. Configuration menu
    Copy the full SHA
    5c3f8ce View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Sep 13, 2023
    Configuration menu
    Copy the full SHA
    8ee1967 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. Configuration menu
    Copy the full SHA
    040b7f7 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    96438bb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9e837c0 View commit details
    Browse the repository at this point in the history
  3. Fix tests

    gritcsenko committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    92e32e2 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2023

  1. Configuration menu
    Copy the full SHA
    3c3ce15 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Nov 5, 2023
    Configuration menu
    Copy the full SHA
    4f3f353 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Configuration menu
    Copy the full SHA
    a1c3367 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Nov 16, 2023
    Configuration menu
    Copy the full SHA
    431fd96 View commit details
    Browse the repository at this point in the history
  2. Fix CA1510

    Use 'ArgumentNullException.ThrowIfNull' instead of explicitly throwing a new exception instance (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1510)
    gritcsenko committed Nov 16, 2023
    Configuration menu
    Copy the full SHA
    dd1722e View commit details
    Browse the repository at this point in the history
  3. Fix FluentAssertions0718

    Use .Should().BeAssignableTo().
    gritcsenko committed Nov 16, 2023
    Configuration menu
    Copy the full SHA
    8578554 View commit details
    Browse the repository at this point in the history
  4. Fix IDE0028

    Collection initialization can be simplified
    gritcsenko committed Nov 16, 2023
    Configuration menu
    Copy the full SHA
    a64014e View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Configuration menu
    Copy the full SHA
    b30aa4c View commit details
    Browse the repository at this point in the history
  2. Add IsPow10

    gritcsenko committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    cf3dfe8 View commit details
    Browse the repository at this point in the history
  3. Cleanup

    gritcsenko committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    eb8c2cd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ace68f7 View commit details
    Browse the repository at this point in the history
  5. Cleanup

    gritcsenko committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    514adbf View commit details
    Browse the repository at this point in the history
  6. Cleanup

    gritcsenko committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    392e4b5 View commit details
    Browse the repository at this point in the history
  7. Refactor BaseEnumeration

    gritcsenko committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    8086629 View commit details
    Browse the repository at this point in the history
  8. Refactor AmountUnit

    gritcsenko committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    448f7a9 View commit details
    Browse the repository at this point in the history
  9. Simplify IsPow10

    gritcsenko committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    ce6a188 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. Refactor DecimalExtensions

    gritcsenko committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    92fd2c5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef0bb66 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Configuration menu
    Copy the full SHA
    7352500 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Feb 3, 2024
    Configuration menu
    Copy the full SHA
    8d54e88 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2024

  1. Configuration menu
    Copy the full SHA
    9271e0d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    56b8a36 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Optimize Concat

    gritcsenko committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    1c53024 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ca2d8eb View commit details
    Browse the repository at this point in the history
  3. Fix EquatableComponent

    gritcsenko committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    8478888 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7701f9b View commit details
    Browse the repository at this point in the history
  5. Update packages

    gritcsenko committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    ef3c463 View commit details
    Browse the repository at this point in the history
  6. Refactor DividesBy

    gritcsenko committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    6e5df00 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a269408 View commit details
    Browse the repository at this point in the history
  8. Refactor ErrorMapping

    gritcsenko committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    b6b752d View commit details
    Browse the repository at this point in the history
  9. Fix tests

    gritcsenko committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    6a74a5f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    05e3d56 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2024

  1. Use ErrorMappingBuilder

    gritcsenko committed Feb 10, 2024
    Configuration menu
    Copy the full SHA
    b36af18 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    87d8240 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Feb 18, 2024
    Configuration menu
    Copy the full SHA
    04546f1 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Seal some classes

    gritcsenko committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    1b6bfcb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a011875 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Fix Build

    gritcsenko committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    b501d5d View commit details
    Browse the repository at this point in the history
  2. Constructors

    gritcsenko committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    7ef1153 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c9092b6 View commit details
    Browse the repository at this point in the history
  4. Fix failed tests

    gritcsenko committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    8372907 View commit details
    Browse the repository at this point in the history
  5. Cleanup

    gritcsenko committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    ef0c2c4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9cbfc9b View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Tests.Framework/ValuesCollection.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/EntityTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Authentication/BCryptPasswordHasherTestsGivenContext.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Persistence/EventsPersistenceServiceTests.cs
    gritcsenko committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    b446cfb View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    #	src/HomeInventory/HomeInventory.Application/Cqrs/Behaviors/UnitOfWorkBehavior.cs
    #	src/HomeInventory/HomeInventory.Core/DictionaryExtensions.cs
    #	src/HomeInventory/HomeInventory.Core/OptionalExtensions.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/BaseEnumeration.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IOptionalBuilder.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IUlidBuildable.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/UlidIdentifierObject.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/UlidIdentifierObjectBuilder.cs
    #	src/HomeInventory/HomeInventory.Domain/ValueObjects/ProductId.cs
    #	src/HomeInventory/HomeInventory.Infrastructure.UserManagement/Models/Configurations/DomainEventJsonTypeInfo.cs
    #	src/HomeInventory/HomeInventory.Infrastructure.UserManagement/Specifications/UserHasEmailSpecification.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/DatabaseContext.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/Configurations/OutboxDatabaseConfigurationApplier.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/Configurations/OutboxMessageConfiguration.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Models/Configurations/PolymorphicDomainEventTypeResolver.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Services/PersistenceHealthCheck.cs
    #	src/HomeInventory/HomeInventory.Tests/Core/DictionaryExtensionsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Domain/EntityTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Modules/ErrorMappingTests.cs
    #	src/HomeInventory/HomeInventory.Web.Framework/Infrastructure/HomeInventoryProblemDetailsFactory.cs
    gritcsenko committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    52471fe View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Tests/Systems/Modules/BaseApiModuleTests.cs
    #	src/HomeInventory/HomeInventory.Web/Configuration/JwtOptions.cs
    #	src/HomeInventory/HomeInventory.Web/IOptions.cs
    #	src/HomeInventory/HomeInventory.Web/ServiceCollectionExtensions.cs
    gritcsenko committed Mar 24, 2024
    Configuration menu
    Copy the full SHA
    d84f838 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Tests/Systems/Modules/ErrorInstancesData.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Modules/ErrorMappingTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Modules/HomeInventoryProblemDetailsFactoryTests.cs
    #	src/HomeInventory/HomeInventory.Web.Framework/Infrastructure/ErrorMapping.cs
    #	src/HomeInventory/HomeInventory.Web.Framework/Infrastructure/ErrorMappingBuilder.cs
    #	src/HomeInventory/HomeInventory.Web.Framework/Infrastructure/HomeInventoryProblemDetailsFactory.cs
    #	src/HomeInventory/HomeInventory.Web.Framework/Infrastructure/ProblemDetailsExtensions.cs
    #	src/HomeInventory/HomeInventory.Web.Framework/ServiceCollectionExtensions.cs
    #	src/HomeInventory/HomeInventory.Web.Framework/ValidationFilter.cs
    #	src/HomeInventory/HomeInventory.Web/IOptions.cs
    gritcsenko committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    2982b0c View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductAddedEvent.cs
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductRemovedEvent.cs
    #	src/HomeInventory/HomeInventory.Infrastructure.Framework/Specifications/ICompiledSingleResultSpecification.cs
    gritcsenko committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    0ac1d90 View commit details
    Browse the repository at this point in the history
  2. Update Bogus

    gritcsenko committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    c08551d View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. Configuration menu
    Copy the full SHA
    45fc3f5 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    c89a272 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductAddedEvent.cs
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductRemovedEvent.cs
    #	src/HomeInventory/HomeInventory.Tests.Acceptance/Drivers/HomeInventoryAPIDriver.cs
    gritcsenko committed May 20, 2024
    Configuration menu
    Copy the full SHA
    8ab8cd0 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. Fix Build

    gritcsenko committed May 22, 2024
    Configuration menu
    Copy the full SHA
    be6e685 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2024

  1. Configuration menu
    Copy the full SHA
    de8af36 View commit details
    Browse the repository at this point in the history
  2. Revert back to 8.0.300

    gritcsenko committed May 25, 2024
    Configuration menu
    Copy the full SHA
    7e4f0a1 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Application/HomeInventory.Application.csproj
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductAddedEvent.cs
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductRemovedEvent.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/InfrastructureServiceCollectionExtensions.cs
    #	src/HomeInventory/HomeInventory.Infrastructure/Persistence/Mapping/ModelMappings.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ContractsMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    #	src/HomeInventory/HomeInventory.Web/Mapping/ContractsMappings.cs
    gritcsenko committed May 26, 2024
    Configuration menu
    Copy the full SHA
    4569f86 View commit details
    Browse the repository at this point in the history
  2. Cleanup

    gritcsenko committed May 26, 2024
    Configuration menu
    Copy the full SHA
    b485164 View commit details
    Browse the repository at this point in the history
  3. Fix Build

    gritcsenko committed May 26, 2024
    Configuration menu
    Copy the full SHA
    a946d5f View commit details
    Browse the repository at this point in the history
  4. Fix test

    gritcsenko committed May 26, 2024
    Configuration menu
    Copy the full SHA
    c3c0d21 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    gritcsenko committed Jul 21, 2024
    Configuration menu
    Copy the full SHA
    4a930aa View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductAddedEvent.cs
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductRemovedEvent.cs
    #	src/HomeInventory/HomeInventory.Tests/Systems/Mapping/ModelMappingsTests.cs
    gritcsenko committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    e90211d View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductAddedEvent.cs
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductRemovedEvent.cs
    gritcsenko committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    26047a0 View commit details
    Browse the repository at this point in the history
  3. Fix Build

    gritcsenko committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    f0eb6aa View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2024

  1. Merge branch 'main' into feature/area

    # Conflicts:
    #	src/HomeInventory/Directory.Packages.props
    #	src/HomeInventory/HomeInventory.Application.UserManagement/Commands/RegisterCommandHandler.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/IOptionalBuilder.cs
    #	src/HomeInventory/HomeInventory.Domain.Primitives/ImplicitUsings.cs
    #	src/HomeInventory/HomeInventory.Domain.UserManagement/Events/UserCreatedDomainEvent.cs
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductAddedEvent.cs
    #	src/HomeInventory/HomeInventory.Domain/Events/ProductRemovedEvent.cs
    gritcsenko committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    87c3ffc View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Configuration menu
    Copy the full SHA
    2f7a067 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. Configuration menu
    Copy the full SHA
    9c0bf7c View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. Configuration menu
    Copy the full SHA
    59d4784 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. Configuration menu
    Copy the full SHA
    a3e333e View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2024

  1. Configuration menu
    Copy the full SHA
    d6e2767 View commit details
    Browse the repository at this point in the history