From 83c981646e1540ceff13989d661e282923e5cec8 Mon Sep 17 00:00:00 2001 From: Unbound Releaser Date: Sat, 25 Jul 2026 12:07:13 +0000 Subject: [PATCH 1/5] chore(release): prepare for v0.1.1 --- CHANGELOG.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30c79b3..81528b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,20 @@ All notable changes to this project will be documented in this file. +## [0.1.1] - 2026-07-25 + +### ⚙️ Miscellaneous Tasks + +- *(deps)* Update actions/checkout action to v7 (#2) +- *(deps)* Update actions/cache action to v6 (#4) +- *(deps)* Update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v9.26.0 (#6) +- *(deps)* Update actions/setup-go action to v7 (#8) +- *(deps)* Update actions/setup-python action to v7 (#10) + ## [0.1.0] - 2026-06-16 ### 🚀 Features -- Initial version: type-generic `Registry[T]` for cross-service read-your-writes GraphQL subscriptions (ADR-0012) — keyed subscriber map, non-blocking fan-out (sends under the read lock), a bounded worker pool that runs the read-view gate off the AMQP delivery goroutine, and `Observer` metric hooks. Extracted and hardened from the hand-rolled `authz-service` and `accounting-service` copies. +- Type-generic registry for cross-service read-your-writes subscriptions -- 2.54.0 From e6ce7f936d2de5b8f96d1aec0bca750bbf93e85c Mon Sep 17 00:00:00 2001 From: Unbound Releaser Date: Sat, 25 Jul 2026 12:07:15 +0000 Subject: [PATCH 2/5] chore(release): prepare for v0.1.1 --- .version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.version b/.version index 557859c..5e94b0f 100644 --- a/.version +++ b/.version @@ -1,3 +1,3 @@ { - "version": "v0.1.0" + "version": "v0.1.1" } -- 2.54.0 From 837358d553bfa548861ae687e44dc5a88822b0dd Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 17 Aug 2026 09:54:50 +0000 Subject: [PATCH 3/5] fix(deps): update module github.com/stretchr/testify to v1.12.0 (#12) --- go.mod | 8 ++------ go.sum | 8 ++------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/go.mod b/go.mod index 0134165..4d74e4a 100644 --- a/go.mod +++ b/go.mod @@ -4,11 +4,7 @@ go 1.25 require ( github.com/google/uuid v1.6.0 - github.com/stretchr/testify v1.11.1 + github.com/stretchr/testify v1.12.0 ) -require ( - github.com/davecgh/go-spew v1.1.1 // indirect - github.com/pmezard/go-difflib v1.0.0 // indirect - gopkg.in/yaml.v3 v3.0.1 // indirect -) +require gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/go.sum b/go.sum index 42976e0..9cc60c2 100644 --- a/go.sum +++ b/go.sum @@ -1,11 +1,7 @@ -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= -github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= -github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= -github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= +github.com/stretchr/testify v1.12.0 h1:K6Mr6jO9JICuend/5xzTM03ydSV3vdNRYAdPSukj8uI= +github.com/stretchr/testify v1.12.0/go.mod h1:bOYBZb5qJ00vPzWfIqBUZPaxK8jWiXc6d3ErP4Ca9Gw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= -- 2.54.0 From c4b21f97ae17da712a94eccb1ed6eda6ce5911d0 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 21 Aug 2026 07:20:34 +0000 Subject: [PATCH 4/5] chore(deps): update pre-commit hook golangci/golangci-lint to v2.13.1 (#15) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fa46b04..18c6bdf 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -30,7 +30,7 @@ repos: - id: go-test - id: gofumpt - repo: https://github.com/golangci/golangci-lint - rev: v2.12.2 + rev: v2.13.1 hooks: - id: golangci-lint-full - repo: https://github.com/gitleaks/gitleaks -- 2.54.0 From 9d9bd7129d781f89e0f540565727b72795ee11d0 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 21 Aug 2026 08:13:33 +0000 Subject: [PATCH 5/5] fix(deps): update module github.com/stretchr/testify to v1.12.1 (#14) --- go.mod | 4 ++-- go.sum | 10 ++++------ 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index 4d74e4a..501fe9e 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.25 require ( github.com/google/uuid v1.6.0 - github.com/stretchr/testify v1.12.0 + github.com/stretchr/testify v1.12.1 ) -require gopkg.in/yaml.v3 v3.0.1 // indirect +require go.yaml.in/yaml/v3 v3.0.5 // indirect diff --git a/go.sum b/go.sum index 9cc60c2..bcc8aba 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,6 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/stretchr/testify v1.12.0 h1:K6Mr6jO9JICuend/5xzTM03ydSV3vdNRYAdPSukj8uI= -github.com/stretchr/testify v1.12.0/go.mod h1:bOYBZb5qJ00vPzWfIqBUZPaxK8jWiXc6d3ErP4Ca9Gw= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= -gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +github.com/stretchr/testify v1.12.1 h1:EuwCh5fleGS7H32xRwO3wRGT7DxrDhLAT6FF8MpWDWE= +github.com/stretchr/testify v1.12.1/go.mod h1:MDEgiDPPsNp5cuIrHPPCyornHKgEVbtFUmoNlxoYthg= +go.yaml.in/yaml/v3 v3.0.5 h1:N6y/pJk8buWs9NY5ERU2HSMfm+IuD/OtfdAnq6kESPw= +go.yaml.in/yaml/v3 v3.0.5/go.mod h1:HVTZu1O7/Vkt2N+BFy8Zza+lnLsABggaTM2ZpNIGuKg= -- 2.54.0