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 minor-and-patch-updates group with 20 updates #4

Conversation

dependabot[bot]
Copy link

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

Bumps the minor-and-patch-updates group with 20 updates:

Package From To
jose 5.6.3 5.8.0
@babel/preset-env 7.25.3 7.25.4
@playwright/test 1.45.3 1.46.1
@storybook/addon-essentials 8.2.7 8.2.9
@storybook/addon-interactions 8.2.7 8.2.9
@storybook/addon-links 8.2.7 8.2.9
@storybook/blocks 8.2.7 8.2.9
@storybook/react 8.2.7 8.2.9
@storybook/react-webpack5 8.2.7 8.2.9
@storybook/test 8.2.7 8.2.9
@testing-library/jest-dom 6.4.8 6.5.0
@testing-library/react 16.0.0 16.0.1
@types/node 22.0.2 22.5.1
@types/react 18.3.3 18.3.5
eslint-plugin-prettier 5.1.3 5.2.1
husky 9.1.4 9.1.5
lint-staged 15.2.7 15.2.9
next 14.2.5 14.2.7
storybook 8.2.7 8.2.9
tsx 4.16.5 4.19.0

Updates jose from 5.6.3 to 5.8.0

Release notes

Sourced from jose's releases.

v5.8.0

Features

  • add subpath module exports (72ecff6)

Refactor

  • omit LocalJWKSet export since it's no longer needed for RemoteJWKSet (c502731)

v5.7.0

Features

  • graduate jwksCache to stable API (0f09c12)
Changelog

Sourced from jose's changelog.

5.8.0 (2024-08-26)

Features

  • add subpath module exports (72ecff6)

Refactor

  • omit LocalJWKSet export since it's no longer needed for RemoteJWKSet (c502731)

5.7.0 (2024-08-19)

Features

  • graduate jwksCache to stable API (0f09c12)
Commits
  • 283a540 chore(release): 5.8.0
  • 72ecff6 feat: add subpath module exports
  • c502731 refactor: omit LocalJWKSet export since it's no longer needed for RemoteJWKSet
  • 32993ca chore: bump dev deps
  • 8916c26 build(deps-dev): bump edge-runtime from 3.0.1 to 3.0.2 (#705)
  • ab1ce26 chore: cleanup after release
  • 5c673b1 chore(release): 5.7.0
  • 0f09c12 feat: graduate jwksCache to stable API
  • 5f79674 chore: bump dev deps
  • 86a77c4 chore: bump dev deps
  • Additional commits viewable in compare view

Updates @babel/preset-env from 7.25.3 to 7.25.4

Release notes

Sourced from @​babel/preset-env's releases.

v7.25.4 (2024-08-22)

🐛 Bug Fix

💅 Polish

  • babel-generator, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties, babel-plugin-transform-destructuring, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-methods, babel-plugin-transform-private-property-in-object, babel-plugin-transform-typescript, babel-runtime-corejs2, babel-runtime, babel-traverse
  • babel-generator, babel-plugin-transform-class-properties
  • babel-generator, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-transform-object-rest-spread

🔬 Output optimization

Committers: 4

Changelog

Sourced from @​babel/preset-env's changelog.

v7.25.4 (2024-08-22)

🐛 Bug Fix

💅 Polish

  • babel-generator, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties, babel-plugin-transform-destructuring, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-methods, babel-plugin-transform-private-property-in-object, babel-plugin-transform-typescript, babel-runtime-corejs2, babel-runtime, babel-traverse
  • babel-generator, babel-plugin-transform-class-properties
  • babel-generator, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-transform-object-rest-spread

🔬 Output optimization

Commits

Updates @playwright/test from 1.45.3 to 1.46.1

Release notes

Sourced from @​playwright/test's releases.

v1.46.1

Highlights

microsoft/playwright#32004 - [REGRESSION]: Client Certificates don't work with Microsoft IIS microsoft/playwright#32004 - [REGRESSION]: Websites stall on TLS handshake errors when using Client Certificates microsoft/playwright#32146 - [BUG]: Credential scanners warn about internal socks-proxy TLS certificates microsoft/playwright#32056 - [REGRESSION]: 1.46.0 (TypeScript) - custom fixtures extend no longer chainable microsoft/playwright#32070 - [Bug]: --only-changed flag and project dependencies microsoft/playwright#32188 - [Bug]: --only-changed with shallow clone throws "unknown revision" error

Browser Versions

  • Chromium 128.0.6613.18
  • Mozilla Firefox 128.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 127
  • Microsoft Edge 127

v1.46.0

TLS Client Certificates

Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.

When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates.

The following snippet sets up a client certificate for https://example.com:

import { defineConfig } from '@playwright/test';
export default defineConfig({
// ...
use: {
clientCertificates: [{
origin: 'https://example.com',
certPath: './cert.pem',
keyPath: './key.pem',
passphrase: 'mysecretpassword',
}],
},
// ...
});

You can also provide client certificates to a particular test project or as a parameter of browser.newContext() and apiRequest.newContext().

--only-changed cli option

New CLI option --only-changed allows to only run test files that have been changed since the last git commit or from a specific git "ref".

... (truncated)

Commits
  • e1c861c cherry-pick(#32021): test: fix failing client-certificate tests
  • 20b0788 chore: mark v1.46.1 (#32194)
  • 57c3240 cherry-pick(#32192): chore: generate self-signed certificates for socks proxy
  • 301f179 cherry-pick(#32189): fix(only-changed): show nice error message about shallow...
  • b2d6a09 cherry-pick(#32164): docs: release video and trace viewer video (#32173)
  • 7cf7aec cherry-pick(#32094): fix(test runner): run project dependencies of `--only-ch...
  • d78ae01 cherry-pick(#32163): fix(client-certificates): stall on tls handshake errors
  • bd13da4 cherry-pick(#32155): fix(client-certificates): when server does tls renegotia...
  • 30684a7 cherry-pick(#32066): fix(types): revert type changes made to support TS 5.5 (...
  • 5e68061 cherry-pick(#32015): docs(release-notes): fix typo in .NET release notes
  • Additional commits viewable in compare view

Updates @storybook/addon-essentials from 8.2.7 to 8.2.9

Release notes

Sourced from @​storybook/addon-essentials's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Changelog

Sourced from @​storybook/addon-essentials's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Commits
  • 95d8beb Bump version from "8.2.8" to "8.2.9" [skip ci]
  • 2faeae2 Bump version from "8.2.7" to "8.2.8" [skip ci]
  • See full diff in compare view

Updates @storybook/addon-interactions from 8.2.7 to 8.2.9

Release notes

Sourced from @​storybook/addon-interactions's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Changelog

Sourced from @​storybook/addon-interactions's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Commits
  • 95d8beb Bump version from "8.2.8" to "8.2.9" [skip ci]
  • 2faeae2 Bump version from "8.2.7" to "8.2.8" [skip ci]
  • See full diff in compare view

Updates @storybook/addon-links from 8.2.7 to 8.2.9

Release notes

Sourced from @​storybook/addon-links's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Changelog

Sourced from @​storybook/addon-links's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Commits
  • 95d8beb Bump version from "8.2.8" to "8.2.9" [skip ci]
  • 2faeae2 Bump version from "8.2.7" to "8.2.8" [skip ci]
  • See full diff in compare view

Updates @storybook/blocks from 8.2.7 to 8.2.9

Release notes

Sourced from @​storybook/blocks's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Changelog

Sourced from @​storybook/blocks's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Commits
  • 95d8beb Bump version from "8.2.8" to "8.2.9" [skip ci]
  • 2faeae2 Bump version from "8.2.7" to "8.2.8" [skip ci]
  • See full diff in compare view

Updates @storybook/react from 8.2.7 to 8.2.9

Release notes

Sourced from @​storybook/react's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Changelog

Sourced from @​storybook/react's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Commits
  • 95d8beb Bump version from "8.2.8" to "8.2.9" [skip ci]
  • 2faeae2 Bump version from "8.2.7" to "8.2.8" [skip ci]
  • See full diff in compare view

Updates @storybook/react-webpack5 from 8.2.7 to 8.2.9

Release notes

Sourced from @​storybook/react-webpack5's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Changelog

Sourced from @​storybook/react-webpack5's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Commits
  • 95d8beb Bump version from "8.2.8" to "8.2.9" [skip ci]
  • 2faeae2 Bump version from "8.2.7" to "8.2.8" [skip ci]
  • See full diff in compare view

Updates @storybook/test from 8.2.7 to 8.2.9

Release notes

Sourced from @​storybook/test's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Changelog

Sourced from @​storybook/test's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Commits
  • 95d8beb Bump version from "8.2.8" to "8.2.9" [skip ci]
  • 2faeae2 Bump version from "8.2.7" to "8.2.8" [skip ci]
  • See full diff in compare view

Updates @testing-library/jest-dom from 6.4.8 to 6.5.0

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.5.0

6.5.0 (2024-08-23)

Features

  • toHaveValue: Asserting aria-valuenow (#479) (acbf416)
Commits
  • 62f0e3a docs: add waynevanson as a contributor for code, and test (#626)
  • acbf416 feat(toHaveValue): Asserting aria-valuenow (#479)
  • 47a667c docs: add vorant94 as a contributor for code (#619)
  • 06d19ba adjust vitest ambient declaration file according to vitest docs (#612)
  • a073b08 docs: add aleks-elkin as a contributor for maintenance (#618)
  • aa094a5 chore: remove unused @​babel/runtime dependency (#617)
  • See full diff in compare view

Updates @testing-library/react from 16.0.0 to 16.0.1

Release notes

Sourced from @​testing-library/react's releases.

v16.0.1

16.0.1 (2024-08-29)

Bug Fixes

  • Add support for exactOptionalPropertyTypes in TypeScript (#1351) (3dcd8a9)
Commits

Updates @types/node from 22.0.2 to 22.5.1

Commits

Updates @types/react from 18.3.3 to 18.3.5

Commits

Updates eslint-plugin-prettier from 5.1.3 to 5.2.1

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.2.1

Patch Changes

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.2.1

Patch Changes

5.2.0

Minor Changes

Commits
  • 51324d9 chore: fix CHANGELOG.md formatting issue
  • 24288c7 chore: release eslint-plugin-prettier (#669)
  • ac036cc build(deps): Bump synckit from 0.8.6 to 0.9.1 (#668)
  • a1e6f4a build(deps): Bump braces from 3.0.2 to 3.0.3 (#665)
  • de9751c build(deps): Bump pnpm/action-setup from 2 to 4 in the actions group (#661)
  • 02c21a5 chore: release eslint-plugin-prettier (#653)
  • f170011 feat: support parsing html via @html-eslint/parser natively (#652)
  • See full diff in compare view

Updates husky from 9.1.4 to 9.1.5

Release notes

Sourced from husky's releases.

v9.1.5

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.4...v9.1.5

Commits

Updates lint-staged from 15.2.7 to 15.2.9

Release notes

Sourced from lint-staged's releases.

v15.2.9

Patch Changes

  • #1463 b69ce2d Thanks @​iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.

v15.2.8

Patch Changes

  • f0480f0 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version switched the --show-toplevel flag with --show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.js child_process. The new flag returns a path relative to the working directory, avoiding the issue.

    The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.

Changelog

Sourced from lint-staged's changelog.

15.2.9

Patch Changes

  • #1463 b69ce2d Thanks @​iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.

15.2.8

Patch Changes

  • f0480f0 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version switched the --show-toplevel flag with --show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.js child_process. The new flag returns a path relative to the working directory, avoiding the issue.

    The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.

Commits

Updates next from 14.2.5 to 14.2.7

Release notes

Sourced from next's releases.

v14.2.7

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Revert "chore: externalize undici for bundling" (#65727)
  • Refactor internal routing headers to use request meta (#66987)
  • fix(next): add cross origin in react dom preload (#67423)
  • build: upgrade edge-runtime (#67565)
  • GTM dataLayer parameter should take an object, not an array of strings (#66339)
  • fix: properly patch lockfile against swc bindings (#66515)
  • Add deployment id header for rsc payload if present (#67255)
  • Update font data (#68639)
  • fix i18n data pathname resolving (#68947)
  • pages router: ensure x-middleware-cache is respected (#67734)
  • Fix bad modRequest in flight entry manifest #68888
  • Reject next image urls in image optimizer #68628
  • Fix hmr assetPrefix escaping and reuse logic from other files #67983

Credits

Huge thanks to @​kjugi, @​huozhi, @​ztanner, @​SukkaW, @​marlier, @​Kikobeats, @​syi0808, @​ijjk, and @​samcx for helping!

v14.2.6

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Ensure fetch cache TTL is updated properly (#69164)
Commits

Updates storybook from 8.2.7 to 8.2.9

Release notes

Sourced from storybook's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Changelog

Sourced from storybook's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!
Co...

Description has been truncated

Bumps the minor-and-patch-updates group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [jose](https://github.com/panva/jose) | `5.6.3` | `5.8.0` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.25.3` | `7.25.4` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.45.3` | `1.46.1` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.2.7` | `8.2.9` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.2.7` | `8.2.9` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.2.7` | `8.2.9` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.2.7` | `8.2.9` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.2.7` | `8.2.9` |
| [@storybook/react-webpack5](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-webpack5) | `8.2.7` | `8.2.9` |
| [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.2.7` | `8.2.9` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.8` | `6.5.0` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.0.0` | `16.0.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.0.2` | `22.5.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.3` | `18.3.5` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.1.3` | `5.2.1` |
| [husky](https://github.com/typicode/husky) | `9.1.4` | `9.1.5` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.7` | `15.2.9` |
| [next](https://github.com/vercel/next.js) | `14.2.5` | `14.2.7` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.2.7` | `8.2.9` |
| [tsx](https://github.com/privatenumber/tsx) | `4.16.5` | `4.19.0` |


Updates `jose` from 5.6.3 to 5.8.0
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
- [Commits](panva/jose@v5.6.3...v5.8.0)

Updates `@babel/preset-env` from 7.25.3 to 7.25.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.4/packages/babel-preset-env)

Updates `@playwright/test` from 1.45.3 to 1.46.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.45.3...v1.46.1)

Updates `@storybook/addon-essentials` from 8.2.7 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/addons/essentials)

Updates `@storybook/addon-interactions` from 8.2.7 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/addons/interactions)

Updates `@storybook/addon-links` from 8.2.7 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/addons/links)

Updates `@storybook/blocks` from 8.2.7 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/lib/blocks)

Updates `@storybook/react` from 8.2.7 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/renderers/react)

Updates `@storybook/react-webpack5` from 8.2.7 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/frameworks/react-webpack5)

Updates `@storybook/test` from 8.2.7 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/lib/test)

Updates `@testing-library/jest-dom` from 6.4.8 to 6.5.0
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.4.8...v6.5.0)

Updates `@testing-library/react` from 16.0.0 to 16.0.1
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.0.0...v16.0.1)

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

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

Updates `eslint-plugin-prettier` from 5.1.3 to 5.2.1
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.1.3...v5.2.1)

Updates `husky` from 9.1.4 to 9.1.5
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.4...v9.1.5)

Updates `lint-staged` from 15.2.7 to 15.2.9
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.7...v15.2.9)

Updates `next` from 14.2.5 to 14.2.7
- [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.2.5...v14.2.7)

Updates `storybook` from 8.2.7 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/lib/cli)

Updates `tsx` from 4.16.5 to 4.19.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.16.5...v4.19.0)

---
updated-dependencies:
- dependency-name: jose
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@storybook/react-webpack5"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@storybook/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: next
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: tsx
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 1, 2024
Copy link

vercel bot commented Sep 1, 2024

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

Name Status Preview Comments Updated (UTC)
next-protect ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 1, 2024 6:49am

Copy link
Author

dependabot bot commented on behalf of github Oct 1, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 1, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/master/minor-and-patch-updates-f70995e3d4 branch October 1, 2024 06:16
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.

0 participants