chore(deps): bump the production-dependencies group across 1 directory with 14 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 1
(6 months ago)
(6 months ago)
dependencies javascript
⚠️ Dependabot is rebasing this PR ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Bumps the production-dependencies group with 14 updates in the / directory:
| Package | From | To |
|---|---|---|
| @clack/prompts | 0.10.1 |
0.11.0 |
| @floating-ui/dom | 1.7.0 |
1.7.1 |
| @webgpu/types | 0.1.60 |
0.1.61 |
| flexsearch | 0.7.43 |
0.8.205 |
| lightningcss | 1.29.3 |
1.30.1 |
| pixi.js | 8.9.2 |
8.10.1 |
| preact | 10.26.5 |
10.26.8 |
| satori | 0.12.2 |
0.14.1 |
| sharp | 0.34.1 |
0.34.2 |
| shiki | 1.26.2 |
3.6.0 |
| workerpool | 9.2.0 |
9.3.2 |
| yargs | 17.7.2 |
18.0.0 |
| @types/node | 22.15.7 |
22.15.30 |
| esbuild | 0.25.3 |
0.25.5 |
Updates @clack/prompts from 0.10.1 to 0.11.0
Release notes
Sourced from @clack/prompts's releases.
@clack/prompts@0.11.0Minor Changes
- 07ca32d: Reverted a change where placeholders were being set as values on return.
Patch Changes
- Updated dependencies [07ca32d]
@clack/core@0.5.0
Changelog
Sourced from @clack/prompts's changelog.
0.11.0
Minor Changes
- 07ca32d: Reverted a change where placeholders were being set as values on return.
Patch Changes
- Updated dependencies [07ca32d]
@clack/core@0.5.0
Commits
737f172[ci] release (#325)07ca32dfix: revert placeholder-on-return change (#324)- See full diff in compare view
Updates @floating-ui/dom from 1.7.0 to 1.7.1
Release notes
Sourced from @floating-ui/dom's releases.
@floating-ui/dom@1.7.1Patch Changes
- Update dependencies:
@floating-ui/core@1.7.1
Changelog
Sourced from @floating-ui/dom's changelog.
1.7.1
Patch Changes
- Update dependencies:
@floating-ui/core@1.7.1
Commits
999bb86chore: version packages (#3336)37eb937fix(flip): check all placements for main axis overflow with `crossAxis: 'alig...- See full diff in compare view
Updates @webgpu/types from 0.1.60 to 0.1.61
Commits
8efa9890.1.61c1e822bRoll gpuweb (#182)- See full diff in compare view
Updates flexsearch from 0.7.43 to 0.8.205
Release notes
Sourced from flexsearch's releases.
v0.8.2
- Config-Serialized Query Caches, Improved caching strategy for Document indexes and Resolver
- Resolver Async Processing Workflow (including Queuing)
- Extended Resolver Support: Worker, Persistent, Cache
- Extended Result Highlighting: Boundaries, Ellipsis, Alignment
- Improved TypeScript Typings
- Improved Stemmer Handling
- Improved Result Highlighting
- Use multi-language charset normalization as the default Encoder
- Simplified charset support for multi-language content
- Charset renamed LatinExact => Exact, LatinDefault => Default and LatinSimple => Normalize, these are universal charset presets for any languages
- Charset ArabicDefault and CyrillicDefault was removed, they are fully covered by the default universal charset presets
- Charset Charset.CjkDefault was renamed to Charset.CJK
v0.8.1
- Resolver Support for Documents
- Asynchronous Runtime Balancer, new option
priority- Export/Import Worker Indexes + Document Worker, new extern config options
exportandimport- Improved interoperability of the different build packages, including source folder
- Support custom
filterfunction for encoder (stop-word filter)v0.8.0
- Persistent indexes support for:
IndexedDB(Browser),Redis,SQLite,Postgres,MongoDB,Clickhouse- Enhanced language customization via the new
Encoderclass- Result Highlighting
- Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
- Enhanced support for larger indexes or larger result sets
- Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
- Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
- Greatly enhanced performance of the whole text encoding pipeline
- Improved indexing of numeric content (Triplets)
- Intermediate result sets and
Resolver- Basic Resolver:
and,or,xor,not,limit,offset,boost,resolve- Improved charset collection
- New charset preset
soundexwhich further reduces memory consumption by also increasing "fuzziness"- Performance gain when polling tasks to the index by using "Event-Loop-Caches"
- Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
- Regex Pre-Compilation (transforms hundreds of regex rules into just a few)
- Extended support for multiple tags (DocumentIndex)
- Custom Fields ("Virtual Fields")
- Custom Filter
- Custom Score Function
- Added French language preset (stop-word filter, stemmer)
- Enhanced Worker Support
- Export / Import index in chunks
- Improved Build System + Bundler (Supported: CommonJS, ESM, Global Namespace), also the import of language packs are now supported for Node.js
- Full covering index.d.ts type definitions
- Fast-Boot Serialization optimized for Server-Side-Rendering (PHP, Python, Ruby, Rust, Java, Go, Node.js, ...)
Changelog
Sourced from flexsearch's changelog.
Changelog
Current Version
- Calling
index.clear()on a persistent Index does not stack to the task queue by default (which executes on commit), instead it will execute immediately and return a Promise- Added new tokenizer
tolerant, inherits fromstrictbut also matches simple typos like missing letters and swapped letters- Improved Redis Cleanup
- Resolver: Support Result Highlighting
v0.8.2
- Config-Serialized Query Caches, Improved caching strategy for Document indexes and Resolver
- Resolver Async Processing Workflow (including Queuing)
- Extended Resolver Support: Worker, Persistent, Cache
- Extended Result Highlighting: Boundaries, Ellipsis, Alignment
- Improved TypeScript Typings
- Improved Stemmer Handling
- Improved Result Highlighting
- Use multi-language charset normalization as the default
Encoder- Simplified charset support for multi-language content
- Charset renamed
LatinExact=>Exact,LatinDefault=>DefaultandLatinSimple=>Normalize, these are universal charset presets for any languages- Charset
ArabicDefaultandCyrillicDefaultwas removed, they are fully covered by the default universal charset presets- Charset
Charset.CjkDefaultwas renamed toCharset.CJKv0.8.1
- Resolver Support for Documents
- Asynchronous Runtime Balancer, new option
priority- Export/Import Worker Indexes + Document Worker, new extern config options
exportandimport- Improved interoperability of the different build packages, including source folder
- Support custom
filterfunction for encoder (stop-word filter)v0.8.0
- Persistent indexes support for:
IndexedDB(Browser),Redis,SQLite,Postgres,MongoDB,Clickhouse- Enhanced language customization via the new
Encoderclass- Result Highlighting
- Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
- Enhanced support for larger indexes or larger result sets
- Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
- Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
- Greatly enhanced performance of the whole text encoding pipeline
- Improved indexing of numeric content (Triplets)
- Intermediate result sets and
Resolver- Basic Resolver:
and,or,xor,not,limit,offset,boost,resolve- Improved charset collection
- New charset preset
soundexwhich further reduces memory consumption by also increasing "fuzziness"- Performance gain when polling tasks to the index by using "Event-Loop-Caches"
- Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
- Regex Pre-Compilation (transforms hundreds of regex rules into just a few)
... (truncated)
Commits
- See full diff in compare view
Updates lightningcss from 1.29.3 to 1.30.1
Release notes
Sourced from lightningcss's releases.
v1.30.1
Fixed crash on process exit when lightningcss was loaded inside a Node.js worker thread on Linux
v1.30.0
Features
- Update relative color parsing to latest spec: colors now support numbers in addition to percentages, and calcs in colors are now always numbers. Note that this was technically a breaking change in the spec. You may need to update code using relative color calculations on percentages to use numbers instead. See the PR for details. – #465
- Update nesting implementation for new spec: It is now possible to nest selectors with pseudo elements, and declarations and nested rules can be interleaved. See https://web.dev/blog/css-nesting-cssnesteddeclarations for more details. – https://github.com/parcel-bundler/lightningcss/commit/6c465c123deb549dfb45fd3558f25dca0dbde0d6
- Skip generating unnecessary
@supportsrules when already nested in a@supportsrule – #878, d398c1b86439dfd243a6c2ba627a8e7981118a44- Improve error recovery for media queries – #954
- Add support for ::picker, ::picker-icon and ::checkmark – #957
- Add build support for Android – #932
Fixes
- Fix error message for invalid composes selectors – parcel-bundler/lightningcss#948
- Update browserslist – parcel-bundler/lightningcss#961
- Fix linear-gradient direction conversion for legacy vendor-prefixed values – #936
- Prevent new lines in license comments from breaking source maps – #971
- Do not inline layers before imports – 33ea2c149e2c94f6e45a86d6d666d092729c9523
- Statically link Visual Studio redistributables on Windows builds – e5c4139be325c03704072c948be38f8b1f990071
- update browser compat data – 17bdc80ff5282c410daf65d135ef6cac79200e55
Commits
f2dc67cv1.30.1d302a6bAdd linker option to prevent segfault in Node worker threads474c67cv1.30.017bdc80update browser compat datae5c4139Statically link Visual Studio redistributables on Windows builds33ea2c1Do not inline layers before imports4ebcb45Update relative color parsing to latest spec (#465)0f064abPrevent new lines written bywrite_strfrom breaking source maps (#971)16fdfd5fix: remove grid feature (#972)496f4f6Add build support for Android (#932)- Additional commits viewable in compare view
Updates pixi.js from 8.9.2 to 8.10.1
Release notes
Sourced from pixi.js's releases.
v8.10.1
💾 Download
Installation:
npm install pixi.js@8.10.1Development Build:
- https://cdn.jsdelivr.net/npm/pixi.js@8.10.1/dist/pixi.js
- https://cdn.jsdelivr.net/npm/pixi.js@8.10.1/dist/pixi.mjs
Production Build:
- https://cdn.jsdelivr.net/npm/pixi.js@8.10.1/dist/pixi.min.js
- https://cdn.jsdelivr.net/npm/pixi.js@8.10.1/dist/pixi.min.mjs
Documentation:
Changed
https://github.com/pixijs/pixi.js/compare/v8.10.0...v8.10.1
🐛 Fixed
- fix: earcut export by
@Zyiein pixijs/pixijs#11464v8.10.0
💾 Download
Installation:
npm install pixi.js@8.10.0Development Build:
- https://cdn.jsdelivr.net/npm/pixi.js@8.10.0/dist/pixi.js
- https://cdn.jsdelivr.net/npm/pixi.js@8.10.0/dist/pixi.mjs
Production Build:
- https://cdn.jsdelivr.net/npm/pixi.js@8.10.0/dist/pixi.min.js
- https://cdn.jsdelivr.net/npm/pixi.js@8.10.0/dist/pixi.min.mjs
Documentation:
Changed
https://github.com/pixijs/pixi.js/compare/v8.9.2...v8.10.0
🚨 Behavior Change 🚨
With this release we have fixed the
ParticleContainer.removeParticles(startIndex, endIndex)logic to correctly set theendIndextothis.particleChildren.lengthby default. This now matches the behavior ofcontainer.removeChildren()
... (truncated)
Commits
7be477fv8.10.1cf7753dfix: earcut export (#11464)40dbf24v8.10.00dbf899chore: improve api doc comments (#11455)4c0fa2cEventTicker._update no PointerEvent case (#11217)7d09d6dfeat: support trimmed text (#11456)7d91234chore: add standard/advanced tags to documentation (#11448)5a4e718feat: The build (ShapeBuilder) method should report its success (#11283)a61ea08fix letter spacing getter (#11429)5c0b78bfix: iOS issue loading video when autoplay is false and preload is true. (#11...- Additional commits viewable in compare view
Updates preact from 10.26.5 to 10.26.8
Release notes
Sourced from preact's releases.
10.26.8
Fixes
- Fix defaultProps applying on null values (#4775, thanks
@JoviDeCroock)10.26.7
Types
- Add
nameto<details>(#4766, thanks@marvinhagemeister)Improvements
- Reduce raf timeout to 35ms (#4750, thanks
@JoviDeCroock)- Only one toLowerCase invoke during props diffing (#4764, thanks
@JoviDeCroock)- Golf some portal bytes (#4763, thanks
@JoviDeCroock)Maintenance
- Add node prefix + script string args for deno compatability in demo (#4759, thanks
@marvinhagemeister)10.26.6
Fixes
- Ensure useId works in portals (#4752, thanks
@JoviDeCroock)Types
- Change
HTMLMediaElement.controlsListtype to string (DOMTokenList) (#4744, thanks@piotr-cz)Maintenance
- Switch testing from karma to vitest (#4687, thanks
@JoviDeCroock)- Dedupe preact in vitest setup (#4702, thanks
@sheremet-va)
Commits
b9d66a510.26.8 (#4778)c4dc71eFix nullish default props (#4775)3c556ad10.26.7 (#4767)a2032a3Reduce raf timeout to 35ms (#4750)162d60bMerge pull request #4766 from preactjs/details-nameb94920afix(types): addnameto\<details>a4affdcOnly one toLowerCase invoke (#4764)44c8f89Remove some portal bytes (#4763)b52475bMerge pull request #4759 from preactjs/node-prefixff053c8Merge branch 'main' into node-prefix- Additional commits viewable in compare view
Updates satori from 0.12.2 to 0.14.1
Release notes
Sourced from satori's releases.
0.14.1
0.14.1 (2025-06-09)
Bug Fixes
- text align justify not working (#677) (82de867)
- transform and rotate not working properly on text (#676) (59c3c08)
0.14.0
0.14.0 (2025-06-05)
Features
0.13.2
0.13.2 (2025-06-02)
Bug Fixes
0.13.1
0.13.1 (2025-05-13)
Bug Fixes
0.13.0
0.13.0 (2025-05-12)
Features
Commits
82de867fix: text align justify not working (#677)59c3c08fix: transform and rotate not working properly on text (#676)4926c0bfeat: add point scale factor (#681)56bd3d5fix: pixel alignment for multiline or centered text (#682)aa7cdb6fix(ci): publish to npm with provenance (#672)df2e182feat: addtext-wrap: "pretty"(#663)4fa21c1refactor: replace emoji-regex with emoji-regex-xs (#669)- See full diff in compare view
Updates sharp from 0.34.1 to 0.34.2
Commits
6d04b7cRelease v0.34.2d4b30b7Docs: Update pnpm settings documentation URLs7f03502Docs: upgrade to latest Astro Starlight63b0a11Tests: remove a possible race conditionc4d6aecDocs: Highlight that Windows ARM64 support is experimentale75ae97Ensure PDF scale-on-load optimisation uses background #4398956d72dPrerelease v0.34.2-rc.000e66efBump depsdb3a452Simplify 94481a9d36fd50Prefer use ofbandjoin_const()and list-initialization- Additional commits viewable in compare view
Updates shiki from 1.26.2 to 3.6.0
Release notes
Sourced from shiki's releases.
v3.6.0
🚀 Features
View changes on GitHub
v3.5.0
🚀 Features
- Add support for CSS
light-dark()function in dual themes - by@dahliaand@antfuin shikijs/shiki#1028 (119b2)🐞 Bug Fixes
- Correct style comparison logic in mergeAdjacentStyledTokens - by
@nekomoyiin shikijs/shiki#1017 (e75a9)- Update styling for removed vp-code class and fix word highlighting - by
@luke358in shikijs/shiki#1021 (494f7)View changes on GitHub
v3.4.2
🚀 Features
- markdown-it: Add langAlias option - by
@uncenterin shikijs/shiki#1018 (97ff4)View changes on GitHub
v3.4.1
🚀 Features
- rehype: Add langAlias option - by
@SoonIterin shikijs/shiki#1015 (88d1a)- transformers:
transformerRemoveNotationEscapesupport rehype plugin usage - by@fuma-namain shikijs/shiki#1011 (946ef)🐞 Bug Fixes
- vitepress-twoslash: Empty twoslash error at end of the line - by
@zzxmingand@antfuin shikijs/shiki#999 (d27b5)View changes on GitHub
v3.4.0
🐞 Bug Fixes
View changes on GitHub
v3.3.0
🚀 Features
- Update deps - by
@antfu(ac6be)- core: Add option to merge consecutive tokens with same style - by
@yvbopengand@antfuin shikijs/shiki#972 and shikijs/shiki#991 (c806a)
... (truncated)
Commits
9cb3d8cchore: release v3.6.0fda1f5bchore: release v3.5.0f5cf06fchore: release v3.4.2951c7fdchore: release v3.4.1f38148echore: release v3.4.03a23e9dchore: release v3.3.0bf0174cbuild: useunbuildto build main packagee32c28cchore: release v3.2.283b6794chore: release v3.2.1ef6f296chore: release v3.2.0- Additional commits viewable in compare view
Updates workerpool from 9.2.0 to 9.3.2
Changelog
Sourced from workerpool's changelog.
2025-05-29, version 9.3.2
- Fix: #505 npm package missing
/src/generated/files.2025-05-29, version 9.3.1
- Fix: #505 npm package missing
/src/generated/files.2025-05-28, version 9.3.0
- Feat: support for events and std streams to parents from an abort handler (#478). Thanks
@joshLong145.- feat: improve compatibility with standard Promise type (#504). Thanks
@joshkel.
Commits
- See full diff in compare view
Updates yargs from 17.7.2 to 18.0.0
Changelog
Sourced from yargs's changelog.
18.0.0 (2025-05-26)
⚠ BREAKING CHANGES
- command names are not derived from modules passed to
command.- singleton usage of yargs yargs.foo, yargs().argv, has been removed.
- minimum node.js versions now
^20.19.0 || ^22.12.0 || >=23.- yargs is now ESM first
Features
- commandDir now works with ESM files (#2461) (27eec18)
- locale: adds hebrew translation (#2357) (4266485)
- yargs is now ESM first (d90af45)
- zsh: Add default completion as fallback (#2331) (e02c91b)
Bug Fixes
- addDirectory do not support absolute command dir (#2465) (3a40a78)
- allows ESM modules commands to be extensible using visit option (#2468) (200e1aa)
- browser: fix shims so that yargs continues working in browser context (#2457) (4ae5f57)
- build: address problems with typescript compilation (#2445) (8d72fb3)
- coerce should play well with parser configuration (#2308) (8343c66)
- deps: update dependency yargs-parser to v22 (#2470) (639130d)
- exit after async handler done (#2313) (e326cde)
- handle spaces in bash completion (#2452) (83b7788)
- parser-configuration should work well with generated completion script (#2332) (888db19)
- propagate Dictionary including undefined in value type (#2393) (2b2f7f5)
- zsh: completion no longer requires double tab when using autoloaded (0dd8fe4)
Code Refactoring
- command names are not derived from modules passed to
command. (d90af45)- singleton usage of yargs yargs.foo, yargs().argv, has been removed. (d90af45)
Build System
- minimum node.js versions now
^20.19.0 || ^22.12.0 || >=23. (d90af45)
Commits
0bc7255chore(main): release 18.0.0 (#2325)639130dfix(deps): update dependency yargs-parser to v22 (#2470)200e1aafix: allows ESM modules commands to be extensible using visit option (#2468)888db19fix: parser-configuration should work well with generated completion script (...3a40a78fix: addDirectory do not support absolute command dir (#2465)90e9ecadocs: remove to old slack channel (#2466)0dd8fe4fix(zsh): completion no longer requires double tab when using autoloaded27eec18feat: commandDir now works with ESM files (#2461)f9c72a7docs: update examples to run from examples folder (#2463)e02c91bfeat(zsh): Add default completion as fallback (#2331)- Additional commits viewable in compare view
Updates @types/node from 22.15.7 to 22.15.30
Commits
- See full diff in compare view
Updates esbuild from 0.25.3 to 0.25.5
Release notes
Sourced from esbuild's releases.
v0.25.5
Fix a regression with
browserinpackage.json(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browseroverrides specified inpackage.jsonto fail to override relative path names that end in a trailing slash. That behavior change affected theaxios@0.30.0package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?modifier. These labels includedfunction,import,infer,new,readonly, andtypeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ]Add CSS prefixes for the
stretchsizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }. That CSS is now transformed into this depending on what the--target=setting includes:div { width: -webkit-fill-available; width: -moz-available; width: stretch; }v0.25.4
Add simple support for CORS to esbuild's development server (#4125)
Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from
localhostwhere the esbuild development server is running.To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new
corsoption will now set theAccess-Control-Allow-Originresponse header when the request has a matchingOriginheader. Note that this currently only works for requests that don't send a preflightOPTIONSrequest, as esbuild's development server doesn't currently supportOPTIONSrequests.Some examples:
CLI:
esbuild --servedir=. --cors-origin=https://example.comJS:
const ctx = await esbuild.context({}) await ctx.serve({ servedir: '.', cors: {
... (truncated)
Changelog
Sourced from esbuild's changelog.
0.25.5
Fix a regression with
browserinpackage.json(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browseroverrides specified inpackage.jsonto fail to override relative path names that end in a trailing slash. That behavior change affected theaxios@0.30.0package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?modifier. These labels includedfunction,import,infer,new,readonly, andtypeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ]Add CSS prefixes for the
stretchsizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }. That CSS is now transformed into this depending on what the--target=setting includes:div { width: -webkit-fill-available; width: -moz-available; width: stretch; }0.25.4
Add simple support for CORS to esbuild's development server (#4125)
Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from
localhostwhere the esbuild development server is running.To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new
corsoption will now set theAccess-Control-Allow-Originresponse header when the request has a matchingOriginheader. Note that this currently only works for requests that don't send a preflightOPTIONSrequest, as esbuild's development server doesn't currently supportOPTIONSrequests.Some examples:
CLI:
esbuild --servedir=. --cors-origin=https://example.comJS:
const ctx = await esbuild.context({}) await ctx.serve({
... (truncated)
Commits
ea453bfpublish 0.25.5 to npm223ddc6fix #4187: browserpackage.jsonregressionb2c8251fix #4192: typescript tuple label parser edge case28cf2f3fix #4184: css prefixes forstretchbee1b09fix comment indents9ddfe5frunmake update-compat-tablec339f34fix a misplaced comment218d29epublish 0.25.4 to npme66cd0bdev server: simple support for CORS requests (#4171)8bf3368js api: validate some options as arrays of strings- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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 all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
0
0
+0
-0
Package Dependencies
Technical Details
| ID: | 1679612 |
| UUID: | 3130036322 |
| Node ID: | PR_kwDONPI__86Zq7Vd |
| Host: | GitHub |
| Repository: | learnernotes/learnernotes.github.io |