-
Notifications
You must be signed in to change notification settings - Fork 7
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
fix(deps): update all non-major dependencies #1424
Merged
Merged
Conversation
This file contains 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
🦋 Changeset detectedLatest commit: d15a69f The changes in this PR will be included in the next version bump. This PR includes changesets to release 34 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Size Change: +15 B (0%) Total Size: 569 kB
ℹ️ View Unchanged
|
Niznikr
approved these changes
Oct 1, 2024
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:
3.5.5
->3.5.6
3.9.8
->3.10.0
3.14.6
->3.14.7
3.10.3
->3.10.4
3.18.2
->3.18.3
3.9.3
->3.9.4
3.12.2
->3.12.3
3.22.2
->3.22.3
3.7.11
->3.7.12
3.13.3
->3.13.4
3.3.4
->3.4.0
3.15.3
->3.15.4
3.11.6
->3.11.7
3.23.2
->3.23.3
3.14.9
->3.14.10
3.19.3
->3.20.0
3.4.2
->3.4.3
3.6.7
->3.6.8
3.15.3
->3.15.4
3.9.5
->3.9.6
3.4.5
->3.4.6
3.14.8
->3.14.9
3.0.0-beta.15
->3.0.0-beta.16
3.25.2
->3.25.3
3.8.15
->3.8.16
3.10.9
->3.11.0
3.10.9
->3.11.0
3.10.9
->3.11.0
3.9.2
->3.10.0
3.11.6
->3.11.7
3.10.8
->3.11.0
3.8.2
->3.8.3
3.9.6
->3.9.7
3.6.10
->3.6.11
3.6.7
->3.6.8
3.16.2
->3.17.0
3.12.2
->3.12.3
3.12.2
->3.12.3
3.6.9
->3.6.10
3.0.0-beta.5
->3.0.0-beta.6
3.7.7
->3.7.8
3.10.3
->3.10.4
3.9.6
->3.10.0
3.12.1
->3.13.0
3.2.8
->3.2.9
3.8.9
->3.8.10
3.9.6
->3.9.7
3.24.1
->3.25.0
3.24.1
->3.25.0
3.3.9
->3.3.10
^1.15.0
->^1.16.0
0.23.1
->0.24.0
3.34.3
->3.35.0
1.3.3
->1.4.0
3.32.2
->3.33.0
^1.90.0
->^1.93.1
Release Notes
adobe/react-spectrum (@internationalized/date)
v3.5.6
Compare Source
adobe/react-spectrum (@react-aria/button)
v3.10.0
Compare Source
vanilla-extract-css/vanilla-extract (@vanilla-extract/css)
v1.16.0
Compare Source
Minor Changes
#1475
cd9d8b2
Thanks @corradopetrelli! - Add::-webkit-calendar-picker-indicator
as a valid pseudo-element#1450
7b256d2
Thanks @wuz! - AddcreateViewTransition
APIcreateViewTransition
creates a single scoped view transition name for use with CSS View Transitions. This avoids potential naming collisions with other view transitions.evanw/esbuild (esbuild)
v0.24.0
Compare Source
This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of
esbuild
in yourpackage.json
file (recommended) or be using a version range syntax that only accepts patch upgrades such as^0.23.0
or~0.23.0
. See npm's documentation about semver for more information.Drop support for older platforms (#3902)
This release drops support for the following operating system:
This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.
Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:
Fix class field decorators in TypeScript if
useDefineForClassFields
isfalse
(#3913)Setting the
useDefineForClassFields
flag tofalse
intsconfig.json
means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.Avoid incorrect cycle warning with
tsconfig.json
multiple inheritance (#3898)TypeScript 5.0 introduced multiple inheritance for
tsconfig.json
files whereextends
can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release,tsconfig.json
files containing this edge case should work correctly without generating a warning.Handle Yarn Plug'n'Play stack overflow with
tsconfig.json
(#3915)Previously a
tsconfig.json
file thatextends
another file in a package with anexports
map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.Work around more issues with Deno 1.31+ (#3917)
This version of Deno broke the
stdin
andstdout
properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. whenimport.meta.main
istrue
). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.This fix was contributed by @Joshix-1.
microsoft/vscode (vscode)
v1.93.1
: August 2024 Recovery 1Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.93.0
: August 2024Compare Source
Welcome to the August 2024 release of Visual Studio Code. There are many updates in this version that we hope you'll like, some of the key highlights include:
v1.92.2
: July 2024 Recovery 2Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.92.1
: July 2024 Recovery 1Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.92.0
: July 2024Compare Source
Welcome to the July 2024 release of Visual Studio Code. There are many updates in this version that we hope you'll like, some of the key highlights include:
v1.91.1
: June 2024 Recovery 1[Compare Source](https://redirect.github.com/micr
Configuration
📅 Schedule: Branch creation - "before 4am 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 was generated by Mend Renovate. View the repository job log.