Skip to content

fix(deps): update patch - #721

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/patch
Open

fix(deps): update patch#721
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/patch

Conversation

@renovate

@renovate renovate Bot commented Aug 15, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@0no-co/graphql.web 1.2.01.3.3 age confidence
@chachalog/types (source) 0.5.20.5.3 age confidence
@types/node (source) 22.19.1922.20.1 age confidence
devalue 5.8.15.9.0 age confidence
graphql 16.14.116.14.2 age confidence
pkg-pr-new (source) ^0.0.86^0.0.87 age confidence
prettier (source) 3.8.33.9.6 age confidence
publint (source) 0.3.210.3.23 age confidence
rolldown (source) 1.0.31.2.4 age confidence
rollup-plugin-sbom 3.2.23.2.3 age confidence
tsdown (source) 0.22.10.22.14 age confidence
vite (source) 8.0.168.2.1 age confidence

Release Notes

0no-co/graphql.web (@​0no-co/graphql.web)

v1.3.3

Compare Source

Patch Changes
  • Allow undefined on DocumentNode.tokenCount to preserve compatibility with graphql when exactOptionalPropertyTypes is enabled
    Submitted by @​JoviDeCroock (See #​77)

v1.3.2

Compare Source

Patch Changes
  • ⚠️ Fix regression on using Kind without graphql types resolving
    Submitted by @​kitten (See #​73)

v1.3.1

Compare Source

Patch Changes
  • Update typescript (and rollup-plugin-dts) to fix bundled d.ts output's kind types
    Submitted by @​kitten (See #​71)

v1.3.0

Compare Source

Minor Changes
  • Update AST types to comply with schema coordinates additions (graphql@^16.12.0)
    Submitted by @​kitten (See #​66)
GauBen/chachalog (@​chachalog/types)

v0.5.3

Compare Source

  • Create release commits through the GitHub API so that they are signed and marked as verified.
sveltejs/devalue (devalue)

v5.9.0

Compare Source

Minor Changes
  • 07d6a38: feat: export filterArrayIndices, the array-index filtering used by the indicesOf stringify operation, so custom operations can reuse it instead of reimplementing it
  • 07d6a38: feat: add pluggable operations option to parse/unflatten, allowing customization of how values are constructed while reviving (e.g. cross-realm or foreign-runtime revival)
  • 5b53532: feat: add pluggable operations option to stringify/stringifyAsync, allowing customization of how values are introspected during serialization (e.g. side-effect-free or foreign-runtime serialization)

v5.8.2

Compare Source

Patch Changes
  • 48cc81f: fix: serialize DataView subviews with the correct byte offset and length
  • cd6da94: fix: resolve circular references through custom revivers when payload is already hydrated
  • 29a3382: fix: uneval now produces valid output for a repeated empty Map or Set
  • 8c0db06: fix: serialize Temporal values referenced more than once in uneval
  • 3770846: fix: emit valid JS for BigInt64Array and BigUint64Array in uneval
  • 756265a: fix: preserve shared-reference identity for Map keys in uneval
  • faa8a05: fix: emit uneval reconstructions before the statements that reference them
  • 06129ad: fix: do not grow sparse arrays by one slot in uneval
graphql/graphql-js (graphql)

v16.14.2

Compare Source

v16.14.2 (2026-06-09)

Docs 📝
7 PRs were merged
Polish 💅
Committers: 2
stackblitz-labs/pkg.pr.new (pkg-pr-new)

v0.0.87

Compare Source

prettier/prettier (prettier)

v3.9.6

Compare Source

v3.9.5

Compare Source

diff

Markdown: Cap ordered list mark at 999,999,999 (#​19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text

1234567890123456789012) text

<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text

1234567890123456789012) text

<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text

1234567890123456789012) text
Markdown: Avoid corrupting empty link with title (#​19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](<> "title")

<!-- Prettier 3.9.4 -->
[link]( "title")

<!-- Prettier 3.9.5 -->
[link](<> "title")
Less: Remove extra spaces after [ in map lookups (#​19503 by @​kovsu)
// Input
.foo {
  color: #theme[ primary];
  color: #theme[@name];
  color: #theme[@@name];
}

// Prettier 3.9.4
.foo {
  color: #theme[ primary];
  color: #theme[ @name];
  color: #theme[ @@name];
}

// Prettier 3.9.5
.foo {
  color: #theme[primary];
  color: #theme[@name];
  color: #theme[@@name];
}
CSS: Prevent addition space in type() with + (#​19516 by @​bigandy)

This fixes the addition space before + in CSS type() declaration. For example type(<number>+) was being converted into type(<number> +) which is invalid CSS and does not work.

/* Input */
div {
  border-radius: attr(br type(<length>+));
}

/* Prettier 3.9.4 */
div {
  border-radius: attr(br type(<length> +));
}

/* Prettier 3.9.5 */
div {
  border-radius: attr(br type(<length>+));
}
Less: Remove spaces between merge markers and colons (#​19517 by @​kovsu)
// Input
a {
  box-shadow  +  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.4
a {
  box-shadow+  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.5
a {
  box-shadow+: 0 0 1px #&#8203;000;
}
Markdown: Preserve wiki links with aliases (#​19527 by @​kovsu)
<!-- Input -->
[[Foo:Bar]]

<!-- Prettier 3.9.4 -->
[[Foo]]

<!-- Prettier 3.9.5 -->
[[Foo:Bar]]
TypeScript: Fix comments being dropped on shorthand type import/export specifiers (#​19565 by @​kirkwaiblinger)
// Input
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";

// Prettier 3.9.4
Error: Comment "comment" was not printed. Please report this error!

// Prettier 3.9.5
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";
Miscellaneous: Preserving comments' placement property (#​19567 by @​Janther)

Prettier@​3.9.0 deleted an undocumented property on comments, which was already used by plugins, comment.placement is now available again after comment attach.

Flow: Stop enforcing empty module declaration to break (#​19568 by @​fisker)
// Input
declare module "foo" {}

// Prettier 3.9.4
declare module "foo" {
}

// Prettier 3.9.5
declare module "foo" {}
Angular: Support expression for exhaustive typechecking (#​19571 by @​fisker)
<!-- Input -->
@switch (state.mode) {
  @default never(state);
}

<!-- Prettier 3.9.4 -->
@switch (state.mode) {
  @default never;
}

<!-- Prettier 3.9.5 -->
@switch (state.mode) {
  @default never(state);
}
TypeScript: Ignore comments inside mapped type when checking type parameter comments (#​19572 by @​fisker)
// Input
foo<{
  // comment
  [key in keyof Foo]: number
}>();

// Prettier 3.9.4
foo<
  {
    // comment
    [key in keyof Foo]: number;
  }
>();

// Prettier 3.9.5
foo<{
  // comment
  [key in keyof Foo]: number;
}>();
Less: Fix adjacent block comments being corrupted (#​19574 by @​kovsu)
// Input
/* a *//* b */
/* a */* {
  color: red;
}

// Prettier 3.9.4
/* a */
/* b */
/* a * {
  color: red;
}

// Prettier 3.9.5
/* a */ /* b */
/* a */
* {
  color: red;
}
JavaScript: Handle dangling comments in SwitchStatement (#​19581 by @​fisker)
// Input
switch (foo) {
 // comment
}

// Prettier 3.9.4
switch (
  foo
  // comment
) {
}

// Prettier 3.9.5
switch (foo) {
  // comment
}
TypeScript: Remove space in comment-only object type (#​19583 by @​fisker)
// Input
var foo = {
  /* comment */
};
type Foo = {
  /* comment */
};

// Prettier 3.9.4
var foo = {/* comment */};
type Foo = { /* comment */ };

// Prettier 3.9.5
var foo = {/* comment */};
type Foo = {/* comment */};

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d
publint/publint (publint)

v0.3.23

Compare Source

Patch Changes
  • #​248 9ff88ac - Recursively detect test files (e.g. *.test.js, *.spec.ts) for the USE_FILES suggestion.

  • #​245 ad737a3 - The USE_FILES message now reports which internal files or directories triggered it via args.internalFilePaths

v0.3.22

Compare Source

Patch Changes
  • #​241 7740a62 - Support npm v12 and pnpm v11

  • cad0425 - Relax git url regex for repository validation

  • #​244 393ac4d - Recognize more common internal files for the USE_FILES suggestion.

  • #​242 4a8dc75 - Refactor supported package manager handling from @publint/pack

rolldown/rolldown (rolldown)

v1.2.4

Compare Source

🚀 Features
🐛 Bug Fixes
📚 Documentation
🧪 Testing
  • browser: smoke test the packed @rolldown/browser in a real browser page (#​10634) by @​hyfdev
  • node-wasi: run the full node test suite against the WASI binding (#​10616) by @​hyfdev
  • webcontainer: smoke test the packed WASI artifacts inside a WebContainer (#​10626) by @​hyfdev
⚙️ Miscellaneous Tasks

v1.2.3

Compare Source

🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
❤️ New Contributors

v1.2.2

Compare Source

🚀 Features
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
❤️ New Contributors

v1.2.1

Compare Source

🚀 Features
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
  • code-splitting: pin CJS barrel fallback triggers and flag-off equivalence (#​10514) by [@​hyfdev](https://

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot enabled auto-merge (squash) August 15, 2026 01:35
@renovate

renovate Bot commented Aug 15, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
warning Missing version in workspace at "/tmp/renovate/repos/github/Jahia/javascript-modules/javascript-modules-engine", ignoring.
warning eslint-plugin-cypress@5.4.0: deprecate: accidentally includes breaking changes from 6.0.0
warning workspace-aggregator-336c54aa-8d1e-479b-907d-5c5aba0fbaf3 > eslint-plugin-cypress@5.4.0: deprecate: accidentally includes breaking changes from 6.0.0
error Couldn't find any versions for "@jahia/javascript-modules-library" that matches "workspace:^"
warning workspace-aggregator-336c54aa-8d1e-479b-907d-5c5aba0fbaf3 > hydrogen > typescript-plugin-css-modules > stylus > glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
warning workspace-aggregator-336c54aa-8d1e-479b-907d-5c5aba0fbaf3 > hydrogen > typescript-plugin-css-modules > stylus > glob > inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
Error: Couldn't find any versions for "@jahia/vite-plugin" that matches "workspace:^"
    at MessageError.ExtendableBuiltin (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:721:66)
    at new MessageError (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:750:123)
    at NpmResolver.<anonymous> (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:50353:13)
    at Generator.next (<anonymous>)
    at step (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:310:30)
    at /opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:321:13
    at process.processTicksAndRejections (node:internal/process/task_queues:104:5)
Error: Couldn't find any versions for "@jahia/vite-plugin" that matches "workspace:^"
    at MessageError.ExtendableBuiltin (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:721:66)
    at new MessageError (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:750:123)
    at NpmResolver.<anonymous> (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:50353:13)
    at Generator.next (<anonymous>)
    at step (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:310:30)
    at /opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:321:13
    at process.processTicksAndRejections (node:internal/process/task_queues:104:5)
Error: Couldn't find any versions for "@jahia/javascript-modules-library" that matches "workspace:^"
    at MessageError.ExtendableBuiltin (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:721:66)
    at new MessageError (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:750:123)
    at NpmResolver.<anonymous> (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:50353:13)
    at Generator.next (<anonymous>)
    at step (/opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:310:30)
    at /opt/containerbase/tools/yarn/1.22.22/24.19.0/node_modules/yarn/lib/cli.js:321:13
    at process.processTicksAndRejections (node:internal/process/task_queues:104:5)

@github-actions

Copy link
Copy Markdown

🦜 Chachalog

No changelog entries detected. Learn more about Chachalog.

Create a new entry online or run npx chachalog@0.5.3 prompt to create a new entry locally.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants