Skip to content

Commit 4c244b2

Browse files
authored
release(dir): prepare v1.0.0 (#964)
* release(dir): prepare release v1.0.0 Signed-off-by: Catarina Paralta <clouropa@cisco.com> * release(dir): prepare release v1.0.0 Signed-off-by: Catarina Paralta <clouropa@cisco.com> * chore(changelog): update CHANGELOG for v1.0.0 release Signed-off-by: Catarina Paralta <clouropa@cisco.com> --------- Signed-off-by: Catarina Paralta <clouropa@cisco.com>
1 parent b8c1ffa commit 4c244b2

File tree

18 files changed

+64
-47
lines changed

18 files changed

+64
-47
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v1.0.0] - 2026-02-19
9+
10+
### Added
11+
- **Server**: Enable regsync atomic sync processing (#951)
12+
13+
### Changed
14+
- **Dependencies**: Bump oasf-sdk v1.0.0 → v1.0.1 (#957)
15+
- **Packaging**: Fix packages and maintainers (#950)
16+
- **Packaging**: Update brew formula version (#949)
17+
- **Server**: Validate sync deletion requests (#956)
18+
19+
### Fixed
20+
- **Reconciler**: Create reconciler ClusterSPIFFEID (#961)
21+
- **Reconciler**: Fix reconciler deployment SPIFFE socket path (#959)
22+
- **Dirctl**: Make publish and unpublish message similar (#952)
23+
- **CI/CD**: Update module extraction command in post-release workflow (#948)
24+
825
## [v1.0.0-rc.4] - 2026-02-13
926

1027
### Added

auth/authzserver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ go 1.25.7
66
replace github.com/agntcy/dir/auth/authprovider => ../authprovider
77

88
require (
9-
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.4
9+
github.com/agntcy/dir/auth/authprovider v1.0.0
1010
github.com/casbin/casbin/v2 v2.135.0
1111
github.com/envoyproxy/go-control-plane/envoy v1.36.0
1212
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57

auth/cmd/envoy-authz/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ replace (
99
)
1010

1111
require (
12-
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.4
13-
github.com/agntcy/dir/auth/authzserver v1.0.0-rc.4
12+
github.com/agntcy/dir/auth/authprovider v1.0.0
13+
github.com/agntcy/dir/auth/authzserver v1.0.0
1414
github.com/envoyproxy/go-control-plane/envoy v1.36.0
1515
google.golang.org/grpc v1.78.0
1616
gopkg.in/yaml.v3 v3.0.1

cli/go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ replace (
2020
)
2121

2222
require (
23-
github.com/agntcy/dir/api v1.0.0-rc.4
24-
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.4
25-
github.com/agntcy/dir/client v1.0.0-rc.4
26-
github.com/agntcy/dir/importer v1.0.0-rc.4
27-
github.com/agntcy/dir/mcp v1.0.0-rc.4
23+
github.com/agntcy/dir/api v1.0.0
24+
github.com/agntcy/dir/auth/authprovider v1.0.0
25+
github.com/agntcy/dir/client v1.0.0
26+
github.com/agntcy/dir/importer v1.0.0
27+
github.com/agntcy/dir/mcp v1.0.0
2828
github.com/ipfs/go-cid v0.6.0
2929
github.com/libp2p/go-libp2p v0.46.0
3030
github.com/sigstore/cosign/v3 v3.0.4
@@ -50,7 +50,7 @@ require (
5050
github.com/ProtonMail/go-crypto v1.3.0 // indirect
5151
github.com/PuerkitoBio/goquery v1.11.0 // indirect
5252
github.com/ThalesIgnite/crypto11 v1.2.5 // indirect
53-
github.com/agntcy/dir/utils v1.0.0-rc.4 // indirect
53+
github.com/agntcy/dir/utils v1.0.0 // indirect
5454
github.com/agntcy/oasf-sdk/pkg v1.0.1 // indirect
5555
github.com/alecthomas/chroma/v2 v2.23.1 // indirect
5656
github.com/andybalholm/cascadia v1.3.3 // indirect

client/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ replace (
1212
replace github.com/ThalesIgnite/crypto11 => github.com/ThalesGroup/crypto11 v1.6.0
1313

1414
require (
15-
github.com/agntcy/dir/api v1.0.0-rc.4
16-
github.com/agntcy/dir/utils v1.0.0-rc.4
15+
github.com/agntcy/dir/api v1.0.0
16+
github.com/agntcy/dir/utils v1.0.0
1717
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
1818
github.com/spf13/viper v1.21.0
1919
github.com/spiffe/go-spiffe/v2 v2.6.0

e2e/go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ replace (
1717
replace github.com/ThalesIgnite/crypto11 => github.com/ThalesGroup/crypto11 v1.6.0
1818

1919
require (
20-
github.com/agntcy/dir/api v1.0.0-rc.4
21-
github.com/agntcy/dir/cli v1.0.0-rc.4
22-
github.com/agntcy/dir/client v1.0.0-rc.4
20+
github.com/agntcy/dir/api v1.0.0
21+
github.com/agntcy/dir/cli v1.0.0
22+
github.com/agntcy/dir/client v1.0.0
2323
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
2424
github.com/onsi/ginkgo/v2 v2.28.1
2525
github.com/onsi/gomega v1.39.1
@@ -44,10 +44,10 @@ require (
4444
github.com/ProtonMail/go-crypto v1.3.0 // indirect
4545
github.com/PuerkitoBio/goquery v1.11.0 // indirect
4646
github.com/ThalesIgnite/crypto11 v1.2.5 // indirect
47-
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.4 // indirect
48-
github.com/agntcy/dir/importer v1.0.0-rc.4 // indirect
49-
github.com/agntcy/dir/mcp v1.0.0-rc.4 // indirect
50-
github.com/agntcy/dir/utils v1.0.0-rc.4 // indirect
47+
github.com/agntcy/dir/auth/authprovider v1.0.0 // indirect
48+
github.com/agntcy/dir/importer v1.0.0 // indirect
49+
github.com/agntcy/dir/mcp v1.0.0 // indirect
50+
github.com/agntcy/dir/utils v1.0.0 // indirect
5151
github.com/agntcy/oasf-sdk/pkg v1.0.1 // indirect
5252
github.com/alecthomas/chroma/v2 v2.23.1 // indirect
5353
github.com/andybalholm/cascadia v1.3.3 // indirect

importer/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ replace github.com/ThalesIgnite/crypto11 => github.com/ThalesGroup/crypto11 v1.6
1414

1515
require (
1616
buf.build/gen/go/agntcy/oasf/protocolbuffers/go v1.36.11-20260211173955-845dfc1ebb08.1
17-
github.com/agntcy/dir/api v1.0.0-rc.4
18-
github.com/agntcy/dir/client v1.0.0-rc.4
19-
github.com/agntcy/dir/utils v1.0.0-rc.4
17+
github.com/agntcy/dir/api v1.0.0
18+
github.com/agntcy/dir/client v1.0.0
19+
github.com/agntcy/dir/utils v1.0.0
2020
github.com/agntcy/oasf-sdk/pkg v1.0.1
2121
github.com/mark3labs/mcphost v0.33.4
2222
github.com/modelcontextprotocol/registry v1.4.1

mcp/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ replace (
1313
replace github.com/ThalesIgnite/crypto11 => github.com/ThalesGroup/crypto11 v1.6.0
1414

1515
require (
16-
github.com/agntcy/dir/api v1.0.0-rc.4
17-
github.com/agntcy/dir/client v1.0.0-rc.4
16+
github.com/agntcy/dir/api v1.0.0
17+
github.com/agntcy/dir/client v1.0.0
1818
github.com/agntcy/oasf-sdk/pkg v1.0.1
1919
github.com/modelcontextprotocol/go-sdk v1.3.0
2020
github.com/stretchr/testify v1.11.1
@@ -27,7 +27,7 @@ require (
2727
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
2828
github.com/Microsoft/go-winio v0.6.2 // indirect
2929
github.com/ThalesIgnite/crypto11 v1.2.5 // indirect
30-
github.com/agntcy/dir/utils v1.0.0-rc.4 // indirect
30+
github.com/agntcy/dir/utils v1.0.0 // indirect
3131
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
3232
github.com/blang/semver v3.5.1+incompatible // indirect
3333
github.com/cenkalti/backoff/v5 v5.0.3 // indirect

reconciler/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ replace (
1414
replace github.com/ThalesIgnite/crypto11 => github.com/ThalesGroup/crypto11 v1.6.0
1515

1616
require (
17-
github.com/agntcy/dir/api v1.0.0-rc.4
18-
github.com/agntcy/dir/client v1.0.0-rc.4
19-
github.com/agntcy/dir/server v1.0.0-rc.4
20-
github.com/agntcy/dir/utils v1.0.0-rc.4
17+
github.com/agntcy/dir/api v1.0.0
18+
github.com/agntcy/dir/client v1.0.0
19+
github.com/agntcy/dir/server v1.0.0
20+
github.com/agntcy/dir/utils v1.0.0
2121
github.com/spf13/viper v1.21.0
2222
gopkg.in/yaml.v3 v3.0.1
2323
oras.land/oras-go/v2 v2.6.0

runtime/discovery/go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ replace (
1616
replace github.com/ThalesIgnite/crypto11 => github.com/ThalesGroup/crypto11 v1.6.0
1717

1818
require (
19-
github.com/agntcy/dir/client v1.0.0-rc.4
20-
github.com/agntcy/dir/runtime/api v1.0.0-rc.4
21-
github.com/agntcy/dir/runtime/store v1.0.0-rc.4
22-
github.com/agntcy/dir/runtime/utils v1.0.0-rc.4
19+
github.com/agntcy/dir/client v1.0.0
20+
github.com/agntcy/dir/runtime/api v1.0.0
21+
github.com/agntcy/dir/runtime/store v1.0.0
22+
github.com/agntcy/dir/runtime/utils v1.0.0
2323
github.com/docker/docker v28.5.2+incompatible
2424
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
2525
github.com/spf13/viper v1.21.0
@@ -35,8 +35,8 @@ require (
3535
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
3636
github.com/Microsoft/go-winio v0.6.2 // indirect
3737
github.com/ThalesIgnite/crypto11 v1.2.5 // indirect
38-
github.com/agntcy/dir/api v1.0.0-rc.4
39-
github.com/agntcy/dir/utils v1.0.0-rc.4 // indirect
38+
github.com/agntcy/dir/api v1.0.0
39+
github.com/agntcy/dir/utils v1.0.0 // indirect
4040
github.com/agntcy/oasf-sdk/pkg v1.0.1 // indirect
4141
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
4242
github.com/blang/semver v3.5.1+incompatible // indirect

0 commit comments

Comments
 (0)