Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jameshenry/nx-26041

Attempted repro for #26041
https://github.com/jameshenry/nx-26041

Last synced: 26 days ago
JSON representation

Attempted repro for #26041

Awesome Lists containing this project

README

        

# nx-26041

## Workspace project graph

image

## Steps

1. Check out the repo on the `main` branch and run `npm install`.

1. Make a change to button and commit it locally.

image

1. Run a dry-run of `nx release` and verify the output

```sh
❯ nx release -d

NX Running release version for project: @org/myproject-otherpackage1

@org/myproject-otherpackage1 πŸ” Reading data for package "@org/myproject-otherpackage1" from packages/otherpackage-1/package.json
@org/myproject-otherpackage1 πŸ“„ Resolved the current version as 0.1.2 from git tag "@org/[email protected]".
@org/myproject-otherpackage1 🚫 No changes were detected using git history and the conventional commits standard.
@org/myproject-otherpackage1 🚫 Skipping versioning "@org/myproject-otherpackage1" as no changes were detected.

NX Running release version for project: @org/myproject-otherpackage2

@org/myproject-otherpackage2 πŸ” Reading data for package "@org/myproject-otherpackage2" from packages/otherpackage-2/package.json
@org/myproject-otherpackage2 πŸ“„ Resolved the current version as 0.3.4 from git tag "@org/[email protected]".
@org/myproject-otherpackage2 🚫 No changes were detected using git history and the conventional commits standard.
@org/myproject-otherpackage2 🚫 Skipping versioning "@org/myproject-otherpackage2" as no changes were detected.

NX Running release version for project: @org/myproject-button

@org/myproject-button πŸ” Reading data for package "@org/myproject-button" from packages/button/package.json
@org/myproject-button πŸ“„ Resolved the current version as 1.0.0 from git tag "@org/[email protected]".
@org/myproject-button πŸ“„ Resolved the specifier as "minor" using git history and the conventional commits standard.
@org/myproject-button ✍️ New version 1.1.0 written to packages/button/package.json

NX Running release version for project: @org/myproject-datepicker

@org/myproject-datepicker πŸ” Reading data for package "@org/myproject-datepicker" from packages/datepicker/package.json
@org/myproject-datepicker πŸ“„ Resolved the current version as 1.2.3 from git tag "@org/[email protected]".
@org/myproject-datepicker πŸ“„ Resolved the specifier as "patch" because "release.version.generatorOptions.updateDependents" is enabled
@org/myproject-datepicker ✍️ New version 1.2.4 written to packages/datepicker/package.json

NX Running release version for project: @org/myproject-dropdown

@org/myproject-dropdown πŸ” Reading data for package "@org/myproject-dropdown" from packages/dropdown/package.json
@org/myproject-dropdown πŸ“„ Resolved the current version as 4.5.6 from git tag "@org/[email protected]".
@org/myproject-dropdown πŸ“„ Resolved the specifier as "patch" because "release.version.generatorOptions.updateDependents" is enabled
@org/myproject-dropdown ✍️ New version 4.5.7 written to packages/dropdown/package.json

NX Running release version for project: @org/myproject-filter

@org/myproject-filter πŸ” Reading data for package "@org/myproject-filter" from packages/filter/package.json
@org/myproject-filter πŸ“„ Resolved the current version as 7.8.9 from git tag "@org/[email protected]".
@org/myproject-filter πŸ“„ Resolved the specifier as "patch" because "release.version.generatorOptions.updateDependents" is enabled
@org/myproject-filter ✍️ New version 7.8.10 written to packages/filter/package.json

NX Running release version for project: @org/myproject-modal

@org/myproject-modal πŸ” Reading data for package "@org/myproject-modal" from packages/modal/package.json
@org/myproject-modal πŸ“„ Resolved the current version as 10.11.12 from git tag "@org/[email protected]".
@org/myproject-modal πŸ“„ Resolved the specifier as "patch" because "release.version.generatorOptions.updateDependents" is enabled
@org/myproject-modal ✍️ New version 10.11.13 written to packages/modal/package.json

UPDATE packages/button/package.json [dry-run]

"name": "@org/myproject-button",
- "version": "1.0.0"
+ "version": "1.1.0"
}

UPDATE packages/datepicker/package.json [dry-run]

"name": "@org/myproject-datepicker",
- "version": "1.2.3",
+ "version": "1.2.4",
"dependencies": {
- "@org/myproject-button": "1.0.0"
+ "@org/myproject-button": "1.1.0"
}

UPDATE packages/dropdown/package.json [dry-run]

"name": "@org/myproject-dropdown",
- "version": "4.5.6",
+ "version": "4.5.7",
"dependencies": {
- "@org/myproject-button": "1.0.0"
+ "@org/myproject-button": "1.1.0"
}

UPDATE packages/filter/package.json [dry-run]

"name": "@org/myproject-filter",
- "version": "7.8.9",
+ "version": "7.8.10",
"dependencies": {
- "@org/myproject-button": "1.0.0"
+ "@org/myproject-button": "1.1.0"
}

UPDATE packages/modal/package.json [dry-run]

"name": "@org/myproject-modal",
- "version": "10.11.12",
+ "version": "10.11.13",
"dependencies": {
- "@org/myproject-button": "1.0.0"
+ "@org/myproject-button": "1.1.0"
}

NX Updating npm lock file

NX Staging changed files with git

NX Previewing an entry in packages/datepicker/CHANGELOG.md for @org/[email protected]

CREATE packages/datepicker/CHANGELOG.md [dry-run]
+ ## 1.2.4 (2024-06-09)
+
+
+ ### 🧱 Updated Dependencies
+
+ - Updated @org/myproject-button to 1.1.0

NX Previewing an entry in packages/dropdown/CHANGELOG.md for @org/[email protected]

CREATE packages/dropdown/CHANGELOG.md [dry-run]
+ ## 4.5.7 (2024-06-09)
+
+
+ ### 🧱 Updated Dependencies
+
+ - Updated @org/myproject-button to 1.1.0

NX Previewing an entry in packages/button/CHANGELOG.md for @org/[email protected]

CREATE packages/button/CHANGELOG.md [dry-run]
+ ## 1.1.0 (2024-06-09)
+
+
+ ### πŸš€ Features
+
+ - a change to button
+
+
+ ### ❀️ Thank You
+
+ - β€œJamesHenry”

NX Previewing an entry in packages/filter/CHANGELOG.md for @org/[email protected]

CREATE packages/filter/CHANGELOG.md [dry-run]
+ ## 7.8.10 (2024-06-09)
+
+
+ ### 🧱 Updated Dependencies
+
+ - Updated @org/myproject-button to 1.1.0

NX Previewing an entry in packages/modal/CHANGELOG.md for @org/[email protected]

CREATE packages/modal/CHANGELOG.md [dry-run]
+ ## 10.11.13 (2024-06-09)
+
+
+ ### 🧱 Updated Dependencies
+
+ - Updated @org/myproject-button to 1.1.0

NX Staging changed files with git

NX Committing changes with git

NX Tagging commit with git

NX Skipped publishing packages.

NOTE: The "dryRun" flag means no changes were made.
```