Skip to content

Tags: nrwl/nx

Tags

21.2.1

docs(nx-cloud): embed course widget to give full course more visibility

21.2.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
docs(nx-cloud): update release notes (#31563)

<!-- Please make sure you have read the submission guidelines before
posting an PR -->
<!--
https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr
-->

<!-- Please make sure that your commit message follows our format -->
<!-- Example: `fix(nx): must begin with lowercase` -->

<!-- If this is a particularly complex change or feature addition, you
can request a dedicated Nx release for this pull request branch. Mention
someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they
will confirm if the PR warrants its own release for testing purposes,
and generate it for you if appropriate. -->

## Current Behavior
<!-- This is the behavior we have today -->

## Expected Behavior
<!-- This is the behavior we should expect with the changes in this PR
-->

## Related Issue(s)
<!-- Please link the issue being fixed so it gets closed when this is
merged. -->

Fixes #

21.2.0-beta.5

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(core): scope native logging to nx module by default (#31530)

## Current Behavior

The native logging is currently set to a global 'info' level, which can
produce verbose output that may not be relevant to users.

## Expected Behavior

Native logging should be scoped to the 'nx::native' module by default
with 'info' level, reducing noise while still allowing users to control
logging verbosity through the `NX_NATIVE_LOGGING` environment variable.

## Related Issue(s)

This improves the developer experience by providing more focused logging
output and reduces unnecessary verbosity in the console.

Fixes #31518

21.2.0-beta.4

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(core): remove log_error function and standardize logging (#31515)

## Current Behavior

The codebase has separate `logError` and `logDebug` functions in the
native logging infrastructure, with both error and debug logging paths.

## Expected Behavior

Consolidate logging to use a single standardized approach. Error
messages are now logged through the debug channel for consistency.

## Related Issue(s)

This change standardizes the logging interface by removing the separate
error logging function and routing all log messages through the debug
logger.

21.2.0-beta.3

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(repo): fix publish workflow (#31510)

## Current Behavior

The publish workflow was failing because the preinstall script was
exiting with code 1 when detecting an older Node.js version, causing the
entire publishing process to fail.

## Expected Behavior  

The preinstall script should warn about Node.js version requirements but
not exit with an error code during publishing, allowing the workflow to
continue.

## Related Issue(s)

This fixes a critical issue preventing package publishing due to Node.js
version check failures in CI environments.

The fix changes:
- `console.error()` to `console.warn()` for better log categorization
- Removes `process.exit(1)` to prevent workflow termination  
- Adds the actual Node.js version to the warning message for better
debugging

This ensures the publish workflow can complete successfully while still
providing visibility into Node.js version mismatches.

21.1.3

Verified

This commit was signed with the committer’s verified signature.
FrozenPandaz Jason Jean
fix(release): sort groups topologically bottom-up and fix typo to all…

…ow multi-level group dependencies (#31374)

(cherry picked from commit fa9290a)

21.2.0-beta.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
docs(core): add docs for tui options in nx.json (#31459)

This PR adds the missing `tui` property in `nx.json` on this page:
https://nx.dev/reference/nx-json

<img width="884" alt="Screenshot 2025-06-04 at 1 10 04 PM"
src="https://github.com/user-attachments/assets/d7edb8dd-7b1a-4e3e-a738-4eb0dbb1feba"
/>

Preview:
https://nx-dev-git-docs-add-tui-option-nrwl.vercel.app/reference/nx-json

21.2.0-beta.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(angular): support angular cli v20.0.0-rc.3 (#30715)

Add support for the Angular CLI **20.0.0-rc.3** version.

21.1.2

fix(core): do not hide task list with run-many if there is only 1 task (

#31324)

21.1.1

Verified

This commit was signed with the committer’s verified signature.
FrozenPandaz Jason Jean
fix(module-federation): use runtimeChunk false when not in dev mode (#…

…31256)

## Current Behavior
In #30637 `runtimeChunk: false` was removed to allow HMR for styles.

## Expected Behavior
We need to set runtimeChunk to false or multiple when working with MF.
#31114 (comment)

## Related Issue(s)

Fixes #31114

(cherry picked from commit 1ab77c8)