Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 3, 2025

Bumps the patches-and-minors group with 9 updates in the / directory:

Package From To
jose 6.1.2 6.1.3
@storybook/builder-vite 10.1.2 10.1.4
@storybook/react-vite 10.1.2 10.1.4
cypress 15.7.0 15.7.1
prettier 3.7.1 3.7.4
react 19.2.0 19.2.1
react-dom 19.2.0 19.2.1
storybook 10.1.2 10.1.4
typescript-eslint 8.48.0 8.48.1

Updates jose from 6.1.2 to 6.1.3

Release notes

Sourced from jose's releases.

v6.1.3

Refactor

  • avoid export * as for google closure's compiler sake (6303d98), closes #832
Changelog

Sourced from jose's changelog.

6.1.3 (2025-12-02)

Refactor

  • avoid export * as for google closure's compiler sake (6303d98), closes #832
Commits
  • ebb8774 chore(release): 6.1.3
  • 6303d98 refactor: avoid export * as for google closure's compiler sake
  • 39c8805 chore: bump packages
  • cf5726e chore: update error message
  • 0154775 chore: update threat model
  • d015cdf chore: add a threat model
  • c5e285e chore: bump packages
  • d681315 chore: bump packages
  • 4ae1005 chore(deps-dev): bump glob from 11.0.3 to 11.1.0 (#831)
  • aaedc25 chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 (#830)
  • Additional commits viewable in compare view

Updates @storybook/builder-vite from 10.1.2 to 10.1.4

Release notes

Sourced from @​storybook/builder-vite's releases.

v10.1.4

10.1.4

v10.1.3

10.1.3

Changelog

Sourced from @​storybook/builder-vite's changelog.

10.1.4

10.1.3

Commits
  • d4c96a3 Bump version from "10.1.3" to "10.1.4" [skip ci]
  • e8a8c45 Bump version from "10.1.2" to "10.1.3" [skip ci]
  • See full diff in compare view

Updates @storybook/react-vite from 10.1.2 to 10.1.4

Release notes

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

v10.1.4

10.1.4

v10.1.3

10.1.3

Changelog

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

10.1.4

10.1.3

Commits
  • d4c96a3 Bump version from "10.1.3" to "10.1.4" [skip ci]
  • e8a8c45 Bump version from "10.1.2" to "10.1.3" [skip ci]
  • See full diff in compare view

Updates cypress from 15.7.0 to 15.7.1

Release notes

Sourced from cypress's releases.

v15.7.1

Changelog: https://docs.cypress.io/app/references/changelog#15-7-1

Commits
  • 3147e30 chore: release 15.7.1 (#33049)
  • 2e089af dependency: update dependency flat to 5.0.2 and yargs-unparser to 1.6.4 (#33048)
  • 7b46b9b fix: concurrent cy.prompt() and Studio bundle download issues (#33034)
  • b04adc5 chore(deps): update dependency @​types/tar to ^6.1.13 (#33037)
  • 373001c chore(deps): update dependency @​types/supertest to v2.0.16 (#33036)
  • c557d14 chore: updating v8 snapshot cache (#33039)
  • 409be53 chore: updating v8 snapshot cache (#33040)
  • a841447 chore: updating v8 snapshot cache (#33038)
  • 9ea0521 chore(deps): update dependency @​types/server-destroy to ^1.0.4 (#33033)
  • 3ea4bf6 chore(deps): update dependency @​types/request-promise to v4.1.51 (#33031)
  • Additional commits viewable in compare view

Updates prettier from 3.7.1 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits

Updates react from 19.2.0 to 19.2.1

Release notes

Sourced from react's releases.

19.2.1 (December 3rd, 2025)

React Server Components

Changelog

Sourced from react's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

Commits

Updates react-dom from 19.2.0 to 19.2.1

Release notes

Sourced from react-dom's releases.

19.2.1 (December 3rd, 2025)

React Server Components

Changelog

Sourced from react-dom's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

Commits

Updates storybook from 10.1.2 to 10.1.4

Release notes

Sourced from storybook's releases.

v10.1.4

10.1.4

v10.1.3

10.1.3

Changelog

Sourced from storybook's changelog.

10.1.4

10.1.3

Commits
  • d4c96a3 Bump version from "10.1.3" to "10.1.4" [skip ci]
  • cbdb48b Merge pull request #33260 from storybookjs/valentin/fix-prettier-type
  • 980daaa Merge pull request #33247 from storybookjs/valentin/fix-telemetry-metadata-ca...
  • e8a8c45 Bump version from "10.1.2" to "10.1.3" [skip ci]
  • 907cdfc Merge pull request #33212 from storybookjs/valentin/angular-loglevel-logfile-...
  • e9ffbe5 Merge pull request #33218 from storybookjs/minor-ui-fixes
  • 704cfae Merge pull request #33229 from storybookjs/valentin/add-init-step-playwright-...
  • See full diff in compare view

Updates typescript-eslint from 8.48.0 to 8.48.1

Release notes

Sourced from typescript-eslint's releases.

v8.48.1

8.48.1 (2025-12-02)

⏪ Reverts

  • eslint-plugin: revert "[no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)" (#11812)

🩹 Fixes

  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.48.1 (2025-12-02)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

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

Bumps the patches-and-minors group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [jose](https://github.com/panva/jose) | `6.1.2` | `6.1.3` |
| [@storybook/builder-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/builders/builder-vite) | `10.1.2` | `10.1.4` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.1.2` | `10.1.4` |
| [cypress](https://github.com/cypress-io/cypress) | `15.7.0` | `15.7.1` |
| [prettier](https://github.com/prettier/prettier) | `3.7.1` | `3.7.4` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.1` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.0` | `19.2.1` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.1.2` | `10.1.4` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.48.0` | `8.48.1` |



Updates `jose` from 6.1.2 to 6.1.3
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
- [Commits](panva/jose@v6.1.2...v6.1.3)

Updates `@storybook/builder-vite` from 10.1.2 to 10.1.4
- [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/v10.1.4/code/builders/builder-vite)

Updates `@storybook/react-vite` from 10.1.2 to 10.1.4
- [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/v10.1.4/code/frameworks/react-vite)

Updates `cypress` from 15.7.0 to 15.7.1
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v15.7.0...v15.7.1)

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

Updates `react` from 19.2.0 to 19.2.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.1/packages/react)

Updates `react-dom` from 19.2.0 to 19.2.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.1/packages/react-dom)

Updates `storybook` from 10.1.2 to 10.1.4
- [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/v10.1.4/code/core)

Updates `typescript-eslint` from 8.48.0 to 8.48.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.1/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: jose
  dependency-version: 6.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches-and-minors
- dependency-name: "@storybook/builder-vite"
  dependency-version: 10.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches-and-minors
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches-and-minors
- dependency-name: cypress
  dependency-version: 15.7.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches-and-minors
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches-and-minors
- dependency-name: react
  dependency-version: 19.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches-and-minors
- dependency-name: react-dom
  dependency-version: 19.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches-and-minors
- dependency-name: storybook
  dependency-version: 10.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches-and-minors
- dependency-name: typescript-eslint
  dependency-version: 8.48.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches-and-minors
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 3, 2025
@github-actions github-actions bot enabled auto-merge December 3, 2025 20:03
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 4, 2025

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

@dependabot dependabot bot closed this Dec 4, 2025
auto-merge was automatically disabled December 4, 2025 20:03

Pull request was closed

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/patches-and-minors-7590f040ac branch December 4, 2025 20:03
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant