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 prod-deps group with 5 updates #1587

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 7, 2025

Bumps the prod-deps group with 5 updates:

Package From To
prettier 3.5.2 3.5.3
react-aria 3.37.0 3.38.0
react-stately 3.35.0 3.36.0
stylelint 16.14.1 16.15.0
zx 8.3.2 8.4.0

Updates prettier from 3.5.2 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

Commits

Updates react-aria from 3.37.0 to 3.38.0

Release notes

Sourced from react-aria's releases.

November 20, 2024 Release

We’re excited to announce that our Accordion and Disclosure components are now generally available! This includes Disclosure and DisclosureGroup in React Aria, as well as Disclosure and Accordion in React Spectrum. These components now also use the hidden="until-found" API currently supported in Chrome to enable searching collapsed content with ctrl + F.

We are also introducing ToggleButtonGroup in React Aria Components, which supports arrow key navigation with single and multiple selection modes. In addition, Menu now supports the ability to create Section-level selection groups, allowing you to mix actions, single, and multiple selection within the same menu. Menus can also be nested inside Dialog popovers to enable more complex use cases.

Last but not least, React Spectrum and React Aria are now Typescript Strict compliant! This has been an extremely large, multi-year effort and we thank you for your patience. This helps us reduce bugs, particularly related to null checks, resulting in more correct type definitions for our APIs.

As always, thanks to everyone in our community for your feedback and contributions! ❤️

Full release notes: https://react-spectrum.adobe.com/releases/2024-11-20.html

Commits
  • 4d3c72c Publish
  • 2d7e441 fix: v3 TreeView border overlap (#7873)
  • 85156e3 chore: make useLandmark controller unstable (#7871)
  • 6fc6075 delete aria/accordion and types/accordion since it has been deprecated (#7872)
  • 2059fd3 chore: Cleanup dependencies (#7870)
  • cce5fd3 Fix Remove OverlayTriggerProps (#7868)
  • 527c98a fix: correctly render dates in hebrew calendar (#7864)
  • e4a90c9 Rename filterFn in useAutocomplete to filter (#7863)
  • 59f4543 fix: prevent focus ring from appearing when selecting RAC Listbox on iPad (#7...
  • 9bd8a5f fix: Double click event on rsp toggling components (#7858)
  • Additional commits viewable in compare view

Updates react-stately from 3.35.0 to 3.36.0

Release notes

Sourced from react-stately's releases.

July 22, 2024 Release

For this summer release, we have been busy working on improving virtualization in many of our Spectrum components including TableView, ListView, and ListBox. We have significantly reduced the complexity of our implementation, resulting in smaller bundle size, better performance, and improved stability. In our testing, this resulted in 14x faster per-frame render times on large tables due to better reuse of DOM nodes as you scroll. We are also working on bringing virtualization support to React Aria Components, which is available as an unstable API in this version.

Our color components are also moving to RC! Focus management within Toasts have also been greatly improved, making announcements from screen readers clearer and more consistent. Thanks to @​thmsfchtnr, press events now include coordinates, enabling interactions like our new animated ripple button example. And finally, in preparation for React 19, this release is now compatible with React 19 RC.

Thank you to our ever growing list of contributors! ❤️

Full release notes: https://react-spectrum.adobe.com/releases/2024-07-22.html

Commits
  • 4d3c72c Publish
  • 2d7e441 fix: v3 TreeView border overlap (#7873)
  • 85156e3 chore: make useLandmark controller unstable (#7871)
  • 6fc6075 delete aria/accordion and types/accordion since it has been deprecated (#7872)
  • 2059fd3 chore: Cleanup dependencies (#7870)
  • cce5fd3 Fix Remove OverlayTriggerProps (#7868)
  • 527c98a fix: correctly render dates in hebrew calendar (#7864)
  • e4a90c9 Rename filterFn in useAutocomplete to filter (#7863)
  • 59f4543 fix: prevent focus ring from appearing when selecting RAC Listbox on iPad (#7...
  • 9bd8a5f fix: Double click event on rsp toggling components (#7858)
  • Additional commits viewable in compare view

Updates stylelint from 16.14.1 to 16.15.0

Release notes

Sourced from stylelint's releases.

16.15.0

  • Added: syntax-string-no-invalid rule (#8331) (@​ryo-manba).
  • Added: languageOptions configuration property (#8297) (@​ryo-manba).
  • Added: regex support to ignoreAtRules option of at-rule-empty-line-before (#8385) (@​ryo-manba).
  • Added: alpha-value-notation support for computing EditInfo (#8369) (@​pamelalozano16).
  • Added: color-hex-length support for computing EditInfo (#8415) (@​ryo-manba).
  • Added: comment-empty-line-before support for computing EditInfo (#8416) (@​ryo-manba).
  • Added: comment-whitespace-inside support for computing EditInfo (#8417) (@​ryo-manba).
  • Added: custom-property-empty-line-before support for computing EditInfo (#8418) (@​ryo-manba).
  • Added: declaration-block-no-duplicate-properties support for computing EditInfo (#8363) (@​romainmenke).
  • Fixed: tap formatter not escaping # and \ in its test point descriptions (#8334) (@​Mouvedia).
  • Fixed: tap formatter outputting invalid YAML blocks for rules containing double quotes in their warnings' messages (#8334) (@​Mouvedia).
  • Fixed: declaration-block-no-redundant-longhand-properties false positives for properties with !important (#8366) (@​immitsu).
  • Fixed: EditInfo missing semicolon in text field (#8370) (@​pamelalozano16).
  • Fixed: declaration-property-value-keyword-no-deprecated false negatives for text-decoration: blink (#8351) (@​Mouvedia).
  • Fixed: declaration-property-value-keyword-no-deprecated false positives for styled components interpolated functions (#8392) (@​Mouvedia).
  • Fixed: font-family-name-quotes false positives due to vendor-prefixed font-size values (#8393) (@​Mouvedia).
  • Fixed: font-family-no-missing-generic-family-keyword false positives for math, emoji and fangsong (#8395) (@​ViachaslauIhnatsiuk).
  • Fixed: selector-type-no-unknown false positives for selectmenu and popup (#8376) (@​Mouvedia).
Changelog

Sourced from stylelint's changelog.

16.15.0 - 2025-02-28

It adds 1 new rule, a languageOptions configuration property for configuring some of the new rules added in 16.13.0, regex support to 1 option and support for computing EditInfo to 6 rules. It fixes 9 bugs, including 2 with the tap reporter.

  • Added: syntax-string-no-invalid rule (#8331) (@​ryo-manba).
  • Added: languageOptions configuration property (#8297) (@​ryo-manba).
  • Added: regex support to ignoreAtRules option of at-rule-empty-line-before (#8385) (@​ryo-manba).
  • Added: alpha-value-notation support for computing EditInfo (#8369) (@​pamelalozano16).
  • Added: color-hex-length support for computing EditInfo (#8415) (@​ryo-manba).
  • Added: comment-empty-line-before support for computing EditInfo (#8416) (@​ryo-manba).
  • Added: comment-whitespace-inside support for computing EditInfo (#8417) (@​ryo-manba).
  • Added: custom-property-empty-line-before support for computing EditInfo (#8418) (@​ryo-manba).
  • Added: declaration-block-no-duplicate-properties support for computing EditInfo (#8363) (@​romainmenke).
  • Fixed: tap formatter not escaping # and \ in its test point descriptions (#8334) (@​Mouvedia).
  • Fixed: tap formatter outputting invalid YAML blocks for rules containing double quotes in their warnings' messages (#8334) (@​Mouvedia).
  • Fixed: declaration-block-no-redundant-longhand-properties false positives for properties with !important (#8366) (@​immitsu).
  • Fixed: EditInfo missing semicolon in text field (#8370) (@​pamelalozano16).
  • Fixed: declaration-property-value-keyword-no-deprecated false negatives for text-decoration: blink (#8351) (@​Mouvedia).
  • Fixed: declaration-property-value-keyword-no-deprecated false positives for styled components interpolated functions (#8392) (@​Mouvedia).
  • Fixed: font-family-name-quotes false positives due to vendor-prefixed font-size values (#8393) (@​Mouvedia).
  • Fixed: font-family-no-missing-generic-family-keyword false positives for math, emoji and fangsong (#8395) (@​ViachaslauIhnatsiuk).
  • Fixed: selector-type-no-unknown false positives for selectmenu and popup (#8376) (@​Mouvedia).
Commits

Updates zx from 8.3.2 to 8.4.0

Release notes

Sourced from zx's releases.

8.4.0 – Drip Detective

Try the new batch of enhancements: npm i [email protected] https://www.npmjs.com/package/zx/v/8.4.0

Changes

  • The CLI option --prefer-local now allows linking both external binaries and packages #1116 #1117
const cwd = tmpdir()
const external = tmpdir()
await fs.outputJson(path.join(external, 'node_modules/a/package.json'), {
  name: 'a',
  version: '1.0.0',
  type: 'module',
  exports: './index.js',
})
await fs.outputFile(
  path.join(external, 'node_modules/a/index.js'),
  `
export const a = 'AAA'
`
)
const script = `
import {a} from 'a'
console.log(a);
`
const out = await $`zx --cwd=${cwd} --prefer-local=${external} --test <<< ${script}`
assert.equal(out.stdout, 'AAA\n')
  • The quote has been slightly changed for a conner case, when zx literal gets an array. #999 #1113
const p = $({prefix: '', postfix: ''})`echo ${[1, '', '*', '2']}`
// before
p.cmd //  echo 1  $'*' 2)
// after
p.cmd //  echo 1 $'' $'*' 2)

  • Provided support for custom script extensions via CLI #1104 #1105
zx script.zx           # Unknown file extension "\.zx"
zx --ext=mjs script.zx # OK

... (truncated)

Commits
  • 3efc9eb chore: add prettier to pre-commit hook (#1118)
  • 539130a feat(cli): use --prefer-local option to link external `node_modules (#1117)
  • 778fd03 chore: bump to v8.4.0 (#1114)
  • eff2d70 fix: enhance quote to handle empty args (#1113)
  • f4b0328 refactor: use ts exts for relative paths (#1111)
  • a23261b feat: pass origin error as ProcessOuput cause (#1110)
  • b571839 docs: describe nothrow option (#1109)
  • 1ef794a refactor: let nothrow suppress any kind of errors (#1108)
  • b709f2b feat: define explicit primitive cast for ProcessPromise and ProcessOutput...
  • 5f48c73 ci: separate build and publish steps (#1106)
  • 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 prod-deps group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.5.2` | `3.5.3` |
| [react-aria](https://github.com/adobe/react-spectrum) | `3.37.0` | `3.38.0` |
| [react-stately](https://github.com/adobe/react-spectrum) | `3.35.0` | `3.36.0` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.14.1` | `16.15.0` |
| [zx](https://github.com/google/zx) | `8.3.2` | `8.4.0` |


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

Updates `react-aria` from 3.37.0 to 3.38.0
- [Release notes](https://github.com/adobe/react-spectrum/releases)
- [Commits](https://github.com/adobe/react-spectrum/compare/[email protected]@3.38.0)

Updates `react-stately` from 3.35.0 to 3.36.0
- [Release notes](https://github.com/adobe/react-spectrum/releases)
- [Commits](https://github.com/adobe/react-spectrum/compare/[email protected]@3.36.0)

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

Updates `zx` from 8.3.2 to 8.4.0
- [Release notes](https://github.com/google/zx/releases)
- [Commits](google/zx@8.3.2...8.4.0)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: react-aria
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: react-stately
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: stylelint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: zx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Update one or more dependencies version javascript Pull requests that update Javascript code minor Increment the minor version when merged labels Mar 7, 2025
Copy link

changeset-bot bot commented Mar 7, 2025

⚠️ No Changeset found

Latest commit: 1cb6586

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update one or more dependencies version javascript Pull requests that update Javascript code minor Increment the minor version when merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants