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

Bump the minor-and-patch group with 8 updates #379

Merged
merged 2 commits into from
Dec 23, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

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

Package From To
@metrostar/comet-uswds 3.6.2 3.7.1
@tanstack/react-query 5.62.7 5.62.8
@uswds/uswds 3.10.0 3.11.0
jotai 2.10.4 2.11.0
react-hook-form 7.54.1 7.54.2
react-router-dom 7.0.2 7.1.0
typescript-eslint 8.18.0 8.18.1
vite 6.0.3 6.0.5

Updates @metrostar/comet-data-viz from 1.1.7 to 1.2.0

Release notes

Sourced from @​metrostar/comet-data-viz's releases.

1.2.0

What's Changed

Full Changelog: MetroStar/comet@1.1.0...1.2.0

Commits

Updates @metrostar/comet-extras from 1.4.2 to 1.5.0

Release notes

Sourced from @​metrostar/comet-extras's releases.

1.5.0

What's Changed

  • CSG-1032: Comet USWDS Components with children should allow rendering of React children or a list of items by @​jbouder in MetroStar/comet#79

Breaking Changes

  • Note: this release includes potential breaking changes for the following components: Accordion, Breadcrumb, ComboBox, ErrorMessages, ProcessList, Select, and SideNavigation.

Full Changelog: MetroStar/comet@1.4.0...1.5.0

Commits

Updates @metrostar/comet-uswds from 3.6.2 to 3.7.1

Release notes

Sourced from @​metrostar/comet-uswds's releases.

3.7.1

What's Changed

Full Changelog: MetroStar/comet@3.7.0...3.7.1

3.7.0

What's Changed

New Contributors

Full Changelog: MetroStar/comet@3.6.2...3.7.0

Commits
  • f806a33 Update comet-uswds to 3.7.1.
  • 806f292 Updating uswds package with dependencies and href
  • eb9a8f0 Update packages with next minor release.
  • 1c61ddb Update peer deps to support react 18 and 19.
  • 5452644 Fix issues.
  • 334b6f9 Update react imports for react jsx.
  • 4d33ea5 Upgrade all react packages to 19.
  • 0b6d57f Updated dependencies and fixed tsconfig expectations for storybook
  • See full diff in compare view

Updates @tanstack/react-query from 5.62.7 to 5.62.8

Release notes

Sourced from @​tanstack/react-query's releases.

v5.62.8

Version 5.62.8 - 12/17/24, 5:11 PM

Changes

Fix

  • types: fix issues with queryOptions factory method types (#8394) (4989399) by Nick Lucas

Chore

  • deps: use stable @types/react version (#8437) (94e2c77) by Lachlan Collins

Docs

  • use correct broadcastChannel default value and type name (#8436) (4521a04) by Alex Liu

Packages

  • @​tanstack/query-core@​5.62.8
  • @​tanstack/react-query@​5.62.8
  • @​tanstack/react-query-devtools@​5.62.8
  • @​tanstack/react-query-persist-client@​5.62.8
  • @​tanstack/react-query-next-experimental@​5.62.8
  • @​tanstack/query-broadcast-client-experimental@​5.62.8
  • @​tanstack/query-persist-client-core@​5.62.8
  • @​tanstack/query-sync-storage-persister@​5.62.8
  • @​tanstack/solid-query@​5.62.8
  • @​tanstack/solid-query-devtools@​5.62.8
  • @​tanstack/solid-query-persist-client@​5.62.8
  • @​tanstack/svelte-query@​5.62.8
  • @​tanstack/svelte-query-devtools@​5.62.8
  • @​tanstack/svelte-query-persist-client@​5.62.8
  • @​tanstack/vue-query@​5.62.8
  • @​tanstack/vue-query-devtools@​5.62.8
  • @​tanstack/angular-query-experimental@​5.62.8
  • @​tanstack/query-async-storage-persister@​5.62.8
  • @​tanstack/angular-query-devtools-experimental@​5.62.8
Commits

Updates @uswds/uswds from 3.10.0 to 3.11.0

Release notes

Sourced from @​uswds/uswds's releases.

USWDS 3.11.0

What's new in USWDS 3.11.0

Features

Package A11y Breaking Markup change Description
usa-elements - - - Removed outdated browser normalization styles. This update drops normalize support for Internet Explorer. Thanks @​aduth! (#5555)
usa-form, usa-input-prefix-suffix, usa-input, uswds-core - - - Moved .usa-input--[width] and .usa-input-group--[width] classes out of the usa-form package. These classes are now generated in the usa-input and usa-input-prefix-suffix packages and can be used without the .usa-form parent element. Thanks @​aduth! (#6232)
usa-table - - - Updated table header styles to be consistent across all table elements. Now, all thead th, tbody th, and tfoot th cells will all have the same visual styles. Thanks @​ajanickiv! ✏️ Teams should confirm that their tables display as expected. (#5986)

Bug fixes

Package A11y Breaking Markup change Description
usa-button, usa-collection, usa-file-input, usa-icon-list, usa-icon, usa-input-prefix-suffix, usa-modal, usa-pagination - - Yes Replaced deprecated xlink:href references with href. ✏ Teams should update their markup to replace xlink:href references with href and pull in the updated loader.svg file. (#6165)
usa-file-input Yes - - Fixed a bug that prevented screen readers from announcing the invalid file type error message. (#6168) ✏ Teams who support additional languages should update the error message string to match the new copy.
usa-footer Yes - - Removed overflow: hidden from usa-footer to allow the full focus outline to show. This fix also improves horizontal alignment in the slim footer variant. Thanks @​6TELOIV! (#6237)

Markup changes

MDN warns that the deprecated xlink:href attribute can stop working at any time. When referencing SVG icon sprites, teams should use href instead of the deprecated xlink:href attribute.

<!-- usa-icon example -->
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img">
- <use xlink:href="./img/sprite.svg#close"></use>
+ <use href="./img/sprite.svg#close"></use>
</svg>

Dependencies and security

Dependency name Previous version New version
@​babel/core 7.25.7 7.26.0
@​babel/preset-env 7.25.7 7.26.0
axe-core 4.10.0 4.10.2
cross-spawn 7.0.3 7.0.6
html-webpack-plugin 5.6.0 5.6.3
mocha 10.7.3 10.8.2
nwsapi (added via npm overrides) -- 2.2.13
postcss 8.4.47 8.4.49
prettier 3.3.3 3.4.2
sass 1.79.4 1.83.0
sass-embedded 1.79.4 1.83.0
snyk 1.1293.1 1.1294.3
stylelint 16.9.0 16.11.0
typescript 5.6.2 5.7.2
webpack 5.95.0 5.97.1

0 vulnerabilities in regular dependencies (dependencies for USWDS projects installed with npm install @uswds/uswds)

... (truncated)

Commits

Updates jotai from 2.10.4 to 2.11.0

Release notes

Sourced from jotai's releases.

v2.11.0

There are no public API changes, but some internal behaviors have been improved. Now, atom updates are batched in a single write, which might provide a performance benefit in certain edge cases. This feature has been requested actually for a long time, and it's finally implemented. See also #2782.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.10.4...v2.11.0

Commits
  • cb9ce1e 2.11.0
  • bb10d99 fix: resolve conflicting redirects (#2886)
  • 06f3b3c chore(deps): update dev dependencies (#2885)
  • 103fb32 feat: dev store with unstable_derive (#2852)
  • 36062fb Fix: update examples (#2883)
  • 1d5ba26 Docs: update SSR and Query docs to include notes about TS and useHydrateAtom ...
  • 7883c4e chore(tests): eliminate rtl patch (#2878)
  • d0d8d0a chore(.github/workflows/test-multiple-versions.yml): improve workflow with re...
  • c9359fa chore(.github/workflows): improve workflow with removing duplicated configs (...
  • 51a742d refactor: batch priority (#2875)
  • Additional commits viewable in compare view

Updates react-hook-form from 7.54.1 to 7.54.2

Release notes

Sourced from react-hook-form's releases.

Version 7.54.2

⚛️ fix #12478 issue should unregister input with controller (#12480) ⏰ close #12443 track disabled fields and only omit data on submit (#12491) ⚛️ upgrade e2e automation app to react 19 (#12482) 🧪 test(useWatch): destructure setValue from useForm

Thanks very much, @​marcalexiei for your contribution to the documentation!

Commits

Updates react-router-dom from 7.0.2 to 7.1.0

Release notes

Sourced from react-router-dom's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

7.1.0

Patch Changes

Commits

Updates typescript-eslint from 8.18.0 to 8.18.1

Release notes

Sourced from typescript-eslint's releases.

v8.18.1

8.18.1 (2024-12-16)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-template-expression] don't report when an expression includes comment (#10444)
  • eslint-plugin: handle string like index type (#10460)
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] flag values of a type parameter with boolean type constraints (#10474)
  • eslint-plugin: use consistent naming for asserting types and casting values (#10472)
  • eslint-plugin: [no-unnecessary-condition] better message when comparing between literal types (#10454)
  • scope-manager: visit params decorator before nest scope (#10475)

❤️ Thank You

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

Changelog

Sourced from typescript-eslint's changelog.

8.18.1 (2024-12-16)

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

Updates vite from 6.0.3 to 6.0.5

Release notes

Sourced from vite's releases.

v6.0.5

Please refer to CHANGELOG.md for details.

v6.0.4

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.0.5 (2024-12-20)

6.0.4 (2024-12-19)

Commits
  • 49a6be5 release: v6.0.5
  • 4359e0d fix: esbuild regression (pin to 0.24.0) (#19027)
  • 11cd5a4 release: v6.0.4
  • 3734f80 fix(css): escape double quotes in url() when lightningcss is used (#18997)
  • 2b4f115 fix(deps): update all non-major dependencies (#18996)
  • 12b612d fix: fallback terser to main thread when function options are used (#18987)
  • d88d000 fix(deps): update all non-major dependencies (#18967)
  • 21680bd fix(css): skip non css in custom sass importer (#18970)
  • 62fad6d chore(deps): update dependency @​rollup/plugin-node-resolve to v16 (#18968)
  • 8a6bb4e fix(optimizer): keep NODE_ENV as-is when keepProcessEnv is true (#18899)
  • 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

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

| Package | From | To |
| --- | --- | --- |
| [@metrostar/comet-data-viz](https://github.com/MetroStar/comet/tree/HEAD/packages/comet-data-viz) | `1.1.7` | `1.2.0` |
| [@metrostar/comet-extras](https://github.com/MetroStar/comet/tree/HEAD/packages/comet-extras) | `1.4.2` | `1.5.0` |
| [@metrostar/comet-uswds](https://github.com/MetroStar/comet/tree/HEAD/packages/comet-uswds) | `3.6.2` | `3.7.1` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.62.7` | `5.62.8` |
| [@uswds/uswds](https://github.com/uswds/uswds) | `3.10.0` | `3.11.0` |
| [jotai](https://github.com/pmndrs/jotai) | `2.10.4` | `2.11.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.1` | `7.54.2` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.0.2` | `7.1.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.18.0` | `8.18.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.0.3` | `6.0.5` |


Updates `@metrostar/comet-data-viz` from 1.1.7 to 1.2.0
- [Release notes](https://github.com/MetroStar/comet/releases)
- [Commits](https://github.com/MetroStar/comet/commits/1.2.0/packages/comet-data-viz)

Updates `@metrostar/comet-extras` from 1.4.2 to 1.5.0
- [Release notes](https://github.com/MetroStar/comet/releases)
- [Commits](https://github.com/MetroStar/comet/commits/1.5.0/packages/comet-extras)

Updates `@metrostar/comet-uswds` from 3.6.2 to 3.7.1
- [Release notes](https://github.com/MetroStar/comet/releases)
- [Commits](https://github.com/MetroStar/comet/commits/3.7.1/packages/comet-uswds)

Updates `@tanstack/react-query` from 5.62.7 to 5.62.8
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.62.8/packages/react-query)

Updates `@uswds/uswds` from 3.10.0 to 3.11.0
- [Release notes](https://github.com/uswds/uswds/releases)
- [Commits](uswds/uswds@v3.10.0...v3.11.0)

Updates `jotai` from 2.10.4 to 2.11.0
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.10.4...v2.11.0)

Updates `react-hook-form` from 7.54.1 to 7.54.2
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.54.1...v7.54.2)

Updates `react-router-dom` from 7.0.2 to 7.1.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom)

Updates `typescript-eslint` from 8.18.0 to 8.18.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.18.1/packages/typescript-eslint)

Updates `vite` from 6.0.3 to 6.0.5
- [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/v6.0.5/packages/vite)

---
updated-dependencies:
- dependency-name: "@metrostar/comet-data-viz"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@metrostar/comet-extras"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@metrostar/comet-uswds"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@uswds/uswds"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: jotai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@jbouder jbouder changed the title Bump the minor-and-patch group with 10 updates Bump the minor-and-patch group with 8 updates Dec 23, 2024
@jbouder jbouder merged commit 4cdd8ff into main Dec 23, 2024
6 checks passed
@jbouder jbouder deleted the dependabot/npm_and_yarn/minor-and-patch-1c897fbe60 branch December 23, 2024 13:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant