Skip to content

Bump Npgsql from 8.0.3 to 10.0.2#12

Closed
dependabot[bot] wants to merge 10 commits into
mainfrom
dependabot/nuget/src/dotnet-grpc-gateway/Npgsql-10.0.2
Closed

Bump Npgsql from 8.0.3 to 10.0.2#12
dependabot[bot] wants to merge 10 commits into
mainfrom
dependabot/nuget/src/dotnet-grpc-gateway/Npgsql-10.0.2

Conversation

@dependabot
Copy link
Copy Markdown

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

Updated Npgsql from 8.0.3 to 10.0.2.

Release notes

Sourced from Npgsql's releases.

10.0.2

v10.0.2 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v10.0.1...v10.0.2

10.0.1

v10.0.1 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v10.0.0...v10.0.1

10.0.0

See the release notes.

The full list of changes is available here.

What's Changed

10.0.0-rc.1

9.0.5

v9.0.5 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v9.0.4...v9.0.5

9.0.4

v9.0.4 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v9.0.3...v9.0.4

9.0.3

v9.0.3 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v9.0.2...v9.0.3

9.0.2

9.0.2 was released to fix SSL certificate validation (#​5942).

Milestone issues

Full Changelog: npgsql/npgsql@v9.0.1...v9.0.2

9.0.1

9.0.1 was released right after 9.0.0 to stop referencing System.Text.Json 9.0, which caused various issues (npgsql/npgsql#5940, microsoft/aspire#6720).

9.0.0

See the release notes.

The full list of changes is available here.

What's Changed

8.0.9

v8.0.9 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v8.0.8...v8.0.9

8.0.8

v8.0.8 contains quite a few bug fixes.

Full Changelog: npgsql/npgsql@v8.0.7...v8.0.8

8.0.7

v9.0.3 contains several bug fixes.

Full Changelog: npgsql/npgsql@v8.0.6...v8.0.7

8.0.6

The full list of changes is available here.

Full Changelog: npgsql/npgsql@v8.0.5...v8.0.6

8.0.5

8.0.5 contains quite a few fixes, everyone is strongly encouraged to upgrade.

The full list of changes is available here.

Full Changelog: npgsql/npgsql@v8.0.4...v8.0.5

8.0.4

A large number of number of bugs have been fixed, here is the full list.

Full Changelog: npgsql/npgsql@v8.0.3...v8.0.4

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:15
- Domain models: GatewayConfiguration, GrpcService, GatewayRoute, RequestMetric,
  AuthenticationToken, ServiceHealthReport, GatewayStatistics
- Services: GatewayService, ServiceDiscoveryService, RouteResolutionService,
  MetricsCollectionService, ValidationService, GrpcClientFactory
- Data access: Unit of Work pattern, repositories for configurations, services, routes, metrics
- REST API: GatewayController with endpoints for service and route management,
  metrics, and statistics
- Infrastructure: Error handling middleware, health checks, background services
- Configuration: Dependency injection, health check services, gateway options
- Extensions: String, HttpContext utilities
- Constants: Gateway constants, enums, gRPC status codes
- Project: .NET 10, Serilog logging, gRPC-Web support, 3600+ lines of production code

Co-Authored-By: Vladyslav Zaiets <rutova2@gmail.com>
… production code

Add comprehensive middleware, caching, event system, and integration layers:

MIDDLEWARE (3 files, 300+ lines)
- RequestLoggingMiddleware: Request/response logging with body capture and performance metrics
- RateLimitingMiddleware: Token bucket rate limiting per client IP with cleanup
- AuthenticationMiddleware: Bearer token authentication with claims-based authorization

CACHING LAYER (2 files, 200+ lines)
- ICacheService: Abstract caching interface for testability
- MemoryCacheService: Thread-safe in-memory cache with statistics tracking

EVENT SYSTEM (8 files, 300+ lines)
- EventPublisher: In-memory pub-sub with reflection-based handler discovery
- 7 Event types and handlers for service lifecycle, routing, health checks, and throttling

OUTPUT FORMATTERS (4 files, 250+ lines)
- JsonFormatter: JSON with optional pretty-printing
- CsvFormatter: CSV export with automatic escaping and header generation
- XmlFormatter: XML serialization with configurable formatting
- OutputFormatterFactory: Content-type negotiation and factory pattern

INTEGRATION SERVICES (2 files, 220+ lines)
- WebhookService: Reliable webhook delivery with exponential backoff and history
- HttpClientProvider: Managed HTTP client pool with configuration profiles

PERFORMANCE & MONITORING (3 files, 200+ lines)
- PerformanceMonitor: Real-time latency percentiles (P50, P95, P99)
- MetricsAggregationBackgroundService: Periodic statistics compilation
- RequestMetricsAnalyzerService: Pattern analysis and anomaly detection

BACKGROUND SERVICES (3 files, 150+ lines)
- CacheExpirationBackgroundService: Cache health monitoring and alerting
- ServiceCleanupBackgroundService: Stale service removal and maintenance
- Plus service lifecycle monitoring

UTILITIES (6 files, 400+ lines)
- StringUtility: 8 string operations (wildcards, slugs, masks, normalization)
- HttpUtility: Header parsing, content-type detection, status codes
- DateTimeUtility: UTC time ranges, percentile calculations, formatting
- ValidationUtility: URI, IP, port, hostname, service name validation
- JsonSerializationUtility: Consistent JSON with merge, extraction, validation
- ConfigurationUtility: Type-safe config access with fallbacks and merging

ADVANCED SERVICES (2 files, 200+ lines)
- RouteManagementService: Route validation, conflict detection, analysis
- RequestContext: Async-safe request context with correlation IDs

INFRASTRUCTURE (2 files, 150+ lines)
- StructuredLogger: Consistent structured logging patterns
- RequestContext: Correlation ID and request metadata propagation

CONTROLLERS (3 files, 350+ lines)
- MetricsController: Performance analytics with endpoint health scoring
- HealthController: Liveness, readiness, and detailed service health checks
- ServiceDiscoveryController: Dynamic service registry and route matching

All files follow .NET 10 best practices with detailed WHY comments, comprehensive
error handling, thread-safe implementations, and production-ready code quality.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
…setup

Added comprehensive documentation:
- Expanded README.md with 2000+ words, architecture diagrams, 10+ examples, API reference, configuration guide, and troubleshooting section
- Getting started guide with step-by-step installation and configuration
- Detailed architecture documentation with system design, patterns, and extension points
- Complete API reference with all endpoints, parameters, and examples
- Production deployment guide for Kubernetes, Docker, and traditional servers
- FAQ with 50+ questions covering installation, configuration, routing, scaling, and troubleshooting

Added complete working examples:
- Example 1: Basic service registration and health checks
- Example 2: Dynamic route configuration with pattern matching and priorities
- Example 3: Metrics collection and performance monitoring
- Example 4: Authentication, security, and tiered access control
- Example 5: Health checks, readiness/liveness probes for Kubernetes
- Gateway Management CLI: Interactive command-line tool for gateway administration
- Examples README with patterns, troubleshooting, and integration guide

Added production infrastructure:
- Dockerfile: Multi-stage build with health checks and non-root user
- docker-compose.yml: Complete development stack with PostgreSQL
- GitHub Actions workflow: CI/CD pipeline with build, test, lint, and security scanning
- Makefile: 30+ targets for development, testing, deployment, and Docker operations
- .editorconfig: Code style configuration for IDE consistency

Added supporting files:
- CHANGELOG.md: Version history from v0.1.0 to v1.2.0 with migration guides
- Kubernetes manifests: Deployment, service, HPA, ingress, and ConfigMap examples

Project now includes:
- 18 new files totaling 5000+ lines of documentation and examples
- Production-ready Docker and Kubernetes setup
- Automated CI/CD pipeline
- Comprehensive examples covering all major use cases
- Detailed troubleshooting and FAQ sections

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

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

dependabot Bot commented on behalf of github May 13, 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/src/dotnet-grpc-gateway/Npgsql-10.0.2 branch May 13, 2026 06:05
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.

1 participant