@toptal/davinci 23.0.0 → 23.1.0
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 +12 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 23.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#2668](https://github.com/toptal/davinci/pull/2668) [`66d2c76`](https://github.com/toptal/davinci/commit/66d2c7623aabab48f3be1f91a974d72cdf652186) Thanks [@OleksandrNechai](https://github.com/OleksandrNechai)!
|
|
8
|
+
Add minimumReleaseAge to protect against compromised npm packages
|
|
9
|
+
- add `minimumReleaseAge: 10080` (7 days) to `pnpm-workspace.yaml`
|
|
10
|
+
- exclude `@toptal/*`, `@topkit/*`, and `@nx/*` from the restriction
|
|
11
|
+
- bump pnpm from 10.6.1 to 10.33.0 (`minimumReleaseAge` requires pnpm >= 10.16)
|
|
12
|
+
- pin webpack to `<5.106.0` — webpack 5.106.0 broke `webpackbar@5.0.2` with stricter ProgressPlugin validation (remove pin once webpackbar is upgraded)
|
|
13
|
+
|
|
3
14
|
## 23.0.0
|
|
4
15
|
|
|
5
16
|
### Major Changes
|
|
@@ -12,7 +23,7 @@
|
|
|
12
23
|
- convert Yarn `resolutions` to `pnpm.overrides` in root `package.json`
|
|
13
24
|
- update lerna `npmClient` from `yarn` to `pnpm`
|
|
14
25
|
- replace `yarn` with `pnpm` in root scripts (postinstall, test, test:unit:update)
|
|
15
|
-
|
|
26
|
+
**HOW to update:**
|
|
16
27
|
- install pnpm (`corepack enable` or `npm install -g pnpm@10.6.1`)
|
|
17
28
|
- replace `yarn install` with `pnpm install` in local workflows
|
|
18
29
|
- replace `yarn <script>` with `pnpm <script>` when running commands
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.1.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"cli",
|
|
6
6
|
"front-end"
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"CHANGELOG.md"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@toptal/davinci-
|
|
26
|
+
"@toptal/davinci-cli-shared": "^3.0.0",
|
|
27
27
|
"@toptal/davinci-bootstrap": "^7.0.0",
|
|
28
|
-
"@toptal/davinci-graphql-codegen": "^6.0.0",
|
|
29
28
|
"@toptal/davinci-code": "^3.0.0",
|
|
29
|
+
"@toptal/davinci-engine": "^14.0.0",
|
|
30
|
+
"@toptal/davinci-graphql-codegen": "^6.0.0",
|
|
30
31
|
"@toptal/davinci-monorepo": "^13.0.0",
|
|
31
|
-
"@toptal/davinci-
|
|
32
|
+
"@toptal/davinci-ci": "^8.0.0",
|
|
33
|
+
"@toptal/davinci-workflow": "^3.0.0",
|
|
32
34
|
"@toptal/davinci-qa": "^19.0.0",
|
|
33
|
-
"@toptal/davinci-
|
|
34
|
-
"@toptal/davinci-syntax": "^24.0.0",
|
|
35
|
-
"@toptal/davinci-workflow": "^3.0.0"
|
|
35
|
+
"@toptal/davinci-syntax": "^24.0.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|