Skip to content

Commit e3fcb0d

Browse files
authored
release: prepare release v1.2.1 (#8)
* release(dir-runtime): prepare release v1.2.1 Signed-off-by: Catarina Paralta <clouropa@cisco.com> * release(dir-runtime): prepare release v1.2.1 Signed-off-by: Catarina Paralta <clouropa@cisco.com> * chore: update CHANGELOG for v1.2.1 release, reflecting version change and full changelog link Signed-off-by: Catarina Paralta <clouropa@cisco.com> * fix: correct package naming in CI workflow output for Helm packaging Signed-off-by: Catarina Paralta <clouropa@cisco.com> --------- Signed-off-by: Catarina Paralta <clouropa@cisco.com>
1 parent a718cb3 commit e3fcb0d

6 files changed

Lines changed: 14 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270
id: build
271271
run: |
272272
helm package install/chart --dependency-update --version ${{ github.ref_name }}
273-
echo "package=dir-runtime-${{ github.ref_name }}.tgz" >> "$GITHUB_OUTPUT"
273+
echo "package=runtime-${{ github.ref_name }}.tgz" >> "$GITHUB_OUTPUT"
274274
275275
- name: Helm push to GHCR OCI registry
276276
run: |

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +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] - 2026-04-27
8+
## [v1.2.1] - 2026-04-27
99

1010
Initial release of Directory Runtime as a standalone repository, migrated from
11-
[agntcy/dir](https://github.com/agntcy/dir).
11+
[agntcy/dir](https://github.com/agntcy/dir). Version starts at v1.2.1 to avoid
12+
conflicts with existing container images published from the monorepo.
1213

1314
### Added
1415
- **Discovery**: Event-based Docker container discovery with real-time monitoring
@@ -28,4 +29,4 @@ Initial release of Directory Runtime as a standalone repository, migrated from
2829
- **Tooling**: Pre-commit hooks with golangci-lint integration
2930
- **Tooling**: Code coverage reporting with Codecov
3031

31-
[Full Changelog](https://github.com/agntcy/dir-runtime/releases/tag/v1.0.0)
32+
[Full Changelog](https://github.com/agntcy/dir-runtime/releases/tag/v1.2.1)

discovery/go.mod

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

1515
require (
16-
github.com/agntcy/dir-runtime/api v1.0.0
17-
github.com/agntcy/dir-runtime/store v1.0.0
18-
github.com/agntcy/dir-runtime/utils v1.0.0
16+
github.com/agntcy/dir-runtime/api v1.2.1
17+
github.com/agntcy/dir-runtime/store v1.2.1
18+
github.com/agntcy/dir-runtime/utils v1.2.1
1919
github.com/agntcy/dir/client v1.2.0
2020
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
2121
github.com/moby/moby/api v1.54.2

server/go.mod

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

1212
require (
13-
github.com/agntcy/dir-runtime/api v1.0.0
14-
github.com/agntcy/dir-runtime/store v1.0.0
15-
github.com/agntcy/dir-runtime/utils v1.0.0
13+
github.com/agntcy/dir-runtime/api v1.2.1
14+
github.com/agntcy/dir-runtime/store v1.2.1
15+
github.com/agntcy/dir-runtime/utils v1.2.1
1616
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
1717
github.com/spf13/viper v1.21.0
1818
github.com/stretchr/testify v1.11.1

store/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-runtime/api v1.0.0
13-
github.com/agntcy/dir-runtime/utils v1.0.0
12+
github.com/agntcy/dir-runtime/api v1.2.1
13+
github.com/agntcy/dir-runtime/utils v1.2.1
1414
github.com/glebarez/sqlite v1.11.0
1515
go.etcd.io/etcd/client/v3 v3.6.10
1616
google.golang.org/protobuf v1.36.11

versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
module-sets:
55
dir-runtime:
6-
version: v1.0.0
6+
version: v1.2.1
77
modules:
88
- github.com/agntcy/dir-runtime/api
99
- github.com/agntcy/dir-runtime/discovery

0 commit comments

Comments
 (0)