Skip to content

Commit 2aa2bee

Browse files
authored
fix(compat): update patch for [email protected] and [email protected] (#4903)
* fix(compat): update patch for `[email protected]` * fix(compat): update patch for `[email protected]`
1 parent 1712181 commit 2aa2bee

19 files changed

+6176
-53
lines changed

Diff for: .pnp.cjs

+24-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"pasteImage.prefix": "/",
2323
"typescript.enablePromptUseWorkspaceTsdk": true,
2424
"search.exclude": {
25-
"**/.pnp.*": true
25+
"**/.pnp.*": true,
26+
"**/.yarn": true
2627
}
2728
}

Diff for: .yarn/sdks/typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript",
3-
"version": "4.8.1-rc-sdk",
3+
"version": "4.9.1-beta-sdk",
44
"main": "./lib/typescript.js",
55
"type": "commonjs"
66
}

Diff for: .yarn/versions/1214c879.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
releases:
2+
"@yarnpkg/cli": patch
3+
"@yarnpkg/plugin-compat": patch
4+
5+
declined:
6+
- "@yarnpkg/plugin-constraints"
7+
- "@yarnpkg/plugin-dlx"
8+
- "@yarnpkg/plugin-essentials"
9+
- "@yarnpkg/plugin-init"
10+
- "@yarnpkg/plugin-interactive-tools"
11+
- "@yarnpkg/plugin-nm"
12+
- "@yarnpkg/plugin-npm-cli"
13+
- "@yarnpkg/plugin-pack"
14+
- "@yarnpkg/plugin-patch"
15+
- "@yarnpkg/plugin-pnp"
16+
- "@yarnpkg/plugin-pnpm"
17+
- "@yarnpkg/plugin-stage"
18+
- "@yarnpkg/plugin-typescript"
19+
- "@yarnpkg/plugin-version"
20+
- "@yarnpkg/plugin-workspace-tools"
21+
- "@yarnpkg/builder"
22+
- "@yarnpkg/core"
23+
- "@yarnpkg/doctor"

Diff for: CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ The following changes only affect people writing Yarn plugins:
7474
### Compatibility
7575

7676
- The patched filesystem now supports `fchown`.
77+
- Updates the PnP compatibility layer for TypeScript v4.8.4 and v4.9.1-beta.
7778

7879
### Shell
7980

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"eslint": "^8.2.0",
2626
"jest": "^28.1.3",
2727
"tslib": "^2.4.0",
28-
"typescript": "4.8.1-rc"
28+
"typescript": "4.9.1-beta"
2929
},
3030
"resolutions": {
3131
"ink": "patch:ink@npm%3A3.0.8#~/.yarn/patches/ink-npm-3.0.8-3a8005f59f.patch",

Diff for: packages/gatsby/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"typedoc": "0.17.0-3",
9090
"typedoc-neo-theme": "^1.0.7",
9191
"typedoc-plugin-yarn": "portal:./typedoc-plugin-yarn",
92-
"typescript": "4.8.1-rc",
92+
"typescript": "4.9.1-beta",
9393
"unescape-html": "^1.1.0",
9494
"unfetch": "^4.1.0",
9595
"unified": "^7.1.0",

Diff for: packages/plugin-compat/extra/typescript/gen-typescript-patch.js

+18-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ const IGNORED_VERSIONS = new Set([
1717
`4.0.0-beta`,
1818
`4.3.0-beta`,
1919
`4.4.0-beta`,
20+
// Broken publish - missing files
21+
`4.9.0-beta`,
2022
]);
2123

2224
const SLICES = [
@@ -111,12 +113,26 @@ const SLICES = [
111113
onto: `9a09c37878a45b06994485fdb510eb4d24587dcb`,
112114
range: `>=4.8.0-beta <4.8.1-rc`,
113115
},
114-
// https://github.com/merceyz/TypeScript/tree/merceyz/pnp-4.8
116+
// https://github.com/merceyz/TypeScript/tree/merceyz/pnp-4.8-stable
115117
{
116118
from: `623a7ac5aa49250155d39e604b09b4d015468a9c`,
117119
to: `623a7ac5aa49250155d39e604b09b4d015468a9c`,
118120
onto: `60b5167a2a7015759d048cdd4655d1f66a8416a2`,
119-
range: `>=4.8.1-rc`,
121+
range: `>=4.8.1-rc <4.8.4`,
122+
},
123+
// https://github.com/merceyz/TypeScript/tree/merceyz/pnp-4.8
124+
{
125+
from: `d3747e92c3cd2d1f98739382c14226a725df38fd`,
126+
to: `d3747e92c3cd2d1f98739382c14226a725df38fd`,
127+
onto: `a614119c1921ca61d549a7eee65c0b8c69c28752`,
128+
range: `>=4.8.4 <4.9.1-beta`,
129+
},
130+
// https://github.com/merceyz/TypeScript/tree/merceyz/pnp-4.9
131+
{
132+
from: `69c84aacfcea603c4d74721366cdcbbebd1c1681`,
133+
to: `69c84aacfcea603c4d74721366cdcbbebd1c1681`,
134+
onto: `549b5429d4837344e8c99657109bb6538fd2dbb5`,
135+
range: `>=4.9.1-beta`,
120136
},
121137
];
122138

0 commit comments

Comments
 (0)