chore(deps): bump the production-dependencies group across 1 directory with 15 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(2 months ago)
(about 2 months ago)
(about 2 months ago)
dependencies javascript
Bumps the production-dependencies group with 15 updates in the / directory:
| Package | From | To |
|---|---|---|
| @clack/prompts | 1.1.0 |
1.2.0 |
| esbuild-sass-plugin | 3.6.0 |
3.7.0 |
| globby | 16.1.1 |
16.2.0 |
| lightningcss | 1.31.1 |
1.32.0 |
| minimatch | 10.2.4 |
10.2.5 |
| pixi.js | 8.16.0 |
8.17.1 |
| preact | 10.28.4 |
10.29.0 |
| preact-render-to-string | 6.6.6 |
6.6.7 |
| satori | 0.25.0 |
0.26.0 |
| shiki | 4.0.1 |
4.0.2 |
| toml | 3.0.0 |
4.1.1 |
| ws | 8.19.0 |
8.20.0 |
| @types/node | 25.3.3 |
25.5.0 |
| esbuild | 0.27.3 |
0.27.5 |
| typescript | 5.9.3 |
6.0.2 |
Updates @clack/prompts from 1.1.0 to 1.2.0
Release notes
Sourced from @clack/prompts's releases.
@clack/prompts@1.2.0Minor Changes
- 9786226: Externalize
fast-string-widthandfast-wrap-ansito avoid double dependencies- 090902c: Adds
dateprompt withformatsupport (YMD, MDY, DMY)Patch Changes
- 134a1a1: Fix the
pathprompt sodirectory: truecorrectly enforces directory-only selection while still allowing directory navigation, and add regression tests for both directory and default file selection behavior.- bdf89a5: Adds
placeholderoption toautocomplete. When the placeholder is set and the input is empty, pressingtabwill set the value toplaceholder.- 336495a: Apply guide to wrapped multi-line messages in confirm prompt.
- 9fe8de6: Respect
withGuide: falsein autocomplete and multiselect prompts.- 29a50cb: Fix
pathdirectory mode so pressing Enter with an existing directoryinitialValuesubmits that current directory instead of the first child option, and add regression coverage for immediate submit and child-directory navigation.- Updated dependencies [9786226]
- Updated dependencies [bdf89a5]
- Updated dependencies [417b451]
- Updated dependencies [090902c]
@clack/core@1.2.0
Changelog
Sourced from @clack/prompts's changelog.
1.2.0
Minor Changes
- 9786226: Externalize
fast-string-widthandfast-wrap-ansito avoid double dependencies- 090902c: Adds
dateprompt withformatsupport (YMD, MDY, DMY)Patch Changes
- 134a1a1: Fix the
pathprompt sodirectory: truecorrectly enforces directory-only selection while still allowing directory navigation, and add regression tests for both directory and default file selection behavior.- bdf89a5: Adds
placeholderoption toautocomplete. When the placeholder is set and the input is empty, pressingtabwill set the value toplaceholder.- 336495a: Apply guide to wrapped multi-line messages in confirm prompt.
- 9fe8de6: Respect
withGuide: falsein autocomplete and multiselect prompts.- 29a50cb: Fix
pathdirectory mode so pressing Enter with an existing directoryinitialValuesubmits that current directory instead of the first child option, and add regression coverage for immediate submit and child-directory navigation.- Updated dependencies [9786226]
- Updated dependencies [bdf89a5]
- Updated dependencies [417b451]
- Updated dependencies [090902c]
@clack/core@1.2.0
Commits
aa488fc[ci] release (#482)9fe8de6feat: respectwithGuide: falsein autocomplete and multiselect prompts (#500)001351etest: specify locale in tests (#497)336495afix: correctly wrap multi-line messages in confirm prompt (#495)ffbdcb0[ci] formatfe32e13ref(dates): adjust date interface (#487)bdf89a5feat(prompts,core): make autocomplete placeholder tabbable (#485)52fce8afix(date): resolve timezone issues in DatePrompt (#486)090902cfeat(core, prompts): add DatePrompt for date input with customizable formats ...29a50cbfix(prompts): submit initial directory value in path prompt (#484)- Additional commits viewable in compare view
Updates esbuild-sass-plugin from 3.6.0 to 3.7.0
Commits
- See full diff in compare view
Updates globby from 16.1.1 to 16.2.0
Release notes
Sourced from globby's releases.
v16.2.0
- Add
globalGitignoreoption 51555b2
https://github.com/sindresorhus/globby/compare/v16.1.1...v16.2.0
Commits
60e816716.2.051555b2AddglobalGitignoreoption8d946e2Fix CI- See full diff in compare view
Updates lightningcss from 1.31.1 to 1.32.0
Release notes
Sourced from lightningcss's releases.
v1.32.0
Added
- Enable custom resolvers to mark imports as external. Resolvers may now return
{external: string}to mark an import as external. This will leave the@importin the output CSS instead of bundling it. See the docs for details.- Allow visitors to add dependencies. Visitors may now be functions which receive an
addDependencyfunction as an option. Dependencies may be used by tools that call Lightning CSS such as bundlers to implement file watching or caching. See the docs for details.- Add
mix-blend-modeproperty supportFixed
- Output unknown
color-schemekeywords as-is instead ofnormal- Improved serialization of the rotate property
- keep a single space between functions when formatting
transformvalues- Fix additionally inserted whitespace in
var(--foo,)andenv(--foo,)- Convert the percentage in the
scaleproperty orscale()to a number- update compat data
Commits
- See full diff in compare view
Updates minimatch from 10.2.4 to 10.2.5
Commits
Updates pixi.js from 8.16.0 to 8.17.1
Release notes
Sourced from pixi.js's releases.
v8.17.1
💾 Download
Installation:
npm install pixi.js@8.17.1Development Build:
- https://cdn.jsdelivr.net/npm/pixi.js@8.17.1/dist/pixi.js
- https://cdn.jsdelivr.net/npm/pixi.js@8.17.1/dist/pixi.mjs
Production Build:
- https://cdn.jsdelivr.net/npm/pixi.js@8.17.1/dist/pixi.min.js
- https://cdn.jsdelivr.net/npm/pixi.js@8.17.1/dist/pixi.min.mjs
Documentation:
Changed
https://github.com/pixijs/pixijs/compare/v8.17.0...v8.17.1
🐛 Fixed
- fix: compressed textures ignoring resolution from URL (e.g.
@0.75x) by@Zyiein pixijs/pixijs#11960- fix: center-align text correctly when words exceed wordWrapWidth by
@Zyiein pixijs/pixijs#11966🧹 Chores
- chore: fix BitmapFont char keys from char codes to character strings by
@Zyiein pixijs/pixijs#11967- fix: add secrets: inherit to publish-switch workflow for S3 docs upload by
@Zyiein pixijs/pixijs#11962v8.17.0
💾 Download
Installation:
npm install pixi.js@8.17.0Development Build:
- https://cdn.jsdelivr.net/npm/pixi.js@8.17.0/dist/pixi.js
- https://cdn.jsdelivr.net/npm/pixi.js@8.17.0/dist/pixi.mjs
Production Build:
- https://cdn.jsdelivr.net/npm/pixi.js@8.17.0/dist/pixi.min.js
- https://cdn.jsdelivr.net/npm/pixi.js@8.17.0/dist/pixi.min.mjs
Documentation:
Changed
... (truncated)
Commits
6e59c6fv8.17.1fc5ec38fix: compressed textures ignoring resolution from URL (e.g.@0.75x) (#11960)2ae2192fix: add secrets: inherit to publish-switch workflow for S3 docs upload (#11962)51427e8fix: center-align text correctly when words exceed wordWrapWidth (#11966)5e183fechore: fix BitmapFont char keys from char codes to character strings (#11967)4806c3bv8.17.06e9619dfeat: add tagged text support to canvasTextSplit (#11949)128ab8adocs: expand build, test, and API documentation (#11956)4f3c960chore: add titles to visual test diff snapshots (#11954)c450e9afeat: Improves text rendering and layout handling (#11947)- Additional commits viewable in compare view
Updates preact from 10.28.4 to 10.29.0
Release notes
Sourced from preact's releases.
10.29.0
Features
- Implement flushSync (#5036, thanks
@JoviDeCroock)Fixes
- Ensure we reset renderCount (#5017, thanks
@JoviDeCroock)- undefined prototype (#5041, thanks
@JoviDeCroock)Performance
- Golf down compat (#5025, thanks
@JoviDeCroock)
Commits
Updates preact-render-to-string from 6.6.6 to 6.6.7
Release notes
Sourced from preact-render-to-string's releases.
v6.6.7
Patch Changes
- #457
ce6ef71Thanks@lemonmade! - fix: renderToStringAsync produces commas for suspended components with complex children
Changelog
Sourced from preact-render-to-string's changelog.
6.6.7
Patch Changes
- #457
ce6ef71Thanks@lemonmade! - fix: renderToStringAsync produces commas for suspended components with complex children
Commits
df713c5Merge pull request #454 from preactjs/changeset-release/main39da545Version Packages832163eRevert "feat: supportdangerouslySetInnerHTMLon Fragments"180565bMerge pull request #457 from lemonmade/fix/async-suspense-array-renderingce6ef71Fix renderToStringAsync for suspended components99f40b1fix: handle array/Promise results when wrapping suspended components with mar...449c455Merge pull request #455 from preactjs/oxfmt9aabd5eMerge pull request #456 from preactjs/npm-if8a771echore: switch prettier -> oxfmt4364a1bchore: update lockfile- Additional commits viewable in compare view
Updates satori from 0.25.0 to 0.26.0
Commits
eab60eefeat: builtin minimal JSX runtime (#737)- See full diff in compare view
Updates shiki from 4.0.1 to 4.0.2
Release notes
Sourced from shiki's releases.
v4.0.2
🐞 Bug Fixes
- Support ANSI language with multiple themes - by
@dan-leein shikijs/shiki#1259 (2a232)View changes on GitHub
Commits
7a1007dchore: release v4.0.2ef42a16chore: update deps2a23230fix: support ANSI language with multiple themes (#1259)- See full diff in compare view
Updates toml from 3.0.0 to 4.1.1
Changelog
Sourced from toml's changelog.
4.1.1 - March 31 2026
- Increase performance ~5x (#68)
4.1.0 - March 31 2026
- Add spec v1.1.0 support (#67)
4.0.1 - March 31 2026
- Minor packaging changes
4.0.0 - March 31 2026
- Modernize tooling and support TOML v1.0.0 spec (#66)
2.3.0 - July 13 2015
- Correctly handle quoted keys (#21)
2.2.3 - June 8 2015
- Support empty inline tables (#24)
- Do not allow implicit table definitions to replace value (#23)
- Don't allow tables to replace inline tables (#25)
2.2.2 - April 3 2015
- Correctly handle newlines at beginning of string (#22)
2.2.1 - March 17 2015
- Parse dates generated by Date#toISOString() (#20)
2.2.0 - Feb 26 2015
- Support TOML spec v0.4.0
2.1.0 - Jan 7 2015
... (truncated)
Commits
3840fac4.1.15b7b7284.1.04178324Update changelog07626bcMerge pull request #68 from BinaryMuse/mkt/perfa06aa28Improve performance ~5xe04b6b9Merge pull request #67 from BinaryMuse/mkt/spec-1-1-07261002Update README and package.json for TOML v1.1.0 compliance341d9adAdd TOML v1.1.0 supportbe463364.0.19910d08Update changelog- Additional commits viewable in compare view
Updates ws from 8.19.0 to 8.20.0
Release notes
Sourced from ws's releases.
8.20.0
Features
- Added exports for the
PerMessageDeflateclass and utilities for theSec-WebSocket-ExtensionsandSec-WebSocket-Protocolheaders (d3503c1f).
Commits
8439255[dist] 8.20.0d3503c1[minor] Export thePerMessageDeflateclass and header utils3ee5349[api] Convert theisServerandmaxPayloadparameters to options91707b4[doc] Add missing space8b55319[pkg] Update eslint to version 10.0.1ca533a5[pkg] Update globals to version 17.0.0- See full diff in compare view
Updates @types/node from 25.3.3 to 25.5.0
Commits
- See full diff in compare view
Updates esbuild from 0.27.3 to 0.27.5
Release notes
Sourced from esbuild's releases.
v0.27.5
Fix for an async generator edge case (#4401, #4417)
Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code:
async function* inner() { yield 1; yield 2 } async function* outer() { yield* inner() } let gen = outer() for await (let x of [gen.next(), gen.next()]) console.log(x)Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with
--supported:async-generator=false). The transformation should be fixed starting with this release.This fix was contributed by
@2767mr.Fix a regression when
metafileis enabled (#4420, #4418)This release fixes a regression introduced by the previous release. When
metafile: truewas enabled in esbuild's JavaScript API, builds with build errors were incorrectly throwing an error about an empty JSON string instead of an object containing the build errors.Use define semantics for TypeScript parameter properties (#4421)
Parameter properties are a TypeScript-specific code generation feature that converts constructor parameters into class fields when they are prefixed by certain keywords. When
"useDefineForClassFields": trueis present intsconfig.json, the TypeScript compiler automatically generates class field declarations for parameter properties. Previously esbuild didn't do this, but esbuild will now do this starting with this release:// Original code class Foo { constructor(public x: number) {} }// Old output (with --loader=ts) class Foo { constructor(x) { this.x = x; } }
// New output (with --loader=ts) class Foo { constructor(x) { this.x = x; } x; }
Allow
es2025as a target intsconfig.json(#4432)TypeScript recently added
es2025as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:
... (truncated)
Changelog
Sourced from esbuild's changelog.
0.27.5
Fix for an async generator edge case (#4401, #4417)
Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code:
async function* inner() { yield 1; yield 2 } async function* outer() { yield* inner() } let gen = outer() for await (let x of [gen.next(), gen.next()]) console.log(x)Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with
--supported:async-generator=false). The transformation should be fixed starting with this release.This fix was contributed by
@2767mr.Fix a regression when
metafileis enabled (#4420, #4418)This release fixes a regression introduced by the previous release. When
metafile: truewas enabled in esbuild's JavaScript API, builds with build errors were incorrectly throwing an error about an empty JSON string instead of an object containing the build errors.Use define semantics for TypeScript parameter properties (#4421)
Parameter properties are a TypeScript-specific code generation feature that converts constructor parameters into class fields when they are prefixed by certain keywords. When
"useDefineForClassFields": trueis present intsconfig.json, the TypeScript compiler automatically generates class field declarations for parameter properties. Previously esbuild didn't do this, but esbuild will now do this starting with this release:// Original code class Foo { constructor(public x: number) {} }// Old output (with --loader=ts) class Foo { constructor(x) { this.x = x; } }
// New output (with --loader=ts) class Foo { constructor(x) { this.x = x; } x; }
Allow
es2025as a target intsconfig.json(#4432)TypeScript recently added
es2025as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:
... (truncated)
Commits
0102ae3publish 0.27.5 to npmeb93887split offCHANGELOG-2025.mda54a51afix #4421: use define for ts parameter props31a7c67remove unused variable in__asyncGenerator1ea01a6update release notesa8f8c0efix: Handle non-awaited async generator (#4417)4844d4bfix #4420, close #4418:metafileJSON regressionedbdce8fix #4432: addes2025as a valid targetf9c9012publish 0.27.4 to npm207dbc7js api: fall back to js-based metafile json parser- Additional commits viewable in compare view
Updates typescript from 5.9.3 to 6.0.2
Release notes
Sourced from typescript's releases.
TypeScript 6.0
For release notes, check out the release announcement blog post.
- fixed issues query for TypeScript 6.0.0 (Beta).
- fixed issues query for TypeScript 6.0.1 (RC).
- fixed issues query for TypeScript 6.0.2 (Stable).
Downloads are available on:
TypeScript 6.0 Beta
For release notes, check out the release announcement.
Downloads are available on:
Commits
607a22aBump version to 6.0.2 and LKG9e72ab7🤖 Pick PR #63239 (Fix missing lib files in reused pro...) into release-6.0 (#...35ff23d🤖 Pick PR #63163 (Port anyFunctionType subtype fix an...) into release-6.0 (#...e175b69Bump version to 6.0.1-rc and LKGaf4caacUpdate LKG8efd7e8Merge remote-tracking branch 'origin/main' into release-6.0206ed1aDeprecate assert in import() (#63172)e688ac8Update dependencies (#63156)29b300dBump the github-actions group across 1 directory with 2 updates (#63205)0c2c7a3DOM update (#63183)- 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 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
Package Dependencies
Technical Details
| ID: | 15334406 |
| UUID: | 4191546179 |
| Node ID: | PR_kwDORfalDM7Pcfdw |
| Host: | GitHub |
| Repository: | codepilgrimage/codepilgrimage.github.io |