Skip to content

chore(deps): bump the all-minor-patch group across 1 directory with 18 updates#1413

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/js/all-minor-patch-85c172c3c5
Open

chore(deps): bump the all-minor-patch group across 1 directory with 18 updates#1413
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/js/all-minor-patch-85c172c3c5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 31, 2026

Bumps the all-minor-patch group with 18 updates in the /js directory:

Package From To
@amplitude/unified 1.1.9 1.1.10
@babel/helpers 7.29.2 7.29.7
@babel/runtime 7.29.2 7.29.7
@codemirror/view 6.42.1 6.43.0
@sentry/nextjs 10.53.1 10.55.0
@sentry/react 10.53.1 10.55.0
@uiw/codemirror-theme-github 4.25.9 4.25.10
@uiw/react-codemirror 4.25.9 4.25.10
@zumer/snapdom 2.12.0 2.12.2
date-fns 4.2.1 4.4.0
js-cookie 3.0.7 3.0.8
write-excel-file 4.0.6 4.0.7
@amplitude/analytics-core 2.48.1 2.48.2
@biomejs/biome 2.4.15 2.4.16
baseline-browser-mapping 2.10.32 2.10.33
read-excel-file 9.0.9 9.0.10
@tsdown/css 0.22.0 0.22.1
tsdown 0.22.0 0.22.1

Updates @amplitude/unified from 1.1.9 to 1.1.10

Release notes

Sourced from @​amplitude/unified's releases.

@​amplitude/unified@​1.1.10

1.1.10 (2026-05-28)

Note: Version bump only for package @​amplitude/unified

Commits
  • 82c272e chore(release): publish
  • 00d4ed6 fix(analytics-browser): dummy commit to force analytics-browser upgrade (#1780)
  • b1be6d4 chore(release): publish
  • e6972fa ci: skip RN smoke test if analytics-react-native not affected (#1775)
  • 22e0b59 fix(analytics-react-native): lazy-load AsyncStorage so customers can opt out ...
  • 9505ed4 fix(analytics-browser): guard window.engagement against reassignment on dupli...
  • See full diff in compare view

Updates @babel/helpers from 7.29.2 to 7.29.7

Release notes

Sourced from @​babel/helpers's releases.

v7.29.7 (2026-05-25)

Re-release all packages with npm provenance attestations

v7.29.6 (2026-05-25)

🐛 Bug Fix

Committers: 3

v7.29.5 (2026-05-05)

🏠 Internal

  • babel-preset-env
    • Update @babel/* dependencies

v7.29.4 (2026-05-05)

🐛 Bug Fix

  • babel-plugin-transform-modules-systemjs
    • #17974 [7.x backport]fix(systemjs): improve module string name support (@​JLHwung)

Committers: 1

v7.29.3 (2026-04-30)

👓 Spec Compliance

🐛 Bug Fix

  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • #17931 fix(decorators): replace super within all removed static elements (@​JLHwung)
  • babel-register
  • babel-compat-data, babel-plugin-bugfix-safari-rest-destructuring-rhs-array, babel-preset-env

💅 Polish

  • babel-parser

... (truncated)

Commits

Updates @babel/runtime from 7.29.2 to 7.29.7

Release notes

Sourced from @​babel/runtime's releases.

v7.29.7 (2026-05-25)

Re-release all packages with npm provenance attestations

v7.29.6 (2026-05-25)

🐛 Bug Fix

Committers: 3

v7.29.5 (2026-05-05)

🏠 Internal

  • babel-preset-env
    • Update @babel/* dependencies

v7.29.4 (2026-05-05)

🐛 Bug Fix

  • babel-plugin-transform-modules-systemjs
    • #17974 [7.x backport]fix(systemjs): improve module string name support (@​JLHwung)

Committers: 1

v7.29.3 (2026-04-30)

👓 Spec Compliance

🐛 Bug Fix

  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • #17931 fix(decorators): replace super within all removed static elements (@​JLHwung)
  • babel-register
  • babel-compat-data, babel-plugin-bugfix-safari-rest-destructuring-rhs-array, babel-preset-env

💅 Polish

  • babel-parser

... (truncated)

Commits

Updates @codemirror/view from 6.42.1 to 6.43.0

Commits

Updates @sentry/nextjs from 10.53.1 to 10.55.0

Release notes

Sourced from @​sentry/nextjs's releases.

10.55.0

Important Changes

  • feat(hono): Promote @sentry/hono to stable and deprecate honoIntegration (#21208)

    The @sentry/hono SDK is now stable. See the Sentry Hono SDK docs to get started.

  • docs(tanstackstart-react): Promote SDK status to beta (#21175)

    This release promotes the @sentry/tanstackstart-react SDK to beta. For details on how to use it, check out the Sentry TanStack Start SDK docs. Please reach out on GitHub if you have any feedback or concerns.

  • feat(hono): Add shouldHandleError option to sentry() middleware (#21205)

    The sentry() middleware now accepts a shouldHandleError callback to control which errors are captured and sent to Sentry. By default, 3xx/4xx HTTP errors are ignored and 5xx errors and plain Error objects are captured. Return true from the callback to capture an error, false to suppress it.

    app.use(
      sentry(app, {
        dsn: '__DSN__',
        shouldHandleError(error) {
          const status = (error as { status?: number })?.status;
          // Capture 401/403 in addition to the default 5xx errors
          return status === 401 || status === 403 || typeof status !== 'number' || status >= 500;
        },
      }),
    );
  • test(tanstackstart-react): Move initialization to client entry point (#21161)

    Change the recommended setup for the SDK to do Sentry.init() in the client entry file to capture telemetry that is emitted ahead of page hydration.

  • feat(tanstackstart-react): Add distributed tracing (#21144)

    Server and client traces are now automatically connected, allowing you to see the full request lifecycle from server-side rendering through client-side hydration in a single trace.

  • feat(tanstackstart-react): Add server-side route parametrization (#21147)

    Server transaction names are now parametrized automatically (e.g., GET /users/123 becomes GET /users/$userId), improving transaction grouping in Sentry.

  • feat(tanstackstart-react): Show readable server function names in traces (#21190)

    Server function spans now show human-readable names (e.g., GET /_serverFn/greet instead of GET /_serverFn/a10e70b3...). The tanstackstart.function.hash.sha256 span attribute has been renamed to tanstackstart.function.id.

Other Changes

  • feat(core): Migrate request data to dataCollection (#21071)
  • feat(hono): Add warning in Bun for double init (#21195)

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

10.55.0

Important Changes

  • feat(hono): Promote @sentry/hono to stable and deprecate honoIntegration (#21208)

    The @sentry/hono SDK is now stable. See the Sentry Hono SDK docs to get started.

  • docs(tanstackstart-react): Promote SDK status to beta (#21175)

    This release promotes the @sentry/tanstackstart-react SDK to beta. For details on how to use it, check out the Sentry TanStack Start SDK docs. Please reach out on GitHub if you have any feedback or concerns.

  • feat(hono): Add shouldHandleError option to sentry() middleware (#21205)

    The sentry() middleware now accepts a shouldHandleError callback to control which errors are captured and sent to Sentry. By default, 3xx/4xx HTTP errors are ignored and 5xx errors and plain Error objects are captured. Return true from the callback to capture an error, false to suppress it.

    app.use(
      sentry(app, {
        dsn: '__DSN__',
        shouldHandleError(error) {
          const status = (error as { status?: number })?.status;
          // Capture 401/403 in addition to the default 5xx errors
          return status === 401 || status === 403 || typeof status !== 'number' || status >= 500;
        },
      }),
    );
  • test(tanstackstart-react): Move initialization to client entry point (#21161)

    Change the recommended setup for the SDK to do Sentry.init() in the client entry file to capture telemetry that is emitted ahead of page hydration.

  • feat(tanstackstart-react): Add distributed tracing (#21144)

    Server and client traces are now automatically connected, allowing you to see the full request lifecycle from server-side rendering through client-side hydration in a single trace.

  • feat(tanstackstart-react): Add server-side route parametrization (#21147)

    Server transaction names are now parametrized automatically (e.g., GET /users/123 becomes GET /users/$userId), improving transaction grouping in Sentry.

  • feat(tanstackstart-react): Show readable server function names in traces (#21190)

    Server function spans now show human-readable names (e.g., GET /_serverFn/greet instead of GET /_serverFn/a10e70b3...). The tanstackstart.function.hash.sha256 span attribute has been renamed to tanstackstart.function.id.

Other Changes

  • feat(core): Migrate request data to dataCollection (#21071)

... (truncated)

Commits
  • acd7b57 release: 10.55.0
  • d5323d2 Merge pull request #21216 from getsentry/prepare-release/10.55.0
  • 2fb1929 meta(changelog): Update changelog for 10.55.0
  • 556bcb3 feat(hono): Add shouldHandleError as middleware option (#21205)
  • 7a67ea4 feat(hono): Promote @sentry/hono to stable and deprecate honoIntegration ...
  • cead7f9 fix(e2e): Fix astro-6 e2e test build by relaxing astro version range (#21211)
  • 75fd1d5 chore(changelog): clarify array attributes impact on beforeSend* callbacks ...
  • 8a2a490 fix(cloudflare): Use original waitUntil to not create a deadlock (#21197)
  • f7b506d feat(metrics): Migrate metrics to use dataCollection instead of `sendDefaul...
  • f55fc30 feat(core): Migrate request data to dataCollection (#21071)
  • Additional commits viewable in compare view

Updates @sentry/react from 10.53.1 to 10.55.0

Release notes

Sourced from @​sentry/react's releases.

10.55.0

Important Changes

  • feat(hono): Promote @sentry/hono to stable and deprecate honoIntegration (#21208)

    The @sentry/hono SDK is now stable. See the Sentry Hono SDK docs to get started.

  • docs(tanstackstart-react): Promote SDK status to beta (#21175)

    This release promotes the @sentry/tanstackstart-react SDK to beta. For details on how to use it, check out the Sentry TanStack Start SDK docs. Please reach out on GitHub if you have any feedback or concerns.

  • feat(hono): Add shouldHandleError option to sentry() middleware (#21205)

    The sentry() middleware now accepts a shouldHandleError callback to control which errors are captured and sent to Sentry. By default, 3xx/4xx HTTP errors are ignored and 5xx errors and plain Error objects are captured. Return true from the callback to capture an error, false to suppress it.

    app.use(
      sentry(app, {
        dsn: '__DSN__',
        shouldHandleError(error) {
          const status = (error as { status?: number })?.status;
          // Capture 401/403 in addition to the default 5xx errors
          return status === 401 || status === 403 || typeof status !== 'number' || status >= 500;
        },
      }),
    );
  • test(tanstackstart-react): Move initialization to client entry point (#21161)

    Change the recommended setup for the SDK to do Sentry.init() in the client entry file to capture telemetry that is emitted ahead of page hydration.

  • feat(tanstackstart-react): Add distributed tracing (#21144)

    Server and client traces are now automatically connected, allowing you to see the full request lifecycle from server-side rendering through client-side hydration in a single trace.

  • feat(tanstackstart-react): Add server-side route parametrization (#21147)

    Server transaction names are now parametrized automatically (e.g., GET /users/123 becomes GET /users/$userId), improving transaction grouping in Sentry.

  • feat(tanstackstart-react): Show readable server function names in traces (#21190)

    Server function spans now show human-readable names (e.g., GET /_serverFn/greet instead of GET /_serverFn/a10e70b3...). The tanstackstart.function.hash.sha256 span attribute has been renamed to tanstackstart.function.id.

Other Changes

  • feat(core): Migrate request data to dataCollection (#21071)
  • feat(hono): Add warning in Bun for double init (#21195)

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

10.55.0

Important Changes

  • feat(hono): Promote @sentry/hono to stable and deprecate honoIntegration (#21208)

    The @sentry/hono SDK is now stable. See the Sentry Hono SDK docs to get started.

  • docs(tanstackstart-react): Promote SDK status to beta (#21175)

    This release promotes the @sentry/tanstackstart-react SDK to beta. For details on how to use it, check out the Sentry TanStack Start SDK docs. Please reach out on GitHub if you have any feedback or concerns.

  • feat(hono): Add shouldHandleError option to sentry() middleware (#21205)

    The sentry() middleware now accepts a shouldHandleError callback to control which errors are captured and sent to Sentry. By default, 3xx/4xx HTTP errors are ignored and 5xx errors and plain Error objects are captured. Return true from the callback to capture an error, false to suppress it.

    app.use(
      sentry(app, {
        dsn: '__DSN__',
        shouldHandleError(error) {
          const status = (error as { status?: number })?.status;
          // Capture 401/403 in addition to the default 5xx errors
          return status === 401 || status === 403 || typeof status !== 'number' || status >= 500;
        },
      }),
    );
  • test(tanstackstart-react): Move initialization to client entry point (#21161)

    Change the recommended setup for the SDK to do Sentry.init() in the client entry file to capture telemetry that is emitted ahead of page hydration.

  • feat(tanstackstart-react): Add distributed tracing (#21144)

    Server and client traces are now automatically connected, allowing you to see the full request lifecycle from server-side rendering through client-side hydration in a single trace.

  • feat(tanstackstart-react): Add server-side route parametrization (#21147)

    Server transaction names are now parametrized automatically (e.g., GET /users/123 becomes GET /users/$userId), improving transaction grouping in Sentry.

  • feat(tanstackstart-react): Show readable server function names in traces (#21190)

    Server function spans now show human-readable names (e.g., GET /_serverFn/greet instead of GET /_serverFn/a10e70b3...). The tanstackstart.function.hash.sha256 span attribute has been renamed to tanstackstart.function.id.

Other Changes

  • feat(core): Migrate request data to dataCollection (#21071)

... (truncated)

Commits
  • acd7b57 release: 10.55.0
  • d5323d2 Merge pull request #21216 from getsentry/prepare-release/10.55.0
  • 2fb1929 meta(changelog): Update changelog for 10.55.0
  • 556bcb3 feat(hono): Add shouldHandleError as middleware option (#21205)
  • 7a67ea4 feat(hono): Promote @sentry/hono to stable and deprecate honoIntegration ...
  • cead7f9 fix(e2e): Fix astro-6 e2e test build by relaxing astro version range (#21211)
  • 75fd1d5 chore(changelog): clarify array attributes impact on beforeSend* callbacks ...
  • 8a2a490 fix(cloudflare): Use original waitUntil to not create a deadlock (#21197)
  • f7b506d feat(metrics): Migrate metrics to use dataCollection instead of `sendDefaul...
  • f55fc30 feat(core): Migrate request data to dataCollection (#21071)
  • Additional commits viewable in compare view

Updates @uiw/codemirror-theme-github from 4.25.9 to 4.25.10

Release notes

Sourced from @​uiw/codemirror-theme-github's releases.

v4.25.10

Buy me a coffee

Documentation v4.25.10: https://raw.githack.com/uiwjs/react-codemirror/5e24acf/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.9...v4.25.10

npm i @uiw/react-codemirror@4.25.10
Commits

Updates @uiw/react-codemirror from 4.25.9 to 4.25.10

Release notes

Sourced from @​uiw/react-codemirror's releases.

v4.25.10

Buy me a coffee

Documentation v4.25.10: https://raw.githack.com/uiwjs/react-codemirror/5e24acf/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.9...v4.25.10

npm i @uiw/react-codemirror@4.25.10
Commits

Updates @zumer/snapdom from 2.12.0 to 2.12.2

Release notes

Sourced from @​zumer/snapdom's releases.

v2.12.2

What's Changed

Full Changelog: zumerlab/snapdom@v2.12.1...v2.12.2

v2.12.1

What's Changed

New Contributors

Full Changelog: zumerlab/snapdom@v2.12.0...v2.12.1

Changelog

Sourced from @​zumer/snapdom's changelog.

v2.12.2

29 May 2026

v2.12.1

28 May 2026

  • Fix for placeholder colors not being copied over on webkit browsers [#420](https://github.com/zumerlab/snapdom/issues/420)
  • fix(pseudo): support counter-set; drop divergent dead counter duplicates eb8bdb7
  • fix: proxy-keyed bg cache, case-insensitive font match, nodeMap icon pairing 0623bcd
  • fix(bbox): correct bleed/transform math for inset shadows, blur chains, root scale 1c43605
  • perf: trim redundant per-node work on the capture hot path 6d1ad72
  • fix(capture): stop mutating the live DOM during capture (non-destructive) db69e78
  • fix(export): flatten jpeg/webp background by resolved format, not export name 1dcfbcd
  • fix(cache): invalidate snapshot on option change, reset measureHints on disabled 0b8d697
  • add SnapDIFF 9bda342
  • test(precache): align cache.background keys with proxy-prefixed contract 064b004
  • fix(clone): ensure placeholder color is correctly rendered in SVG 44899b3
  • chore: update contributors list 73358a1
  • Fix download format option types 2f93d39
  • add sponsor 70c4140
  • chore: revert .gitignore to main 3091154
  • fix(clone): restore original placeholder logic and styles efe1dd9
  • chore: exclude screenshots folder in .gitignore d364607
  • Merge pull request #417 from puneetdixit200/fix-download-format-types be6bc02
Commits
  • 96d2443 2.12.2
  • 20d4d37 update
  • 9c84259 chore(plugins): v2.2.0 — gif/video/html
  • eac1ad6 update
  • 88cb353 Add new super power plugins
  • 0e3b068 fix(prepare): apply 'all:unset' style to inner wrapper to preserve inherited ...
  • 1c4dfe2 Merge pull request #423 from zumerlab/fix/issues-418-419
  • 7c1f1cf fix(pseudo): keep empty box-generating pseudos used as layout spacers (#418)
  • 127ed9b fix(pseudo): render pseudo-elements with a single-side border (#419)
  • 102e40f Bumped version
  • Additional commits viewable in compare view

Updates date-fns from 4.2.1 to 4.4.0

Release notes

Sourced from date-fns's releases.

v4.4.0

This release revisits the approach to CDN usage and introduces a new package, @date-fns/cdn and deprecates the date-fns CDN scripts. It allowed reducing the zipped package size from 5.83 MB down to 3.96 MB without introducing any breaking changes.

In v5.0.0-alpha.0 where CDN scripts are completely removed from date-fns the change is more significant and brings the zipped package size down to 2.89 MB.

It is just the first step in optimizing the package size. Expect further size reduction in the future v4 and v5 versions.

Changed

  • DEPRECATED: The date-fns CDN scripts are now deprecated and will be removed in the next major release. Please switch to the new @date-fns/cdn package for CDN usage.

  • Removed CDN source maps to reduce the package size. If you rely on them, please switch to the new @date-fns/cdn package that still includes them.

v4.3.0

Kudos to @​ImRodry and @​puneetdixit200 for their contributions.

Fixed

Commits
  • cd53d25 Promote to v4.4.0
  • d948ec1 Preserve but deprecate CDN versions for v4, set up v5 with polyfills
  • ee65753 Add root mise :format task
  • 9f5bdf5 Add positional argument to test/smoke.sh script
  • 651ead6 Split CDN bundles into separate @​date-fns/cdn package
  • 224c1a2 Deprecate type tests as attw hangs on date-fns package
  • 7bb2842 Switch PACKAGE_OUTPUT_PATH to --dist flag in the package build script
  • b6ad5ac Add flags to control package build script
  • 424a783 Fix docs release after moving to monorepo setup
  • f95bcf1 (docs): Add missing tsx dependency
  • Additional commits viewable in compare view

Updates js-cookie from 3.0.7 to 3.0.8

Release notes

Sourced from js-cookie's releases.

v3.0.8

  • Restore ES5 compatibility, inadvertently broken in 3.0.7 - #959
  • Lift Node version restriction, inadvertently restricted to >= 20 in 3.0.7 - #956
Commits
  • d7a1096 Craft v3.0.8 release
  • 248e685 Use existing Chrome with puppeteer
  • fc04269 Remove QUnit related workaround in Grunt config
  • 265a685 Tidy up package lock file
  • 478e591 Disable Node deprecation DEP0044 for release workflow
  • 331d524 Fix node version config for E2E test job
  • 11d773d Ensure ECMAScript compatibility
  • d788646 Remove engines property from package
  • e7d9a4d Fix typo in test assertion message
  • b5fca24 Make credentials use explicit in release workflow
  • See full diff in compare view

Updates write-excel-file from 4.0.6 to 4.0.7

Commits

Updates @amplitude/analytics-core from 2.48.1 to 2.48.2

Release notes

Sourced from @​amplitude/analytics-core's releases.

@​amplitude/analytics-core@​2.48.2

2.48.2 (2026-05-21)

Bug Fixes

  • analytics-browser: bump background capture version (#1750) (516719a)
Commits
  • e299163 chore(release): publish
  • ab2e029 fix(analytics-react-native): use workspace:* for analytics-core dep (#1766)
  • 0cdd90a fix(session-replay-browser): merge queued sends after throttle pause (SR-4286...
  • 302a08f fix(session-replay-browser): drop empty batches at the store layer (SR-4284) ...
  • c242dc3 feat(session-replay-browser): add flushIntervalConfig to tune rrweb event-spl...
  • e28dd6b chore: add size limit gating to Amplitude (#1756)
  • 90ea3f6 chore: remove Jira workflows (#1761)
  • 516719a fix(analytics-browser): bump background capture version (#1750)
  • 5ffe544 chore(session-replay-browser): scrub customer name from privacy e2e test (SR-...
  • 4cea6b6 feat(react-native-example): integrate into pnpm workspace and add iOS smoke t...
  • Additional commits viewable in compare view

Updates @biomejs/biome from 2.4.15 to 2.4.16

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.16

2.4.16

Patch Changes

  • #10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
      ><!-- 1
    --><span>a</span
      ><!-- 2
    --><span>b</span
      ><!-- 3
    --></span>

    Output:

      <span
    	  ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
      --></span
      >
  • #10465 0c718da Thanks @​dfedoryshchev! - Fixed diagnostics emitted by the noUntrustedLicenses rule.

  • #10358 05c2617 Thanks @​dyc3! - Fixed #10356: biome rage --linter now displays rules enabled through linter domains in the enabled rules list.

  • #10300 950247c Thanks @​dyc3! - Fixed #10265: Svelte function bindings such as bind:value={get, set} are now parsed more precisely, so noCommaOperator won't emit false positives for that syntax anymore.

  • #9786 e71f584 Thanks @​MeGaNeKoS! - Fixed #8480: useDestructuring now provides variableDeclarator and assignmentExpression options to control which contexts enforce destructuring, matching ESLint's prefer-destructuring configuration. Both default to {array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.

  • #10425 1948b72 Thanks @​sjh9714! - Fixed #10244: The useOptionalChain rule now detects negated guard inequality chains like !foo || foo.bar !== "x".

  • #10442 001f94f Thanks @​ematipico! - Fixed #10411: noMisusedPromises no longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.

  • #10318 9b1577f Thanks @​dyc3! - Added support for formatter.trailingCommas in overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.

  • #10319 2e37709 Thanks @​dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.16

Patch Changes

  • #10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
      ><!-- 1
    --><span>a</span
      ><!-- 2
    --><span>b</span
      ><!-- 3
    --></span>

    Output:

      <span
    	  ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
      --></span
      >

…8 updates

Bumps the all-minor-patch group with 18 updates in the /js directory:

| Package | From | To |
| --- | --- | --- |
| [@amplitude/unified](https://github.com/amplitude/Amplitude-TypeScript) | `1.1.9` | `1.1.10` |
| [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) | `7.29.2` | `7.29.7` |
| [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) | `7.29.2` | `7.29.7` |
| [@codemirror/view](https://github.com/codemirror/view) | `6.42.1` | `6.43.0` |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `10.53.1` | `10.55.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.53.1` | `10.55.0` |
| [@uiw/codemirror-theme-github](https://github.com/uiwjs/react-codemirror) | `4.25.9` | `4.25.10` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.25.9` | `4.25.10` |
| [@zumer/snapdom](https://github.com/zumerlab/snapdom) | `2.12.0` | `2.12.2` |
| [date-fns](https://github.com/date-fns/date-fns) | `4.2.1` | `4.4.0` |
| [js-cookie](https://github.com/js-cookie/js-cookie) | `3.0.7` | `3.0.8` |
| [write-excel-file](https://gitlab.com/catamphetamine/write-excel-file) | `4.0.6` | `4.0.7` |
| [@amplitude/analytics-core](https://github.com/amplitude/Amplitude-TypeScript) | `2.48.1` | `2.48.2` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.15` | `2.4.16` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.10.32` | `2.10.33` |
| [read-excel-file](https://gitlab.com/catamphetamine/read-excel-file) | `9.0.9` | `9.0.10` |
| [@tsdown/css](https://github.com/rolldown/tsdown/tree/HEAD/packages/css) | `0.22.0` | `0.22.1` |
| [tsdown](https://github.com/rolldown/tsdown) | `0.22.0` | `0.22.1` |



Updates `@amplitude/unified` from 1.1.9 to 1.1.10
- [Release notes](https://github.com/amplitude/Amplitude-TypeScript/releases)
- [Commits](https://github.com/amplitude/Amplitude-TypeScript/compare/@amplitude/unified@1.1.9...@amplitude/unified@1.1.10)

Updates `@babel/helpers` from 7.29.2 to 7.29.7
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.7/packages/babel-helpers)

Updates `@babel/runtime` from 7.29.2 to 7.29.7
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.7/packages/babel-runtime)

Updates `@codemirror/view` from 6.42.1 to 6.43.0
- [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codemirror/view/commits)

Updates `@sentry/nextjs` from 10.53.1 to 10.55.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.53.1...10.55.0)

Updates `@sentry/react` from 10.53.1 to 10.55.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.53.1...10.55.0)

Updates `@uiw/codemirror-theme-github` from 4.25.9 to 4.25.10
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.9...v4.25.10)

Updates `@uiw/react-codemirror` from 4.25.9 to 4.25.10
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.9...v4.25.10)

Updates `@zumer/snapdom` from 2.12.0 to 2.12.2
- [Release notes](https://github.com/zumerlab/snapdom/releases)
- [Changelog](https://github.com/zumerlab/snapdom/blob/main/CHANGELOG.md)
- [Commits](zumerlab/snapdom@v2.12.0...v2.12.2)

Updates `date-fns` from 4.2.1 to 4.4.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Commits](date-fns/date-fns@v4.2.1...v4.4.0)

Updates `js-cookie` from 3.0.7 to 3.0.8
- [Release notes](https://github.com/js-cookie/js-cookie/releases)
- [Commits](js-cookie/js-cookie@v3.0.7...v3.0.8)

Updates `write-excel-file` from 4.0.6 to 4.0.7
- [Changelog](https://gitlab.com/catamphetamine/write-excel-file/blob/main/CHANGELOG.md)
- [Commits](https://gitlab.com/catamphetamine/write-excel-file/compare/v4.0.6...v4.0.7)

Updates `@amplitude/analytics-core` from 2.48.1 to 2.48.2
- [Release notes](https://github.com/amplitude/Amplitude-TypeScript/releases)
- [Commits](https://github.com/amplitude/Amplitude-TypeScript/compare/@amplitude/analytics-core@2.48.1...@amplitude/analytics-core@2.48.2)

Updates `@biomejs/biome` from 2.4.15 to 2.4.16
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.16/packages/@biomejs/biome)

Updates `baseline-browser-mapping` from 2.10.32 to 2.10.33
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.10.32...v2.10.33)

Updates `read-excel-file` from 9.0.9 to 9.0.10
- [Changelog](https://gitlab.com/catamphetamine/read-excel-file/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/catamphetamine/read-excel-file/compare/v9.0.9...v9.0.10)

Updates `@tsdown/css` from 0.22.0 to 0.22.1
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](https://github.com/rolldown/tsdown/commits/v0.22.1/packages/css)

Updates `tsdown` from 0.22.0 to 0.22.1
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.22.0...v0.22.1)

---
updated-dependencies:
- dependency-name: "@amplitude/unified"
  dependency-version: 1.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@babel/helpers"
  dependency-version: 7.29.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@babel/runtime"
  dependency-version: 7.29.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@codemirror/view"
  dependency-version: 6.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@sentry/react"
  dependency-version: 10.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@uiw/codemirror-theme-github"
  dependency-version: 4.25.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@uiw/react-codemirror"
  dependency-version: 4.25.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@zumer/snapdom"
  dependency-version: 2.12.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: date-fns
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: js-cookie
  dependency-version: 3.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: write-excel-file
  dependency-version: 4.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@amplitude/analytics-core"
  dependency-version: 2.48.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: baseline-browser-mapping
  dependency-version: 2.10.33
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: read-excel-file
  dependency-version: 9.0.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@tsdown/css"
  dependency-version: 0.22.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: tsdown
  dependency-version: 0.22.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants