chore(deps): update all non-major dependencies #112
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:
^5.0.0
->^5.1.0
^2.5.1
->^2.6.2
^1.54.1
->^1.54.2
^22.16.5
->^22.17.0
5.12.3
->5.12.8
^9.31.0
->^9.32.0
^16.1.2
->^16.1.4
10.13.1
->10.14.0
^2.13.0
->^2.13.1
0.13.0
->0.13.3
5.8.3
->5.9.2
^7.0.5
->^7.0.6
Release Notes
antfu/eslint-config (@antfu/eslint-config)
v5.1.0
Compare Source
🚀 Features
eslint-plugin-jsdoc
to v52 - by @antfu (80e4a)View changes on GitHub
clerk/javascript (@clerk/backend)
v2.6.2
Compare Source
Patch Changes
Fix Node 18 compatibility issues with
snakecase-keys
. (#6441) by @wobsorianoUpdated dependencies [
7a46679
,05cc5ec
,22c35ef
,e8d816a
,aa9f185
,af0e123
,3d1d871
]:v2.6.1
Compare Source
Patch Changes
Adds scoping and secret key retrieval to machines BAPI methods: (#6417) by @wobsoriano
Fix SAML Connection
attributeMapping
keys not being converted from camelCase to snake_case. (#6418) by @tmilewskiFixes an issue where the Clerk SDK was improperly detecting the request's origin. (#6393) by @brkalow
Updated dependencies [
e404456
,2803133
,f1d9d34
,d58b959
,822ba1f
,d4d2612
]:v2.6.0
Compare Source
Minor Changes
Patch Changes
b0fdc9e
]:v2.5.2
Compare Source
Patch Changes
cd59c0e
,cd59c0e
]:microsoft/playwright (@playwright/test)
v1.54.2
Compare Source
Highlights
https://github.com/microsoft/playwright/issues/36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)https://github.com/microsoft/playwright/issues/368288 - [Regression]: Playwright Codegen keeps spamming with selected optiohttps://github.com/microsoft/playwright/issues/3681010 - [Regression]: Starting Codegen with target language doesn't work anymore
Browser Versions
This version was also tested against the following stable channels:
withastro/astro (astro)
v5.12.8
Compare Source
Patch Changes
0567fb7
Thanks @ascorbic! - Adds//
to list of internal path prefixes that do not have automated trailing slash handling#13894
b36e72f
Thanks @florian-lefebvre! - Removes Astro Studio commands from the CLI helpUpdated dependencies [
0567fb7
]:v5.12.7
Compare Source
Patch Changes
#14169
f4e8889
Thanks @ascorbic! - Skips trailing slash handling for paths that start with/.
.#14170
34e6b3a
Thanks @ematipico! - Fixes an issue where static redirects couldn't correctly generate a redirect when the destination is a prerendered route, and theoutput
is set to"server"
.#14169
f4e8889
Thanks @ascorbic! - Fixes a bug that prevented images from being displayed in dev when using the Netlify adapter withtrailingSlash
set toalways
Updated dependencies [
f4e8889
]:v5.12.6
Compare Source
Patch Changes
#14153
29e9283
Thanks @jp-knj! - Fixes a regression introduced by a recent optimisation of how SVG images are emitted during the build.#14156
592f08d
Thanks @TheOtterlord! - Fix the client router not submitting forms if the active URL contained a hash#14160
d2e25c6
Thanks @ascorbic! - Fixes a bug that meant some remote image URLs could cause invalid filenames to be used for processed images#14167
62bd071
Thanks @ascorbic! - Fixes a bug that prevented destroyed sessions from being deleted from storage unless the session had been loadedv5.12.5
Compare Source
Patch Changes
#14059
19f53eb
Thanks @benosmac! - Fixes a bug in i18n implementation, where Astro didn't emit the correct pages whenfallback
is enabled, and a locale uses a catch-all route, e.g.src/pages/es/[...catchAll].astro
#14155
31822c3
Thanks @ascorbic! - Fixes a bug that caused an error "serverEntrypointModule[_start] is not a function" in some adaptersv5.12.4
Compare Source
Patch Changes
#14031
e9206c1
Thanks @jp-knj! - Optimized the build pipeline for SVG images. Now, Astro doesn't reprocess images that have already been processed.#14132
976879a
Thanks @ematipico! - Fixes a bug where the propertyAstro.routePattern
/context.routePattern
wasn't updated when using a rewrite via middleware.#14131
aafc4d7
Thanks @florian-lefebvre! - Fixes a case where an error occurring in a middleware would show the dev overlay instead of the custom500.astro
page#14127
2309ada
Thanks @florian-lefebvre! - Upgrades zod#14134
186c201
Thanks @ascorbic! - Throws a more helpful error in dev if trying to use a server island without an adapter#14129
3572d85
Thanks @ematipico! - Fixes a bug where the CSP headers was incorrectly added to a page when using an adapter.eslint/eslint (eslint)
v9.32.0
Compare Source
lint-staged/lint-staged (lint-staged)
v16.1.4
Compare Source
Patch Changes
90b37b0
Thanks @iiroj! - Add anothertypes
field topackage.json
to make even more sure NPM detects that lint-staged includes built-in TypeScript type definitions.v16.1.3
Compare Source
Patch Changes
7ea700b
Thanks @dword-design! - Add thetypes
field topackage.json
to make sure NPM detects lint-staged includes built-in TypeScript type definitions.pnpm/pnpm (pnpm)
v10.14.0
Compare Source
Minor Changes
Added support for JavaScript runtime resolution
Declare Node.js, Deno, or Bun in
devEngines.runtime
(insidepackage.json
) and let pnpm download and pin it automatically.Usage example:
How it works:
pnpm install
resolves your specified range to the latest matching runtime version.Why this is better:
useNodeVersion
andexecutionEnv.nodeVersion
)executionEnv.nodeVersion
). So, different projects in a workspace can use different runtimes.devEngines.runtime
setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.Related PR: #9755.
Add
--cpu
,--libc
, and--os
topnpm install
,pnpm add
, andpnpm dlx
to customizesupportedArchitectures
via the CLI #7510.Patch Changes
pnpm add
downloads packages whoselibc
differ frompnpm.supportedArchitectures.libc
.dlx
to parse CLI flags and options between thedlx
command and the command to run or between thedlx
command and--
#9719.pnpm install --prod
should removing hoisted dev dependencies #9782.pnpm install
to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.toplenboren/simple-git-hooks (simple-git-hooks)
v2.13.1
Compare Source
Patch Changes
#128
2ad5514
Thanks @OlofFredriksson! - fix: postinstall should ignore adding hooks if SKIP_INSTALL_SIMPLE_GIT_HOOKS is defined#130
1abdcd7
Thanks @cexoso! - fix: only get localcoore.hooksPath
configrolldown/tsdown (tsdown)
v0.13.3
Compare Source
🚨 Minor Breaking Changes
dts.build
option should be enable manually fortsc -b
- by @sxzz (13146)🚀 Features
logLevel
&customLogger
option - by @sxzz (724d1)warnOnce
to logger - by @sxzz (eb4fb)ignoreWatch
- by @sxzz (91f9f)🐞 Bug Fixes
ignoreWatch
- by @sxzz (d0e31)View changes on GitHub
v0.13.2
Compare Source
🚨 Upstream Breaking Changes
dts.isolatedDeclarations
todts.oxc
- by @sxzz (5bdb9)🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.13.1
Compare Source
🚀 Features
🐞 Bug Fixes
defineConfig
- by @sxzz (7c32a)View changes on GitHub
microsoft/TypeScript (typescript)
v5.9.2
Compare Source
vitejs/vite (vite)
v7.0.6
Compare Source
Bug Fixes
Miscellaneous Chores
Code Refactoring
Configuration
📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.