Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/update-upstreams.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@effect/tsgo": patch
---

Update the TypeScript next tag to [`typescript@next`](https://www.npmjs.com/package/typescript/v/7.1.0-dev.20260915.1), which ships [`typescript-go`](https://github.com/microsoft/typescript-go/commit/57d9528db25b8dc8375e18468a870ec3f4277d62) commit `57d9528db25b8dc8375e18468a870ec3f4277d62`, and update the TypeScript latest tag to [`typescript@latest`](https://www.npmjs.com/package/typescript/v/7.0.2).
Update the TypeScript next tag to [`typescript@next`](https://www.npmjs.com/package/typescript/v/7.1.0-dev.20260916.1), which ships [`typescript-go`](https://github.com/microsoft/typescript-go/commit/d2b20b35034bd902bdda5974f522ff00352895e9) commit `d2b20b35034bd902bdda5974f522ff00352895e9`, and update the TypeScript latest tag to [`typescript@latest`](https://www.npmjs.com/package/typescript/v/7.0.2).
6 changes: 3 additions & 3 deletions _packages/tsgo/upstream.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"tags": {
"typescript": {
"latest": "7.0.2",
"next": "7.1.0-dev.20260915.1"
"next": "7.1.0-dev.20260916.1"
},
"oxlint": {
"latest": "1.83.0"
Expand All @@ -18,8 +18,8 @@
"gitHead": "2bd066d87f5bafd315be9f40889d0a60b9e58e0b",
"provider": "typescript-go"
},
"7.1.0-dev.20260915.1": {
"gitHead": "57d9528db25b8dc8375e18468a870ec3f4277d62",
"7.1.0-dev.20260916.1": {
"gitHead": "d2b20b35034bd902bdda5974f522ff00352895e9",
"provider": "typescript"
}
},
Expand Down
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
nixpkgsUnstable.url = "github:NixOS/nixpkgs/nixos-unstable";
/* Source of truth: the next profile in `_packages/tsgo/upstream.json`. */
typescript-src = {
url = "github:microsoft/TypeScript/57d9528db25b8dc8375e18468a870ec3f4277d62";
url = "github:microsoft/TypeScript/d2b20b35034bd902bdda5974f522ff00352895e9";
flake = false;
};
};
Expand Down
7 changes: 4 additions & 3 deletions shim/vfs/shim.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion typescript
Submodule typescript updated 58 files
+13 −6 Herebyfile.mjs
+0 −5 tsc/internal/api/callbackfs.go
+14 −55 tsc/internal/api/requestfilesystem/pathtree_test.go
+0 −59 tsc/internal/api/requestfilesystem/requestfilesystem.go
+1 −29 tsc/internal/api/requestfilesystem/requestfilesystem_test.go
+3 −15 tsc/internal/bundled/bundled_test.go
+0 −50 tsc/internal/bundled/embed.go
+1 −116 tsc/internal/bundled/embed_generated.go
+1 −12 tsc/internal/bundled/generate.go
+37 −9 tsc/internal/checker/utilities.go
+0 −5 tsc/internal/compiler/projectreferencedtsfakinghost.go
+25 −22 tsc/internal/fourslash/baselineutil.go
+2 −11 tsc/internal/fourslash/fourslash.go
+2 −2 tsc/internal/fourslash/tests/exhaustiveCaseCompletions8_test.go
+15 −0 tsc/internal/jsnum/pseudobigint.go
+3 −8 tsc/internal/lsp/lspwatcher/lspwatcher.go
+29 −46 tsc/internal/lsp/server_test.go
+0 −5 tsc/internal/project/snapshotfs.go
+18 −7 tsc/internal/transformers/declarations/transform.go
+4 −7 tsc/internal/tsoptions/tsconfigparsing_test.go
+0 −4 tsc/internal/vfs/cachedvfs/cachedvfs.go
+0 −36 tsc/internal/vfs/cachedvfs/cachedvfs_test.go
+0 −13 tsc/internal/vfs/internal/internal.go
+0 −4 tsc/internal/vfs/iovfs/iofs.go
+0 −47 tsc/internal/vfs/iovfs/iofs_test.go
+0 −37 tsc/internal/vfs/osvfs/os.go
+0 −8 tsc/internal/vfs/trackingvfs/trackingvfs.go
+0 −15 tsc/internal/vfs/vfs.go
+0 −50 tsc/internal/vfs/vfsmock/mock_generated.go
+0 −1 tsc/internal/vfs/vfsmock/wrapper.go
+1 −10 tsc/internal/vfs/vfstest/vfstest_test.go
+184 −0 tsc/internal/vfs/walkdir.go
+209 −0 tsc/internal/vfs/walkdir_test.go
+0 −9 tsc/internal/vfs/wrapvfs/wrapvfs.go
+79 −0 tsc/testdata/baselines/reference/compiler/comparisonAnonymousMappedTypes.js
+86 −0 tsc/testdata/baselines/reference/compiler/comparisonAnonymousMappedTypes.symbols
+87 −0 tsc/testdata/baselines/reference/compiler/comparisonAnonymousMappedTypes.types
+18 −0 tsc/testdata/baselines/reference/compiler/comparisonBigIntLiterals.js
+16 −0 tsc/testdata/baselines/reference/compiler/comparisonBigIntLiterals.symbols
+53 −0 tsc/testdata/baselines/reference/compiler/comparisonBigIntLiterals.types
+45 −0 tsc/testdata/baselines/reference/compiler/comparisonReverseMappedTypes.js
+69 −0 tsc/testdata/baselines/reference/compiler/comparisonReverseMappedTypes.symbols
+68 −0 tsc/testdata/baselines/reference/compiler/comparisonReverseMappedTypes.types
+52 −0 tsc/testdata/baselines/reference/compiler/comparisonSameNamedAliases.js
+70 −0 tsc/testdata/baselines/reference/compiler/comparisonSameNamedAliases.symbols
+56 −0 tsc/testdata/baselines/reference/compiler/comparisonSameNamedAliases.types
+26 −0 tsc/testdata/baselines/reference/compiler/declarationEmitPrivateMethodSignatures.errors.txt
+41 −0 tsc/testdata/baselines/reference/compiler/declarationEmitPrivateMethodSignatures.js
+48 −0 tsc/testdata/baselines/reference/compiler/declarationEmitPrivateMethodSignatures.symbols
+41 −0 tsc/testdata/baselines/reference/compiler/declarationEmitPrivateMethodSignatures.types
+10 −10 tsc/testdata/baselines/reference/compiler/parseBigInt.errors.txt
+2 −2 tsc/testdata/baselines/reference/compiler/parseBigInt.types
+4 −4 tsc/testdata/baselines/reference/compiler/temporal.types
+25 −0 tsc/testdata/tests/cases/compiler/comparisonAnonymousMappedTypes.ts
+7 −0 tsc/testdata/tests/cases/compiler/comparisonBigIntLiterals.ts
+15 −0 tsc/testdata/tests/cases/compiler/comparisonReverseMappedTypes.ts
+20 −0 tsc/testdata/tests/cases/compiler/comparisonSameNamedAliases.ts
+19 −0 tsc/testdata/tests/cases/compiler/declarationEmitPrivateMethodSignatures.ts