Skip to content

Bump FluentAssertions from 8.0.0 to 8.9.0#6

Closed
dependabot[bot] wants to merge 10 commits intomainfrom
dependabot/nuget/tests/api-key-gateway.Tests/FluentAssertions-8.9.0
Closed

Bump FluentAssertions from 8.0.0 to 8.9.0#6
dependabot[bot] wants to merge 10 commits intomainfrom
dependabot/nuget/tests/api-key-gateway.Tests/FluentAssertions-8.9.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 6, 2026

Updated FluentAssertions from 8.0.0 to 8.9.0.

Release notes

Sourced from FluentAssertions's releases.

8.9.0

What's Changed

New features

Improvements

Fixes

Documentation

Others

8.8.0

What's Changed

New features

Improvements

Documentation

Others

Full Changelog: fluentassertions/fluentassertions@8.7.1...8.8.0

8.7.1

What's Changed

Others

Full Changelog: fluentassertions/fluentassertions@8.7.0...8.7.1

8.7.0

What's Changed

New features

Others

Full Changelog: fluentassertions/fluentassertions@8.6.0...8.7.0

8.6.0

What's Changed

Improvements

Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@8.5.0...8.6.0

8.5.0

What's Changed

New features

Fixes

Others

Full Changelog: fluentassertions/fluentassertions@8.4.0...8.5.0

8.4.0

What's Changed

Improvements

Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@8.3.0...8.4.0

8.3.0

What's Changed

Improvements

Others

Full Changelog: fluentassertions/fluentassertions@8.2.0...8.3.0

8.2.0

What's Changed

Improvements

Fixes

Others

Full Changelog: fluentassertions/fluentassertions@8.1.1...8.2.0

8.1.1

What's Changed

Fixes

Full Changelog: fluentassertions/fluentassertions@8.1.0...8.1.1

8.1.0

What's Changed

Improvements

Fixes

Documentation

Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@8.0.1...8.1.0

8.0.1

What's Changed

Improvements

Others

Full Changelog: fluentassertions/fluentassertions@8.0.0...8.0.1

Commits viewable in compare view.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Sarmkadan and others added 10 commits May 4, 2026 08:10
PHASE 1 - CORE ARCHITECTURE

Project foundation with production-grade .NET 10 implementation:

Domain Models (8 classes):
- ApiKey: Authentication and metadata with lifecycle management
- ApiKeyConsumer: User/service representation with activity tracking
- RateLimit: Configurable rate limiting per API key
- UsageRecord: Request metrics and analytics
- AuditLog: Security and compliance audit trail
- GatewayConfiguration: System-wide settings
- ApiEndpoint: Protected endpoint definitions
- Custom Exceptions: InvalidApiKeyException, RateLimitExceededException, etc.

Services (5 classes):
- ApiKeyService: Key lifecycle management with SHA-256 hashing
- RateLimitingService: Rate limit enforcement and window management
- UsageTrackingService: Usage analytics and statistics
- AuthenticationService: Request validation and IP whitelisting
- AuditLogService: Compliance audit logging

Repositories (4 implementations):
- ApiKeyRepository: Complete CRUD with hash lookup
- RateLimitRepository: Window tracking and configuration
- UsageRepository: Historical query and aggregation
- AuditLogRepository: Retention and filtering

Infrastructure:
- Program.cs: ASP.NET Core setup with DI configuration
- Middleware: Request-level authentication and rate limiting
- Controllers: REST API for key management and analytics
- Database: SQL Server abstraction and connection management
- Configuration: Swagger/OpenAPI, CORS, security headers

Utilities:
- CryptoHelpers: Secure random generation and HMAC
- ValidationHelpers: Input validation and sanitization
- DateTimeExtensions: Time window calculations

Statistics:
- 39 total files (37 code files)
- 3,585 lines of production C# code
- Full implementation with no stubs
- Industry-standard patterns and practices

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
…ilities, events, caching, and integration

Phase 2 Implementation:
- 5 middleware components (error handling, logging, validation, performance monitoring, correlation)
- 11 utility helpers (JSON serialization, CSV/XML export, HTTP clients, rate limit calculations)
- 2 event system files (event definitions, publishers, handlers for API key and usage events)
- 2 caching layer files (in-memory cache provider, cache key generation)
- 4 integration modules (webhooks, external API clients, batch operations)
- 3 background workers (usage aggregation, rate limit resets, audit log cleanup)
- 3 additional controllers (health checks, admin operations, statistics)
- 4 configuration extensions (caching, events, middleware, service registration)
- 2 service implementations (data export, metrics collection)
- 2 validation utilities (API key validation, request validation)
- 2 extension collections (string and collection LINQ extensions)

Total: 33 new files, 3000+ lines of production-quality code
- Complete error handling pipeline with structured logging
- Distributed tracing via correlation IDs
- Caching abstraction supporting in-memory and future Redis integration
- Event-driven architecture for loosely coupled components
- Webhook delivery system with retry logic
- Rate limiting utilities with window calculations
- Export capabilities (CSV, XML, JSON)
- Batch operation processing for bulk API key management
- Health checks for container orchestration
- Admin and stats endpoints with detailed metrics

Co-Authored-By: Vladyslav Zaiets <https://sarmkadan.com>
- Add missing entries to .gitignore (appsettings.Development.json, *.DotSettings.user)
- Remove emoji characters from README.md section headers
- Update .csproj to use PackageLicenseExpression for NuGet compliance
- All author headers preserved across 79 .cs files

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-version: 8.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code labels May 6, 2026
@Sarmkadan Sarmkadan closed this May 6, 2026
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github May 6, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/nuget/tests/api-key-gateway.Tests/FluentAssertions-8.9.0 branch May 6, 2026 21:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants