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

chore(deps): bump the kitchen-sink-example-dependencies group in /examples/kitchen-sink with 23 updates #7611

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 4, 2024

Bumps the kitchen-sink-example-dependencies group in /examples/kitchen-sink with 23 updates:

Package From To
prettier 3.1.1 3.2.5
turbo 1.12.1 1.12.4
@types/react 18.2.46 18.2.62
@types/react-dom 18.2.18 18.2.19
vite 5.0.10 5.1.4
express 4.18.2 4.18.3
@types/jest 29.5.11 29.5.12
@types/node 20.10.6 20.11.24
supertest 6.3.3 6.3.4
tsup 8.0.1 8.0.2
@remix-run/node 2.4.1 2.8.0
@remix-run/react 2.4.1 2.8.0
@remix-run/serve 2.4.1 2.8.0
@remix-run/server-runtime 2.4.1 2.8.0
@vercel/analytics 1.1.1 1.2.2
@remix-run/dev 2.4.1 2.8.0
next 14.0.4 14.1.1
@next/eslint-plugin-next 14.0.4 14.1.1
@vercel/style-guide 5.1.0 5.2.0
eslint-config-turbo 1.11.3 1.12.4
eslint-plugin-mdx 2.3.2 3.1.5
eslint-plugin-storybook 0.6.15 0.8.0
ts-jest 29.1.1 29.1.2

Updates prettier from 3.1.1 to 3.2.5

Release notes

Sourced from prettier's releases.

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.2.5

diff

Support Angular inline styles as single template literal (#15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}
// Prettier 3.2.4
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}
// Prettier 3.2.5
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}

Unexpected embedded formatting for Angular template (#15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";
@​Component({
[template]: &lt;h1&gt;{{       hello }}&lt;/h1&gt;,
})
export class AppComponent {}
</tr></table>

... (truncated)

Commits

Updates turbo from 1.12.1 to 1.12.4

Release notes

Sourced from turbo's releases.

Turborepo v1.12.4

What's Changed

Docs

create-turbo

@​turbo/repository - ⚠️ Alpha - Expect Breaking Changes

Changelog

... (truncated)

Commits
  • af256d1 publish 1.12.4 to registry
  • 5dbce38 add support for dynamic requests in require() and import() (#7153)
  • 253c785 dedupe resolving independent on reference type (#7349)
  • ac23620 avoid resolving recursive main field (#7347)
  • d4ccb0b fix: avoid grouping logs from tasks which ended in error (#7335)
  • c5182b3 build: Update swc_core to v0.90.8 (#7362)
  • 7377610 chore(turbo): remove EXPERIMENTAL_RUST_CODEPATH env var (#7375)
  • 3de0f28 chore(turbo): delete unused fixture in cli directory (#7376)
  • 46cb4d2 chore(turbo): rename workspace -> package in PackageGraph module (#7372)
  • 2e9eed4 fix(@​turbo/repository): fix breaking API changes from turbo core (#7373)
  • Additional commits viewable in compare view

Updates @types/react from 18.2.46 to 18.2.62

Commits

Updates @types/react-dom from 18.2.18 to 18.2.19

Commits

Updates vite from 5.0.10 to 5.1.4

Release notes

Sourced from vite's releases.

create-vite@5.1.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.1.4 (2024-02-21)

5.1.3 (2024-02-15)

5.1.2 (2024-02-14)

5.1.1 (2024-02-09)

5.1.0 (2024-02-08)

Vite 5.1 is out! Read the announcement blog post at https://vitejs.dev/blog/announcing-vite5-1!

... (truncated)

Commits
  • 0137ea0 release: v5.1.4
  • 8dc1b73 perf: remove unnecessary regex s modifier (#15766)
  • 4fe971f fix: resolve directory correctly when fs.cachedChecks: true (#15983)
  • 1d263d3 fix(watch): build watch fails when outDir is empty string (#15979)
  • 81b3bd0 fix: srcSet with optional descriptor (#15905)
  • 571a3fd fix(deps): update all non-major dependencies (#15959)
  • 8b11fea fix: fs cached checks disabled by default for yarn pnp (#15920)
  • bf39527 release: v5.1.3
  • 5099028 fix: cachedTransformMiddleware for direct css requests (#15919)
  • 4172f02 refactor(runtime): seal ES module namespace object instead of feezing (#15914)
  • Additional commits viewable in compare view

Updates express from 4.18.2 to 4.18.3

Release notes

Sourced from express's releases.

4.18.3

Main Changes

  • Fix routing requests without method
  • deps: body-parser@1.20.2
    • Fix strict json error message on Node.js 19+
    • deps: content-type@~1.0.5
    • deps: raw-body@2.5.2

Other Changes

New Contributors

Full Changelog: expressjs/express@4.18.2...4.18.3

Changelog

Sourced from express's changelog.

4.18.3 / 2024-02-26

  • Fix routing requests without method
  • deps: body-parser@1.20.2
    • Fix strict json error message on Node.js 19+
    • deps: content-type@~1.0.5
    • deps: raw-body@2.5.2
Commits
  • 1b51eda 4.18.3
  • b625132 build: pin Node 21.x to minor
  • e3eca80 build: pin Node 21.x to minor
  • 23b44b3 build: support Node.js 21.6.2
  • b9fea12 build: support Node.js 21.x in appveyor
  • c259c34 build: support Node.js 21.x
  • fdeb1d3 build: support Node.js 20.x in appveyor
  • 734b281 build: support Node.js 20.x
  • 0e3ab6e examples: improve view count in cookie-sessions
  • 59af63a build: Node.js@18.19
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ulisesgascon, a new releaser for express since your current version.


Updates @types/jest from 29.5.11 to 29.5.12

Commits

Updates @types/node from 20.10.6 to 20.11.24

Commits

Updates supertest from 6.3.3 to 6.3.4

Release notes

Sourced from supertest's releases.

v6.3.4

  • chore: bump deps, remove yarn.lock bc4398a
  • chore: bump deps c823515
  • Merge pull request #811 from ladjs/dependabot/npm_and_yarn/cookiejar-2.1.4 37017b3
  • Merge pull request #814 from siddtheone/patch-1 6b41374
  • Merge pull request #828 from 9renpoto/9renpoto-patch-1 0ff9c02
  • si/visionmedia/ladjs/ 2cba6d4
  • Update package.json 79a69b6
  • Merge pull request #821 from yunnysunny/feature/ci-fix c1b8f9d
  • ci: fix broken github action cache saving 5d48749
  • Merge pull request #818 from lamweili/patch-1 25920e7
  • docs: fixed links (for #621) 3767f9e
  • Update README.md b81d3a4
  • Removing unused import 4b372eb
  • chore(deps): bump cookiejar from 2.1.3 to 2.1.4 ac9327f
  • Merge pull request #646 from dtom90/patch-1 44d5d72
  • Merge pull request #621 from RichieRunner/patch-1 d91ff37
  • Update index.js function definition 9ee6a1b
  • Update README.md 13a2b44

ladjs/supertest@v6.3.3...v6.3.4

Commits
  • fd571c8 6.3.4
  • bc4398a chore: bump deps, remove yarn.lock
  • c823515 chore: bump deps
  • 37017b3 Merge pull request #811 from ladjs/dependabot/npm_and_yarn/cookiejar-2.1.4
  • 6b41374 Merge pull request #814 from siddtheone/patch-1
  • 0ff9c02 Merge pull request #828 from 9renpoto/9renpoto-patch-1
  • 2cba6d4 si/visionmedia/ladjs/
  • 79a69b6 Update package.json
  • c1b8f9d Merge pull request #821 from yunnysunny/feature/ci-fix
  • 5d48749 ci: fix broken github action cache saving
  • Additional commits viewable in compare view

Updates tsup from 8.0.1 to 8.0.2

Release notes

Sourced from tsup's releases.

v8.0.2

8.0.2 (2024-02-10)

Bug Fixes

Commits

Updates @remix-run/node from 2.4.1 to 2.8.0

Release notes

Sourced from @​remix-run/node's releases.

v2.8.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v280

v2.7.2

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v272

v2.7.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v271

v2.7.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v270

v2.6.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v260

v2.5.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v251

v2.5.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v250

Changelog

Sourced from @​remix-run/node's changelog.

2.8.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.8.0

2.7.2

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.2

2.7.1

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.1

2.7.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.0

2.6.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.6.0

2.5.1

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.5.1

2.5.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.5.0
Commits

Updates @remix-run/react from 2.4.1 to 2.8.0

Release notes

Sourced from @​remix-run/react's releases.

v2.8.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v280

v2.7.2

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v272

v2.7.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v271

v2.7.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v270

v2.6.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v260

v2.5.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v251

v2.5.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v250

Changelog

Sourced from @​remix-run/react's changelog.

2.8.0

Patch Changes

  • Fix the default root ErrorBoundary component so it leverages the user-provided Layout component (#8859)
  • Fix the default root HydrateFallback component so it leverages any user-provided Layout component (#8892)
  • Ensure @remix-run/react re-exports everything from react-router-dom for SPA mode (#8929)
  • Updated dependencies:
    • @remix-run/server-runtime@2.8.0

2.7.2

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.2

2.7.1

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.7.1

2.7.0

Minor Changes

  • Allow an optional Layout export from the root route (#8709)
  • Vite: Add a new basename option to the Vite plugin, allowing users to set the internal React Router basename in order to to serve their applications underneath a subpath (#8145)

Patch Changes

  • Fix a bug with SPA mode when the root route had no children (#8747)
  • Updated dependencies:
    • @remix-run/server-runtime@2.7.0

2.6.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.6.0

2.5.1

Patch Changes

  • Only use active matches in <Meta>/<Links> in SPA mode (#8538)
  • Remove leftover unstable_ prefix from Blocker/BlockerFunction types (#8530)

... (truncated)

Commits

Updates @remix-run/serve from 2.4.1 to 2.8.0

Release notes

Sourced from @​remix-run/serve's releases.

v2.8.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v280

v2.7.2

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v272

v2.7.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v271

v2.7.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v270

v2.6.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v260

v2.5.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v251

v2.5.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v250

Changelog

Sourced from @​remix-run/serve's changelog.

2.8.0

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.8.0
    • @remix-run/node@2.8.0

2.7.2

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.7.2
    • @remix-run/node@2.7.2

2.7.1

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.7.1
    • @remix-run/node@2.7.1

2.7.0

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.7.0
    • @remix-run/node@2.7.0

2.6.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@2.6.0
    • @remix-run/express@2.6.0

2.5.1

Patch Changes

  • Updated dependencies:
    • @remix-run/express@2.5.1
    • @remix-run/node@2.5.1

2.5.0

... (truncated)

Commits

Updates @remix-run/server-runtime from 2.4.1 to 2.8.0

...

Description has been truncated

Bumps the kitchen-sink-example-dependencies group in /examples/kitchen-sink with 23 updates:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.1.1` | `3.2.5` |
| [turbo](https://github.com/vercel/turbo) | `1.12.1` | `1.12.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.46` | `18.2.62` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.18` | `18.2.19` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.0.10` | `5.1.4` |
| [express](https://github.com/expressjs/express) | `4.18.2` | `4.18.3` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.11` | `29.5.12` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.10.6` | `20.11.24` |
| [supertest](https://github.com/ladjs/supertest) | `6.3.3` | `6.3.4` |
| [tsup](https://github.com/egoist/tsup) | `8.0.1` | `8.0.2` |
| [@remix-run/node](https://github.com/remix-run/remix/tree/HEAD/packages/remix-node) | `2.4.1` | `2.8.0` |
| [@remix-run/react](https://github.com/remix-run/remix/tree/HEAD/packages/remix-react) | `2.4.1` | `2.8.0` |
| [@remix-run/serve](https://github.com/remix-run/remix/tree/HEAD/packages/remix-serve) | `2.4.1` | `2.8.0` |
| [@remix-run/server-runtime](https://github.com/remix-run/remix/tree/HEAD/packages/remix-server-runtime) | `2.4.1` | `2.8.0` |
| [@vercel/analytics](https://github.com/vercel/analytics/tree/HEAD/packages/web) | `1.1.1` | `1.2.2` |
| [@remix-run/dev](https://github.com/remix-run/remix/tree/HEAD/packages/remix-dev) | `2.4.1` | `2.8.0` |
| [next](https://github.com/vercel/next.js) | `14.0.4` | `14.1.1` |
| [@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next) | `14.0.4` | `14.1.1` |
| [@vercel/style-guide](https://github.com/vercel/style-guide) | `5.1.0` | `5.2.0` |
| [eslint-config-turbo](https://github.com/vercel/turbo/tree/HEAD/packages/eslint-config-turbo) | `1.11.3` | `1.12.4` |
| [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) | `2.3.2` | `3.1.5` |
| [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook) | `0.6.15` | `0.8.0` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.1` | `29.1.2` |


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

Updates `turbo` from 1.12.1 to 1.12.4
- [Release notes](https://github.com/vercel/turbo/releases)
- [Changelog](https://github.com/vercel/turbo/blob/main/release.md)
- [Commits](v1.12.1...v1.12.4)

Updates `@types/react` from 18.2.46 to 18.2.62
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-dom` from 18.2.18 to 18.2.19
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `vite` from 5.0.10 to 5.1.4
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.1.4/packages/vite)

Updates `express` from 4.18.2 to 4.18.3
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.18.2...4.18.3)

Updates `@types/jest` from 29.5.11 to 29.5.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

Updates `@types/node` from 20.10.6 to 20.11.24
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `supertest` from 6.3.3 to 6.3.4
- [Release notes](https://github.com/ladjs/supertest/releases)
- [Commits](ladjs/supertest@v6.3.3...v6.3.4)

Updates `tsup` from 8.0.1 to 8.0.2
- [Release notes](https://github.com/egoist/tsup/releases)
- [Changelog](https://github.com/egoist/tsup/blob/dev/.releaserc.json)
- [Commits](egoist/tsup@v8.0.1...v8.0.2)

Updates `@remix-run/node` from 2.4.1 to 2.8.0
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-node/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/node@2.8.0/packages/remix-node)

Updates `@remix-run/react` from 2.4.1 to 2.8.0
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-react/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/react@2.8.0/packages/remix-react)

Updates `@remix-run/serve` from 2.4.1 to 2.8.0
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-serve/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/serve@2.8.0/packages/remix-serve)

Updates `@remix-run/server-runtime` from 2.4.1 to 2.8.0
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-server-runtime/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/server-runtime@2.8.0/packages/remix-server-runtime)

Updates `@vercel/analytics` from 1.1.1 to 1.2.2
- [Release notes](https://github.com/vercel/analytics/releases)
- [Commits](https://github.com/vercel/analytics/commits/1.2.2/packages/web)

Updates `@remix-run/dev` from 2.4.1 to 2.8.0
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-dev/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/dev@2.8.0/packages/remix-dev)

Updates `next` from 14.0.4 to 14.1.1
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.0.4...v14.1.1)

Updates `@next/eslint-plugin-next` from 14.0.4 to 14.1.1
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.1.1/packages/eslint-plugin-next)

Updates `@vercel/style-guide` from 5.1.0 to 5.2.0
- [Release notes](https://github.com/vercel/style-guide/releases)
- [Changelog](https://github.com/vercel/style-guide/blob/canary/.releaserc.js)
- [Commits](vercel/style-guide@v5.1.0...v5.2.0)

Updates `eslint-config-turbo` from 1.11.3 to 1.12.4
- [Release notes](https://github.com/vercel/turbo/releases)
- [Changelog](https://github.com/vercel/turbo/blob/main/release.md)
- [Commits](https://github.com/vercel/turbo/commits/v1.12.4/packages/eslint-config-turbo)

Updates `eslint-plugin-mdx` from 2.3.2 to 3.1.5
- [Release notes](https://github.com/mdx-js/eslint-mdx/releases)
- [Changelog](https://github.com/mdx-js/eslint-mdx/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mdx-js/eslint-mdx/compare/eslint-plugin-mdx@2.3.2...eslint-plugin-mdx@3.1.5)

Updates `eslint-plugin-storybook` from 0.6.15 to 0.8.0
- [Release notes](https://github.com/storybookjs/eslint-plugin-storybook/releases)
- [Changelog](https://github.com/storybookjs/eslint-plugin-storybook/blob/main/CHANGELOG.md)
- [Commits](storybookjs/eslint-plugin-storybook@v0.6.15...v0.8.0)

Updates `ts-jest` from 29.1.1 to 29.1.2
- [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.1...v29.1.2)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: turbo
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: express
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: supertest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: tsup
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@remix-run/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@remix-run/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@remix-run/serve"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@remix-run/server-runtime"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@vercel/analytics"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@remix-run/dev"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@next/eslint-plugin-next"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: "@vercel/style-guide"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: eslint-config-turbo
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: eslint-plugin-mdx
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: eslint-plugin-storybook
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: kitchen-sink-example-dependencies
- dependency-name: ts-jest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: kitchen-sink-example-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested review from anthonyshew and a team as code owners March 4, 2024 19:49
@dependabot dependabot bot requested review from tknickman and removed request for a team March 4, 2024 19:49
@dependabot dependabot bot added the area: examples Improvements or additions to examples label Mar 4, 2024
Copy link

vercel bot commented Mar 4, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
examples-kitchensink-blog ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 4, 2024 7:50pm
examples-nonmonorepo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 4, 2024 7:50pm
examples-svelte-web 🔄 Building (Inspect) Visit Preview 💬 Add feedback Mar 4, 2024 7:50pm
7 Ignored Deployments
Name Status Preview Comments Updated (UTC)
examples-basic-web ⬜️ Ignored (Inspect) Visit Preview Mar 4, 2024 7:50pm
examples-designsystem-docs ⬜️ Ignored (Inspect) Visit Preview Mar 4, 2024 7:50pm
examples-gatsby-web ⬜️ Ignored (Inspect) Visit Preview Mar 4, 2024 7:50pm
examples-native-web ⬜️ Ignored (Inspect) Visit Preview Mar 4, 2024 7:50pm
examples-tailwind-web ⬜️ Ignored (Inspect) Visit Preview Mar 4, 2024 7:50pm
examples-vite-web ⬜️ Ignored (Inspect) Visit Preview Mar 4, 2024 7:50pm
rust-docs ⬜️ Ignored (Inspect) Visit Preview Mar 4, 2024 7:50pm

@github-actions github-actions bot merged commit f07566d into dependabot-updates Mar 4, 2024
16 of 22 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/examples/kitchen-sink/dependabot-updates/kitchen-sink-example-dependencies-c67196df41 branch March 4, 2024 19:50
Copy link
Contributor

github-actions bot commented Mar 4, 2024

⚠️ CI failed ⚠️

The following steps have failed in CI:

  • Determining jobs

See workflow summary for details

Copy link
Contributor

github-actions bot commented Mar 4, 2024

🟢 Turbopack Benchmark CI successful 🟢

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: examples Improvements or additions to examples owned-by: turborepo
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant