feat!: mark monex 7.x breaking change for semantic-release#385
Merged
Conversation
The Java code that previously lived in monex (RemoteConsoleEndpoint, ConsoleModule, JMXToken, Log) was removed in eXist-db#367. Those features are now provided by eXist-db core 7.x as the WebSocket endpoint and the ConsoleCompatModule. monex 7.x is therefore not installable against eXist-db 6.x or earlier. This commit exists to signal the breaking change to semantic-release, which interprets the previous merge as non-breaking (no `!` marker or BREAKING CHANGE footer on the squash/merge commit). BREAKING CHANGE: monex no longer ships its own Java code. The WebSocket endpoint and the `console` XQuery module are now provided by eXist-db core 7.x. Earlier eXist-db versions are unsupported.
duncdrum
approved these changes
May 19, 2026
|
🎉 This PR is included in version 5.0.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[This response was co-authored with Claude Code. -Joe]
Why
PR #367 removed all Java code from monex and made it dependent on eXist-db core 7.x (which now ships the WebSocket endpoint and
ConsoleCompatModule). That's a breaking change for anyone installing monex against eXist-db 6.x or earlier — but the merge commit didn't carry a!marker orBREAKING CHANGE:footer, so semantic-release would propose only a minor/patch bump for the next release.This is a single empty commit whose only purpose is to carry the breaking-change marker so semantic-release produces a 7.0.0 release.
What
Note on beta vs. stable
.releaserccurrently has nobranchesprerelease configuration, so merging this will cause semantic-release to publish 7.0.0 (stable), not7.0.0-beta.1. If a beta channel is desired (to match eXist-db core's beta cadence),.releasercneeds abranchesentry for abetabranch — that can be a follow-up.(Note: the release job itself currently fails on the protected-branch push — tracked separately.)