shopmon
shopmon copied to clipboard
fix(deps): bump the all group across 1 directory with 11 updates
Bumps the all group with 11 updates in the /api directory:
Package | From | To |
---|---|---|
@libsql/client | 0.6.2 |
0.14.0 |
@passwordless-id/webauthn | 1.6.1 |
2.1.1 |
drizzle-orm | 0.31.2 |
0.33.0 |
hono | 4.5.8 |
4.6.2 |
toucan-js | 3.4.0 |
4.0.0 |
tsx | 4.15.7 |
4.19.1 |
@biomejs/biome | 1.8.2 |
1.9.2 |
@cloudflare/workers-types | 4.20240620.0 |
4.20240919.0 |
drizzle-kit | 0.22.7 |
0.24.2 |
typescript | 5.5.2 |
5.6.2 |
wrangler | 3.61.0 |
3.78.7 |
Updates @libsql/client
from 0.6.2 to 0.14.0
Changelog
Sourced from @libsql/client
's changelog.
Changelog
0.12.0 -- 2024-09-16
- Upgrade
hrana-client-ts
to latest 0.7.0 version which has stableisomorphic-fetch
implementation (see libsql/hrana-client-ts#19)0.11.0 -- 2024-09-13
- Upgrade
libsql-js
to latest 0.4.4 version which brings full vector search support for embedded replicas (see vector search documentation here: https://docs.turso.tech/features/ai-and-embeddings)0.10.0 -- 2024-08-26
- Add a migrate() API that can be used to do migrations on both schema databases and regular databases. It is mostly dedicated to schema migration tools.
0.8.1 -- 2024-08-03
- Fix embedded replica sync WAL index path name , which caused "No such file or directory" for local sync in some cases (#244).
0.8.0 -- 2024-07-30
- No changes from 0.8.0-pre.1.
0.8.0-pre.1 -- 2024-07-18
- Bump hrana client to 0.6.2.
- Support
cache=private|shared
query parameter in the connection string to local SQLite (tursodatabase/libsql-client-ts#220)- Fix bug in wasm experimental client which appears when transaction are used in local mode (tursodatabase/libsql-client-ts#231)
- Add
execute(sql, args)
overload to make the API similar to other SQLite SDKs0.7.0 -- 2024-06-25
- Add configurable concurrency limit for parallel query execution (defaults to 20) to address socket hangup errors.
Commits
839d48e
revert hrana client upgrade (#271)17efe61
upgrade hrana-client-ts: 0.7.0 -> 0.8.0 (#269)b1a495c
publish all workspaces (#270)fe3d668
Merge pull request #263 from tursodatabase/setup-ci14e9606
add .npmrcc6ce1f0
set 0.12.1-pre.1 verison7eccd78
rename env var3d1f508
what if this will work :thinking-face:6083107
setup CI for publishdbeba0c
Merge pull request #268 from tursodatabase/up-to-0.12.0- Additional commits viewable in compare view
Updates @passwordless-id/webauthn
from 1.6.1 to 2.1.1
Release notes
Sourced from @passwordless-id/webauthn
's releases.
2.1.1
No release notes provided.
2.1.0
No release notes provided.
2.0.4
No release notes provided.
2.0.3
No release notes provided.
2.0.2
autocomplete
flag andisAutocompleteAvailable()
allowCredentials
also accepts list of credentials ids instead of {id: ..., transports: ...}transports
also returned as part of registration2.0.1
- Fixed type
coutner
=>counter
- Attempt at CommonJS build fix
2.0.0
At last, the new version is here! It now supports the most recent features like conditional UI and hints, has defaults that better support security keys and uses the default intermediate JSON format for a better interop with other libraries. For more details, consult the docs at https://webauthn.passwordless.id
1.6.2
No release notes provided.
Commits
a398389
fixed version in minimized file headerdf3cfdd
readme update5d1ca09
Update README.mdcd37dd6
Update index.md89e2ed4
Update README.md469e0ed
Update README.mdb4f7749
Update README.md6a8cca9
added authenticatorAttachment and increased challenge size to have no base64 ...b1bbe57
fixed doc6611739
docs...- Additional commits viewable in compare view
Updates drizzle-orm
from 0.31.2 to 0.33.0
Release notes
Sourced from drizzle-orm's releases.
0.33.0
Breaking changes (for some of postgres.js users)
Bugs fixed for this breaking change
- [BUG]: jsonb always inserted as a json string when using postgres-js
- [BUG]: jsonb type on postgres implement incorrectly
As we are doing with other drivers, we've changed the behavior of PostgreSQL-JS to pass raw JSON values, the same as you see them in the database. So if you are using the PostgreSQL-JS driver and passing data to Drizzle elsewhere, please check the new behavior of the client after it is passed to Drizzle.
We will update it to ensure it does not override driver behaviors, but this will be done as a complex task for everything in Drizzle in other releases
If you were using
postgres-js
withjsonb
fields, you might have seen stringified objects in your database, while drizzle insert and select operations were working as expected.You need to convert those fields from strings to actual JSON objects. To do this, you can use the following query to update your database:
if you are using jsonb:
update table_name set jsonb_column = (jsonb_column #>> '{}')::jsonb;
if you are using json:
update table_name set json_column = (json_column #>> '{}')::json;
We've tested it in several cases, and it worked well, but only if all stringified objects are arrays or objects. If you have primitives like strings, numbers, booleans, etc., you can use this query to update all the fields
if you are using jsonb:
UPDATE table_name SET jsonb_column = CASE -- Convert to JSONB if it is a valid JSON object or array WHEN jsonb_column #>> '{}' LIKE '{%' OR jsonb_column #>> '{}' LIKE '[%' THEN (jsonb_column #>> '{}')::jsonb ELSE jsonb_column END WHERE jsonb_column IS NOT NULL;
if you are using json:
UPDATE table_name SET json_column = CASE -- Convert to JSON if it is a valid JSON object or array WHEN json_column #>> '{}' LIKE '{%' OR json_column #>> '{}' LIKE '[%' THEN </tr></table>
... (truncated)
Commits
6adbd78
Merge pull request #2760 from drizzle-team/betaf2a2b5f
Update release notes6205f01
Use dprint105d870
Merge branch 'beta' of github.com:drizzle-team/drizzle-orm into beta86a8714
Add release notes3e109ec
Merge pull request #2762 from drizzle-team/issues22df170
Merge branch 'beta' into issuesd486e9b
Merge pull request #2759 from veloii/mainbfc0cf6
Merge branch 'beta' into main6158d8b
lint- Additional commits viewable in compare view
Updates hono
from 4.5.8 to 4.6.2
Release notes
Sourced from hono's releases.
v4.6.2
What's Changed
- chore(lint): ESLint v9 by
@yusukebe
in honojs/hono#3393- perf(serve-static): performance optimization for precompressed feature by
@usualoma
in honojs/hono#3414- fix(serve-static): use application/octet-stream if the mime type is not detected by
@usualoma
in honojs/hono#3415Full Changelog: https://github.com/honojs/hono/compare/v4.6.1...v4.6.2
v4.6.1
What's Changed
- fix(build): improve addExtension esbuild plugin by
@kt3k
in honojs/hono#3405New Contributors
@kt3k
made their first contribution in honojs/hono#3405Full Changelog: https://github.com/honojs/hono/compare/v4.6.0...v4.6.1
v4.6.0
Hono v4.6.0 is now available!
One of the highlights of this release is the Context Storage Middleware. Let's introduce it.
Context Storage Middleware
Many users may have been waiting for this feature. The Context Storage Middleware uses
AsyncLocalStorage
to allow handling of the current Context object even outside of handlers.For example, let’s define a Hono app with a variable
message: string
.type Env = { Variables: { message: string } }
const app = new Hono<Env>()
To enable Context Storage Middleware, register
contextStorage()
as middleware at the top and set themessage
value.import { contextStorage } from 'hono/context-storage'
//...
app.use(contextStorage())
app.use(async (c, next) => {
c.set('message', 'Hello!')
</tr></table>
... (truncated)
Commits
b5c6285
v4.6.227a57c3
fix(serve-static): use application/octet-stream if the mime type is not detec...0edb243
perf(serve-static): performance optimization for precompressed feature (#3414)5f78e4e
chore(lint): ESLint v9 (#3393)e0d17a3
v4.6.185c7dc6
fix(build): improve addExtension esbuild plugin (#3405)73ff6c0
v4.6.02da003b
Merge pull request #3394 from honojs/next743f66c
fix(bearer-auth): typo (#3404)c240ea5
feat(bearer-auth): added custom response message options (#3372)- Additional commits viewable in compare view
Updates toucan-js
from 3.4.0 to 4.0.0
Release notes
Sourced from toucan-js's releases.
[email protected]
Major Changes
fce854c and c29ddfa: This release upgrades the underlying Sentry SDKs to v8.
- Toucan now extends ScopeClass instead of Hub.
- Class-based integrations have been removed in Sentry v8. Toucan adapts to this change by renaming:
Dedupe
integration todedupeIntegration
ExtraErrorData
integration toextraErrorDataIntegration
RewriteFrames
integration torewriteFramesIntegration
SessionTiming
integration tosessionTimingIntegration
LinkedErrors
integration tolinkedErrorsIntegration
RequestData
integration torequestDataIntegration
- Additionally,
Transaction
integration is no longer provided.- Toucan instance can now be deeply copied using
Toucan.clone()
.Refer to Sentry v8 release notes and Sentry v7->v8 for additional context.
Special shout-out to
@timfish
for their contribution 🚀
Commits
Updates tsx
from 4.15.7 to 4.19.1
Release notes
Sourced from tsx's releases.
v4.19.1
4.19.1 (2024-09-12)
Bug Fixes
- cjs: patch
module.path
for accurate cache ID (0329bfc), closes privatenumber/tsx#651- cjs: resolve ts extensions from js when namespaced (44ed37f)
This release is also available on:
v4.19.0
4.19.0 (2024-08-27)
Features
- watch: deprecate ignore flag in favor or exclude flag (157c3ec)
This release is also available on:
v4.18.0
4.18.0 (2024-08-24)
Features
This release is also available on:
v4.17.1
4.17.1 (2024-08-24)
... (truncated)
Commits
0329bfc
fix(cjs): patchmodule.path
for accurate cache ID44ed37f
fix(cjs): resolve ts extensions from js when namespacedac77527
test: outdent api fixtures157c3ec
feat(watch): deprecate ignore flag in favor or exclude flag474ea71
feat(watch):--include
CLI flag to watch additional files (#625)af370e7
fix(esm): package entry TS resolution for Node 20.17 & 22.61b80d5d
docs: add premium sponsors6c8eae0
chore: upgrade lintrollbd83d3b
feat: upgrade esbuild to 0.23 (#615)2fada74
fix(resolver): directory import nested ".."- Additional commits viewable in compare view
Updates @biomejs/biome
from 1.8.2 to 1.9.2
Release notes
Sourced from @biomejs/biome
's releases.
CLI v1.9.2
CLI
New features
Added support for custom GritQL definitions, including:
- Pattern and predicate definitions: https://docs.grit.io/guides/patterns
- Function definitions: https://docs.grit.io/language/functions#function-definitions
Contributed by
@arendjr
Bug fixes
- Fix #3917, where the fixed files were incorrectly computed. Contributed by
@ematipico
- Fixed an issue that caused GritQL
contains
queries to report false positives when the matched node appeared inside a sibling node. Contributed by@arendjr
Editors
Bug fixes
Fix #3923. Now the
.editorconfig
is correctly parsed by the LSP, and the options are correctly applied to files when formatting is triggered. Plus, the Biome LSP now watches for any change to the.editorconfig
, and updates the formatting settings.Reduced the number of log files generated by the LSP server. Now the maximum number of logs saved on disk is seven. Contributed by
@ematipico
Fix the code actions capabilities available in the LSP Biome server. Before, the LSP was using the default capabilities, which resulted in pulling code actions even when they were disabled by the editor.
This means that the code actions are pulled by the client only when the editor enables
quickfix.biome
,source.organizeImports.biome
andsource.fixAll.biome
.Now, if you enable
organizeImports.enabled: true
in thebiome.json
, and then you configure your editor with the following code actionsource.organizeImports.biome: false
, the editor won't sort the imports.Contributed by
@ematipico
Linter
New features
- Add nursery/noMissingVarFunction. Contributed by
@michellocana
- Add nursery/useComponentExportOnlyModules. Use this rule in React projects to enforce a code styling that fits React Refresh. Contributed by
@GunseiKPaseri
Bug fixes
noLabelWithoutControl now accept JSX expression as label value (#3875). Contributed by
@Conaclos
useFilenamingConvention no longer suggests names with a disallowed case (#3952). Contributed by
@Conaclos
useFilenamingConvention now recognizes file names starting with ASCII digits as lowercase (#3952).
Thus,
2024-09-17-filename
,2024_09_17_filename
and20240917FileName
are inkebab-case
,snake_case
, andcamelCase
respectively.Contributed by
@Conaclos
... (truncated)
Changelog
Sourced from @biomejs/biome
's changelog.
v1.9.2 (2024-09-19)
CLI
New features
Added support for custom GritQL definitions, including:
- Pattern and predicate definitions: https://docs.grit.io/guides/patterns
- Function definitions: https://docs.grit.io/language/functions#function-definitions
Contributed by
@arendjr
Bug fixes
- Fix #3917, where the fixed files were incorrectly computed. Contributed by
@ematipico
- Fixed an issue that caused GritQL
contains
queries to report false positives when the matched node appeared inside a sibling node. Contributed by@arendjr
Editors
Bug fixes
Fix #3923. Now the
.editorconfig
is correctly parsed by the LSP, and the options are correctly applied to files when formatting is triggered. Plus, the Biome LSP now watches for any change to the.editorconfig
, and updates the formatting settings.Reduced the number of log files generated by the LSP server. Now the maximum number of logs saved on disk is seven. Contributed by
@ematipico
Fix the code actions capabilities available in the LSP Biome server. Before, the LSP was using the default capabilities, which resulted in pulling code actions even when they were disabled by the editor.
This means that the code actions are pulled by the client only when the editor enables
quickfix.biome
,source.organizeImports.biome
andsource.fixAll.biome
.Now, if you enable
organizeImports.enabled: true
in thebiome.json
, and then you configure your editor with the following code actionsource.organizeImports.biome: false
, the editor won't sort the imports.Contributed by
@ematipico
Linter
New features
- Add nursery/noMissingVarFunction. Contributed by
@michellocana
- Add [nursery/useComponentExportOnlyModules]((https://biomejs.dev/linter/rules/use-component-export-only-modules). Use this rule in React projects to enforce a code styling that fits React Refresh. Contributed by
@GunseiKPaseri
Bug fixes
noLabelWithoutControl now accept JSX expression as label value (#3875). Contributed by
@Conaclos
useFilenamingConvention no longer suggests names with a disallowed case (#3952). Contributed by
@Conaclos
useFilenamingConvention now recognizes file names starting with ASCII digits as lowercase (#3952).
Thus,
2024-09-17-filename
,2024_09_17_filename
and20240917FileName
are inkebab-case
,snake_case
, andcamelCase
respectively.
... (truncated)
Commits
5f2287e
release: v1.9.2 (#3974)00760d4
feat(lint): add ruleuseComponentExportOnlyModules
(#3576)e1851e2
feat(linter): add noMissingVarFunction (#3779)0004980
docs(readme): add zh-tw readme translation (#3894)9bf1e4c
release: v1.9.1 (#3900)eebf20f
chore: remove sponsor (#3896)f6d61b0
feat(lint): add noProcessEnv (#3825)49a6616
refactor(package.json): add more keywords (#3876)cccaea3
docs(readme): add CSS and GraphQL (#3869)b260d5b
feat(package.json): set version to 1.9- Additional commits viewable in compare view
Updates @cloudflare/workers-types
from 4.20240620.0 to 4.20240919.0
Commits
- See full diff in compare view
Updates drizzle-kit
from 0.22.7 to 0.24.2
Release notes
Sourced from drizzle-kit's releases.
[email protected]
New Features
🎉 Support for
pglite
driverYou can now use pglite with all drizzle-kit commands, including Drizzle Studio!
import { defineConfig } from "drizzle-kit";
export default defineConfig({ dialect: "postgresql", driver: "pglite", schema: "./schema.ts", dbCredentials: { url: "local-pg.db", }, verbose: true, strict: true, });
Bug fixes
- mysql-kit: fix GENERATED ALWAYS AS ... NOT NULL - #2824
[email protected]
Bug fixes
Big thanks to
@L-Mario564
for his PR. It conflicted in most cases with a PR that was merged, but we incorporated some of his logic. Merging it would have caused more problems and taken more time to resolve, so we just took a few things from his PR, like removing "::" mappings in introspect and some array type default handlersWhat was fixed
- The Drizzle Kit CLI was not working properly for the
introspect
command.- Added the ability to use column names with special characters for all dialects.
- Included PostgreSQL sequences in the introspection process.
- Reworked array type introspection and added all test cases.
- Fixed all (we hope) default issues in PostgreSQL, where
::<type>
was included in the introspected output.preserve
casing option was brokenTickets that were closed
- [BUG]: invalid schema generation with drizzle-kit introspect:pg
- [BUG][mysql introspection]: TS error when introspect column including colon
- [BUG]: Unhandled defaults when introspecting postgres db
- [BUG]: PostgreSQL Enum Naming and Schema Typing Issue
- [BUG]: drizzle-kit instrospect command generates syntax error on varchar column types
- [BUG]: Introspecting varchar[] type produces syntactically invalid schema.ts
- [BUG]: introspect:pg column not using generated enum name
- [BUG]: drizzle-kit introspect casing "preserve" config not working
... (truncated)
Commits
- See full diff in compare view
Updates typescript
from 5.5.2 to 5.6.2
Release notes
Sourced from typescript's releases.
TypeScript 5.6
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.6.0 (Beta).
- fixed issues query for Typescript 5.6.1 (RC).
- fixed issues query for Typescript 5.6.2 (Stable).
Downloads are available on:
TypeScript 5.6 RC
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
TypeScript 5.6 Beta
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
TypeScript 5.5.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
... (truncated)
Commits
a7e3374
Bump version to 5.6.2 and LKG2063357
🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...4fe7e41
🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...1a03e53
🤖 Pick PR #59761 (this
can be nullish) into release-5.6 (#59762)6212132
Update LKGbbb5faf
🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...e6914a5
Bump version to 5.6.1-rc and LKG34121c4
Update LKG2a30c2a
Merge remote-tracking branch 'origin/main' into release-5.6936a79b
Expose TypeChecker. getAwaitedType to public (#59268)- Additional commits viewable in compare view
Updates wrangler
from 3.61.0 to 3.78.7
Release notes
Sourced from wrangler's releases.
[email protected]
Patch Changes
#6775
ecd82e8
Thanks@CarmenPopoviciu
! - fix: Support switching between static and dynamic WorkersThis commit fixes the current behaviour of watch mode for Workers with assets, and adds support for switching between static and dynamic Workers within a single
wrangler dev
session.#6762
2840b9f
Thanks@petebacondarwin
! - fix: error if a user inadvertently uploads a Pages_workers.js
file or directory as an asset#6778
61dd93a
Thanks@CarmenPopoviciu
! - fix: Error if Workers + Assets are run in remote modeWorkers + Assets are currently supported only in local mode. We should throw an error if users attempt to use Workers with assets in remote mode.
#6782
7655505
Thanks@vicb
! - chore: update unenv dependency version#6777
9649dbc
Thanks@penalosa
! - chore: Update CI messaging#6779
3e75612
Thanks@emily-shen
! - fix: include asset binding inwrangler types
[email protected]
Patch Changes
#6743
b45e326
Thanks@petebacondarwin
! - fix: ability to build tricky Node.js compat scenario WorkersAdds support for non-default build conditions and platform via the WRANGLER_BUILD_CONDITIONS and WRANGLER_BUILD_PLATFORM flags.
#6776
02de103
Thanks@zebp
! - fix: disable observability on deploy if not explicitly defined in configWhen deploying a Worker that has observability enabled in the deployed version but not specified in the
wrangler.toml
Wrangler will now set observability to disabled for the new version to match thewrangler.toml
as the source of truth.Updated dependencies [
2ddbb65
]:[email protected]
Patch Changes
#6744
e3136f9
Thanks@petebacondarwin
! - chore: update unenv dependency version#6749
9a06f88
Thanks@CarmenPopoviciu
! - fix: Throw error when attempting to configure Workers with assets and tail consumersTail Workers are currently not supported for Workers with assets. This commit ensures we throw a corresponding error if users are attempting to configure
tail_consumers
via their configuration file, for a Worker with assets. This validation is applied for allwrangler dev
,wrangler deploy
,wrangler versions upload
.#6746
0deb42b
Thanks@GregBrimble
! - fix: Fix assets upload message to correctly report number of uploaded assets#6745
6dbbb88
Thanks@jonesphillip
! - fix: r2 bucket notification get <bucket_name> has been marked deprecated in favor of r2 bucket notification list <bucket_name> to reflect behavior.Updated dependencies [
2407c41
]:
... (truncated)
Changelog
Sourced from wrangler's changelog.
3.78.7
Patch Changes
#6775
ecd82e8
Thanks@CarmenPopoviciu
! - fix: Support switching between static and dynamic WorkersThis commit fixes the current behaviour of watch mode for Workers with assets, and adds support for switching between static and dynamic Workers within a single
wrangler dev
session.#6762
2840b9f
Thanks@petebacondarwin
! - fix: error if a user inadvertently uploads a Pages_workers.js
file or directory as an asset#6778
61dd93a
Thanks@CarmenPopoviciu
! - fix: Error if Workers + Assets are run in remote modeWorkers + Assets are currently supported only in local mode. We should throw an error if users attempt to use Workers with assets in remote mode.
#6782
7655505
Thanks@vicb
! - chore: update unenv dependency version#6777
9649dbc
Thanks@penalosa
! - chore: Update CI messaging#6779
3e75612
Thanks@emily-shen
! - fix: include asset binding inwrangler types
3.78.6
Patch Changes
#6743
b45e326
Thanks@petebacondarwin
! - fix: ability to build tricky Node.js compat scenario WorkersAdds support for non-default build conditions and platform via the WRANGLER_BUILD_CONDITIONS and WRANGLER_BUILD_PLATFORM flags.
#6776
02de103
Thanks@zebp
! - fix: disable observability on deploy if not explicitly defined in configWhen deploying a Worker that has observability enabled in the deployed version but not specified in the
wrangler.toml
Wrangler will now set observability to disabled for the new version to match thewrangler.toml
as the source of truth.Updated dependencies [
2ddbb65
]:3.78.5
Patch Changes
#6744
e3136f9
Thanks@petebacondarwin
! - chore: update unenv dependency version#6749
9a06f88
Thanks@CarmenPopoviciu
! - fix: Throw error when attempting to configure Workers with assets and tail consumersTail Workers are currently not supported for Workers with assets. This commit ensures we throw a corresponding error if users are attempting to configure
tail_consumers
via their configuration file, for a Worker with assets. This validation is applied for allwrangler dev
,wrangler deploy
,wrangler versions upload
.#6746
0deb42b
Thanks@GregBrimble
! - fix: Fix assets upload message to correctly report number of uploaded assets#6745
6dbbb88
Thanks@jonesphillip
! - fix: r2 bucket notification get to reflect behavior.
... (truncated)
Commits
50977e4
Version Packages (#6783)ecd82e8
fix(wrangler): Support switching between static and dynamic Workers (#6775)92730bb
Expose sqlite in Vitest (#6725)9649dbc
Update CI messaging (#6777)3e75612
fix: add asset binding to typegen (#6779)7655505
chore: update unenv dependency version (#6782)61dd93a
fix(wrangler): Error if Workers + Assets are run in remote mode (#6778)2840b9f
fix: error if a user inadvertently uploads a Pages_workers.js
file or dire...fd68f6b
Version Packages (#6765)02de103
fix: disable observability on deploy if not explicitly defined in config (#6776)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>
will remove...
Description has been truncated