Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release-java-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
jreleaser-arguments: 'assemble --git-root-search'
clone-to-dist-repo: false
update-antora-version: false
jreleaser-version: 'early-access'
Copy link

Copilot AI Feb 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

jreleaser-version: 'early-access' is a moving target rather than an actual pin, which can make releases non-reproducible (and can break unexpectedly if the early-access artifacts change). Prefer pinning to a specific early-access build/version (and optionally add a note/TODO to switch back to a stable version once the feature is released).

Suggested change
jreleaser-version: 'early-access'
# TODO: Switch to a stable JReleaser version once the needed features are released.
jreleaser-version: '1.14.0-early-access-1'

Copilot uses AI. Check for mistakes.
working-directory: 'agent-memory-client/agent-memory-client-java'
tag-prefix: 'java-client-v'
git-root-search: true
Expand Down
2 changes: 2 additions & 0 deletions agent-memory-client/agent-memory-client-java/jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ release:
changelog:
formatted: ALWAYS
preset: conventional-commits
paths:
- 'agent-memory-client/agent-memory-client-java/'
includeLabels:
- 'feat'
- 'feature'
Expand Down
Loading