@pnpm/config.writer 1100.0.22 → 1100.0.24

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,23 @@
1
1
  # @pnpm/config.config-writer
2
2
 
3
+ ## 1100.0.24
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @pnpm/types@1102.1.0
9
+ - @pnpm/workspace.workspace-manifest-writer@1100.1.2
10
+
11
+ ## 1100.0.23
12
+
13
+ ### Patch Changes
14
+
15
+ - `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.
16
+
17
+ - Updated dependencies:
18
+ - @pnpm/types@1102.0.0
19
+ - @pnpm/workspace.workspace-manifest-writer@1100.1.1
20
+
3
21
  ## 1100.0.22
4
22
 
5
23
  ### Patch Changes
package/lib/index.d.ts CHANGED
@@ -2,7 +2,9 @@ import type { PnpmSettings, ProjectManifest } from '@pnpm/types';
2
2
  export interface WriteSettingsOptions {
3
3
  updatedSettings?: PnpmSettings;
4
4
  updatedOverrides?: Record<string, string>;
5
+ updatedAuditIgnoreGhsas?: string[];
5
6
  addedMinimumReleaseAgeExcludes?: string[];
7
+ deletedLegacyKeys?: string[];
6
8
  rootProjectManifest?: ProjectManifest;
7
9
  rootProjectManifestDir: string;
8
10
  workspaceDir: string;
package/lib/index.js CHANGED
@@ -3,7 +3,9 @@ export async function writeSettings(opts) {
3
3
  await updateWorkspaceManifest(opts.workspaceDir, {
4
4
  updatedFields: opts.updatedSettings,
5
5
  updatedOverrides: opts.updatedOverrides,
6
+ updatedAuditIgnoreGhsas: opts.updatedAuditIgnoreGhsas,
6
7
  addedMinimumReleaseAgeExcludes: opts.addedMinimumReleaseAgeExcludes,
8
+ deletedLegacyKeys: opts.deletedLegacyKeys,
7
9
  });
8
10
  }
9
11
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/config.writer",
3
- "version": "1100.0.22",
3
+ "version": "1100.0.24",
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.1.0"
31
+ "@pnpm/types": "1102.1.0",
32
+ "@pnpm/workspace.workspace-manifest-writer": "1100.1.2"
33
33
  },
34
34
  "devDependencies": {
35
- "@pnpm/config.writer": "1100.0.22"
35
+ "@pnpm/config.writer": "1100.0.24"
36
36
  },
37
37
  "engines": {
38
38
  "node": ">=22.13"