chore(deps): update all non-major dependencies #584
Merged
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:
^1.1.4
->^1.1.6
^1.2.6
->^1.3.10
^5.49.0
->^5.50.0
^5.49.0
->^5.50.0
^0.72.0
->^0.72.1
^4.2.2
->^4.3.0
^0.17.4
->^0.17.5
^8.32.0
->^8.33.0
^1.29.2
->^1.30.0
7.25.1
->7.26.3
^1.57.1
->^1.58.0
^3.0.2
->^3.0.3
^4.9.4
->^4.9.5
^4.0.4
->^4.1.1
^0.28.1
->^0.28.4
Release Notes
sveltejs/kit (@sveltejs/adapter-node)
v1.1.6
Compare Source
Patch Changes
adapter-node
(#8857)v1.1.5
Compare Source
Patch Changes
docs: fix link in README (#8854)
Updated dependencies [
7cdb7a65
]:sveltejs/kit (@sveltejs/kit)
v1.3.10
Compare Source
Patch Changes
v1.3.9
Compare Source
Patch Changes
v1.3.8
Compare Source
Patch Changes
v1.3.7
Compare Source
Patch Changes
fix: only show prerendering message when actually prerendering (#8809)
fix: handle anchors with special chars when navigating (#8806)
fix: await finalise hook and run it only once (#8817)
v1.3.6
Compare Source
Patch Changes
fix: allow rest parameters to follow multiple optional - or not - parameters (#8761)
fix: consider headers when constructing request hash (#8754)
v1.3.5
Compare Source
Patch Changes
docs: fix typo (#8790)
fix: build error on layout with missing leaves (#8792)
fix: handle hash links with non-ASCII characters when navigating (#8767)
v1.3.4
Compare Source
Patch Changes
v1.3.3
Compare Source
Patch Changes
process.env
to child process (#8777)v1.3.2
Compare Source
Patch Changes
v1.3.1
Compare Source
Patch Changes
v1.3.0
Compare Source
Minor Changes
Patch Changes
v1.2.10
Compare Source
Patch Changes
chore: restrict methods allowed for POST (#8721)
fix: provide proper error when POSTing to a missing page endpoint (#8714)
v1.2.9
Compare Source
Patch Changes
v1.2.8
Compare Source
Patch Changes
v1.2.7
Compare Source
Patch Changes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.50.0
Compare Source
Bug Fixes
String.prototype.length
(#5704) (09d57ce)ThisExpression
andPrivateIdentifier
errors (#6028) (85e783c)Features
key-spacing
rule extension for interface & type declarations (#6211) (67706e7)typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.50.0
Compare Source
Note: Version bump only for package @typescript-eslint/parser
carbon-design-system/carbon-components-svelte
v0.72.1
Compare Source
TehShrike/deepmerge
v4.3.0
Compare Source
propertyIsEnumerable
. #252evanw/esbuild
v0.17.5
Compare Source
Parse
const
type parameters from TypeScript 5.0The TypeScript 5.0 beta announcement adds
const
type parameters to the language. You can now add theconst
modifier on a type parameter of a function, method, or class like this:The type of
names
in the above example isreadonly ["Alice", "Bob", "Eve"]
. Marking the type parameter asconst
behaves as if you had writtenas const
at every use instead. The above code is equivalent to the following TypeScript, which was the only option before TypeScript 5.0:You can read the announcement for more information.
Make parsing generic
async
arrow functions more strict in.tsx
filesPreviously esbuild's TypeScript parser incorrectly accepted the following code as valid:
The official TypeScript parser rejects this code because it thinks it's the identifier
async
followed by a JSX element starting with<T>
. So with this release, esbuild will now reject this syntax in.tsx
files too. You'll now have to add a comma after the type parameter to get generic arrow functions like this to parse in.tsx
files:Allow the
in
andout
type parameter modifiers on class expressionsTypeScript 4.7 added the
in
andout
modifiers on the type parameters of classes, interfaces, and type aliases. However, while TypeScript supported them on both class expressions and class statements, previously esbuild only supported them on class statements due to an oversight. This release now allows these modifiers on class expressions too:Update
enum
constant folding for TypeScript 5.0TypeScript 5.0 contains an updated definition of what it considers a constant expression:
This impacts esbuild's implementation of TypeScript's
const enum
feature. With this release, esbuild will now attempt to follow these new rules. For example, you can now initialize anenum
member with a template literal expression that contains a numeric constant:These rules are not followed exactly due to esbuild's limitations. The rule about dotted references to
const
variables is not followed both because esbuild's enum processing is done in an isolated module setting and because doing so would potentially require esbuild to use a type system, which it doesn't have. For example:Also, the rule that requires converting numbers to a string currently only followed for 32-bit signed integers and non-finite numbers. This is done to avoid accidentally introducing a bug if esbuild's number-to-string operation doesn't exactly match the behavior of a real JavaScript VM. Currently esbuild's number-to-string constant folding is conservative for safety.
Forbid definite assignment assertion operators on class methods
In TypeScript, class methods can use the
?
optional property operator but not the!
definite assignment assertion operator (while class fields can use both):Previously esbuild incorrectly allowed the definite assignment assertion operator with class methods. This will no longer be allowed starting with this release.
eslint/eslint
v8.33.0
Compare Source
Features
2cc7954
feat: addrestrictDefaultExports
option to no-restricted-exports rule (#16785) (Nitin Kumar)Documentation
17f4be2
docs: Fix examples in no-multiple-empty-lines rule (#16835) (jonz94)9c7cfe3
docs: 'Source Code' content in 'Set up Development Environment' page (#16780) (Ben Perlmutter)ede5c64
docs: Custom processors page (#16802) (Ben Perlmutter)2620614
docs: Code of Conduct page (#16781) (Ben Perlmutter)50a8efd
docs: report a sec vulnerability page (#16808) (Ben Perlmutter)ed60afd
docs: Update page titles, section landing pages, and side TOC (#16760) (Ben Perlmutter)333c712
docs: add background to code-path-diagrams for dark-mode (#16822) (Tanuj Kanti)f5f7b9b
docs: Update README (GitHub Actions Bot)2aa4f5f
docs: no-constant-condition: Add multi-comparison example (#16776) (Sebastian Simon)40287db
docs: Remove Google Group icon (#16779) (Nicholas C. Zakas)ea10ca5
docs: 'a .eslint' -> 'an .eslint' for consistency (#16809) (Ben Perlmutter)3be0748
docs: add example for nodejs lintText api (#16789) (Siva K)ce4f5ff
docs: Replace removed related rules with a valid rule (#16800) (Ville Saalo)Microsoft/playwright
v1.30.0
Compare Source
🎉 Happy New Year 🎉
Maintenance release with bugfixes and new browsers only. We are baking some nice features for v1.31.
Browser Versions
This version was also tested against the following stable channels:
pnpm/pnpm
v7.26.3
Compare Source
Patch Changes
pnpm-lock.yaml
lockfile format #5976.Our Gold Sponsors
Our Silver Sponsors
v7.26.2
Compare Source
Patch Changes
pnpm audit
output for better readability #5981node-linker
is set tohoisted
#5992.Our Gold Sponsors
Our Silver Sponsors
v7.26.1
Compare Source
Patch Changes
node-linker
is set tohoisted
#5988.EMFILE: too many open files
by using graceful-fs for reading bin files of dependencies #5887.Our Gold Sponsors
Our Silver Sponsors
v7.26.0
Compare Source
Minor Changes
pnpm dedupe
command that removes dependencies from the lockfile by re-resolving the dependency graph. This work similar to yarn'syarn dedupe --strategy highest
command #5958Patch Changes
prepublishOnly
andprepublish
should not be executed onpnpm pack
#2941.Our Gold Sponsors
Our Silver Sponsors
sass/dart-sass
v1.58.0
Compare Source
Remove sourcemap comments from Sass sources. The generated sourcemap comment
for the compiled CSS output remains unaffected.
Fix a bug in
@extend
logic where certain selectors with three or morecombinators were incorrectly considered superselectors of similar selectors
with fewer combinators, causing them to be incorrectly trimmed from the
output.
Produce a better error message for a number with a leading
+
or-
, adecimal point, but no digits.
Produce a better error message for a nested property whose name starts with
--
.Fix a crash when a selector ends in an escaped backslash.
Add the relative length units from CSS Values 4 and CSS Contain 3 as known
units to validate bad computation in
calc
.Command Line Interface
--watch
flag will now track loads through calls tometa.load-css()
aslong as their URLs are literal strings without any interpolation.
sveltejs/language-tools
v3.0.3
Compare Source
--no-tsconfig
flag work (#1843)Microsoft/TypeScript
v4.9.5
: TypeScript 4.9.5Compare Source
For release notes, check out the release announcement.
Downloads are available on:
Changes:
69e88ef
Port ignore deprecations to 4.9 (#52419)daf4e81
Port timestamp fix to 4.9 (#52426)vitejs/vite
v4.1.1
Compare Source
v4.1.0
Compare Source
Vite 4.1 updates to the latest versions of Rollup and esbuild. Check out the new Rollup docs, that are now powered by VitePress making the navigation between Vite and Rollup docs easier for users.
Vite docs got a theme update migrating to the latest version of VitePress.
As part of Vite 4, the Vue and React plugins have been extracted out of the monorepo. Although their release cycle will no longer follow Vite releases moving forward, Vite 4.1 is released in parallel with new versions of @vitejs/plugin-react and @vitejs/plugin-react-swc. @vitejs/plugin-react 3.1.0 reworks the way HMR is handled fixing many edge cases and @vitejs/plugin-react-swc 3.1.0 adds support for SWC plugins.
There is also a new major for @vitejs/plugin-legacy, see changelog for v4.0.0. This version contains breaking changes:
targets
default.Features
Bug Fixes
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.