nx 20.8.1 → 20.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "20.8.1",
3
+ "version": "20.8.2",
4
4
  "private": false,
5
5
  "description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
6
6
  "repository": {
@@ -82,16 +82,16 @@
82
82
  }
83
83
  },
84
84
  "optionalDependencies": {
85
- "@nx/nx-darwin-arm64": "20.8.1",
86
- "@nx/nx-darwin-x64": "20.8.1",
87
- "@nx/nx-freebsd-x64": "20.8.1",
88
- "@nx/nx-linux-arm-gnueabihf": "20.8.1",
89
- "@nx/nx-linux-arm64-gnu": "20.8.1",
90
- "@nx/nx-linux-arm64-musl": "20.8.1",
91
- "@nx/nx-linux-x64-gnu": "20.8.1",
92
- "@nx/nx-linux-x64-musl": "20.8.1",
93
- "@nx/nx-win32-arm64-msvc": "20.8.1",
94
- "@nx/nx-win32-x64-msvc": "20.8.1"
85
+ "@nx/nx-darwin-arm64": "20.8.2",
86
+ "@nx/nx-darwin-x64": "20.8.2",
87
+ "@nx/nx-freebsd-x64": "20.8.2",
88
+ "@nx/nx-linux-arm-gnueabihf": "20.8.2",
89
+ "@nx/nx-linux-arm64-gnu": "20.8.2",
90
+ "@nx/nx-linux-arm64-musl": "20.8.2",
91
+ "@nx/nx-linux-x64-gnu": "20.8.2",
92
+ "@nx/nx-linux-x64-musl": "20.8.2",
93
+ "@nx/nx-win32-arm64-msvc": "20.8.2",
94
+ "@nx/nx-win32-x64-msvc": "20.8.2"
95
95
  },
96
96
  "nx-migrations": {
97
97
  "migrations": "./migrations.json",
@@ -205,6 +205,14 @@ class ReleaseGroupProcessor {
205
205
  const currentVersion = await (0, resolve_current_version_1.resolveCurrentVersion)(this.tree, projectGraphNode, releaseGroupNode.group, versionActions, this.projectLoggers.get(projectName), this.currentVersionsPerFixedReleaseGroup, finalConfigForProject, releaseTagPattern, latestMatchingGitTag);
206
206
  this.cachedCurrentVersions.set(projectName, currentVersion);
207
207
  }
208
+ // Ensure that there is an entry in versionData for each project being processed, even if they don't end up being bumped
209
+ for (const projectName of this.allProjectsToProcess) {
210
+ this.versionData.set(projectName, {
211
+ currentVersion: this.getCurrentCachedVersionForProject(projectName),
212
+ newVersion: null,
213
+ dependentProjects: this.getOriginalDependentProjects(projectName),
214
+ });
215
+ }
208
216
  }
209
217
  // Build the dependency relationships between groups
210
218
  this.buildGroupDependencyGraph();
Binary file