chore(deps): update all non-major dependencies #416
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.0.0-next.64
->^1.0.0-next.65
^1.0.0-next.415
->^1.0.0-next.428
^5.33.0
->^5.33.1
^5.33.0
->^5.33.1
^0.68.0
->^0.70.0
^0.15.3
->^0.15.5
7.9.0
->7.9.3
^7.9.0
->^7.9.3
^2.78.0
->^2.78.1
^1.54.4
->^1.54.5
^2.8.0
->^2.8.1
^3.0.8
->^3.0.9
^0.22.0
->^0.22.1
Release Notes
sveltejs/kit (@sveltejs/adapter-auto)
v1.0.0-next.65
Compare Source
Patch Changes
4bd84b32
]:sveltejs/kit (@sveltejs/kit)
v1.0.0-next.428
Compare Source
Patch Changes
$app/stores
to be used from anywhere on the browser (#6100)enumerable: false
on "[x] no longer exists" getters so that they are not triggered by spreading (#6105)@
symbol (#6110)LayoutServerLoad.{name}
type (#6123)v1.0.0-next.427
Compare Source
Patch Changes
v1.0.0-next.426
Compare Source
Patch Changes
v1.0.0-next.425
Compare Source
Patch Changes
v1.0.0-next.424
Compare Source
Patch Changes
v1.0.0-next.423
Compare Source
Patch Changes
export let data
(#6050)v1.0.0-next.422
Compare Source
Patch Changes
+page.server.js
to respond toGET
requests with JSON (#6007)throw error/redirect
in+server.js
(#6028)set-cookie
insetHeaders
(#6033)v1.0.0-next.421
Compare Source
Patch Changes
export const prerender = false
in+page.server.js
(#6012)v1.0.0-next.420
Compare Source
Patch Changes
@sveltejs/kit
project in Vite 3.0.3+ (#5861)v1.0.0-next.419
Compare Source
Patch Changes
POST
handler provides alocation
(#5989)__data.json
files for server-side redirects when prerendering (#5997)v1.0.0-next.418
Compare Source
Patch Changes
v1.0.0-next.417
Compare Source
Patch Changes
v1.0.0-next.416
Compare Source
Patch Changes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.33.1
Compare Source
Bug Fixes
no-unnecessary-type-constraint
andno-unsafe-argument
(and enableeslint-plugin/recommended
rules internally) (#5453) (d023910)typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.33.1
Compare Source
Note: Version bump only for package @typescript-eslint/parser
carbon-design-system/carbon-components-svelte
v0.70.0
Compare Source
Features
filteredRowIds
prop toToolbarSearch
to support paginationv0.69.0
Compare Source
Features
on:click:header--select
event inDataTable
on:click:row--select
event inDataTable
evanw/esbuild
v0.15.5
Compare Source
Fix issues with Yarn PnP and Yarn's workspaces feature (#2476)
This release makes sure esbuild works with a Yarn feature called workspaces. Previously esbuild wasn't tested in this scenario, but this scenario now has test coverage. Getting this to work involved further tweaks to esbuild's custom code for what happens after Yarn PnP's path resolution algorithm runs, which is not currently covered by Yarn's PnP specification. These tweaks also fix
exports
map resolution with Yarn PnP for non-empty subpaths, which wasn't previously working.v0.15.4
Compare Source
Consider TypeScript import assignments to be side-effect free (#2468)
TypeScript has a legacy import syntax for working with TypeScript namespaces that looks like this:
Since esbuild converts TypeScript into JavaScript one file at a time, it doesn't know if
bar
is supposed to be a value or a type (or both, which TypeScript actually allows in this case). This is problematic because values are supposed to be kept during the conversion but types are supposed to be removed during the conversion. Currently esbuild keepsbar
in the output, which is done becausesomeNamespace.foo
is a property access and property accesses run code that could potentially have a side effect (although there is no side effect in this case).With this release, esbuild will now consider
someNamespace.foo
to have no side effects. This meansbar
will now be removed when bundling and when tree shaking is enabled. Note that it will still not be removed when tree shaking is disabled. This is because in this mode, esbuild supports adding additional code to the end of the generated output that's in the same scope as the module. That code could potentially make use ofbar
, so it would be incorrect to remove it. If you wantbar
to be removed, you'll have to enable tree shaking (which tells esbuild that nothing else depends on the unexported top-level symbols in the generated output).Change the order of the banner and the
"use strict"
directive (#2467)Previously the top of the file contained the following things in order:
"use strict"
directive from the source code, if presentbanner
API option, if specifiedThis was problematic for people that used the
banner
API option to insert the hashbang comment instead of using esbuild's hashbang comment preservation feature. So with this release, the order has now been changed to:banner
API option, if specified"use strict"
directive from the source code, if presentI'm considering this change to be a bug fix instead of a breaking change because esbuild's documentation states that the
banner
API option can be used to "insert an arbitrary string at the beginning of generated JavaScript files". While this isn't technically true because esbuild may still insert the original hashbang comment before the banner, it's at least more correct now because the banner will now come before the"use strict"
directive.For context: JavaScript files recently allowed using a hashbang comment, which starts with
#!
and which must start at the very first character of the file. It allows Unix systems to execute the file directly as a script without needing to prefix it by thenode
command. This comment typically has the value#!/usr/bin/env node
. Hashbang comments will be a part of ES2023 when it's released next year.Fix
exports
maps with Yarn PnP path resolution (#2473)The Yarn PnP specification says that to resolve a package path, you first resolve it to the absolute path of a directory, and then you run node's module resolution algorithm on it. Previously esbuild followed this part of the specification. However, doing this means that
exports
inpackage.json
is not respected because node's module resolution algorithm doesn't interpretexports
for absolute paths. So with this release, esbuild will now use a modified algorithm that deviates from both specifications but that should hopefully behave more similar to what Yarn actually does: node's module resolution algorithm is run with the original import path but starting from the directory returned by Yarn PnP.pnpm/pnpm
v7.9.3
Compare Source
Patch Changes
Our Gold Sponsors
Full Changelog: pnpm/pnpm@v7.9.2...v7.9.3
v7.9.2
Compare Source
Patch Changes
Our Gold Sponsors
v7.9.1
Compare Source
Patch Changes
pnpm setup
: don't usesetx
to set env variables on Windows.Our Gold Sponsors
rollup/rollup
v2.78.1
Compare Source
2022-08-19
Bug Fixes
Pull Requests
sass/dart-sass
v1.54.5
Compare Source
Properly consider
a ~ c
to be a superselector ofa ~ b ~ c
anda + b + c
.Properly consider
b > c
to be a superselector ofa > b > c
, and similarlyfor other combinators.
Properly calculate specificity for selector pseudoclasses.
Deprecate use of
random()
when$limit
has units to make it explicit thatrandom()
currently ignores units. A future version will no longer ignoreunits.
Don't throw an error when the same module is
@forward
ed multiple timesthrough a configured module.
Embedded Sass
install, the
sass-embedded
npm package now declares optional dependencies onplatform-specific embedded compiler packages.
sveltejs/language-tools
v2.8.1
Compare Source
vitejs/vite
v3.0.9
Compare Source
rollupOptions.output.dir
(fix #9100) (#9111) (3bffd14), closes #9100 #9111ssrTransform
object allocation (#9706) (6e58d9d), closes #9706vitest-dev/vitest
v0.22.1
Compare Source
🚀 Features
moduleCache.invalidateDepTree
utiltity - by @antfu in https://github.com/vitest-dev/vitest/issues/1872🐞 Bug Fixes
View changes on GitHub
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.