Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the baseline group in /impl/baseline with 6 updates (#243)
Bumps the baseline group in /impl/baseline with 6 updates: | Package | From | To | | --- | --- | --- | | [@bufbuild/protobuf](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf) | `1.10.0` | `2.0.0` | | [@bufbuild/protoc-gen-es](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protoc-gen-es) | `1.10.0` | `2.0.0` | | [@bufbuild/buf](https://github.com/bufbuild/buf) | `1.34.0` | `1.35.1` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.14.9` | `22.0.2` | | [tsx](https://github.com/privatenumber/tsx) | `4.16.0` | `4.16.4` | | [typescript](https://github.com/Microsoft/TypeScript) | `5.5.2` | `5.5.4` | Updates `@bufbuild/protobuf` from 1.10.0 to 2.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bufbuild/protobuf-es/releases"><code>@bufbuild/protobuf</code>'s releases</a>.</em></p> <blockquote> <h2>v2.0.0</h2> <h2>What's new in version 2</h2> <p>To support <a href="https://protobuf.dev/editions/overview/">Protobuf editions</a>, we have to make breaking changes that also affect users of proto2 and proto3. This prompted us to make more extensive changes that take feedback from version 1 into account:</p> <p>We no longer use classes. Instead, we generate a schema object and a type for every message. To create a new instance, to serialize, and for other concerns, we provide functions. Here is a simple example:</p> <pre lang="typescript"><code>import { create, toBinary } from "@bufbuild/protobuf"; import { UserSchema } from "./gen/example_pb"; <p>let user = create(UserSchema, { firstName: "Homer", lastName: "Simpson", active: true, });</p> <p>const bytes = toBinary(UserSchema, user); </code></pre></p> <p>If you use proto3, messages are now plain objects. Files with proto2 and editions use the prototype chain to track <a href="https://github.com/bufbuild/protobuf-es/blob/main/MANUAL.md#field-presence-and-default-values">field presence</a>.</p> <p>This approach solves several outstanding issues, such as:</p> <ul> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/397">bufbuild/protobuf-es#397</a> Provide custom options at runtime</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/551">bufbuild/protobuf-es#551</a> Generated types allow assigning wrong message type if it is a superset of the target type</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/414">bufbuild/protobuf-es#414</a> Improvements for proto2 required</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/738">bufbuild/protobuf-es#738</a> type-save full enum value names</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/928">bufbuild/protobuf-es#928</a> Better interop with 3rd party frameworks requiring plain objects</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/508">bufbuild/protobuf-es#508</a> JSON types</li> </ul> <blockquote> <p>[!TIP]</p> <p>Take a look at the <a href="https://github.com/bufbuild/protobuf-es/blob/main/MANUAL.md#migrating-from-version-1">upgrade guide</a> to learn more.</p> </blockquote> <blockquote> <p>[!NOTE]</p> <p><a href="https://github.com/connectrpc/connect-es">Connect-ES</a> does not support version 2 yet. We will update it shortly.</p> </blockquote> <h2>Contributors</h2> <p>Thanks to <a href="https://github.com/srikrsna-buf"><code>@srikrsna-buf</code></a> for his contributions to v2!</p> <h2>v2.0.0-beta.3</h2> <h2>What's Changed</h2> <p>This is the third beta release for version 2. See <a href="https://github.com/bufbuild/protobuf-es/releases/tag/v2.0.0-alpha.1">v2.0.0-alpha.1</a> for an introduction. To install beta packages, run <code>npm install @bufbuild/protobuf@beta @bufbuild/protoc-gen-es@beta</code>.</p> <ul> <li>Add GeneratedFile.array by <a href="https://github.com/timostamm"><code>@timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/935">bufbuild/protobuf-es#935</a></li> <li>Add DescEnum.value by <a href="https://github.com/timostamm"><code>@timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/927">bufbuild/protobuf-es#927</a></li> <li>Rename GenDescMessage to GenMessage by <a href="https://github.com/timostamm"><code>@timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/925">bufbuild/protobuf-es#925</a></li> <li>Improve plugin option import_extension by <a href="https://github.com/timostamm"><code>@timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/909">bufbuild/protobuf-es#909</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bufbuild/protobuf-es/commit/76cbbc140622f17d51ec216427c795daee02fcd7"><code>76cbbc1</code></a> Release 2.0.0 (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/950">#950</a>)</li> <li><a href="https://github.com/bufbuild/protobuf-es/commit/64b8e6130faf9d9ffdea7f61fecbe1d815909054"><code>64b8e61</code></a> Switch to v2 (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/948">#948</a>)</li> <li><a href="https://github.com/bufbuild/protobuf-es/commit/1bb6d8a763fb30a212847d4ff58a799371c83888"><code>1bb6d8a</code></a> Add keywords to package.json files (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/912">#912</a>)</li> <li><a href="https://github.com/bufbuild/protobuf-es/commit/5e0b35cdb52317d9ed192ff48de7f967fe19e238"><code>5e0b35c</code></a> Add mutable registry (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/899">#899</a>)</li> <li>See full diff in <a href="https://github.com/bufbuild/protobuf-es/commits/v2.0.0/packages/protobuf">compare view</a></li> </ul> </details> <br /> Updates `@bufbuild/protoc-gen-es` from 1.10.0 to 2.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bufbuild/protobuf-es/releases"><code>@bufbuild/protoc-gen-es</code>'s releases</a>.</em></p> <blockquote> <h2>v2.0.0</h2> <h2>What's new in version 2</h2> <p>To support <a href="https://protobuf.dev/editions/overview/">Protobuf editions</a>, we have to make breaking changes that also affect users of proto2 and proto3. This prompted us to make more extensive changes that take feedback from version 1 into account:</p> <p>We no longer use classes. Instead, we generate a schema object and a type for every message. To create a new instance, to serialize, and for other concerns, we provide functions. Here is a simple example:</p> <pre lang="typescript"><code>import { create, toBinary } from "@bufbuild/protobuf"; import { UserSchema } from "./gen/example_pb"; <p>let user = create(UserSchema, { firstName: "Homer", lastName: "Simpson", active: true, });</p> <p>const bytes = toBinary(UserSchema, user); </code></pre></p> <p>If you use proto3, messages are now plain objects. Files with proto2 and editions use the prototype chain to track <a href="https://github.com/bufbuild/protobuf-es/blob/main/MANUAL.md#field-presence-and-default-values">field presence</a>.</p> <p>This approach solves several outstanding issues, such as:</p> <ul> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/397">bufbuild/protobuf-es#397</a> Provide custom options at runtime</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/551">bufbuild/protobuf-es#551</a> Generated types allow assigning wrong message type if it is a superset of the target type</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/414">bufbuild/protobuf-es#414</a> Improvements for proto2 required</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/738">bufbuild/protobuf-es#738</a> type-save full enum value names</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/928">bufbuild/protobuf-es#928</a> Better interop with 3rd party frameworks requiring plain objects</li> <li><a href="https://redirect.github.com/bufbuild/protobuf-es/issues/508">bufbuild/protobuf-es#508</a> JSON types</li> </ul> <blockquote> <p>[!TIP]</p> <p>Take a look at the <a href="https://github.com/bufbuild/protobuf-es/blob/main/MANUAL.md#migrating-from-version-1">upgrade guide</a> to learn more.</p> </blockquote> <blockquote> <p>[!NOTE]</p> <p><a href="https://github.com/connectrpc/connect-es">Connect-ES</a> does not support version 2 yet. We will update it shortly.</p> </blockquote> <h2>Contributors</h2> <p>Thanks to <a href="https://github.com/srikrsna-buf"><code>@srikrsna-buf</code></a> for his contributions to v2!</p> <h2>v2.0.0-beta.3</h2> <h2>What's Changed</h2> <p>This is the third beta release for version 2. See <a href="https://github.com/bufbuild/protobuf-es/releases/tag/v2.0.0-alpha.1">v2.0.0-alpha.1</a> for an introduction. To install beta packages, run <code>npm install @bufbuild/protobuf@beta @bufbuild/protoc-gen-es@beta</code>.</p> <ul> <li>Add GeneratedFile.array by <a href="https://github.com/timostamm"><code>@timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/935">bufbuild/protobuf-es#935</a></li> <li>Add DescEnum.value by <a href="https://github.com/timostamm"><code>@timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/927">bufbuild/protobuf-es#927</a></li> <li>Rename GenDescMessage to GenMessage by <a href="https://github.com/timostamm"><code>@timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/925">bufbuild/protobuf-es#925</a></li> <li>Improve plugin option import_extension by <a href="https://github.com/timostamm"><code>@timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/909">bufbuild/protobuf-es#909</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bufbuild/protobuf-es/commit/76cbbc140622f17d51ec216427c795daee02fcd7"><code>76cbbc1</code></a> Release 2.0.0 (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protoc-gen-es/issues/950">#950</a>)</li> <li><a href="https://github.com/bufbuild/protobuf-es/commit/64b8e6130faf9d9ffdea7f61fecbe1d815909054"><code>64b8e61</code></a> Switch to v2 (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protoc-gen-es/issues/948">#948</a>)</li> <li><a href="https://github.com/bufbuild/protobuf-es/commit/1bb6d8a763fb30a212847d4ff58a799371c83888"><code>1bb6d8a</code></a> Add keywords to package.json files (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protoc-gen-es/issues/912">#912</a>)</li> <li>See full diff in <a href="https://github.com/bufbuild/protobuf-es/commits/v2.0.0/packages/protoc-gen-es">compare view</a></li> </ul> </details> <br /> Updates `@bufbuild/buf` from 1.34.0 to 1.35.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bufbuild/buf/releases"><code>@bufbuild/buf</code>'s releases</a>.</em></p> <blockquote> <h2>v1.35.1</h2> <ul> <li>Fix the git input parameter <code>ref</code> to align with the <code>git</code> notion of a ref. This allows for the use of branch names, tag names, and commit hashes.</li> <li>Fix unexpected <code>buf build</code> errors with absolute path directory inputs without workspace and/or module configurations (e.g. <code>buf.yaml</code>, <code>buf.work.yaml</code>) and proto file paths set to the <code>--path</code> flag.</li> </ul> <h2>v1.35.0</h2> <ul> <li>Add <code>buf generate --clean</code> flag that will delete the directories, jar files, or zip files that the plugins will write to, prior to generation. Allows cleaning of existing assets without having to call <code>rm -rf</code>.</li> <li>Deprecate <code>--username</code> flag on and username prompt on <code>buf registry login</code>. A username is no longer required to log in.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bufbuild/buf/blob/main/CHANGELOG.md"><code>@bufbuild/buf</code>'s changelog</a>.</em></p> <blockquote> <h2>[v1.35.1] - 2024-07-24</h2> <ul> <li>Fix the git input parameter <code>ref</code> to align with the <code>git</code> notion of a ref. This allows for the use of branch names, tag names, and commit hashes.</li> <li>Fix unexpected <code>buf build</code> errors with absolute path directory inputs without workspace and/or module configurations (e.g. <code>buf.yaml</code>, <code>buf.work.yaml</code>) and proto file paths set to the <code>--path</code> flag.</li> </ul> <h2>[v1.35.0] - 2024-07-22</h2> <ul> <li>Add <code>buf generate --clean</code> flag that will delete the directories, jar files, or zip files that the plugins will write to, prior to generation. Allows cleaning of existing assets without having to call <code>rm -rf</code>.</li> <li>Deprecate <code>--username</code> flag on and username prompt on <code>buf registry login</code>. A username is no longer required to log in.</li> <li>Add <code>--list-services</code> and <code>--list-methods</code> flags to <code>buf curl</code>, which trigger the command to list known services or methods in the RPC schema, instead of invoking an RPC method.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bufbuild/buf/commit/f37053ea34085fca1f960cfa95be75e86eb6414e"><code>f37053e</code></a> Release v1.35.1 (<a href="https://redirect.github.com/bufbuild/buf/issues/3186">#3186</a>)</li> <li><a href="https://github.com/bufbuild/buf/commit/9b236cae1d67ce2f6c3b097aee4a9c8870c0f75f"><code>9b236ca</code></a> Only check directories in workspace targeting fallback logic (<a href="https://redirect.github.com/bufbuild/buf/issues/3184">#3184</a>)</li> <li><a href="https://github.com/bufbuild/buf/commit/8be3d0549eb3f596c45a1084ed435d1267af0657"><code>8be3d05</code></a> Validate domain in buf registry login and logout (<a href="https://redirect.github.com/bufbuild/buf/issues/3182">#3182</a>)</li> <li><a href="https://github.com/bufbuild/buf/commit/8c22e908ce925ee3f6830eb6d7db28a967bd45e5"><code>8c22e90</code></a> Fix git ref to allow branches and tags (<a href="https://redirect.github.com/bufbuild/buf/issues/3095">#3095</a>)</li> <li><a href="https://github.com/bufbuild/buf/commit/eee05d11a1acc2d2df0e67295fe24ec785a6c39a"><code>eee05d1</code></a> Return to development (<a href="https://redirect.github.com/bufbuild/buf/issues/3179">#3179</a>)</li> <li><a href="https://github.com/bufbuild/buf/commit/da902441b1e2305a4c86ae0bd93905a14b50b5c2"><code>da90244</code></a> Release v1.35.0 (<a href="https://redirect.github.com/bufbuild/buf/issues/3178">#3178</a>)</li> <li><a href="https://github.com/bufbuild/buf/commit/0b436b4cf494dd93cfc0ddb446d4fab5b07b514c"><code>0b436b4</code></a> Add comments to addFuncs (<a href="https://redirect.github.com/bufbuild/buf/issues/3172">#3172</a>)</li> <li><a href="https://github.com/bufbuild/buf/commit/8996858e1193b1918fdc328d73805eb35a6acd8b"><code>8996858</code></a> Add OAuth2 client to support device flow (<a href="https://redirect.github.com/bufbuild/buf/issues/3143">#3143</a>)</li> <li><a href="https://github.com/bufbuild/buf/commit/0d9adada1cc8f8c5c061d131965a74367fbca6e3"><code>0d9adad</code></a> Export target framework conversion functions (<a href="https://redirect.github.com/bufbuild/buf/issues/3164">#3164</a>)</li> <li><a href="https://github.com/bufbuild/buf/commit/afb50e108fa5a26a9306e70a6d10dba39d00604a"><code>afb50e1</code></a> Add new cmake registry type (<a href="https://redirect.github.com/bufbuild/buf/issues/3156">#3156</a>)</li> <li>Additional commits viewable in <a href="https://github.com/bufbuild/buf/compare/v1.34.0...v1.35.1">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 20.14.9 to 22.0.2 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> Updates `tsx` from 4.16.0 to 4.16.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/privatenumber/tsx/releases">tsx's releases</a>.</em></p> <blockquote> <h2>v4.16.4</h2> <h2><a href="https://github.com/privatenumber/tsx/compare/v4.16.3...v4.16.4">4.16.4</a> (2024-08-01)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>resolver:</strong> handle importing ".." (<a href="https://github.com/privatenumber/tsx/commit/3cf0b6acb9041b782d46345c23f3f48160e05f49">3cf0b6a</a>), closes <a href="https://redirect.github.com/privatenumber/tsx/issues/626">#626</a></li> </ul> <hr /> <p>This release is also available on:</p> <ul> <li><a href="https://www.npmjs.com/package/tsx/v/4.16.4"><code>npm package (@latest dist-tag)</code></a></li> </ul> <h2>v4.16.3</h2> <h2><a href="https://github.com/privatenumber/tsx/compare/v4.16.2...v4.16.3">4.16.3</a> (2024-07-31)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>resolver:</strong> prioritize requested path in dependencies (<a href="https://github.com/privatenumber/tsx/commit/3df00f4e64fd013ef8bc789b0be0496a033f4d3d">3df00f4</a>), closes <a href="https://redirect.github.com/privatenumber/tsx/issues/617">privatenumber/tsx#617</a></li> </ul> <hr /> <p>This release is also available on:</p> <ul> <li><a href="https://www.npmjs.com/package/tsx/v/4.16.3"><code>npm package (@latest dist-tag)</code></a></li> </ul> <h2>v4.16.2</h2> <h2><a href="https://github.com/privatenumber/tsx/compare/v4.16.1...v4.16.2">4.16.2</a> (2024-07-03)</h2> <h3>Bug Fixes</h3> <ul> <li>isolated cts import in Node v18 (<a href="https://redirect.github.com/privatenumber/tsx/issues/61">#61</a>) (<a href="https://github.com/privatenumber/tsx/commit/042be032246ef8964a4b6bf4602a9dca7c875d52">042be03</a>)</li> </ul> <hr /> <p>This release is also available on:</p> <ul> <li><a href="https://www.npmjs.com/package/tsx/v/4.16.2"><code>npm package (@latest dist-tag)</code></a></li> </ul> <h2>v4.16.1</h2> <h2><a href="https://github.com/privatenumber/tsx/compare/v4.16.0...v4.16.1">4.16.1</a> (2024-07-03)</h2> <h3>Bug Fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/privatenumber/tsx/commit/3cf0b6acb9041b782d46345c23f3f48160e05f49"><code>3cf0b6a</code></a> fix(resolver): handle importing ".."</li> <li><a href="https://github.com/privatenumber/tsx/commit/ca4bf11670bdbc29bd5fe413cfa3cedba02c2e4e"><code>ca4bf11</code></a> refactor(cjs): resolver organized in multiple files</li> <li><a href="https://github.com/privatenumber/tsx/commit/3df00f4e64fd013ef8bc789b0be0496a033f4d3d"><code>3df00f4</code></a> fix(resolver): prioritize requested path in dependencies</li> <li><a href="https://github.com/privatenumber/tsx/commit/1c3fd221aaec950c2951d2ab2a8ab3299deeedff"><code>1c3fd22</code></a> docs(usages): update link to knip usage (<a href="https://redirect.github.com/privatenumber/tsx/issues/622">#622</a>)</li> <li><a href="https://github.com/privatenumber/tsx/commit/83441638715b726f29596eb7ac5167747488238b"><code>8344163</code></a> chore(deps): update dependency node to v20.16.0 (<a href="https://redirect.github.com/privatenumber/tsx/issues/621">#621</a>)</li> <li><a href="https://github.com/privatenumber/tsx/commit/178f338fbba6f1cdb8f1297ea6b2c7dd63be08c8"><code>178f338</code></a> chore: remove unused <code>eslintConfig</code> (<a href="https://redirect.github.com/privatenumber/tsx/issues/620">#620</a>)</li> <li><a href="https://github.com/privatenumber/tsx/commit/1affdd03107795bea75b35d20e43253504990e62"><code>1affdd0</code></a> docs: make logos easier to see</li> <li><a href="https://github.com/privatenumber/tsx/commit/7d38e426489430fdcc91150e766be39c4b32d911"><code>7d38e42</code></a> docs: fix marquee bug on safari</li> <li><a href="https://github.com/privatenumber/tsx/commit/e5ddeb383561b63e67a33beb6827001a483372a2"><code>e5ddeb3</code></a> docs: fix marquee on safari</li> <li><a href="https://github.com/privatenumber/tsx/commit/630c4d6a76c538d79d60751094af62a1842a83ea"><code>630c4d6</code></a> docs: update sponsor link</li> <li>Additional commits viewable in <a href="https://github.com/privatenumber/tsx/compare/v4.16.0...v4.16.4">compare view</a></li> </ul> </details> <br /> Updates `typescript` from 5.5.2 to 5.5.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Microsoft/TypeScript/releases">typescript's releases</a>.</em></p> <blockquote> <h2>TypeScript 5.5.4</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+5.5.4%22+is%3Aclosed+">fixed issues query for TypeScript v5.5.4 (Stable)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+5.5.3%22+is%3Aclosed+">fixed issues query for TypeScript v5.5.3 (Stable)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+5.5.2%22+is%3Aclosed+">fixed issues query for TypeScript v5.5.2 (Stable)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+5.5.1%22+is%3Aclosed+">fixed issues query for TypeScript v5.5.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+5.5.0%22+is%3Aclosed+">fixed issues query for TypeScript v5.5.0 (Beta)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a> (soon!)</li> </ul> <h2>TypeScript 5.5.3</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+5.5.3%22+is%3Aclosed+">fixed issues query for TypeScript v5.5.3 (Stable)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+5.5.2%22+is%3Aclosed+">fixed issues query for TypeScript v5.5.2 (Stable)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+5.5.1%22+is%3Aclosed+">fixed issues query for TypeScript v5.5.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+5.5.0%22+is%3Aclosed+">fixed issues query for TypeScript v5.5.0 (Beta)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/TypeScript/commit/c8a7d589e647e19c94150d9892909f3aa93e48eb"><code>c8a7d58</code></a> Bump version to 5.5.4 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/c0ded048e0e83709704c808fadbf5c14a29b8153"><code>c0ded04</code></a> 🤖 Pick PR <a href="https://redirect.github.com/Microsoft/TypeScript/issues/58771">#58771</a> (Allow references to the global Symb...) into release-5.5 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/5ba41e221a7be2cf6d832b073371021fdddabb64"><code>5ba41e2</code></a> 🤖 Pick PR <a href="https://redirect.github.com/Microsoft/TypeScript/issues/59208">#59208</a> (Write non-missing undefined on mapp...) into release-5.5 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/b075332c4ba2e0be750a4f975f258fe60445b93e"><code>b075332</code></a> 🤖 Pick PR <a href="https://redirect.github.com/Microsoft/TypeScript/issues/59337">#59337</a> (Allow declarationMap to be emitted ...) into release-5.5 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/9dd6f917448286ec32b4202274424a4ea482cf8e"><code>9dd6f91</code></a> Cherry-pick "Stop using latest Node in CI" to release-5.5 (<a href="https://redirect.github.com/Microsoft/TypeScript/issues/59348">#59348</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/bf0ddaf6e63b3808ee4ced302830cbd9460de7cd"><code>bf0ddaf</code></a> 🤖 Pick PR <a href="https://redirect.github.com/Microsoft/TypeScript/issues/59070">#59070</a> (Delay the calculation of common sou...) into release-5.5 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/a44e2d925cdf3bfa51b8b65ca15f9007d1fde979"><code>a44e2d9</code></a> 🤖 Pick PR <a href="https://redirect.github.com/Microsoft/TypeScript/issues/59160">#59160</a> (Fixed crash on authored import type...) into release-5.5 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/f35206d2029ec65b04dba854620bfd4d3dc23951"><code>f35206d</code></a> 🤖 Pick PR <a href="https://redirect.github.com/Microsoft/TypeScript/issues/59325">#59325</a> (Don't skip markLinkedReferences on ...) into release-5.5 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/1109550e2c36d1f6c87222d7c4f996b23f05b3f5"><code>1109550</code></a> Fix baselines on release-5.5 (<a href="https://redirect.github.com/Microsoft/TypeScript/issues/59330">#59330</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/8794318ac96856933f1b0886900409813875283f"><code>8794318</code></a> 🤖 Pick PR <a href="https://redirect.github.com/Microsoft/TypeScript/issues/59215">#59215</a> (Fix codefix crash on circular alias...) into release-5.5 (#...</li> <li>Additional commits viewable in <a href="https://github.com/Microsoft/TypeScript/compare/v5.5.2...v5.5.4">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steve Ayers <[email protected]>
- Loading branch information