All-Hands-AI / OpenHands

🙌 OpenHands: Code Less, Make More
https://all-hands.dev
MIT License
37.37k stars 4.23k forks source link

Bump the version-all group in /frontend with 25 updates #5203

Closed dependabot[bot] closed 3 days ago

dependabot[bot] commented 3 days ago

Bumps the version-all group in /frontend with 25 updates:

Package From To
@react-types/shared 3.25.0 3.26.0
@remix-run/node 2.13.1 2.15.0
@remix-run/react 2.13.1 2.15.0
@remix-run/serve 2.13.1 2.15.0
@vitejs/plugin-react 4.3.2 4.3.3
i18next 23.16.0 24.0.0
i18next-http-backend 2.6.2 3.0.1
jose 5.9.4 5.9.6
posthog-js 1.184.1 1.187.2
react-i18next 15.0.3 15.1.1
react-router-dom 6.27.0 7.0.1
react-textarea-autosize 8.5.4 8.5.5
vite 5.4.9 5.4.11
@playwright/test 1.48.2 1.49.0
@remix-run/dev 2.13.1 2.15.0
@remix-run/testing 2.13.1 2.15.0
@testing-library/jest-dom 6.6.1 6.6.3
@types/node 22.7.6 22.9.1
@types/react 18.3.11 18.3.12
@types/ws 8.5.12 8.5.13
husky 9.1.6 9.1.7
postcss 8.4.47 8.4.49
tailwindcss 3.4.14 3.4.15
vite-plugin-svgr 4.2.0 4.3.0
vite-tsconfig-paths 5.0.1 5.1.3

Updates @react-types/shared from 3.25.0 to 3.26.0

Release notes

Sourced from @​react-types/shared's releases.

April 5, 2023 Release

https://react-spectrum.adobe.com/releases/2023-04-05.html

Commits
  • 17358f7 Publish
  • a530335 chore: revert export provider context (#7416)
  • c6bd2cb chore: Update dialog examples to be more generic (#7415)
  • 2e1dd22 fix: Handle more BC date cases (#7410)
  • 9170093 fix(#7399): DatePicker.test fails with daylight savings change (#7401)
  • 52bf91b feat: Add codemod for ActionGroup (#7396)
  • baa330f feat: Add RAC example of Menu nested in popover dialog (#7402)
  • 62718d4 Document RAC Dialog close button slot (#7405)
  • 16153ed chore: Add ActionButtonGroup and ToggleButtonGroup to example apps and tailwi...
  • 65e3a52 Improve error message for missing Provider error (#7404)
  • Additional commits viewable in compare view


Updates @remix-run/node from 2.13.1 to 2.15.0

Release notes

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

v2.15.0

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

v2.14.0

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

Changelog

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

2.15.0

Patch Changes

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

2.14.0

Patch Changes

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


Updates @remix-run/react from 2.13.1 to 2.15.0

Release notes

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

v2.15.0

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

v2.14.0

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

Changelog

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

2.15.0

Patch Changes

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

2.14.0

Patch Changes

  • Fix defaultShouldRevalidate value when using single fetch (#10139)
  • Updated dependencies:
    • @remix-run/server-runtime@2.14.0
Commits


Updates @remix-run/serve from 2.13.1 to 2.15.0

Release notes

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

v2.15.0

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

v2.14.0

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

Changelog

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

2.15.0

Patch Changes

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

2.14.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@2.14.0
    • @remix-run/express@2.14.0
Commits


Updates @vitejs/plugin-react from 4.3.2 to 4.3.3

Release notes

Sourced from @​vitejs/plugin-react's releases.

v4.3.3

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }

return { plugins: [react({ babel: { plugins: babelPlugins } })], } })

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.3.3 (2024-10-19)

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }

return { plugins: [react({ babel: { plugins: babelPlugins } })], } })

Commits


Updates i18next from 23.16.0 to 24.0.0

Release notes

Sourced from i18next's releases.

v24.0.0

This is a major breaking release:

  • remove support for older environments
  • remove old i18next JSON formats
  • remove support for compatibility to v1 API
  • Intl API is mandatory now and will not fallback anymore
  • possible compatibility layer for older formats: test/compatibility/v4/v4Compatibility.js
  • rename initImmediate to initAsync
  • fallback to dev language if plural rule not found
  • remove TypeScript v4 support. TypeScript v5 is now an optional peer dependency
  • addresses

➡️ check out the migration guide

v23.16.8

  • fix(plural): Create cache entry for PluralRules created as part of the fallback flow 2256

v23.16.7

  • if plural rule is not found, try to search with language only code 2252

v23.16.6

  • fix: Small typo in the type definitions 2250

v23.16.5

  • fix extractFromKey for use cases like this

v23.16.4

  • revert formatter change 2247 because of caching not working anymore

v23.16.3

  • fix utils imports for Deno

v23.16.2

  • perf(size): Adds a isString utility 2248

v23.16.1

  • perf: Optimize size of Formatter 2247
Changelog

Sourced from i18next's changelog.

24.0.0

This is a major breaking release:

  • remove support for older environments
  • remove old i18next JSON formats
  • remove support for compatibility to v1 API
  • Intl API is mandatory now and will not fallback anymore
  • possible compatibility layer for older formats: test/compatibility/v4/v4Compatibility.js
  • rename initImmediate to initAsync
  • fallback to dev language if plural rule not found
  • remove TypeScript v4 support. TypeScript v5 is now an optional peer dependency
  • addresses

➡️ check out the migration guide

23.16.8

  • fix(plural): Create cache entry for PluralRules created as part of the fallback flow 2256

23.16.7

  • if plural rule is not found, try to search with language only code 2252

23.16.6

  • fix: Small typo in the type definitions 2250

23.16.5

  • fix extractFromKey for use cases like this

23.16.4

  • revert formatter change 2247 because of caching not working anymore

23.16.3

  • fix utils imports for Deno

23.16.2

... (truncated)

Commits


Updates i18next-http-backend from 2.6.2 to 3.0.1

Changelog

Sourced from i18next-http-backend's changelog.

3.0.1

  • try to get rid of top-level await

3.0.0

  • fix for Deno 2 and removal of unnecessary .cjs file
  • for esm build environments not supporting top-level await, you should import the i18next-http-backend/cjs export or stay at v2.6.2 or v2.7.1

2.7.1

  • same as 2.6.2

2.7.0

  • deprecated, same as v3.0.0
Commits


Updates jose from 5.9.4 to 5.9.6

Release notes

Sourced from jose's releases.

v5.9.6

Reverts

  • Revert "refactor(build): simplify package exports" (2ef3a52)
Changelog

Sourced from jose's changelog.

5.9.6 (2024-10-20)

Reverts

  • Revert "refactor(build): simplify package exports" (2ef3a52)

5.9.5 (2024-10-20)

Refactor

  • build: simplify package exports (4783f7f)
Commits
  • 27d26a4 chore(release): 5.9.6
  • 2ef3a52 Revert "refactor(build): simplify package exports"
  • 460a959 chore(release): 5.9.5
  • 4783f7f refactor(build): simplify package exports
  • 7521425 docs: resolve remaining conflict
  • 30365fd ci: use default CodeQL
  • ea5f212 chore: bump dev deps
  • ffad408 docs: update docs building dependencies
  • e2f737d test: temporary workaround chrome 130 and testcafe
  • 43c4bcc test: browser logs are polled
  • Additional commits viewable in compare view


Updates posthog-js from 1.184.1 to 1.187.2

Release notes

Sourced from posthog-js's releases.

1.187.2 - 2024-11-20

  • fix: improve ES6 bundling (#1542)

1.187.1 - 2024-11-19

  • fix: patch angular wrap detection in rrweb (#1543)

1.187.0 - 2024-11-19

  • feat: allow config of before_send function to edit or reject events (#1515)
  • chore: timeout test cafe jobs (#1540)
  • chore: specify an explicit browserslist version (#1539)

1.186.4 - 2024-11-19

  • chore: always transform exponentiation (#1537)
  • chore: very small change to IE11 bundling (#1536)

1.186.3 - 2024-11-18

  • fix: refactor native mutation observer implementation (#1535)
  • chore: update dependency versions (#1534)
  • chore: remove custom exceptions endpoint (#1513)

1.186.2 - 2024-11-18

  • fix: angular change detection mutation observer (#1531)
  • chore: Added CSP headers to next app for testing what we document (#1528)

1.186.1 - 2024-11-15

  • fix: XHR req method capture (#1527)

1.186.0 - 2024-11-15

  • feat: allow triggering sessions when events occur (#1523)

1.185.0 - 2024-11-15

  • feat: Add customization to add all person profile properties as setPersonPropertiesForFlags (#1517)

1.184.2 - 2024-11-13

  • fix(flags): support multiple children prop in PostHogFeature (#1516)
  • fix: Don't use session storage in memory mode (#1521)
Changelog

Sourced from posthog-js's changelog.

1.187.2 - 2024-11-20

  • fix: improve ES6 bundling (#1542)

1.187.1 - 2024-11-19

  • fix: patch angular wrap detection in rrweb (#1543)

1.187.0 - 2024-11-19

  • feat: allow config of before_send function to edit or reject events (#1515)
  • chore: timeout test cafe jobs (#1540)
  • chore: specify an explicit browserslist version (#1539)

1.186.4 - 2024-11-19

  • chore: always transform exponentiation (#1537)
  • chore: very small change to IE11 bundling (#1536)

1.186.3 - 2024-11-18

  • fix: refactor native mutation observer implementation (#1535)
  • chore: update dependency versions (#1534)
  • chore: remove custom exceptions endpoint (#1513)

1.186.2 - 2024-11-18

  • fix: angular change detection mutation observer (#1531)
  • chore: Added CSP headers to next app for testing what we document (#1528)

1.186.1 - 2024-11-15

  • fix: XHR req method capture (#1527)

1.186.0 - 2024-11-15

  • feat: allow triggering sessions when events occur (#1523)

1.185.0 - 2024-11-15

  • feat: Add customization to add all person profile properties as setPersonPropertiesForFlags (#1517)

1.184.2 - 2024-11-13

  • fix(flags): support multiple children prop in PostHogFeature (#1516)
  • fix: Don't use session storage in memory mode (#1521)
Commits


Updates react-i18next from 15.0.3 to 15.1.1

Changelog

Sourced from react-i18next's changelog.

15.1.1

  • fix: Not all namespaces are loaded when passing the lng option to useTranslate 1809

15.1.0

  • fix: <Trans /> warns 'Each child in a list should have a unique "key" prop.' for react 19 1806
Commits
  • 20b820e 15.1.1
  • 0d8153e fix: Not all namespaces are loaded when passing the lng option to useTranslat...
  • 2934253 15.1.0
  • eaf7780 release
  • e05425e fix: \<Trans /> warns 'Each child in a list should have a unique "key" prop...
  • See full diff in compare view


Updates react-router-dom from 6.27.0 to 7.0.1

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9

react-router-dom-v5-compat@6.4.0-pre.8

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.8
    • react-router-dom@6.4.0-pre.8

react-router-dom-v5-compat@6.4.0-pre.7

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.7
    • react-router-dom@6.4.0-pre.7

react-router-dom-v5-compat@6.4.0-pre.6

Patch Changes

  • 44bce3c6: Fix react-router-dom peer dependency version
    • react-router@6.4.0-pre.6
    • react-router-dom@6.4.0-pre.6

react-router-dom-v5-compat@6.4.0-pre.5

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

7.0.1

Patch Changes

  • Updated dependencies:
    • react-router@7.0.1

7.0.0

Major Changes

  • Remove the original defer implementation in favor of using raw promises via single fetch and turbo-stream. This removes these exports from React Router: (#11744)

    • defer
    • AbortedDeferredError
    • type TypedDeferredData
    • UNSAFE_DeferredData
    • UNSAFE_DEFERRED_SYMBOL,
  • Use createRemixRouter/RouterProvider in entry.client instead of RemixBrowser (#11469)

  • Remove single_fetch future flag. (#11522)

  • Remove future.v7_startTransition flag (#11696)

  • Remove future.v7_normalizeFormMethod future flag (#11697)

  • Allow returning undefined from actions and loaders (#11680)

  • update minimum node version to 18 (#11690)

  • Remove future.v7_prependBasename from the ionternalized @remix-run/router package (#11726)

  • Remove future.v7_throwAbortReason from internalized @remix-run/router package (#11728)

  • Add exports field to all packages (#11675)

  • node package no longer re-exports from react-router (#11702)

  • updates the minimum React version to 18 (#11689)

    • Remove the future.v7_partialHydration flag (#11725)
      • This also removes the <RouterProvider fallbackElement> prop
        • To migrate, move the fallbackElement to a hydrateFallbackElement/HydrateFallback on your root route
      • Also worth nothing there is a related breaking changer with this future flag:
        • Without future.v7_partialHydration (when using fallbackElement), state.navigation was populated during the initial load
        • With future.v7_partialHydration, state.navigation remains in an "idle" state during the initial load
  • Remove future.v7_fetcherPersist flag (#11731)

... (truncated)

Commits


Updates react-textarea-autosize from 8.5.4 to 8.5.5

Release notes

Sourced from react-textarea-autosize's releases.

v8.5.5

Patch Changes

  • #401 4a34e1b Thanks @​olee! - Add missing wordSpacing and scrollbarGutter as properties that can impact sizing
Changelog

Sourced from react-textarea-autosize's changelog.

8.5.5

Patch Changes

  • #401 4a34e1b Thanks @​olee! - Add missing wordSpacing and scrollbarGutter as properties that can impact sizing
Commits


Updates vite from 5.4.9 to 5.4.11

Release notes

Sourced from vite's releases.

v5.4.11

Please refer to CHANGELOG.md for details.

v5.4.10

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.11 (2024-11-11)

5.4.10 (2024-10-23)

  • fix: backport #18367,augment hash for CSS files to prevent chromium erroring by loading previous fil (7d1a3bc), closes #18367 #18412
Commits


Updates @playwright/test from 1.48.2 to 1.49.0

Release notes

Sourced from @​playwright/test's releases.

v1.49.0

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

await page.goto('https://playwright.dev');
await expect(page.locator('body')).toMatchAriaSnapshot(`
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
`);

You can generate this assertion with Test Generator and update the expected snapshot with --update-snapshots command line flag.

Learn more in the aria snapshots guide.

Test runner

Breaking: channels chrome, msedge and similar switch to new headless

This change affects you if you're using one of the following channels in your playwright.config.ts:

  • chrome, chrome-dev, chrome-beta, or chrome-canary
  • msedge, msedge-dev, msedge-beta, or msedge-canary

What do I need to do?

After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See [issue #33566](microsoft/playwright#33566) for more details.

Other breaking changes

  • There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
  • Package @playwright/experimental-ct-vue2 will no longer be updated.
  • Package @playwright/experimental-ct-solid will no longer be updated.

Try new Chromium headless

You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it:

New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.

... (truncated)

Commits
  • a70a96a chore: mark v1.49.0 (#33649)
  • 53f51a8 cherry-pick(#33638): chore: clear highlight when performing action
  • 2a00ca8 cherry-pick(#33635): chore: add cm placeholder text
  • 0e64340 cherry-pick(#33632): chore: highlight edited locator while recording
  • cb0f456 cherry-pick(#33629): fix(rebase): do not apply multiple rebaselines to the sa...
  • 698823a cherry-pick(#33627): fix(codegen): document.documentElement is null on early ...
  • c0fa804 cherry-pick(#33619): fix(aria): normalize whitespace in toMatchAccessible{Nam...
  • 7a32228 cherry-pick(#33614): docs: add ariaSnapshot.timeout for language ports (#33615)
  • 0e31ace cherry-pick(#33575): fix(canvas snapshots): position mismatch in headless mode
  • b2a39ff cherry-pick(#33604): docs: update docs about headless shell
  • Additional commits viewable in compare view


Updates @remix-run/dev from 2.13.1 to 2.15.0

Release notes

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

v2.15.0

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

v2.14.0

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

Changelog

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

2.15.0

Patch Changes

  • Stabilize the future.v3_routeConfig future flag, replacing future.unstable_routeConfig. This enables support for routes.ts to assist with the migration to React Router v7. (

    dependabot[bot] commented 3 days ago

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