Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[npm] Bump the non-major-dependencies group with 6 updates #1057

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2024

Bumps the non-major-dependencies group with 6 updates:

Package From To
@napi-rs/cli 2.18.3 2.18.4
@changesets/cli 2.27.6 2.27.7
cspell 8.9.1 8.13.0
prettier 3.3.2 3.3.3
typescript 5.5.2 5.5.4
ts-jest 29.1.5 29.2.3

Updates @napi-rs/cli from 2.18.3 to 2.18.4

Release notes

Sourced from @​napi-rs/cli's releases.

@​napi-rs/cli@​2.18.4

What Changed

  • fix(cli): add missing declare keyword

Full Changelog: https://github.com/napi-rs/napi-rs/compare/@​napi-rs/cli@​2.18.3...@​napi-rs/cli@​2.18.4

Commits

Updates @changesets/cli from 2.27.6 to 2.27.7

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.27.7

Patch Changes

  • #1047 d108fa6 Thanks @​patzick! - Fixed a crash that could occur when depending on a tagged version of another workspace package.

  • #1400 dd6e5bb Thanks @​Andarist! - Fixed a crash that prevented the CLI from running in a scenario when a workspace depends on the root workspace

  • Updated dependencies [d108fa6, dd6e5bb, dd6e5bb]:

    • @​changesets/apply-release-plan@​7.0.4
    • @​changesets/config@​3.0.2
    • @​changesets/get-dependents-graph@​2.1.1
    • @​changesets/assemble-release-plan@​6.0.3
    • @​changesets/get-release-plan@​4.0.3
Commits

Updates cspell from 8.9.1 to 8.13.0

Release notes

Sourced from cspell's releases.

v8.13.0

Features

Speed Improvement

On average, 8.13.0 is 1.5x - 2x faster than 8.12

Spell check the CSpell Repo: 1467 files.

Version Time
8.13.0 9.8s
8.12.1 18.0s
8.11.0 18.2s
8.10.4 19.0s

feat: Improve the speed of checking text. (#6004)

After doing a bit of perf testing, it became clear that some of the Pipe function took up a decent percent of the time.

Converting Generators to Iterables resulting in a significant speed improvement.


Fixes

refactor: Use text.matchAll instead of sequenceFromRegExpMatch (#5994)


fix: trie lookup performance (#5985)

This is currently a place holder for per work.

Initial Perf:

... (truncated)

Changelog

Sourced from cspell's changelog.

8.13.0 (2024-07-30)

8.12.1 (2024-07-22)

  • fix: make sure the version is up to date (f6ab018)

8.12.0 (2024-07-22)

8.11.0 (2024-07-16)

8.10.4 (2024-07-05)

8.10.2 (2024-07-05)

8.10.1 (2024-07-05)

8.10.0 (2024-07-02)

Commits

Updates prettier from 3.3.2 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}
// Prettier 3.3.2
@​footagged template
class X {}
// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits

Updates typescript from 5.5.2 to 5.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view

Updates ts-jest from 29.1.5 to 29.2.3

Release notes

Sourced from ts-jest's releases.

v29.2.3

Please refer to CHANGELOG.md for details.

v29.2.2

Please refer to CHANGELOG.md for details.

v29.2.1

Please refer to CHANGELOG.md for details.

v29.2.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.2.3 (2024-07-18)

Security Fixes

  • build(deps): Update dependency ejs to ^3.1.10 (de94a56)

Code Refactoring

  • refactor(presets): maintain preset codes inside src (8474fc2)

29.2.2 (2024-07-10)

Bug Fixes

  • fix(compiler): update memory cache after changing module value (94db43f), closes #4439

29.2.1 (2024-07-10)

Bug Fixes

  • fix: move ejs to dep instead of peerDep (26e31a7)
  • fix: set allowSyntheticDefaultImports properly (ff4b302), closes #4156
  • fix(compiler): support Node16/NodeNext value for target (2f5cc0c), closes #4198

29.2.0 (2024-07-08)

Bug Fixes

  • fix: don't show warning message with Node16/NodeNext (99c4f49), closes #4266

Features

  • feat(cli): allow migrating cjs presets to transform config (22fb027)
  • feat(presets): add util functions to create ESM presets (06f78ed), close #4200
  • feat(presets): add util functions to create CJS presets (f9cc3c0), close #4200

Code refactoring

... (truncated)

Commits
  • 275b931 chore(release): 29.2.3
  • de94a56 build(deps): Update dependency ejs to ^3.1.10
  • 4d2e8d6 build(deps): Update dependency semver to v7.6.3
  • a45f451 build(deps): Update dependency @​types/node to v20.14.11
  • 27699c0 build(deps): Update dependency vite to ^5.3.4
  • 8780053 build(deps): Update ESLint packages to ^7.16.1
  • 8936a39 build(deps-dev): bump braces from 3.0.2 to 3.0.3 in /examples/ts-only
  • 1fe200a build(deps): Update dependency @​babel/core to ^7.24.9
  • 71d1ec3 build(deps): Update dependency @​testing-library/dom to ^10.3.2
  • 06567f2 build(deps-dev): bump braces from 3.0.2 to 3.0.3 in /e2e/native-esm-ts
  • Additional commits viewable in compare view

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 commands and options

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

@dependabot dependabot bot requested a review from a team as a code owner August 1, 2024 07:17
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 1, 2024
Copy link

changeset-bot bot commented Aug 1, 2024

⚠️ No Changeset found

Latest commit: 62ab318

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@OmarTawfik OmarTawfik enabled auto-merge August 2, 2024 20:49
dependabot bot and others added 2 commits August 3, 2024 01:03
Bumps the non-major-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@napi-rs/cli](https://github.com/napi-rs/napi-rs) | `2.18.3` | `2.18.4` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.6` | `2.27.7` |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.9.1` | `8.13.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.2` | `3.3.3` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.5.2` | `5.5.4` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.5` | `29.2.3` |

Updates `@napi-rs/cli` from 2.18.3 to 2.18.4
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](https://github.com/napi-rs/napi-rs/compare/@napi-rs/[email protected]...@napi-rs/[email protected])

Updates `@changesets/cli` from 2.27.6 to 2.27.7
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/[email protected]...@changesets/[email protected])

Updates `cspell` from 8.9.1 to 8.13.0
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.13.0/packages/cspell)

Updates `prettier` from 3.3.2 to 3.3.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.2...3.3.3)

Updates `typescript` from 5.5.2 to 5.5.4
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.2...v5.5.4)

Updates `ts-jest` from 29.1.5 to 29.2.3
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.1.5...v29.2.3)

---
updated-dependencies:
- dependency-name: "@napi-rs/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: "@changesets/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: cspell
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@OmarTawfik OmarTawfik force-pushed the dependabot/npm_and_yarn/non-major-dependencies-632050106b branch from 8c8c083 to 62ab318 Compare August 3, 2024 08:04
@OmarTawfik OmarTawfik added this pull request to the merge queue Aug 3, 2024
Merged via the queue into main with commit 21b0bec Aug 3, 2024
3 checks passed
@OmarTawfik OmarTawfik deleted the dependabot/npm_and_yarn/non-major-dependencies-632050106b branch August 3, 2024 08:32
ggiraldez pushed a commit to manastech/slang that referenced this pull request Aug 6, 2024
…dation#1057)

Bumps the non-major-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@napi-rs/cli](https://github.com/napi-rs/napi-rs) | `2.18.3` |
`2.18.4` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.6`
| `2.27.7` |
|
[cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell)
| `8.9.1` | `8.13.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.2` | `3.3.3` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.5.2` |
`5.5.4` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.5` | `29.2.3`
|

Updates `@napi-rs/cli` from 2.18.3 to 2.18.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/napi-rs/napi-rs/releases"><code>@​napi-rs/cli</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​napi-rs/cli</code><a
href="https://github.com/2"><code>@​2</code></a>.18.4</h2>
<h2>What Changed</h2>
<ul>
<li>fix(cli): add missing declare keyword</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/napi-rs/napi-rs/compare/@napi-rs/[email protected]...@napi-rs/[email protected]">https://github.com/napi-rs/napi-rs/compare/<code>@​napi-rs/cli</code><code>@​2.18.3...</code><code>@​napi-rs/cli</code><code>@​2.18.4</code></a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/napi-rs/napi-rs/commit/b1239101d38c607a9ca427f8a8490a6ee168e91d"><code>b123910</code></a>
chore: publish</li>
<li><a
href="https://github.com/napi-rs/napi-rs/commit/c33bc824811bfede737eaa658fac1498076175bb"><code>c33bc82</code></a>
fix(cli): add missing declare keyword</li>
<li><a
href="https://github.com/napi-rs/napi-rs/commit/324575f701414bd458fe9dcb3f06a4db3e81d851"><code>324575f</code></a>
chore: upgrade deps</li>
<li>See full diff in <a
href="https://github.com/napi-rs/napi-rs/compare/@napi-rs/[email protected]...@napi-rs/[email protected]">compare
view</a></li>
</ul>
</details>
<br />

Updates `@changesets/cli` from 2.27.6 to 2.27.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/changesets/changesets/releases"><code>@​changesets/cli</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​changesets/cli</code><a
href="https://github.com/2"><code>@​2</code></a>.27.7</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/changesets/changesets/pull/1047">#1047</a>
<a
href="https://github.com/changesets/changesets/commit/d108fa66e63c3000f42db7580a862b737e241c4d"><code>d108fa6</code></a>
Thanks <a href="https://github.com/patzick"><code>@​patzick</code></a>!
- Fixed a crash that could occur when depending on a tagged version of
another workspace package.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/changesets/changesets/pull/1400">#1400</a>
<a
href="https://github.com/changesets/changesets/commit/dd6e5bbf74e246d7a742aa50424989462679b0ca"><code>dd6e5bb</code></a>
Thanks <a
href="https://github.com/Andarist"><code>@​Andarist</code></a>! - Fixed
a crash that prevented the CLI from running in a scenario when a
workspace depends on the root workspace</p>
</li>
<li>
<p>Updated dependencies [<a
href="https://github.com/changesets/changesets/commit/d108fa66e63c3000f42db7580a862b737e241c4d"><code>d108fa6</code></a>,
<a
href="https://github.com/changesets/changesets/commit/dd6e5bbf74e246d7a742aa50424989462679b0ca"><code>dd6e5bb</code></a>,
<a
href="https://github.com/changesets/changesets/commit/dd6e5bbf74e246d7a742aa50424989462679b0ca"><code>dd6e5bb</code></a>]:</p>
<ul>
<li><code>@​changesets/apply-release-plan</code><a
href="https://github.com/7"><code>@​7</code></a>.0.4</li>
<li><code>@​changesets/config</code><a
href="https://github.com/3"><code>@​3</code></a>.0.2</li>
<li><code>@​changesets/get-dependents-graph</code><a
href="https://github.com/2"><code>@​2</code></a>.1.1</li>
<li><code>@​changesets/assemble-release-plan</code><a
href="https://github.com/6"><code>@​6</code></a>.0.3</li>
<li><code>@​changesets/get-release-plan</code><a
href="https://github.com/4"><code>@​4</code></a>.0.3</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/changesets/changesets/commit/b59375614b1b3dabdf67806cd202defb314686a8"><code>b593756</code></a>
Version Packages (<a
href="https://redirect.github.com/changesets/changesets/issues/1398">#1398</a>)</li>
<li><a
href="https://github.com/changesets/changesets/commit/d83e4585d629a5be2739c5ac6502dbb614a0e457"><code>d83e458</code></a>
Update changelog for privatePackage fix (<a
href="https://redirect.github.com/changesets/changesets/issues/1402">#1402</a>)</li>
<li><a
href="https://github.com/changesets/changesets/commit/dd6e5bbf74e246d7a742aa50424989462679b0ca"><code>dd6e5bb</code></a>
Fixed a crash when root workspace has dependents (<a
href="https://redirect.github.com/changesets/changesets/issues/1400">#1400</a>)</li>
<li><a
href="https://github.com/changesets/changesets/commit/d108fa66e63c3000f42db7580a862b737e241c4d"><code>d108fa6</code></a>
Fixed a crash when using tag versions of workspace packages (<a
href="https://redirect.github.com/changesets/changesets/issues/1047">#1047</a>)</li>
<li><a
href="https://github.com/changesets/changesets/commit/a832b64f8e4b111e9741c39d5eb195ba81e29987"><code>a832b64</code></a>
fix typo in automating-changesets.md (<a
href="https://redirect.github.com/changesets/changesets/issues/1155">#1155</a>)</li>
<li>See full diff in <a
href="https://github.com/changesets/changesets/compare/@changesets/[email protected]...@changesets/[email protected]">compare
view</a></li>
</ul>
</details>
<br />

Updates `cspell` from 8.9.1 to 8.13.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/streetsidesoftware/cspell/releases">cspell's
releases</a>.</em></p>
<blockquote>
<h2>v8.13.0</h2>
<h2>Features</h2>
<h3>Speed Improvement</h3>
<p>On average, 8.13.0 is 1.5x - 2x faster than 8.12</p>
<p>Spell check the CSpell Repo: 1467 files.</p>
<table>
<thead>
<tr>
<th>Version</th>
<th align="right">Time</th>
</tr>
</thead>
<tbody>
<tr>
<td>8.13.0</td>
<td align="right">9.8s</td>
</tr>
<tr>
<td>8.12.1</td>
<td align="right">18.0s</td>
</tr>
<tr>
<td>8.11.0</td>
<td align="right">18.2s</td>
</tr>
<tr>
<td>8.10.4</td>
<td align="right">19.0s</td>
</tr>
</tbody>
</table>
<!-- raw HTML omitted -->
<h3>feat: Improve the speed of checking text. (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6004">#6004</a>)</h3>
<p>After doing a bit of perf testing, it became clear that some of the
Pipe function took up a decent percent of the time.</p>
<p>Converting Generators to Iterables resulting in a significant speed
improvement.</p>
<hr />
<!-- raw HTML omitted -->
<h2>Fixes</h2>
<!-- raw HTML omitted -->
<h3>refactor: Use text.matchAll instead of sequenceFromRegExpMatch (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5994">#5994</a>)</h3>
<hr />
<!-- raw HTML omitted -->
<!-- raw HTML omitted -->
<h3>fix: trie lookup performance (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5985">#5985</a>)</h3>
<p>This is currently a place holder for per work.</p>
<p>Initial Perf:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md">cspell's
changelog</a>.</em></p>
<blockquote>
<h2>8.13.0 (2024-07-30)</h2>
<ul>
<li>chore: Update Integration Test Performance Data (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6011">#6011</a>)
(<a
href="https://github.com/streetsidesoftware/cspell/commit/135838a">135838a</a>),
closes <a
href="https://redirect.github.com/streetsidesoftware/cspell/issues/6011">#6011</a></li>
</ul>
<h2><!-- raw HTML omitted -->8.12.1 (2024-07-22)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: make sure the version is up to date (<a
href="https://github.com/streetsidesoftware/cspell/commit/f6ab018">f6ab018</a>)</li>
</ul>
<h2>8.12.0 (2024-07-22)</h2>
<ul>
<li>chore: Update Integration Test Performance Data (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5959">#5959</a>)
(<a
href="https://github.com/streetsidesoftware/cspell/commit/ea71b8a">ea71b8a</a>),
closes <a
href="https://redirect.github.com/streetsidesoftware/cspell/issues/5959">#5959</a></li>
</ul>
<h2>8.11.0 (2024-07-16)</h2>
<ul>
<li>refactor: char index (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5926">#5926</a>)
(<a
href="https://github.com/streetsidesoftware/cspell/commit/077b3ba">077b3ba</a>),
closes <a
href="https://redirect.github.com/streetsidesoftware/cspell/issues/5926">#5926</a></li>
</ul>
<h2><!-- raw HTML omitted -->8.10.4 (2024-07-05)<!-- raw HTML omitted
--></h2>
<ul>
<li>chore: force 8.10.3 (<a
href="https://github.com/streetsidesoftware/cspell/commit/f18b8c7">f18b8c7</a>)</li>
</ul>
<h2><!-- raw HTML omitted -->8.10.2 (2024-07-05)<!-- raw HTML omitted
--></h2>
<ul>
<li>ci: Workflow Bot -- Update ALL Dependencies (main) (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5862">#5862</a>)
(<a
href="https://github.com/streetsidesoftware/cspell/commit/814e15c">814e15c</a>),
closes <a
href="https://redirect.github.com/streetsidesoftware/cspell/issues/5862">#5862</a></li>
</ul>
<h2><!-- raw HTML omitted -->8.10.1 (2024-07-05)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix(cspell-tools): support adding directives (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5860">#5860</a>)
(<a
href="https://github.com/streetsidesoftware/cspell/commit/b2e014f">b2e014f</a>),
closes <a
href="https://redirect.github.com/streetsidesoftware/cspell/issues/5860">#5860</a></li>
</ul>
<h2>8.10.0 (2024-07-02)</h2>
<ul>
<li>chore: Update Integration Test Performance Data (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5859">#5859</a>)
(<a
href="https://github.com/streetsidesoftware/cspell/commit/898e806">898e806</a>),
closes <a
href="https://redirect.github.com/streetsidesoftware/cspell/issues/5859">#5859</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/2fd3fb430cc96a8a50543f57d96b288219a11923"><code>2fd3fb4</code></a>
v8.13.0</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/6327e442dcb77c11e358d866d4fccbd8c883186e"><code>6327e44</code></a>
fix: Improve the speed of checking text. (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6004">#6004</a>)</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/7f3dd7e0dda3a5b98ad017df73e17d30a7201888"><code>7f3dd7e</code></a>
fix: trie lookup performance (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5985">#5985</a>)</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/2b9d2fd6fb3a228886016f897c40e8b926e063ab"><code>2b9d2fd</code></a>
v8.12.1</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/f6ab01802af1fc87832168425bc9c945714ccf4f"><code>f6ab018</code></a>
fix: make sure the version is up to date</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/e58c494319d5ff68884222ee38ad1f8f5fb2007d"><code>e58c494</code></a>
v8.12.0</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/0b9ea12db8c3f3a2682d70733fea5d4b6b11a73b"><code>0b9ea12</code></a>
refactor: remove .cjs dependency (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5956">#5956</a>)</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/da6269d0e0f5826b89e2278e75b6cb41e448c24b"><code>da6269d</code></a>
chore: bump file-entry-cache from 8.0.0 to 9.0.0 (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5681">#5681</a>)</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/2ee9c4e7919a6dff24183f7b3ad829eb79d088d8"><code>2ee9c4e</code></a>
ci: Workflow Bot -- Build Readme (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5950">#5950</a>)</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/491dda8882486ae748366f203801b88a65d33a77"><code>491dda8</code></a>
feat: Support custom issue template (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/5949">#5949</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/streetsidesoftware/cspell/commits/v8.13.0/packages/cspell">compare
view</a></li>
</ul>
</details>
<br />

Updates `prettier` from 3.3.2 to 3.3.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/prettier/prettier/releases">prettier's
releases</a>.</em></p>
<blockquote>
<h2>3.3.3</h2>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#333">Changelog</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's
changelog</a>.</em></p>
<blockquote>
<h1>3.3.3</h1>
<p><a
href="https://github.com/prettier/prettier/compare/3.3.2...3.3.3">diff</a></p>
<h4>Add parentheses for nullish coalescing in ternary (<a
href="https://redirect.github.com/prettier/prettier/pull/16391">#16391</a>
by <a
href="https://github.com/cdignam-segment"><code>@​cdignam-segment</code></a>)</h4>
<p>This change adds clarity to operator precedence.</p>
<!-- raw HTML omitted -->
<pre lang="js"><code>// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
<p>// Prettier 3.3.2<br />
foo ? bar ?? foo : baz;<br />
foo ?? bar ? a : b;<br />
a ? b : foo ?? bar;</p>
<p>// Prettier 3.3.3<br />
foo ? (bar ?? foo) : baz;<br />
(foo ?? bar) ? a : b;<br />
a ? b : (foo ?? bar);<br />
</code></pre></p>
<h4>Add parentheses for decorator expressions (<a
href="https://redirect.github.com/prettier/prettier/pull/16458">#16458</a>
by <a
href="https://github.com/y-schneider"><code>@​y-schneider</code></a>)</h4>
<p>Prevent parentheses around member expressions or tagged template
literals from being removed to follow the stricter parsing rules of
TypeScript 5.5.</p>
<!-- raw HTML omitted -->
<pre lang="ts"><code>// Input
@(foo`tagged template`)
class X {}
<p>// Prettier 3.3.2<br />
<a href="https://github.com/foo"><code>@​foo</code></a><code>tagged
template</code><br />
class X {}</p>
<p>// Prettier 3.3.3<br />
@(foo<code>tagged template</code>)<br />
class X {}<br />
</code></pre></p>
<h4>Support <code>@let</code> declaration syntax (<a
href="https://redirect.github.com/prettier/prettier/pull/16474">#16474</a>
by <a
href="https://github.com/sosukesuzuki"><code>@​sosukesuzuki</code></a>)</h4>
<p>Adds support for Angular v18 <code>@let</code> declaration
syntax.</p>
<p>Please see the following code example. The <code>@let</code>
declaration allows you to define local variables within the
template:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/prettier/prettier/commit/52829385bcc4d785e58ae2602c0b098a643523c9"><code>5282938</code></a>
Release 3.3.3</li>
<li><a
href="https://github.com/prettier/prettier/commit/9102b73d8cd01795e7ba5af8a476d500c5dbcf2c"><code>9102b73</code></a>
Add parentheses for decorator expressions (<a
href="https://redirect.github.com/prettier/prettier/issues/16458">#16458</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/6bbd46194e4db25025afd6fe2f8506a8a2d1e47e"><code>6bbd461</code></a>
chore(deps): update eslint related dependencies (<a
href="https://redirect.github.com/prettier/prettier/issues/16478">#16478</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/04b560fc4386ee2ba1fc7c611c7a78655d6e60da"><code>04b560f</code></a>
chore(deps): update dependency browserslist to v4.23.2 (<a
href="https://redirect.github.com/prettier/prettier/issues/16475">#16475</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/614f070ac5f8d30628cc6cbbca1dda0e080e41d9"><code>614f070</code></a>
chore(deps): update typescript-eslint to v8.0.0-alpha.41 (<a
href="https://redirect.github.com/prettier/prettier/issues/16477">#16477</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/d59a15ded901c6dd66c07cf508e14646a6f12cd9"><code>d59a15d</code></a>
chore(deps): update dependency npm-run-all2 to v6.2.2 (<a
href="https://redirect.github.com/prettier/prettier/issues/16476">#16476</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/5ca2fc9be8369bf8c96899e2e5e8f3264086645a"><code>5ca2fc9</code></a>
Support Angular <code>@let</code> declaration syntax (<a
href="https://redirect.github.com/prettier/prettier/issues/16474">#16474</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/bfcfdccdf892141ce9cfbc179493557157c24e4c"><code>bfcfdcc</code></a>
chore(deps): update babel to v7.24.8 (<a
href="https://redirect.github.com/prettier/prettier/issues/16472">#16472</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/977c161924efa328660fe1802b604de2bc2527ea"><code>977c161</code></a>
chore(deps): update dependency acorn to v8.12.1 (<a
href="https://redirect.github.com/prettier/prettier/issues/16464">#16464</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/550606edf9f3c2e2d2c75f37f627c42030de34a3"><code>550606e</code></a>
chore(deps): update babel to v7.24.8 (<a
href="https://redirect.github.com/prettier/prettier/issues/16470">#16470</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/prettier/prettier/compare/3.3.2...3.3.3">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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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 &quot;Stop using latest Node in CI&quot; 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 />

Updates `ts-jest` from 29.1.5 to 29.2.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/kulshekhar/ts-jest/releases">ts-jest's
releases</a>.</em></p>
<blockquote>
<h2>v29.2.3</h2>
<p>Please refer to <a
href="https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v29.2.2</h2>
<p>Please refer to <a
href="https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v29.2.1</h2>
<p>Please refer to <a
href="https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v29.2.0</h2>
<p>Please refer to <a
href="https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md">ts-jest's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/kulshekhar/ts-jest/compare/v29.2.2...v29.2.3">29.2.3</a>
(2024-07-18)</h3>
<h3>Security Fixes</h3>
<ul>
<li>build(deps): Update dependency ejs to ^3.1.10 (<a
href="https://github.com/kulshekhar/ts-jest/commit/de94a56">de94a56</a>)</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>refactor(presets): maintain preset codes inside <code>src</code> (<a
href="https://github.com/kulshekhar/ts-jest/commit/8474fc2">8474fc2</a>)</li>
</ul>
<h3><a
href="https://github.com/kulshekhar/ts-jest/compare/v29.2.1...v29.2.2">29.2.2</a>
(2024-07-10)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>fix(compiler): update memory cache after changing
<code>module</code> value (<a
href="https://github.com/kulshekhar/ts-jest/commit/94db43f">94db43f</a>),
closes <a
href="https://redirect.github.com/kulshekhar/ts-jest/issues/4439">#4439</a></li>
</ul>
<h3><a
href="https://github.com/kulshekhar/ts-jest/compare/v29.2.0...v29.2.1">29.2.1</a>
(2024-07-10)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>fix: move <code>ejs</code> to <code>dep</code> instead of
<code>peerDep</code> (<a
href="https://github.com/kulshekhar/ts-jest/commit/26e31a7">26e31a7</a>)</li>
<li>fix: set <code>allowSyntheticDefaultImports</code> properly (<a
href="https://github.com/kulshekhar/ts-jest/commit/ff4b302">ff4b302</a>),
closes <a
href="https://redirect.github.com/kulshekhar/ts-jest/issues/4156">#4156</a></li>
<li>fix(compiler): support <code>Node16/NodeNext</code> value for
<code>target</code> (<a
href="https://github.com/kulshekhar/ts-jest/commit/2f5cc0c">2f5cc0c</a>),
closes <a
href="https://redirect.github.com/kulshekhar/ts-jest/issues/4198">#4198</a></li>
</ul>
<h2><a
href="https://github.com/kulshekhar/ts-jest/compare/v29.1.5...v29.2.0">29.2.0</a>
(2024-07-08)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fix: don't show warning message with Node16/NodeNext (<a
href="https://github.com/kulshekhar/ts-jest/commit/99c4f49">99c4f49</a>),
closes <a
href="https://redirect.github.com/kulshekhar/ts-jest/issues/4266">#4266</a></li>
</ul>
<h3>Features</h3>
<ul>
<li>feat(cli): allow migrating cjs <code>presets</code> to
<code>transform</code> config (<a
href="https://github.com/kulshekhar/ts-jest/commit/22fb027">22fb027</a>)</li>
<li>feat(presets): add util functions to create ESM presets (<a
href="https://github.com/kulshekhar/ts-jest/commit/06f78ed">06f78ed</a>),
close <a
href="https://redirect.github.com/kulshekhar/ts-jest/issues/4200">#4200</a></li>
<li>feat(presets): add util functions to create CJS presets (<a
href="https://github.com/kulshekhar/ts-jest/commit/f9cc3c0">f9cc3c0</a>),
close <a
href="https://redirect.github.com/kulshekhar/ts-jest/issues/4200">#4200</a></li>
</ul>
<h3>Code refactoring</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/275b9318d70a33a45288c2ee3fccb04ebee55325"><code>275b931</code></a>
chore(release): 29.2.3</li>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/de94a560a0f1cfb016657e0c2f852d759cf42ce8"><code>de94a56</code></a>
build(deps): Update dependency ejs to ^3.1.10</li>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/4d2e8d6d212ce2f17a58e570730ac914311eb0d9"><code>4d2e8d6</code></a>
build(deps): Update dependency semver to v7.6.3</li>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/a45f4519947f37558953d5dc6eda7dfe53b44cc3"><code>a45f451</code></a>
build(deps): Update dependency <code>@​types/node</code> to
v20.14.11</li>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/27699c0fccbe4417f76a5ccd6f6cebce2c88ed55"><code>27699c0</code></a>
build(deps): Update dependency vite to ^5.3.4</li>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/8780053c37e319c914bdaf4b5ff976c8df2903f2"><code>8780053</code></a>
build(deps): Update ESLint packages to ^7.16.1</li>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/8936a39eea86de085bc0c08fb65e3b3538617ad2"><code>8936a39</code></a>
build(deps-dev): bump braces from 3.0.2 to 3.0.3 in
/examples/ts-only</li>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/1fe200a55f8387db1e2aecdc110d0ddc14d96ba0"><code>1fe200a</code></a>
build(deps): Update dependency <code>@​babel/core</code> to ^7.24.9</li>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/71d1ec3e394a8ee67a463f73602af5a0507b6d01"><code>71d1ec3</code></a>
build(deps): Update dependency <code>@​testing-library/dom</code> to
^10.3.2</li>
<li><a
href="https://github.com/kulshekhar/ts-jest/commit/06567f2aa40e5b8a7441e038e2f366e0f8a9071c"><code>06567f2</code></a>
build(deps-dev): bump braces from 3.0.2 to 3.0.3 in
/e2e/native-esm-ts</li>
<li>Additional commits viewable in <a
href="https://github.com/kulshekhar/ts-jest/compare/v29.1.5...v29.2.3">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: OmarTawfik <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant