Conversation
🦋 Changeset detectedLatest commit: 11eab06 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
lucacavallaro
approved these changes
Mar 23, 2026
gunzip
requested changes
Mar 23, 2026
gunzip
reviewed
Mar 23, 2026
kin0992
approved these changes
Mar 23, 2026
lucacavallaro
requested changes
Mar 23, 2026
gunzip
approved these changes
Mar 23, 2026
lucacavallaro
approved these changes
Mar 24, 2026
mamu0
added a commit
that referenced
this pull request
Mar 26, 2026
This pull request introduces configuration changes to the `nx.json` file. The main updates involve adding a new release configuration section to prepare it for the switch to the Nx release. **NOTE**: This change **has no impact** on the current workflow until `nx release` is used instead of `Changesets`; it's an initial configuration. ### Parameters configured: - `versionPlans: true`: This allows developers to define version increments in dedicated files (similar to Changesets) which are then "consumed" during the release process. - `projectsRelationship: "independent"`: Necessary to prevents a single global version for the whole workspace. - `createRelease: false`: GitHub releases are disabled at this stage. Since this process runs during the PR creation, we must wait until the PR is merged to create the actual official release ( #1377 ). - `renderOptions:` Currently, all metadata options (Authors, Commit Refs, Dates) are set to true to provide maximum traceability. These can be adjusted if we prefer a more concise changelog format in the future ([documentation](https://nx.dev/docs/guides/nx-release/configure-changelog-format)). - `commit: false`: This is disabled to permit the execution of other commands, some verification and the PR description build during the Nx release action ( #1377 ). - `tag: true`: Tags will be created but not pushed during PR creation, this is necessary to allow the PR ( #1377 ) to retrieve the tags generated by Nx during the publish phase. - `pattern: "{projectName}@{version}"`: The [default tag configuration](https://nx.dev/docs/guides/nx-release/release-projects-independently#create-a-git-tag-for-each-project) already follows this pattern, but explicitly defining it improves clarity Resolves: CES-1761 --------- Co-authored-by: Danilo Spinelli <gunzip@users.noreply.github.com>
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 pull request introduces Nx release automation to the repository, enabling seamless versioning and publishing workflows for Nx monorepos, similar to the existing Changesets process.
The main changes include adding a new composite GitHub Action for managing Nx releases and updating release workflows to auto-detect and use the appropriate tool (Changesets or Nx).
Resolves: CES-1713