octopost
octopost copied to clipboard
chore(deps): bump the all-minor-updates group across 1 directory with 34 updates
Bumps the all-minor-updates group with 34 updates in the / directory:
Updates @sentry/react
from 7.102.0 to 7.113.0
Release notes
Sourced from @sentry/react
's releases.
7.113.0
Important Changes
- feat(node): Support Node 22 (#11754)
This release adds support for Node 22! 🎉
It also adds prebuilt-binaries for Node 22 to
@sentry/profiling-node
.Other Changes
- feat(feedback): [v7] New feedback button design (#11841)
- feat(replay/v7): Upgrade rrweb packages to 2.15.0 (#11752)
- fix(ember/v7): Ensure unnecessary spans are avoided (#11848)
7.112.2
- fix(nextjs|sveltekit): Ensure we can pass
browserTracingIntegration
(#11765)7.112.1
- fix(ember/v7): Do not create rendering spans without transaction (#11750)
7.112.0
Important Changes
- feat: Export pluggable integrations from SDK packages (#11723)
Instead of installing
@sentry/integrations
, you can now import the pluggable integrations directly from your SDK package:// Before import * as Sentry fromv '@sentry/browser'; import { dedupeIntegration } from '@sentry/integrations';
Sentry.init({ integrations: [dedupeIntegration()], });
// After import * as Sentry from '
@sentry/browser
';Sentry.init({ integrations: [Sentry.dedupeIntegration()], });
Note that only the functional integrations (e.g.
xxxIntegration()
) are re-exported.Other Changes
... (truncated)
Changelog
Sourced from @sentry/react
's changelog.
7.113.0
Important Changes
- feat(node): Support Node 22 (#11754)
This release adds support for Node 22! 🎉
It also adds prebuilt-binaries for Node 22 to
@sentry/profiling-node
.Other Changes
- feat(feedback): [v7] New feedback button design (#11841)
- feat(replay/v7): Upgrade rrweb packages to 2.15.0 (#11752)
- fix(ember/v7): Ensure unnecessary spans are avoided (#11848)
7.112.2
- fix(nextjs|sveltekit): Ensure we can pass
browserTracingIntegration
(#11765)7.112.1
- fix(ember/v7): Do not create rendering spans without transaction (#11750)
7.112.0
Important Changes
- feat: Export pluggable integrations from SDK packages (#11723)
Instead of installing
@sentry/integrations
, you can now import the pluggable integrations directly from your SDK package:// Before import * as Sentry fromv '@sentry/browser'; import { dedupeIntegration } from '@sentry/integrations';
Sentry.init({ integrations: [dedupeIntegration()], });
// After import * as Sentry from '
@sentry/browser
';Sentry.init({ integrations: [Sentry.dedupeIntegration()], });
... (truncated)
Commits
29f5b8d
release: 7.113.0af4dfd8
meta(changelog): Update changelog for 7.113.0 (#11868)b90d046
feat(node): [v7] Support Node 22 (#11754)6f7095d
feat(feedback): [v7] New feedback button design (#11841)77a51bd
fix(ember/v7): Ensure unnecessary spans are avoided (#11848)217e4c1
test(browser/v7): Add test for captureConsole (#11830)4340845
feat(replay/v7): Upgrade rrweb packages to 2.15.0 (#11752)1d3469d
Merge branch 'release/7.112.2' into v7b6fd7e8
release: 7.112.2afaa3e4
meta(changelog): Update changelog for v7.112.2 (#11768)- Additional commits viewable in compare view
Updates i18next
from 23.9.0 to 23.11.3
Release notes
Sourced from i18next's releases.
v23.11.3
- fix: Unsupported language is automatically added to preload option 2178
v23.11.2
- allow defaultValue in nested translation 2174
v23.11.1
- types: remove const from ParseKeys Context type parameter and disable
skipLibCheck
2169v23.11.0
- Fix typing performance regression 2166
v23.10.1
- optimize getBestMatchFromCodes for i18next/i18next-browser-languageDetector#281
v23.10.0
- Add 'isInitializing' property so we're able to detect init() was already called 2141
Changelog
Sourced from i18next's changelog.
23.11.3
- fix: Unsupported language is automatically added to preload option 2178
23.11.2
- allow defaultValue in nested translation 2174
23.11.1
- types: remove const from ParseKeys Context type parameter and disable
skipLibCheck
216923.11.0
- Fix typing performance regression 2166
23.10.1
- optimize getBestMatchFromCodes for i18next/i18next-browser-languageDetector#281
23.10.0
- Add 'isInitializing' property so we're able to detect init() was already called 2141
Commits
99d6d69
23.11.3462525a
buildc1e2f91
fix: Unsupported language is automatically added to preload option #2178c9e2bf5
23.11.2ba49a6f
allow defaultValue in nested translation #2174677755c
test(types): add context + enum scenario (#2173)2a2a682
23.11.1be7edc5
release2c8d493
types: remove const from ParseKeys Context type parameter and disable `skipLi...e8efbf0
23.11.0- Additional commits viewable in compare view
Updates i18next-browser-languagedetector
from 7.2.0 to 7.2.1
Changelog
Sourced from i18next-browser-languagedetector's changelog.
7.2.1
- fix: align addDetector impementation to type definition 282
Commits
80754d8
7.2.12503cb1
fix: align addDetector impementation to type definition #282- See full diff in compare view
Updates nanoid
from 5.0.6 to 5.0.7
Commits
4d0036f
Release 5.0.7 version131d4d0
Sort imports596a8b2
Move to console colors from Node.jsdf9bb34
Move to flat ESLint configd40c8e6
Sort imports04727e4
Update dependenciesff346fc
add scoped name of urlAlphabet which is in export and import in one file (#473)5bb460c
Bump vite from 5.1.6 to 5.1.7 (#472)9244d1c
Update dependencies4443103
Update translations- Additional commits viewable in compare view
Updates react
from 18.2.0 to 18.3.1
Release notes
Sourced from react's releases.
18.3.1 (April 26, 2024)
- Export
act
fromreact
f1338f18.3.0 (April 25, 2024)
This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.
Read the React 19 Upgrade Guide for more info.
React
- Allow writing to
this.refs
to support string ref codemod 909071- Warn for deprecated
findDOMNode
outside StrictMode c3b283- Warn for deprecated
test-utils
methods d4ea75- Warn for deprecated Legacy Context outside StrictMode 415ee0
- Warn for deprecated string refs outside StrictMode #25383
- Warn for deprecated
defaultProps
for function components #25699- Warn when spreading
key
#25697- Warn when using
act
fromtest-utils
d4ea75React DOM
Changelog
Sourced from react's changelog.
18.3.1 (April 26, 2024)
- Export
act
fromreact
f1338f18.3.0 (April 25, 2024)
This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.
Read the React 19 Upgrade Guide for more info.
React
- Allow writing to
this.refs
to support string ref codemod 909071- Warn for deprecated
findDOMNode
outside StrictMode c3b283- Warn for deprecated
test-utils
methods d4ea75- Warn for deprecated Legacy Context outside StrictMode 415ee0
- Warn for deprecated string refs outside StrictMode #25383
- Warn for deprecated
defaultProps
for function components #25699- Warn when spreading
key
#25697- Warn when using
act
fromtest-utils
d4ea75React DOM
Commits
Maintainer changes
This version was pushed to npm by react-bot, a new releaser for react since your current version.
Updates @types/react
from 18.2.57 to 18.3.1
Commits
- See full diff in compare view
Updates react-dom
from 18.2.0 to 18.3.1
Release notes
Sourced from react-dom's releases.
18.3.1 (April 26, 2024)
- Export
act
fromreact
f1338f18.3.0 (April 25, 2024)
This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.
Read the React 19 Upgrade Guide for more info.
React
- Allow writing to
this.refs
to support string ref codemod 909071- Warn for deprecated
findDOMNode
outside StrictMode c3b283- Warn for deprecated
test-utils
methods d4ea75- Warn for deprecated Legacy Context outside StrictMode 415ee0
- Warn for deprecated string refs outside StrictMode #25383
- Warn for deprecated
defaultProps
for function components #25699- Warn when spreading
key
#25697- Warn when using
act
fromtest-utils
d4ea75React DOM
Changelog
Sourced from react-dom's changelog.
18.3.1 (April 26, 2024)
- Export
act
fromreact
f1338f18.3.0 (April 25, 2024)
This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.
Read the React 19 Upgrade Guide for more info.
React
- Allow writing to
this.refs
to support string ref codemod 909071- Warn for deprecated
findDOMNode
outside StrictMode c3b283- Warn for deprecated
test-utils
methods d4ea75- Warn for deprecated Legacy Context outside StrictMode 415ee0
- Warn for deprecated string refs outside StrictMode #25383
- Warn for deprecated
defaultProps
for function components #25699- Warn when spreading
key
#25697- Warn when using
act
fromtest-utils
d4ea75React DOM
Commits
d6c42f7
Bump to 18.3.18a015b6
Add deprecation warning for unmountComponentAtNodec3b2839
Add deprecation warning for findDOMNoded4ea75d
ReactDOMTestUtils deprecation warnings7548c01
DeprecaterenderToStaticNodeStream
(#28872) (#28874)5894232
Enable warning for defaultProps on function components for everyone (#25699)c2a246e
Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)2cfb474
Bump version from 18.2 to 18.3- See full diff in compare view
Maintainer changes
This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.
Updates @types/react-dom
from 18.2.19 to 18.3.0
Commits
- See full diff in compare view
Updates react-router-dom
from 6.22.1 to 6.23.0
Release notes
Sourced from react-router-dom's releases.
[email protected]
Patch Changes
- Updated dependencies
[email protected]
Patch Changes
- Updated dependencies
[email protected]
Patch Changes
- Updated dependencies
[email protected]
Patch Changes
- Updated dependencies
[email protected]
Patch Changes
- Updated dependencies
[email protected]
Patch Changes
- Updated dependencies
[email protected]
Patch Changes
- 44bce3c6: Fix
react-router-dom
peer dependency version[email protected]
... (truncated)
Changelog
Sourced from react-router-dom's changelog.
6.23.0
Minor Changes
- Add a new
unstable_dataStrategy
configuration option (#11098)
- This option allows Data Router applications to take control over the approach for executing route loaders and actions
- The default implementation is today's behavior, to fetch all loaders in parallel, but this option allows users to implement more advanced data flows including Remix single-fetch, middleware/context APIs, automatic loader caching, and more
Patch Changes
- Updated dependencies:
@remix-run/[email protected]
[email protected]
6.22.3
Patch Changes
- Updated dependencies:
@remix-run/[email protected]
[email protected]
6.22.2
Patch Changes
- Updated dependencies:
@remix-run/[email protected]
[email protected]
Commits
82a3a77
chore: Update version for release (#11486)8a20f32
chore: Update version for release (pre) (#11387)88ec71a
chore: Update version for release (pre) (#11379)12afb2e
Migrate to pnpm (#11358)c7dd3d3
Data Strategy Configuration (#11098)67009e1
chore: Update version for release (#11329)0c37f37
chore: Update version for release (pre) (#11327)78c843b
chore: Update version for release (#11314)e1421be
chore: Update version for release (pre) (#11309)95acd38
Merge branch 'release-next' into dev- Additional commits viewable in compare view
Updates zustand
from 4.5.1 to 4.5.2
Release notes
Sourced from zustand's releases.
v4.5.2
It should improve the compatibility with old browsers.
What's Changed
- refactor(shallow): Use for..of instead of C-style for by
@onlined
in pmndrs/zustand#2374- fix: return type of persist migrate function changed to PersistedState by
@bobdepreziz
in pmndrs/zustand#2360- build: target es2018 by
@dai-shi
in pmndrs/zustand#2361New Contributors
@medyahyejoud
made their first contribution in pmndrs/zustand#2353@yankycranky
made their first contribution in pmndrs/zustand#2348@cheeZery
made their first contribution in pmndrs/zustand#2364@Cadienvan
made their first contribution in pmndrs/zustand#2378@bobdepreziz
made their first contribution in pmndrs/zustand#2360Full Changelog: https://github.com/pmndrs/zustand/compare/v4.5.1...v4.5.2
Commits
6f61b76
4.5.296d6bb2
chore(deps): update dev dependencies (#2379)453b3a6
build: target es2018 (#2361)9cb1c67
fix: return type of persist migrate function changed to PersistedState (#2360)1392c51
docs: adding note about middlewares and slices (#2378)41924df
refactor: Use for..of instead of C-style for (#2374)16b0ebf
Enable usage of Corepack (#2366)827d5aa
Fix typo in prevent-rerenders-with-use-shallow.md (#2364)3c6dc2d
updated getting-started doc with more examples (#2348)08d1376
Update ssr-and-hydration.md (#2353)- See full diff in compare view
Updates @eslint-community/eslint-plugin-eslint-comments
from 4.1.0 to 4.3.0
Release notes
Sourced from @eslint-community/eslint-plugin-eslint-comments
's releases.
v4.3.0
4.3.0 (2024-04-08)
Features
v4.2.0
4.2.0 (2024-04-07)
Features
Commits
c9464f5
Upgrade: Bump mocha from 9.2.2 to 10.4.0 (#201)a885b57
feat: support flat config (#200)6c073d4
Upgrade: Bump actions/deploy-pages from 2 to 4 (#159)0034c36
Upgrade: Bump monaco-editor from 0.44.0 to 0.47.0 (#192)0713751
Upgrade: Bump actions/configure-pages from 4 to 5 (#202)d51bb4d
feat: support ESLint v9 (#206)73811aa
chore: remove overly aggressive stale bot (#185)c9b090d
Upgrade: Bump codecov/codecov-action from 3 to 4 (#177)e0f326f
Upgrade: Bump actions/upload-pages-artifact from 2 to 3 (#160)48a18a7
Upgrade: Bump actions/configure-pages from 3 to 4 (#153)- Additional commits viewable in compare view
Updates @eslint/js
from 9.1.1 to 9.2.0
Release notes
Sourced from @eslint/js
's releases.
v9.2.0
Features
8485d76
feat:no-case-declarations
add suggestions (#18388) (Josh Goldberg ✨)a498f35
feat: update Unicode letter detection in capitalized-comments rule (#18375) (Francesco Trotta)Bug Fixes
Documentation
0f5df50
docs: Update README (GitHub Actions Bot)1579ce0
docs: update wording regarding indirect eval (#18394) (Kirk Waiblinger)f12a02c
docs: update to eslint v9 in custom-rule-tutorial (#18383) (唯然)Chores
b346605
chore: upgrade@eslint/js
@9
.2.0 (#18413) (Milos Djermanovic)c4c18e0
chore: package.json update for@eslint/js
release (Jenkins)284722c
chore: package.json update for eslint-config-eslint release (Jenkins)347d44f
chore: remove eslintrc export from eslint-config-eslint (#18400) (Milos Djermanovic)f316e20
ci: run tests in Node.js 22 (#18393) (Francesco Trotta)
Changelog
Sourced from @eslint/js
's changelog.
v9.2.0 - May 3, 2024
b346605
chore: upgrade@eslint/js
@9
.2.0 (#18413) (Milos Djermanovic)c4c18e0
chore: package.json update for@eslint/js
release (Jenkins)284722c
chore: package.json update for eslint-config-eslint release (Jenkins)0f5df50
docs: Update README (GitHub Actions Bot)347d44f
chore: remove eslintrc export from eslint-config-eslint (#18400) (Milos Djermanovic)8485d76
feat:no-case-declarations
add suggestions (#18388) (Josh Goldberg ✨)a498f35
feat: update Unicode letter detection in capitalized-comments rule (#18375) (Francesco Trotta)1579ce0
docs: update wording regarding indirect eval (#18394) (Kirk Waiblinger)f316e20
ci: run tests in Node.js 22 (#18393) (Francesco Trotta)eeec413
fix: do not throw when defining a global named defineSetter (#18364) (唯然)f12a02c
docs: update to eslint v9 in custom-rule-tutorial (#18383) (唯然)
Commits
c4c18e0
chore: package.json update for@eslint/js
release- See full diff in compare view
Updates @ladle/react
from 4.0.2 to 4.0.3
Commits
Updates @playwright/experimental-ct-react
from 1.41.2 to 1.43.1
Release notes
Sourced from @playwright/experimental-ct-react
's releases.
v1.43.1
Highlights
microsoft/playwright#30300 - [REGRESSION]: UI mode restarts if keep storage state microsoft/playwright#30339 - [REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode
Browser Versions
- Chromium 124.0.6367.29
- Mozilla Firefox 124.0
- WebKit 17.4
This version was also tested against the following stable channels:
- Google Chrome 123
- Microsoft Edge 123
v1.43.0
New APIs
Method browserContext.clearCookies() now supports filters to remove only some cookies.
// Clear all cookies. await context.clearCookies(); // New: clear cookies with a particular name. await context.clearCookies({ name: 'session-id' }); // New: clear cookies for a particular domain. await context.clearCookies({ domain: 'my-origin.com' });
New mode
retain-on-first-failure
for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.import { defineConfig } from '@playwright/test';
export default defineConfig({ use: { trace: 'retain-on-first-failure', }, });
New property testInfo.tags exposes test tags during test execution.
test('example', async ({ page }) => { console.log(test.info().tags); });
New method locator.contentFrame() converts a
Locator
object to aFrameLocator
. This can be useful when you have aLocator
object obtained somewhere, and later on would like to interact with the content inside the frame.
... (truncated)
Commits
a051ceb
chore: mark 1.43.1 (#30354)3ab466e
cherry-pick(#30312): fix(ui-mode): do not loose run information after writing...35468cf
cherry-pick(#30342): Revert "fix(reuse): reset Origin Private File System API...5332639
cherry-pick(#30263): docs: add v1.43 release notes for language portsc729a7b
cherry-pick(#30232): docs: fix C# and python snippets7748e21
cherry-pick(#30210): docs: update context.backgroundPage event examplesacb6ff1
cherry-pick(#30200): docs(java,csharp): add BrowserContext.backgroundPage(s)7c7f8ac
cherry-pick(#30227): chore(deps): bump vite from 5.0.12 to 5.0.13 (#30254)62d4dc9
cherry-pick(#30235): feat(chromium): roll to r111279d4776
cherry-pick(#30226): chore: migrate to the testserver.initialize- Additional commits viewable in compare view
Updates @playwright/test
from 1.41.2 to 1.43.1
Release notes
Sourced from @playwright/test
's releases.
v1.43.1
Highlights
microsoft/playwright#30300 - [REGRESSION]: UI mode restarts if keep storage state microsoft/playwright#30339 - [REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode
Browser Versions
- Chromium 124.0.6367.29
- Mozilla Firefox 124.0
- WebKit 17.4
This version was also tested against the following stable channels:
- Google Chrome 123
- Microsoft Edge 123
v1.43.0
New APIs
Method browserContext.clearCookies() now supports filters to remove only some cookies.
// Clear all cookies. await context.clearCookies(); // New: clear cookies with a particular name. await context.clearCookies({ name: 'session-id' }); // New: clear cookies for a particular domain. await context.clearCookies({ domain: 'my-origin.com' });
New mode
retain-on-first-failure
for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.import { defineConfig } from '@playwright/test';
export default defineConfig({ use: { trace: 'retain-on-first-failure', }, });
New property testInfo.tags exposes test tags during test execution.
test('example', async ({ page }) => { console.log(test.info().tags); });
New method locator.contentFrame() converts a
Locator
object to aFrameLocator
. This can be useful when you have aLocator
object obtained somewhere, and later on would like to interact with the content inside the frame.
... (truncated)