chore(deps): update devdependencies-non-major #131
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:
22.7.7
->22.10.7
6.1.3
->6.2.0
10.1.2
->10.1.3
16.4.5
->16.4.7
0.24.0
->0.24.2
9.13.0
->9.18.0
11.0.0
->11.0.1
15.11.0
->15.14.0
2.4.11
->2.7.0
3.1.7
->3.1.9
3.3.3
->3.4.2
24.1.3
->24.2.1
1.204.3
->1.226.4
4.19.1
->4.19.2
5.6.3
->5.7.3
Release Notes
avajs/ava (ava)
v6.2.0
Compare Source
What's Changed
filterNodeArgumentsForWorkerThreads
option in https://github.com/avajs/ava/pull/3336New Contributors
Full Changelog: avajs/ava@v6.1.3...v6.2.0
bcoe/c8 (c8)
v10.1.3
Compare Source
Bug Fixes
motdotla/dotenv (dotenv)
v16.4.7
Compare Source
Changed
.tap
folder when publishing. (oops, sorry about that everyone. - @motdotla) #848v16.4.6
Compare Source
Changed
evanw/esbuild (esbuild)
v0.24.2
Compare Source
Fix regression with
--define
andimport.meta
(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
define
values to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=...
. Even thoughimport
is normally a keyword that can't be used as an identifier, ES modules special-case theimport.meta
expression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by @sapphi-red.
v0.24.1
Compare Source
Allow
es2024
as a target intsconfig.json
(#4004)TypeScript recently added
es2024
as a compilation target, so esbuild now supports this in thetarget
field oftsconfig.json
files, such as in the following configuration file:As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by @billyjanitsch.
Allow automatic semicolon insertion after
get
/set
This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--define
and--pure
(#4008)The
define
andpure
API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--define
and--pure
consistent with--global-name
, which already supported quoted property names. For example, the following is now possible:Note that if you're passing values like this on the command line using esbuild's
--define
flag, then you'll need to know how to escape quote characters for your shell. You may find esbuild's JavaScript API more ergonomic and portable than writing shell code.Minify empty
try
/catch
/finally
blocks (#4003)With this release, esbuild will now attempt to minify empty
try
blocks:This can sometimes expose additional minification opportunities.
Include
entryPoint
metadata for thecopy
loader (#3985)Almost all entry points already include a
entryPoint
field in theoutputs
map in esbuild's build metadata. However, this wasn't the case for thecopy
loader as that loader is a special-case that doesn't behave like other loaders. This release adds theentryPoint
field in this case.Source mappings may now contain
null
entries (#3310, #3878)With this change, sources that result in an empty source map may now emit a
null
source mapping (i.e. one with a generated position but without a source index or original position). This change improves source map accuracy by fixing a problem where minified code from a source without any source mappings could potentially still be associated with a mapping from another source file earlier in the generated output on the same minified line. It manifests as nonsensical files in source mapped stack traces. Now thenull
mapping "resets" the source map so that any lookups into the minified code without any mappings resolves tonull
(which appears as the output file in stack traces) instead of the incorrect source file.This change shouldn't affect anything in most situations. I'm only mentioning it in the release notes in case it introduces a bug with source mapping. It's part of a work-in-progress future feature that will let you omit certain unimportant files from the generated source map to reduce source map size.
Avoid using the parent directory name for determinism (#3998)
To make generated code more readable, esbuild includes the name of the source file when generating certain variable names within the file. Specifically bundling a CommonJS file generates a variable to store the lazily-evaluated module initializer. However, if a file is named
index.js
(or with a different extension), esbuild will use the name of the parent directory instead for a better name (since many packages have files all namedindex.js
but have unique directory names).This is problematic when the bundle entry point is named
index.js
and the parent directory name is non-deterministic (e.g. a temporary directory created by a build script). To avoid non-determinism in esbuild's output, esbuild will now useindex
instead of the parent directory in this case. Specifically this will happen if the parent directory is equal to esbuild'soutbase
API option, which defaults to the lowest common ancestor of all user-specified entry point paths.Experimental support for esbuild on NetBSD (#3974)
With this release, esbuild now has a published binary executable for NetBSD in the
@esbuild/netbsd-arm64
npm package, and esbuild's installer has been modified to attempt to use it when on NetBSD. Hopefully this makes installing esbuild via npm work on NetBSD. This change was contributed by @bsiegert.eslint/eslint (eslint)
v9.18.0
Compare Source
v9.17.0
Compare Source
v9.16.0
Compare Source
Features
8f70eb1
feat: AddignoreComputedKeys
option insort-keys
rule (#19162) (Milos Djermanovic)Documentation
9eefc8f
docs: fix typos inuse-isnan
(#19190) (루밀LuMir)0c8cea8
docs: switch the order of words inno-unreachable
(#19189) (루밀LuMir)0c19417
docs: add missing backtick tono-async-promise-executor
(#19188) (루밀LuMir)8df9276
docs: add backtick in-0
indescription
ofno-compare-neg-zero
(#19186) (루밀LuMir)7e16e3f
docs: fixcaseSensitive
option's title ofsort-keys
(#19183) (Tanuj Kanti)0c6b842
docs: fix typos inmigration-guide.md
(#19180) (루밀LuMir)353266e
docs: fix a typo indebug.md
(#19179) (루밀LuMir)5ff318a
docs: delete unnecessary horizontal rule(---
) innodejs-api
(#19175) (루밀LuMir)576bcc5
docs: mark more rules as handled by TypeScript (#19164) (Tanuj Kanti)742d054
docs: note thatno-restricted-syntax
can be used with any language (#19148) (Milos Djermanovic)Chores
feb703b
chore: upgrade to@eslint/[email protected]
(#19195) (Francesco Trotta)df9bf95
chore: package.json update for @eslint/js release (Jenkins)f831893
chore: add type forignoreComputedKeys
option ofsort-keys
(#19184) (Tanuj Kanti)3afb8a1
chore: update dependency @eslint/json to ^0.8.0 (#19177) (Milos Djermanovic)1f77c53
chore: addrepository.directory
property topackage.json
(#19165) (루밀LuMir)d460594
chore: update dependency @arethetypeswrong/cli to ^0.17.0 (#19147) (renovate[bot])45cd4ea
refactor: update default options in rules (#19136) (Milos Djermanovic)v9.15.0
Compare Source
v9.14.0
Compare Source
isaacs/node-glob (glob)
v11.0.1
Compare Source
sindresorhus/globals (globals)
v15.14.0
Compare Source
v15.13.0
Compare Source
v15.12.0
Compare Source
Iterator
to ES2025 (#272)439b398
dd0a502
mswjs/msw (msw)
v2.7.0
Compare Source
v2.7.0 (2024-12-17)
Features
picocolors
instead ofchalk
(#2377) (85bdd82
) @Namchee @kettanaitov2.6.9
Compare Source
v2.6.9 (2024-12-16)
Bug Fixes
SharedArrayBuffer
inHttpResponse.arrayBuffer
(#2389) (41f00e1
) @danilofuchs @kettanaitov2.6.8
Compare Source
v2.6.8 (2024-12-07)
Bug Fixes
server.listen()
afterserver.close()
(#2383) (00da9ca
) @kettanaitov2.6.7
Compare Source
v2.6.7 (2024-12-06)
Bug Fixes
accept
header on passthrough (#2375) (3f40055
) @smouillour @kettanaitov2.6.6
Compare Source
v2.6.6 (2024-11-22)
Bug Fixes
3b7b776
) @kettanaitov2.6.5
Compare Source
v2.6.5 (2024-11-16)
Bug Fixes
5bf3e3b
) @kettanaitov2.6.4
Compare Source
v2.6.4 (2024-11-10)
Bug Fixes
sendBeacon()
requests (#2353) (2fa98c3
) @kettanaito2fa98c3
) @kettanaitov2.6.3
Compare Source
v2.6.3 (2024-11-10)
Bug Fixes
transformResponse
option (#2351) (74c4a3a
) @kettanaitov2.6.2
Compare Source
v2.6.2 (2024-11-07)
Bug Fixes
@bundled-es-modules/cookie
to 2.0.1 (#2312) (c134352
) @kettanaitov2.6.1
Compare Source
v2.6.1 (2024-11-06)
Bug Fixes
instanceof
handler check failures between different MSW versions (#2349) (28d26bd
) @kettanaitov2.6.0
Compare Source
v2.6.0 (2024-10-29)
Features
ae786f5
) @kettanaito @DanielleHuismanv2.5.2
Compare Source
v2.5.2 (2024-10-27)
Bug Fixes
e9b0636
) @kettanaitov2.5.1
Compare Source
v2.5.1 (2024-10-24)
Bug Fixes
@inquirer/confirm
requirement to 5.0.0 (#2325) (b65c0a8
) @greysteil @kettanaitov2.5.0
Compare Source
v2.5.0 (2024-10-22)
Features
a1a81ba
) @kettanaitov2.4.13
Compare Source
v2.4.13 (2024-10-22)
Bug Fixes
@inquirer/confirm
to 4.0 (#2300) (0cf9cce
) @greysteil @kettanaitov2.4.12
Compare Source
v2.4.12 (2024-10-21)
Bug Fixes
a58a300
) @paoloricciutiremy/nodemon (nodemon)
v3.1.9
Compare Source
Bug Fixes
exitcrash
(9c9de6e)v3.1.8
Compare Source
Bug Fixes
prettier/prettier (prettier)
v3.4.2
Compare Source
diff
Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @tats-u)
Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.
U+30A0 can be used as the replacement of the
-
in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).Fix comments print on class methods with decorators (#16891 by @fisker)
Fix non-idempotent formatting (#16899 by @seiyab)
This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.
v3.4.1
Compare Source
diff
Remove unnecessary parentheses around assignment in
v-on
(#16887 by @fisker)<!-- Input --> <template> <button @​click="foo += 2">Click</button> </template> <!-- Prettier 3.4.0 --> <template> <button @​click="(foo += 2)">Click</button> </template> <!-- Prettier 3.4.1 --> <template> <button @​click="foo += 2">Click</button> </template>
v3.4.0
Compare Source
diff
🔗 Release Notes
semantic-release/semantic-release (semantic-release)
v24.2.1
Compare Source
Bug Fixes
v24.2.0
Compare Source
Features
supabase/cli (supabase)
v1.226.4
Compare Source
Changelog
Bug fixes
15833d1
: fix(studio): Bump studio version to2024120
-71e5240 (#2937) (@ivasilov)Others
c66a6c4
: chore: update docs for remote db reset (#2936) (@sweatybridge)v1.226.3
Compare Source
Changelog
Bug fixes
2ff5960
: fix(config): syncing for postgres hook without secrets (#2931) (@avallete)v1.226.2
Compare Source
Changelog
Bug fixes
8c3a49e
: fix: bump edge-runtime to 1.65.3 (@nyannyacha)7ff60a7
: fix: bump edge-runtime to 1.65.3 (#2930) (@laktek)Others
eae2bac
: chore(deps): bump github.com/go-xmlfmt/xmlfmt from 1.1.2 to 1.1.3 (#2929) (@dependabot[bot])v1.226.1
Compare Source
Changelog
Bug fixes
26a20ea
: fix: bump edge-runtime to 1.65.1 (@nyannyacha)486a9bf
: fix: bump edge-runtime to 1.65.1 (#2928) (@laktek)Others
d3cd223
: chore(deps): bump github.com/stripe/pg-schema-diff from 0.7.0 to 0.8.0 (#2922) (@dependabot[bot])v1.226.0
Compare Source
Changelog
Features
b9e0aa0
: feat: add minimum password length and password requirements config (#2885) (@silentworks)Others
fcf6bce
: chore: document function config in toml (#2925) (@sweatybridge)8fb7f30
: chore(docs): add link to the config reference in toml template (#2926) (@avallete)v1.225.3
Compare Source
Changelog
Bug fixes
b87d67a
: fix: bump edge-runtime to 1.65.0 (@nyannyacha)536acf2
: fix: bump edge-runtime to 1.65.0 (#2924) (@laktek)v1.225.2
Compare Source
Changelog
Bug fixes
a1537f5
: fix(realtime): Bump up realtime version (#2921) (@filipecabaco)v1.225.1
Compare Source
Changelog
Bug fixes
ab95a72
: fix: initialise test otp to an empty map (#2919) (@sweatybridge)Others
949b018
: chore(deps): bump github.com/golangci/golangci-lint from 1.62.0 to 1.62.2 (#2917) (@dependabot[bot])v1.225.0
Compare Source
Changelog
Features
c1fb5d0
: feat(config): allow custom admin and sendername for inbucket (#2908) (@avallete)v1.224.3
Compare Source
Changelog
Bug fixes
b9e89fc
: fix(reset): ensure _supabase connections disconnect before reset (#2904) (@avallete)v1.224.2
Compare Source
Changelog
Bug fixes
e3f8f34
: fix(realtime): bump realtime image to 2.33.51 (#2905) (@asevich)Others
e6a510a
: chore(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0 (#2913) (@dependabot[bot])7612157
: chore: remove trailing semicolon from role_configs.sql (#2907) (@encima)v1.224.1
Compare Source
Changelog
Bug fixes
ff190bd
: fix: bump edge-runtime to 1.64.1 (#2911) (@nyannyacha)Others
47bcb30
: chore: update api/beta.yaml from staging v1-yaml (#2906) (@avallete)v1.224.0
Compare Source
Changelog
Features
f4b5ad4
: feat: diff auth and storage config on link (@sweatybridge)Bug fixes
652c0cf
: fix: update postgres image if linked project is healthy (@sweatybridge)Others
8dbf6b2
: chore: adjust default sms template to match platform (@sweatybridge)v1.223.10
Compare Source
Changelog
Bug fixes
91eabb1
: fix: drop webhooks request history on remote reset (#2892) (@sweatybridge)v1.223.9
Compare Source
Changelog
Bug fixes
c9b95b4
: fix: remove unnecessary cancel context (@sweatybridge)Others
e1f3fb4
: chore: separate workflow to update npm tag (@sweatybridge)2dad0bf
: chore: block deploy requests from non-develop branch (@sweatybridge)v1.223.8
Compare Source
Changelog
Bug fixes
0da79bd
: fix: increment auth version to v2.164.0 (#2890) (@sweatybridge)v1.223.7
Compare Source
Changelog
Bug fixes
1ab41c0
: fix: match edge function error codes to hosted platform (@laktek)080e382
: fix: match edge function error codes to hosted platform (#2887) (@laktek)v1.223.6
Compare Source
Changelog
Bug fixes
ccf52ad
: fix: enable readFileSyncAPI in user workers (@laktek)8f3034e
: fix: enable readFileSyncAPI in user workers (#2883) (@laktek)v1.223.5
Compare Source
Changelog
Bug fixes
65d8be4
: fix: use base config when no remote is declared (#2882) (@sweatybridge)v1.223.4
Compare Source
Changelog
Bug fixes
bc42076
: fix: bump edge-runtime to 1.62.2 (#2880) (@nyannyacha)v1.223.3
Compare Source
Changelog
Bug fixes
b8e94ed
: fix: do not abort function reqs after 200s (@laktek)2185b1c
: fix: do not abort function reqs after 200s (#2879) (@laktek)Others
d3d0e8e
: Merge branch 'develop' into dont-abort-function-reqs (@laktek)v1.223.2
Compare Source
Changelog
Bug fixes
859f9d1
: fix(config): support defining template content in toml (@sweatybridge)Others
0b378f0
: chore: make content and subject pointers (@sweatybridge)b497d18
: chore: externalise test snapshots for config diff (@sweatybridge)v1.223.1
Compare Source
Changelog
Bug fixes
Configuration
📅 Schedule: Branch creation - "every 2 weeks on Monday before 7am" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.