@pnpm/config.writer 1100.0.21 → 1100.0.23

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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @pnpm/config.config-writer
2
2
 
3
+ ## 1100.0.23
4
+
5
+ ### Patch Changes
6
+
7
+ - `pnpm approve-builds` now removes `onlyBuiltDependencies`, `onlyBuiltDependenciesFile`, `neverBuiltDependencies`, and `ignoredBuiltDependencies` from `pnpm-workspace.yaml` when it writes `allowBuilds`. Those settings were replaced by `allowBuilds` in pnpm 11 and silently ignored since, so a workspace migrated from pnpm 10 kept them around looking active.
8
+
9
+ - Updated dependencies:
10
+ - @pnpm/types@1102.0.0
11
+ - @pnpm/workspace.workspace-manifest-writer@1100.1.1
12
+
13
+ ## 1100.0.22
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies:
18
+ - @pnpm/workspace.workspace-manifest-writer@1100.1.0
19
+
3
20
  ## 1100.0.21
4
21
 
5
22
  ### Patch Changes
package/lib/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export interface WriteSettingsOptions {
3
3
  updatedSettings?: PnpmSettings;
4
4
  updatedOverrides?: Record<string, string>;
5
5
  addedMinimumReleaseAgeExcludes?: string[];
6
+ deletedLegacyKeys?: string[];
6
7
  rootProjectManifest?: ProjectManifest;
7
8
  rootProjectManifestDir: string;
8
9
  workspaceDir: string;
package/lib/index.js CHANGED
@@ -4,6 +4,7 @@ export async function writeSettings(opts) {
4
4
  updatedFields: opts.updatedSettings,
5
5
  updatedOverrides: opts.updatedOverrides,
6
6
  addedMinimumReleaseAgeExcludes: opts.addedMinimumReleaseAgeExcludes,
7
+ deletedLegacyKeys: opts.deletedLegacyKeys,
7
8
  });
8
9
  }
9
10
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/config.writer",
3
- "version": "1100.0.21",
3
+ "version": "1100.0.23",
4
4
  "description": "Functions for updating the configuration settings",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -28,11 +28,11 @@
28
28
  "!*.map"
29
29
  ],
30
30
  "dependencies": {
31
- "@pnpm/types": "1101.9.0",
32
- "@pnpm/workspace.workspace-manifest-writer": "1100.0.21"
31
+ "@pnpm/types": "1102.0.0",
32
+ "@pnpm/workspace.workspace-manifest-writer": "1100.1.1"
33
33
  },
34
34
  "devDependencies": {
35
- "@pnpm/config.writer": "1100.0.21"
35
+ "@pnpm/config.writer": "1100.0.23"
36
36
  },
37
37
  "engines": {
38
38
  "node": ">=22.13"