Skip to content

Commit fa6252f

Browse files
committed
feat(FR-1503):Adopt pnpm minimumReleaseAge for security (#4321)
# Add minimumReleaseAge to pnpm-workspace.yaml This PR adds a `minimumReleaseAge` setting of 1440 minutes (24 hours) to the pnpm-workspace.yaml file. This setting helps ensure we only use package versions that have been available for at least 24 hours, reducing the risk of using packages that might be quickly yanked due to issues. **Checklist:** (if applicable) - [ ] Documentation - [ ] Minium required manager version - [ ] Specific setting for review (eg., KB link, endpoint or how to setup) - [ ] Minimum requirements to check during review - [ ] Test case(s) to demonstrate the difference of before/after
1 parent a2f6581 commit fa6252f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pnpm-workspace.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ packages:
33
- packages/backend.ai-ui
44

55
ignoredBuiltDependencies:
6-
- '@vaadin/vaadin-usage-statistics'
6+
- "@vaadin/vaadin-usage-statistics"
77

88
onlyBuiltDependencies:
99
- bufferutil
@@ -16,6 +16,8 @@ onlyBuiltDependencies:
1616
- utf-8-validate
1717

1818
patchedDependencies:
19-
'@cloudscape-design/[email protected]': react/patches/@[email protected]
19+
"@cloudscape-design/[email protected]": react/patches/@[email protected]
2020
[email protected]: react/patches/rc-field-form.patch
2121
22+
23+
minimumReleaseAge: 1440

0 commit comments

Comments
 (0)