Skip to content

Bump the "javascript-apps" group with 2 updates across multiple ecosystems - #330

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/javascript_apps-c6d7116f62
Closed

Bump the "javascript-apps" group with 2 updates across multiple ecosystems#330
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/javascript_apps-c6d7116f62

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 13, 2026

Copy link
Copy Markdown
Contributor

Bumps the javascript-apps group with 2 updates in the / directory: simple-statistics and trading-signals.
Bumps the javascript-apps group with 6 updates in the /apps/arena-admin directory:

Package From To
@sveltejs/kit 2.70.1 2.70.2
@sveltejs/vite-plugin-svelte 7.2.0 7.3.0
svelte 5.56.7 5.56.8
svelte-check 4.7.3 4.7.5
tailwind-variants 3.2.2 3.3.1
vite 8.1.5 8.2.1

Updates simple-statistics from 7.9.3 to 7.10.0

Release notes

Sourced from simple-statistics's releases.

v7.10.0

Minor Changes

  • 2149cff: Fix poissonDistribution() and binomialDistribution() returning a truncated table ending in Infinity or NaN. Both built each cell from a power and a factorial (or a binomial coefficient) that leave floating-point range long before their product does, so the cumulative-probability stopping rule was satisfied by a non-finite sum instead of by the distribution: poissonDistribution(200) returned 135 cells covering 0.000045% of the distribution, and binomialDistribution(10000, 0.5) returned 135 cells covering none of it. Cells are now taken through gammaln, and a table that cannot be completed returns undefined rather than a partial one.

    NOTE: this is tagged as a minor change but you should be aware that it does change behavior for binomialDistribution. For most users this won't be a big deal.

    1. Both functions now return undefined in cases where they used to return an array of non-finite cells. binomialDistribution(5, NaN) returned [NaN] and now returns undefined. Their TypeScript declarations widen to number[] | undefined.
    2. Evaluating cells through logarithms costs a precision where the old product form was exact: binomialDistribution(2, 0.5) returns [0.25000000000000006, 0.5000000000000006, 0.25000000000000006] rather than [0.25, 0.5, 0.25]. This precision loss is small but if you're comparing exact results, it may require updates or rounding.

Patch Changes

  • 13530b2: Fix wilcoxon rank-sum test behavior

    This fixes a bug in which the tie averaging in wilcoxonRankSum was incorrect and would return an unrelated position.

  • 0779f22: Fix sampleRankCorrelation returning different results for the same data depending on the order the pairs are listed in. Tied values were given distinct consecutive ranks broken by original array position, rather than sharing the average of the ranks they span as Spearman's rho requires. Reordering rows could change the magnitude and even the sign of the result. Tied values now receive midranks, so the correlation depends only on the paired data. As a consequence an input with no rank variance — every value tied — now correctly returns NaN instead of reporting near-perfect correlation. Results for inputs with no ties are unchanged.

Changelog

Sourced from simple-statistics's changelog.

7.10.0

Minor Changes

  • 2149cff: Fix poissonDistribution() and binomialDistribution() returning a truncated table ending in Infinity or NaN. Both built each cell from a power and a factorial (or a binomial coefficient) that leave floating-point range long before their product does, so the cumulative-probability stopping rule was satisfied by a non-finite sum instead of by the distribution: poissonDistribution(200) returned 135 cells covering 0.000045% of the distribution, and binomialDistribution(10000, 0.5) returned 135 cells covering none of it. Cells are now taken through gammaln, and a table that cannot be completed returns undefined rather than a partial one.

    NOTE: this is tagged as a minor change but you should be aware that it does change behavior for binomialDistribution. For most users this won't be a big deal.

    1. Both functions now return undefined in cases where they used to return an array of non-finite cells. binomialDistribution(5, NaN) returned [NaN] and now returns undefined. Their TypeScript declarations widen to number[] | undefined.
    2. Evaluating cells through logarithms costs a precision where the old product form was exact: binomialDistribution(2, 0.5) returns [0.25000000000000006, 0.5000000000000006, 0.25000000000000006] rather than [0.25, 0.5, 0.25]. This precision loss is small but if you're comparing exact results, it may require updates or rounding.

Patch Changes

  • 13530b2: Fix wilcoxon rank-sum test behavior

    This fixes a bug in which the tie averaging in wilcoxonRankSum was incorrect and would return an unrelated position.

  • 0779f22: Fix sampleRankCorrelation returning different results for the same data depending on the order the pairs are listed in. Tied values were given distinct consecutive ranks broken by original array position, rather than sharing the average of the ranks they span as Spearman's rho requires. Reordering rows could change the magnitude and even the sign of the result. Tied values now receive midranks, so the correlation depends only on the paired data. As a consequence an input with no rank variance — every value tied — now correctly returns NaN instead of reporting near-perfect correlation. Results for inputs with no ties are unchanged.

Commits

Updates trading-signals from 7.4.3 to 8.2.1

Release notes

Sourced from trading-signals's releases.

trading-signals@8.2.1

8.2.1 (2026-08-08)

Bug Fixes

  • trading-signals: correct replace() across six indicators (#1261)

trading-signals@8.2.0

8.2.0 (2026-08-02)

Features

  • trading-signals: add getTypicalPrice helper (#1270)
Changelog

Sourced from trading-signals's changelog.

8.2.1 (2026-08-08)

Bug Fixes

  • trading-signals: correct replace() across six indicators (#1261)

8.2.0 (2026-08-02)

Features

  • trading-signals: add getTypicalPrice helper (#1270)

8.1.1 (2026-08-02)

Bug Fixes

  • format lerna-generated changelogs via the version lifecycle (#1268)
  • trading-signals, trading-strategies, candles, exchange: add repository metadata for npm provenance (#1267)

8.1.0 (2026-08-02)

Features

  • trading-signals: add SuperTrend indicator (SUPERTREND) (#1238)
  • trading-signals: add Volatility Stop indicator (VSTOP) (#1237)

Bug Fixes

  • trading-signals: use correct comparand when replacing ROC values (#1242)

8.0.0 (2026-07-24)

⚠ BREAKING CHANGES

  • trading-signals: configurable signal thresholds + named StochasticOscillator config (#1215)

Features

  • exchange: Add Trading212 broker integration (#1073)
  • messaging: support Trading212 in /accountAdd via a referenced data source (#1088)
  • trading-signals, trading-signals-docs: add percentage utilities and calculator-style docs (#1087)
  • trading-signals: add Aroon indicator (AROON) (#1212)
  • trading-signals: add Chaikin Oscillator (ADOSC) (#1224)
  • trading-signals: add Chande Momentum Oscillator (CMO) (#1218)
  • trading-signals: add Chandelier Exit (CE) (#1226)
  • trading-signals: add Hull Moving Average (HMA) (#1217)
  • trading-signals: add Kaufman's Adaptive Moving Average (KAMA) (#1219)
  • trading-signals: add Money Flow Index (MFI) (#1214)
  • trading-signals: add Normalized Average True Range (NATR) (#1220)
  • trading-signals: add Percentage Price Oscillator (PPO) (#1221)

... (truncated)

Commits
  • 821f761 [skip ci] chore: Publish
  • 745a2b3 fix(trading-signals): correct replace() across six indicators (#1261)
  • c176182 refactor: rename vitest.config.base.ts to vitest.shared.ts (#1276)
  • 0c89fcd [skip ci] chore: Publish
  • 8bf2f8f feat(trading-signals): add getTypicalPrice helper (#1270)
  • 826adb6 [skip ci] chore: Publish
  • b7e0c13 fix(trading-signals, trading-strategies, candles, exchange): add repository m...
  • 73827e9 fix: format lerna-generated changelogs via the version lifecycle (#1268)
  • b200e77 [skip ci] chore: Publish
  • 56928ec test(trading-signals): add regression test for ROC (#1262)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for trading-signals since your current version.


Updates @sveltejs/kit from 2.70.1 to 2.70.2

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.70.2

Patch Changes

  • fix: prevent quadratic backtracking in Accept header content negotiation (#1)
Changelog

Sourced from @​sveltejs/kit's changelog.

2.70.2

Patch Changes

  • fix: prevent quadratic backtracking in Accept header content negotiation (#1)
Commits

Updates @sveltejs/vite-plugin-svelte from 7.2.0 to 7.3.0

Release notes

Sourced from @​sveltejs/vite-plugin-svelte's releases.

@​sveltejs/vite-plugin-svelte@​7.3.0

Minor Changes

  • feat: pass environment to dynamicCompileOptions (#1386)

Patch Changes

  • fix: don't log inline config when encountering unexpected options (#1376)
Changelog

Sourced from @​sveltejs/vite-plugin-svelte's changelog.

7.3.0

Minor Changes

  • feat: pass environment to dynamicCompileOptions (#1386)

Patch Changes

  • fix: don't log inline config when encountering unexpected options (#1376)
Commits

Updates svelte from 5.56.7 to 5.56.8

Release notes

Sourced from svelte's releases.

svelte@5.56.8

Patch Changes

  • fix: call onerror and provide a working reset when hydrating a failed boundary (#18556)

  • fix: preserve select selection when spread attributes omit value (#18561)

Changelog

Sourced from svelte's changelog.

5.56.8

Patch Changes

  • fix: call onerror and provide a working reset when hydrating a failed boundary (#18556)

  • fix: preserve select selection when spread attributes omit value (#18561)

Commits

Updates svelte-check from 4.7.3 to 4.7.5

Release notes

Sourced from svelte-check's releases.

svelte-check@4.7.5

Patch Changes

  • fix: prevent silent error during start-up caused by unhandled promise (#3096)

  • Updated dependencies [1df53d8]:

    • @​sveltejs/load-config@​0.2.2

svelte-check@4.7.4

Patch Changes

  • fix: support TypeScript 7 Stable under npm alias (#3073)
Commits

Updates tailwind-variants from 3.2.2 to 3.3.1

Release notes

Sourced from tailwind-variants's releases.

v3.3.1

   🐞 Bug Fixes

    View changes on GitHub

v3.3.0

No significant changes

    View changes on GitHub
Changelog

Sourced from tailwind-variants's changelog.

3.3.1 (2026-08-03)

Bug Fixes

3.3.0 (2026-07-26)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for tailwind-variants since your current version.


Updates vite from 8.1.5 to 8.2.1

Release notes

Sourced from vite's releases.

plugin-legacy@8.2.1

Please refer to CHANGELOG.md for details.

v8.2.1

Please refer to CHANGELOG.md for details.

create-vite@8.2.0

Please refer to CHANGELOG.md for details.

plugin-legacy@8.2.0

Please refer to CHANGELOG.md for details.

v8.2.0

Please refer to CHANGELOG.md for details.

v8.2.0-beta.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

8.2.1 (2026-08-06)

Bug Fixes

  • build: make client chunkImportMap work with sharedPlugins: true (#23184) (15f0307)
  • bundled-dev: inject client script tag before chunk scripts (#23161) (eac0cc8)
  • css: don't re-run lightningcss visitor during minify (fix #23146) (#23147) (de041a7)
  • deps: update all non-major dependencies (#23136) (14454fd)
  • deps: update rolldown-related dependencies (#23070) (7ac6f7f)
  • don't mutate the user config when resolving the lib entry from the top-level input (#23135) (b4bf596)
  • handle shebang ending with uncommon line terminators (#23038) (17f7b2f)
  • server: use a random port when port is 0 (#23158) (fddf4ea)

Performance Improvements

Documentation

  • build: fix incomplete @default for build.minify (#23177) (ef02435)

Miscellaneous Chores

  • deps: update dependency rolldown-plugin-dts to ^0.28.0 (#23137) (4adc1e7)
  • deps: update dependency strip-literal to v4 (#23140) (9db65ce)

Code Refactoring

  • bundled-dev: avoid injecting server values in the bundle (#22967) (23b8a08)
  • bundled-dev: remove rolldown lazy stub module workaround (#23129) (e72036e)

Tests

8.2.0 (2026-07-30)

Features

  • add input to server.fs.allow (#23035) (95a3cda)
  • bundled-dev: reload once after rebuild instead of via the fallback page (#23106) (b24381d)
  • bundled-dev: support worker file update accepted by HMR (#23068) (0d04351)
  • config: include column in config incompatibility location (#23064) (8a24572)
  • dev: resolve interface name for explicit host in network URLs (#22965) (3ac77d9)

Bug Fixes

  • bundledDev: print build errors to the terminal when an HMR update fails (#23024) (41c4658)
  • deps: update all non-major dependencies (#23069) (4c07b74)
  • hmr: preserve environment snapshot during server restart (#22992) (b1186c3)
  • importAnalysis: interop imports injected into optimized dep files by plugins (#23029) (8c2a87d)

... (truncated)

Commits
  • 4216158 release: v8.2.1
  • fddf4ea fix(server): use a random port when port is 0 (#23158)
  • de041a7 fix(css): don't re-run lightningcss visitor during minify (fix #23146) (#23147)
  • 15f0307 fix(build): make client chunkImportMap work with sharedPlugins: true (#23184)
  • c2155fe test(bundled-dev): enable sourcemap playgrounds (#23080)
  • ef02435 docs(build): fix incomplete @default for build.minify (#23177)
  • eac0cc8 fix(bundled-dev): inject client script tag before chunk scripts (#23161)
  • 23b8a08 refactor(bundled-dev): avoid injecting server values in the bundle (#22967)
  • e72036e refactor(bundled-dev): remove rolldown lazy stub module workaround (#23129)
  • 14454fd fix(deps): update all non-major dependencies (#23136)
  • Additional commits viewable in compare view

Bumps the javascript-apps group with 3 updates in the /apps/docs-site directory: @astrojs/starlight, astro and @astrojs/check.

Updates @astrojs/starlight from 0.41.4 to 0.41.7

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.41.7

Patch Changes

  • #4114 3e486fb Thanks @​delucis! - Fixes processing of code examples in RTL languages when using Astro’s Sätteri Markdown processor

@​astrojs/starlight@​0.41.6

Patch Changes

@​astrojs/starlight@​0.41.5

Patch Changes

Changelog

Sourced from @​astrojs/starlight's changelog.

0.41.7

Patch Changes

  • #4114 3e486fb Thanks @​delucis! - Fixes processing of code examples in RTL languages when using Astro’s Sätteri Markdown processor

0.41.6

Patch Changes

0.41.5

Patch Changes

Commits

Updates astro from 7.1.3 to 7.2.0

Release notes

Sourced from astro's releases.

astro@7.2.0

Minor Changes

  • #17174 0224a3a Thanks @​matthewp! - Adds the astro preview --background flag to start preview servers as background processes.

    This makes preview servers easier to manage from scripts and AI coding agents because the command returns after the server is ready instead of keeping the terminal attached to the long-running process.

    astro preview --background

    When a preview server is running in the background, you can inspect or stop it with new astro preview subcommands:

    astro preview status
    astro preview logs
    astro preview logs --follow
    astro preview stop

    If Astro detects that astro preview is being run by an AI coding agent, background mode is enabled automatically. This matches the existing behavior for astro dev, allowing agents to continue working after the preview server starts while still receiving the server URL and process ID.

    To opt out of automatic background mode for preview servers, set ASTRO_PREVIEW_BACKGROUND=0 before running astro preview.

  • #17532 7f94895 Thanks @​florian-lefebvre! - Adds support for paths relative to your project root in logger.entrypoint

    Previously, pointing logger.entrypoint at a custom log handler living in your own project required building an absolute URL. You can now write the path directly:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    logger: {
    
    entrypoint: new URL('./src/logger.js', import.meta.url),
    
    
    entrypoint: './src/logger.js',
    },
    });

Paths starting with ./ or ../ are resolved against your project root. Package specifiers such as @org/astro-logger, absolute paths, and URL entrypoints keep working as before.

  • #17084 961bbe5 Thanks @​matthewp! - Widens the AstroPrerenderer render() return type so prerenderers can report incremental-build metadata

    A prerenderer's render() may now resolve to either a Response (as before) or a PrerenderResult object that pairs the response with the content entries and optimized-image transforms the page resolved. This lets prerenderers that render out of process (for example, in an adapter's runtime like workerd) report those dependencies back to the build, so incremental static builds can track and replay them for skipped pages.

    import type { AstroPrerenderer, PrerenderResult } from 'astro';
    const prerenderer: AstroPrerenderer = {

  • ... (truncated)

    Changelog

    Sourced from astro's changelog.

    7.2.0

    Minor Changes

    • #17174 0224a3a Thanks @​matthewp! - Adds the astro preview --background flag to start preview servers as background processes.

      This makes preview servers easier to manage from scripts and AI coding agents because the command returns after the server is ready instead of keeping the terminal attached to the long-running process.

      astro preview --background

      When a preview server is running in the background, you can inspect or stop it with new astro preview subcommands:

      astro preview status
      astro preview logs
      astro preview logs --follow
      astro preview stop

      If Astro detects that astro preview is being run by an AI coding agent, background mode is enabled automatically. This matches the existing behavior for astro dev, allowing agents to continue working after the preview server starts while still receiving the server URL and process ID.

      To opt out of automatic background mode for preview servers, set ASTRO_PREVIEW_BACKGROUND=0 before running astro preview.

    • #17532 7f94895 Thanks @​florian-lefebvre! - Adds support for paths relative to your project root in logger.entrypoint

      Previously, pointing logger.entrypoint at a custom log handler living in your own project required building an absolute URL. You can now write the path directly:

      // astro.config.mjs
      import { defineConfig } from 'astro/config';
      export default defineConfig({
      logger: {
      
      entrypoint: new URL('./src/logger.js', import.meta.url),
      
      
      entrypoint: './src/logger.js',
      },
      });

    Paths starting with ./ or ../ are resolved against your project root. Package specifiers such as @org/astro-logger, absolute paths, and URL entrypoints keep working as before.

  • #17084 961bbe5 Thanks @​matthewp! - Widens the AstroPrerenderer render() return type so prerenderers can report incremental-build metadata

    A prerenderer's render() may now resolve to either a Response (as before) or a PrerenderResult object that pairs the response with the content entries and optimized-image transforms the page resolved. This lets prerenderers that render out of process (for example, in an adapter's runtime like workerd) report those dependencies back to the build, so incremental static builds can track and replay them for skipped pages.

    import type { AstroPrerenderer, PrerenderResult } from 'astro';

  • ... (truncated)

    Commits

    Updates @astrojs/check from 0.9.9 to 0.9.10

    Release notes

    Sourced from @​astrojs/check's releases.

    @​astrojs/check@​0.9.10

    Patch Changes

    Changelog

    Sourced from @​astrojs/check's changelog.

    0.9.10

    Patch Changes

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
    • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    • @dependabot unignore <dependency name> will remove 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

    …with 8 updates
    
    Bumps the javascript-apps group with 2 updates in the / directory: [simple-statistics](https://github.com/simple-statistics/simple-statistics) and [trading-signals](https://github.com/bennycode/trading-signals/tree/HEAD/packages/trading-signals).
    Bumps the javascript-apps group with 6 updates in the /apps/arena-admin directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.70.1` | `2.70.2` |
    | [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte) | `7.2.0` | `7.3.0` |
    | [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.56.7` | `5.56.8` |
    | [svelte-check](https://github.com/sveltejs/language-tools) | `4.7.3` | `4.7.5` |
    | [tailwind-variants](https://github.com/heroui-inc/tailwind-variants) | `3.2.2` | `3.3.1` |
    | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.5` | `8.2.1` |
    
    
    
    Updates `simple-statistics` from 7.9.3 to 7.10.0
    - [Release notes](https://github.com/simple-statistics/simple-statistics/releases)
    - [Changelog](https://github.com/simple-statistics/simple-statistics/blob/main/CHANGELOG.md)
    - [Commits](simple-statistics/simple-statistics@v7.9.3...v7.10.0)
    
    Updates `trading-signals` from 7.4.3 to 8.2.1
    - [Release notes](https://github.com/bennycode/trading-signals/releases)
    - [Changelog](https://github.com/bennycode/trading-signals/blob/main/packages/trading-signals/CHANGELOG.md)
    - [Commits](https://github.com/bennycode/trading-signals/commits/trading-signals@8.2.1/packages/trading-signals)
    
    Updates `@sveltejs/kit` from 2.70.1 to 2.70.2
    - [Release notes](https://github.com/sveltejs/kit/releases)
    - [Changelog](https://github.com/sveltejs/kit/blob/version-3/packages/kit/CHANGELOG.md)
    - [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.70.2/packages/kit)
    
    Updates `@sveltejs/vite-plugin-svelte` from 7.2.0 to 7.3.0
    - [Release notes](https://github.com/sveltejs/vite-plugin-svelte/releases)
    - [Changelog](https://github.com/sveltejs/vite-plugin-svelte/blob/main/packages/vite-plugin-svelte/CHANGELOG.md)
    - [Commits](https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/vite-plugin-svelte@7.3.0/packages/vite-plugin-svelte)
    
    Updates `svelte` from 5.56.7 to 5.56.8
    - [Release notes](https://github.com/sveltejs/svelte/releases)
    - [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
    - [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.56.8/packages/svelte)
    
    Updates `svelte-check` from 4.7.3 to 4.7.5
    - [Release notes](https://github.com/sveltejs/language-tools/releases)
    - [Commits](https://github.com/sveltejs/language-tools/compare/svelte-check@4.7.3...svelte-check@4.7.5)
    
    Updates `tailwind-variants` from 3.2.2 to 3.3.1
    - [Release notes](https://github.com/heroui-inc/tailwind-variants/releases)
    - [Changelog](https://github.com/heroui-inc/tailwind-variants/blob/main/CHANGELOG.md)
    - [Commits](heroui-inc/tailwind-variants@v3.2.2...v3.3.1)
    
    Updates `vite` from 8.1.5 to 8.2.1
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v8.2.1/packages/vite)
    build(deps): bump the javascript-apps group across 1 directory with 3 updates
    
    Bumps the javascript-apps group with 3 updates in the /apps/docs-site directory: [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) and [@astrojs/check](https://github.com/withastro/astro/tree/HEAD/packages/language-tools/astro-check).
    
    
    Updates `@astrojs/starlight` from 0.41.4 to 0.41.7
    - [Release notes](https://github.com/withastro/starlight/releases)
    - [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)
    - [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.41.7/packages/starlight)
    
    Updates `astro` from 7.1.3 to 7.2.0
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/astro@7.2.0/packages/astro)
    
    Updates `@astrojs/check` from 0.9.9 to 0.9.10
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/language-tools/astro-check/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/check@0.9.10/packages/language-tools/astro-check)
    
    ---
    updated-dependencies:
    - dependency-name: simple-statistics
      dependency-version: 7.10.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: javascript-apps
    - dependency-name: trading-signals
      dependency-version: 8.2.1
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: javascript-apps
    - dependency-name: "@sveltejs/kit"
      dependency-version: 2.70.2
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: javascript-apps
    - dependency-name: "@sveltejs/vite-plugin-svelte"
      dependency-version: 7.3.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: javascript-apps
    - dependency-name: svelte
      dependency-version: 5.56.8
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: javascript-apps
    - dependency-name: svelte-check
      dependency-version: 4.7.5
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: javascript-apps
    - dependency-name: tailwind-variants
      dependency-version: 3.3.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: javascript-apps
    - dependency-name: vite
      dependency-version: 8.2.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: javascript-apps
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.41.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: javascript-apps
    - dependency-name: astro
      dependency-version: 7.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: javascript-apps
    - dependency-name: "@astrojs/check"
      dependency-version: 0.9.10
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: javascript-apps
    ...
    
    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 Aug 13, 2026
    @dependabot @github

    dependabot Bot commented on behalf of github Aug 20, 2026

    Copy link
    Copy Markdown
    Contributor Author

    Superseded by #335.

    @dependabot dependabot Bot closed this Aug 20, 2026
    @dependabot
    dependabot Bot deleted the dependabot/javascript_apps-c6d7116f62 branch August 20, 2026 10:08
    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