Skip to content

Commit 6bc4fd3

Browse files
authored
release(dir/helm): prepare release/v1.0.0-rc.2 (#894)
* release(dir): prepare release v1.0.0-rc.2 Signed-off-by: Tibor Kircsi <tkircsi@cisco.com>
1 parent a2409b9 commit 6bc4fd3

File tree

15 files changed

+42
-37
lines changed

15 files changed

+42
-37
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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-rc.2] - 2026-02-02
9+
10+
### Fixed
11+
- **Helm**: Fix Reconciler Zot connectivity by respecting explicit `registry_address` configuration. The `chart.oci.registryAddress` helper was incorrectly forcing the internal Zot service address when the Zot subchart configuration existed, ignoring the explicitly configured external `config.store.oci.registry_address`. This caused the Reconciler to attempt HTTPS connections to the internal HTTP-only Zot service, resulting in TLS handshake failures and indexer task failures. The fix ensures the Reconciler uses the same external Zot registry configuration as the apiserver.
12+
813
## [v1.0.0-rc.1] - 2026-01-30
914

1015
### Key Highlights

auth/authzserver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/agntcy/dir/auth/authzserver
33
go 1.25.6
44

55
require (
6-
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.1
6+
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.2
77
github.com/casbin/casbin/v2 v2.135.0
88
github.com/envoyproxy/go-control-plane/envoy v1.36.0
99
google.golang.org/genproto/googleapis/rpc v0.0.0-20260120221211-b8f7ae30c516

auth/cmd/envoy-authz/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/agntcy/dir/auth/cmd/envoy-authz
33
go 1.25.6
44

55
require (
6-
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.1
7-
github.com/agntcy/dir/auth/authzserver v1.0.0-rc.1
6+
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.2
7+
github.com/agntcy/dir/auth/authzserver v1.0.0-rc.2
88
github.com/envoyproxy/go-control-plane/envoy v1.36.0
99
google.golang.org/grpc v1.78.0
1010
gopkg.in/yaml.v3 v3.0.1

cli/go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ replace (
2424
)
2525

2626
require (
27-
github.com/agntcy/dir/api v1.0.0-rc.1
28-
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.1
29-
github.com/agntcy/dir/client v1.0.0-rc.1
30-
github.com/agntcy/dir/importer v1.0.0-rc.1
31-
github.com/agntcy/dir/mcp v1.0.0-rc.1
32-
github.com/agntcy/dir/utils v1.0.0-rc.1
27+
github.com/agntcy/dir/api v1.0.0-rc.2
28+
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.2
29+
github.com/agntcy/dir/client v1.0.0-rc.2
30+
github.com/agntcy/dir/importer v1.0.0-rc.2
31+
github.com/agntcy/dir/mcp v1.0.0-rc.2
32+
github.com/agntcy/dir/utils v1.0.0-rc.2
3333
github.com/ipfs/go-cid v0.6.0
3434
github.com/libp2p/go-libp2p v0.46.0
3535
github.com/sigstore/sigstore v1.10.4

client/go.mod

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

1212
require (
13-
github.com/agntcy/dir/api v1.0.0-rc.1
14-
github.com/agntcy/dir/utils v1.0.0-rc.1
13+
github.com/agntcy/dir/api v1.0.0-rc.2
14+
github.com/agntcy/dir/utils v1.0.0-rc.2
1515
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
1616
github.com/spf13/viper v1.21.0
1717
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
@@ -25,10 +25,10 @@ replace (
2525
)
2626

2727
require (
28-
github.com/agntcy/dir/api v1.0.0-rc.1
29-
github.com/agntcy/dir/cli v1.0.0-rc.1
30-
github.com/agntcy/dir/client v1.0.0-rc.1
31-
github.com/agntcy/dir/utils v1.0.0-rc.1
28+
github.com/agntcy/dir/api v1.0.0-rc.2
29+
github.com/agntcy/dir/cli v1.0.0-rc.2
30+
github.com/agntcy/dir/client v1.0.0-rc.2
31+
github.com/agntcy/dir/utils v1.0.0-rc.2
3232
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
3333
github.com/onsi/ginkgo/v2 v2.27.5
3434
github.com/onsi/gomega v1.39.0
@@ -52,9 +52,9 @@ require (
5252
github.com/ProtonMail/go-crypto v1.3.0 // indirect
5353
github.com/PuerkitoBio/goquery v1.11.0 // indirect
5454
github.com/ThalesIgnite/crypto11 v1.2.5 // indirect
55-
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.1 // indirect
56-
github.com/agntcy/dir/importer v1.0.0-rc.1 // indirect
57-
github.com/agntcy/dir/mcp v1.0.0-rc.1 // indirect
55+
github.com/agntcy/dir/auth/authprovider v1.0.0-rc.2 // indirect
56+
github.com/agntcy/dir/importer v1.0.0-rc.2 // indirect
57+
github.com/agntcy/dir/mcp v1.0.0-rc.2 // indirect
5858
github.com/agntcy/oasf-sdk/pkg v1.0.0-rc.1 // indirect
5959
github.com/alecthomas/chroma/v2 v2.23.0 // indirect
6060
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
@@ -22,9 +22,9 @@ replace (
2222

2323
require (
2424
buf.build/gen/go/agntcy/oasf/protocolbuffers/go v1.36.11-20260127123814-046ed24ce65a.1
25-
github.com/agntcy/dir/api v1.0.0-rc.1
26-
github.com/agntcy/dir/client v1.0.0-rc.1
27-
github.com/agntcy/dir/utils v1.0.0-rc.1
25+
github.com/agntcy/dir/api v1.0.0-rc.2
26+
github.com/agntcy/dir/client v1.0.0-rc.2
27+
github.com/agntcy/dir/utils v1.0.0-rc.2
2828
github.com/agntcy/oasf-sdk/pkg v1.0.0-rc.1
2929
github.com/mark3labs/mcphost v0.33.2
3030
github.com/modelcontextprotocol/registry v1.4.0

mcp/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ replace (
1111
)
1212

1313
require (
14-
github.com/agntcy/dir/api v1.0.0-rc.1
15-
github.com/agntcy/dir/client v1.0.0-rc.1
14+
github.com/agntcy/dir/api v1.0.0-rc.2
15+
github.com/agntcy/dir/client v1.0.0-rc.2
1616
github.com/agntcy/oasf-sdk/pkg v1.0.0-rc.1
1717
github.com/modelcontextprotocol/go-sdk v1.2.0
1818
github.com/stretchr/testify v1.11.1
@@ -25,7 +25,7 @@ require (
2525
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
2626
github.com/Microsoft/go-winio v0.6.2 // indirect
2727
github.com/ThalesIgnite/crypto11 v1.2.5 // indirect
28-
github.com/agntcy/dir/utils v1.0.0-rc.1 // indirect
28+
github.com/agntcy/dir/utils v1.0.0-rc.2 // indirect
2929
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
3030
github.com/blang/semver v3.5.1+incompatible // indirect
3131
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
@@ -10,9 +10,9 @@ replace (
1010
)
1111

1212
require (
13-
github.com/agntcy/dir/api v1.0.0-rc.1
14-
github.com/agntcy/dir/server v1.0.0-rc.1
15-
github.com/agntcy/dir/utils v1.0.0-rc.1
13+
github.com/agntcy/dir/api v1.0.0-rc.2
14+
github.com/agntcy/dir/server v1.0.0-rc.2
15+
github.com/agntcy/dir/utils v1.0.0-rc.2
1616
github.com/spf13/viper v1.21.0
1717
gopkg.in/yaml.v3 v3.0.1
1818
oras.land/oras-go/v2 v2.6.0
@@ -25,7 +25,7 @@ require (
2525
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
2626
github.com/Microsoft/go-winio v0.6.2 // indirect
2727
github.com/ThalesIgnite/crypto11 v1.2.5 // indirect
28-
github.com/agntcy/dir/client v1.0.0-rc.1 // indirect
28+
github.com/agntcy/dir/client v1.0.0-rc.2 // indirect
2929
github.com/agntcy/oasf-sdk/pkg v1.0.0-rc.1 // indirect
3030
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
3131
github.com/blang/semver v3.5.1+incompatible // indirect

sdk/dir-js/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)