fix(deps): update all non-major dependencies#10160
Merged
Conversation
Member
|
I guess the test is failing because of remix-run/react-router#9298. |
07b100c to
0dbde1b
Compare
0dbde1b to
3019363
Compare
sapphi-red
approved these changes
Sep 23, 2022
Member
sapphi-red
left a comment
There was a problem hiding this comment.
I wondered if this magic-string's fix (Rich-Harris/magic-string#222) would affect us, but I confimed that we're not using MagicString::replace. Also there's a perf improvement Rich-Harris/magic-string#219.
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^7.19.0->^7.19.1^7.19.0->^7.19.1^7.19.0->^7.19.1^7.19.0->^7.19.2^7.30.0->^7.31.214.0.1->14.1.0^1.0.5->^1.0.8^18.0.19->^18.0.21^5.36.2->^5.38.0^5.36.2->^5.38.0^10.4.9->^10.4.12^3.25.1->^3.25.2^0.26.3->^0.26.4^0.5.14->^0.5.16^1.6.11->^1.6.12^1.25.2->^1.26.07.11.0->7.12.2^7.11.0->^7.12.2^6.3.0->^6.4.1^1.54.9->^1.55.0^0.4.0->^0.4.2^0.8.10->^0.8.11^3.1.0->^3.1.3^1.0.0-alpha.13->^1.0.0-alpha.15^0.23.2->^0.23.4^8.8.1->^8.9.0Release Notes
babel/babel (@babel/core)
v7.19.1Compare Source
🐛 Bug Fix
babel-corebabel-traversebabel-parserbabel-plugin-transform-typescriptbabel/babel (@babel/parser)
v7.19.1Compare Source
v7.19.1 (2022-09-14)
Thanks @hegemonic for your first PR!
🐛 Bug Fix
babel-corebabel-traversebabel-parserbabel-plugin-transform-typescriptCommitters: 5
rollup/plugins
v14.1.0Compare Source
2022-09-12
Features
sveltejs/vite-plugin-svelte
v1.0.8Compare Source
Patch Changes
svelte-inspector: select hovered element instead of parent on mousemouse (#449)
svelte-inspector: ignore navigation keys while not enabled (#449)
v1.0.7Compare Source
Patch Changes
v1.0.6Compare Source
Patch Changes
update svelte-hmr and enable partial hmr accept by default (fixes #134) (#440)
svelte-inspector: add keyboard navigation, select element on activation, improve a11y and info bubble position/content (#438)
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.38.0Compare Source
Note: Version bump only for package @typescript-eslint/eslint-plugin
v5.37.0Compare Source
Bug Fixes
5.36.2 (2022-09-05)
Bug Fixes
5.36.1 (2022-08-30)
Note: Version bump only for package @typescript-eslint/eslint-plugin
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.38.0Compare Source
Note: Version bump only for package @typescript-eslint/parser
v5.37.0Compare Source
Note: Version bump only for package @typescript-eslint/parser
5.36.2 (2022-09-05)
Note: Version bump only for package @typescript-eslint/parser
5.36.1 (2022-08-30)
Note: Version bump only for package @typescript-eslint/parser
postcss/autoprefixer
v10.4.12Compare Source
v10.4.11Compare Source
text-decorationprefixes by moving to MDN data (by Romain Menke).v10.4.10Compare Source
unicode-bidiprefixes by moving to MDN data.zloirock/core-js
v3.25.2Compare Source
document.allas a callable in some missed casesrich-harris/magic-string
v0.26.4Compare Source
Features
.replace()when searching string, add.replaceAll()(#222) (04a05bd)Performance Improvements
unjs/mlly
v0.5.16Compare Source
v0.5.15Compare Source
phoenixframework/phoenix
v1.6.12Compare Source
Microsoft/playwright
v1.26.0Compare Source
Assertions
expect(locator).toBeEnabled([options]).expect(locator).toHaveText(expected[, options])now pierces open shadow roots.expect(locator).toBeEditable([options]).expect(locator).toBeVisible([options]).Other Highlights
maxRedirectsforapiRequestContext.get(url[, options])and others to limit redirect count.--pass-with-no-teststhat allows the test suite to pass when no files are found.--ignore-snapshotsto skip snapshot expectations, such asexpect(value).toMatchSnapshot()andexpect(page).toHaveScreenshot().Behavior Change
A bunch of Playwright APIs already support the waitUntil: 'domcontentloaded' option. For example:
Prior to 1.26, this would wait for all iframes to fire the
DOMContentLoadedevent.To align with web specification, the
'domcontentloaded'value only waits for the target frame to fire the'DOMContentLoaded'event. UsewaitUntil: 'load'to wait for all iframes.Browser Versions
This version was also tested against the following stable channels:
pnpm/pnpm
v7.12.2Compare Source
Patch Changes
pnpm link --globalshould work with the--dir=<path>option #5371.Our Gold Sponsors
Our Silver Sponsors
What's Changed
New Contributors
Full Changelog: pnpm/pnpm@v7.12.1...v7.12.2
v7.12.1Compare Source
Patch Changes
Our Gold Sponsors
Our Silver Sponsors
What's Changed
Full Changelog: pnpm/pnpm@v7.12.0...v7.12.1
v7.12.0Compare Source
Minor Changes
A new setting supported in the pnpm section of the
package.jsonfile:allowNonAppliedPatches. When it is set totrue, non-applied patches will not cause an error, just a warning will be printed. For example:{ "name": "foo", "version": "1.0.0", "pnpm": { "patchedDependencies": { "express@4.18.1": "patches/express@4.18.1.patch" }, "allowNonAppliedPatches": true } }Now it is possible to exclude packages from hoisting by prepending a
!to the pattern. This works with both thehoist-patternandpublic-hoist-patternsettings. For instance:Ref #5272
Patch Changes
pnpm patchshould work on files that don't have an end of line #5320.pnpm patchusing a custom--edit-dir.Our Gold Sponsors
Our Silver Sponsors
What's Changed
New Contributors
Full Changelog: pnpm/pnpm@v7.11.0...v7.12.0
remix-run/react-router
v6.4.1Compare Source
Patch Changes
react-router@6.4.1@remix-run/router@1.0.1v6.4.0Compare Source
Whoa this is a big one!
6.4.0brings all the data loading and mutation APIs over from Remix. Here's a quick high level overview, but it's recommended you go check out the docs, especially the feature overview and the tutorial.New APIs
createMemoryRouter/createBrowserRouter/createHashRouter<RouterProvider>loaderand mutate with a RouteactionerrorElement<Form>componentuseFetcher()deferandAwait<ScrollRestoration>New Features
<Link relative="path">(#9160)Bug Fixes
useLocationreturns the scoped location inside a<Routes location>component (#9094)<Link replace>prop if it is defined (#8779)Updated Dependencies
react-router@6.4.0sass/dart-sass
v1.55.0Compare Source
Potentially breaking bug fix: Sass numbers are now universally stored as
64-bit floating-point numbers, rather than sometimes being stored as integers.
This will generally make arithmetic with very large numbers more reliable and
more consistent across platforms, but it does mean that numbers between nine
quadrillion and nine quintillion will no longer be represented with full
accuracy when compiling Sass on the Dart VM.
Potentially breaking bug fix: Sass equality is now properly transitive.
Two numbers are now considered equal (after doing unit conversions) if they
round to the same
1e-11th. Previously, numbers were considered equal if theywere within
1e-11of one another, which led to some circumstances where$a == $band$b == $cbut$a != $b.Potentially breaking bug fix: Various functions in
sass:mathno longertreat floating-point numbers that are very close (but not identical) to
integers as integers. Instead, these functions now follow the floating-point
specification exactly. For example,
math.pow(0.000000000001, -1)now returns1000000000000instead ofInfinity.Emit a deprecation warning for
$a -$band$a +$b, since these look likethey could be unary operations but they're actually parsed as binary
operations. Either explicitly write
$a - $bor$a (-$b). Seehttps://sass-lang.com/d/strict-unary for more details.
Dart API
Add an optional
argumentNameparameter toSassScriptException()to make iteasier to throw exceptions associated with particular argument names.
Most APIs that previously returned
numnow returndouble. All APIscontinue to accept
num, although in Dart 2.0.0 these APIs will be changedto accept only
double.JS API
accessible by the JS API.
antfu/strip-literal
v0.4.2Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.4.1Compare Source
🚀 Features
createIsLiteralPositionAcornfunction - by @sapphi-red in https://github.com/antfu/strip-literal/issues/2View changes on GitHub
unjs/unbuild
v0.8.11Compare Source
vitejs/vite
v3.1.3Compare Source
rollupOptions.inputin lib mode (#10116) (c948e7d), closes #10116v3.1.2Compare Source
v3.1.1Compare Source
asyncandawaitin code (#9854) (31f5ff3), closes #9854vuejs/vitepress
v1.0.0-alpha.15Compare Source
Bug Fixes
#from outline (#1344) (f1cf1e8)v1.0.0-alpha.14Compare Source
Bug Fixes
transformHtmlandbuildEnd(#1270) (ee37eaa)Features
transformHeadhook (#1323) (6b16dad)vp-rawcontainer (#1104) (9a6e1ea)Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.