Skip to content

chore(deps): bump the npm-minor group in /dapp with 6 updates - #227

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/dapp/npm-minor-8652131f48
Open

chore(deps): bump the npm-minor group in /dapp with 6 updates#227
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/dapp/npm-minor-8652131f48

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-minor group in /dapp with 6 updates:

Package From To
@astrojs/netlify 8.1.3 8.2.0
@noble/curves 2.2.0 2.3.0
@noble/hashes 2.2.0 2.3.0
astro 7.1.6 7.2.0
js-sha3 0.12.0 0.13.0
postcss 8.5.25 8.5.26

Updates @astrojs/netlify from 8.1.3 to 8.2.0

Release notes

Sourced from @​astrojs/netlify's releases.

@​astrojs/netlify@​8.2.0

Minor Changes

  • #16871 90c98ae Thanks @​adamchal! - When session: false is set in astro.config, the adapter no longer auto-wires the Netlify Blobs session driver. Combined with the matching astro change, this lets the session runtime tree-shake out of the function bundle.

Patch Changes

  • Updated dependencies []:
    • @​astrojs/underscore-redirects@​1.0.3
Changelog

Sourced from @​astrojs/netlify's changelog.

8.2.0

Minor Changes

  • #16871 90c98ae Thanks @​adamchal! - When session: false is set in astro.config, the adapter no longer auto-wires the Netlify Blobs session driver. Combined with the matching astro change, this lets the session runtime tree-shake out of the function bundle.

Patch Changes

  • Updated dependencies []:
    • @​astrojs/underscore-redirects@​1.0.3
Commits

Updates @noble/curves from 2.2.0 to 2.3.0

Release notes

Sourced from @​noble/curves's releases.

2.3.0

Security & constant-timeness

  • Hardened constant-time execution from best-effort to actual guarantees: no measurable timing behavior on 200K samples. Scalar multiplication now uses secret-scalar blinding via CSPRNG, un-precomputed points now use a constant-time fixed-window multiply instead of variable-time fallbacks, and modular arithmetic helpers were hardened. New CT benchmarks track timing behavior.
  • General hardening across all modules
  • Fixes from the Trail of Bits review: recovered ECDSA signatures are now bound to their recovery id, non-canonical BLS signature encodings are rejected, Edwards <-> Montgomery conversion helpers were corrected, and FROST DKG round-2 retry handling was hardened.

X25519 hardening

It was possible to execute a remote timing attack on X25519, across many samples, and learn up to 4.036 bits of long-term private key. Other 247 bits were NOT affected.

The impact: mainly fingerprinting (recognition of key across deployments), NOT key recovery, NOT X25519 breakage. Maintainer was also not able to escalate to co-residency (SMT).

Reported and found by:

  • George Stergiopoulos, Department of Informatics, Athens University of Economics and Business, Greece (geostergiop@aueb.gr)
  • Constantinos Patsakis, Department of Informatics, University of Piraeus, 80 Karaoli & Dimitriou str., 18534 Piraeus, Greece (kpatsak@unipi.gr)

Performance

  • ECDSA/EdDSA verification up to +32%, Weierstrass ECDH up to +19%, x25519 getPublicKey 2.7×
  • BLS signatures 2x
  • Init time (first getPublicKey or sign) reduced ~2x for ed25519, p256, p384, p521
  • Also faster verification of recovered signatures, pairing tower / FFT / Pippenger optimizations, and joint-MSM paths in FROST and OPRF
  • getPublicKey / sign got slower because we've decreased window size (W=8 => W=6) and hardened CT execution (see above). Long-running apps that prefer 2.2.0-level speed can restore it with one line: secp256k1.Point.BASE.precompute(8) (likewise for other curves).

Misc

  • Smaller bundles: improved tree-shaking across modules
  • Better error messages and type checks
  • Upgrade noble-hashes to 2.3.0, with performance boost
  • Reduce on-disk size 1831kb → 1548kb (-282kb) by disabling source maps (they became less relevant).

Full Changelog: paulmillr/noble-curves@2.2.0...2.3.0

Commits

Updates @noble/hashes from 2.2.0 to 2.3.0

Release notes

Sourced from @​noble/hashes's releases.

2.3.0

Improve speed:

  • +10-45% 32b inputs across all hashes
  • +40% SHA-3 / SHAKE, +50% 1mb KT128 / KT256 / TurboSHAKE, +20% kmac
  • 2.2x argon
  • +20% pbkdf2 and hkdf

Other changes:

  • Better error messages and stricter type checks everywhere
  • Bugfix: HMAC _cloneInto now preserves canXOF (#134, ChALkeR); Argon2d typo rename (#135).
  • blake2.compress renamed to _compress (marked internal).
  • Reduce on-disk unpacked size 869kb → 665kb (-204kb) by disabling source maps (they became less relevant).

Full Changelog: paulmillr/noble-hashes@2.2.0...2.3.0

Commits

Updates astro from 7.1.6 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 js-sha3 from 0.12.0 to 0.13.0

    Release notes

    Sourced from js-sha3's releases.

    v0.13.0

    What's Changed

    Added

    • ParallelHash128, ParallelHash256, ParallelHashXOF128, and ParallelHashXOF256 (NIST SP 800-185)
    • GitHub Actions CI across Node.js 18, 20, 22, and 24 against the packed npm artifact
    • GitHub Actions publish workflow on release with npm trusted publishing
    • prepack script to build distributions before npm pack / npm publish

    Changed

    • Replace Travis CI with GitHub Actions
    • Update README badges to GitHub Actions, npm, and jsDelivr
    • Upgrade mocha and pin vulnerable transitive dependencies via npm overrides

    Full Changelog: emn178/js-sha3@v0.12.0...v0.13.0

    Changelog

    Sourced from js-sha3's changelog.

    v0.13.0 / 2026-08-07

    Added

    • ParallelHash128, ParallelHash256, ParallelHashXOF128, and ParallelHashXOF256 (NIST SP 800-185)
    • GitHub Actions CI across Node.js 18, 20, 22, and 24 against the packed npm artifact
    • GitHub Actions publish workflow on release with npm trusted publishing
    • prepack script to build distributions before npm pack / npm publish

    Changed

    • Replace Travis CI with GitHub Actions
    • Update README badges to GitHub Actions, npm, and jsDelivr
    • Upgrade mocha and pin vulnerable transitive dependencies via npm overrides
    Commits
    Maintainer changes

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


    Updates postcss from 8.5.25 to 8.5.26

    Release notes

    Sourced from postcss's releases.

    8.5.26

    • Fixed list.split() regression (by @​lazerg).
    • Track symlinks in path protection in source map loading (by @​drengir1).
    Changelog

    Sourced from postcss's changelog.

    8.5.26

    • Fixed list.split() regression (by @​lazerg).
    • Track symlinks in path protection in source map loading (by @​drengir1).
    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

    Bumps the npm-minor group in /dapp with 6 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/netlify](https://github.com/withastro/astro/tree/HEAD/packages/integrations/netlify) | `8.1.3` | `8.2.0` |
    | [@noble/curves](https://github.com/paulmillr/noble-curves) | `2.2.0` | `2.3.0` |
    | [@noble/hashes](https://github.com/paulmillr/noble-hashes) | `2.2.0` | `2.3.0` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.1.6` | `7.2.0` |
    | [js-sha3](https://github.com/emn178/js-sha3) | `0.12.0` | `0.13.0` |
    | [postcss](https://github.com/postcss/postcss) | `8.5.25` | `8.5.26` |
    
    
    Updates `@astrojs/netlify` from 8.1.3 to 8.2.0
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/netlify/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/netlify@8.2.0/packages/integrations/netlify)
    
    Updates `@noble/curves` from 2.2.0 to 2.3.0
    - [Release notes](https://github.com/paulmillr/noble-curves/releases)
    - [Commits](paulmillr/noble-curves@2.2.0...2.3.0)
    
    Updates `@noble/hashes` from 2.2.0 to 2.3.0
    - [Release notes](https://github.com/paulmillr/noble-hashes/releases)
    - [Commits](paulmillr/noble-hashes@2.2.0...2.3.0)
    
    Updates `astro` from 7.1.6 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 `js-sha3` from 0.12.0 to 0.13.0
    - [Release notes](https://github.com/emn178/js-sha3/releases)
    - [Changelog](https://github.com/emn178/js-sha3/blob/master/CHANGELOG.md)
    - [Commits](emn178/js-sha3@v0.12.0...v0.13.0)
    
    Updates `postcss` from 8.5.25 to 8.5.26
    - [Release notes](https://github.com/postcss/postcss/releases)
    - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
    - [Commits](postcss/postcss@8.5.25...8.5.26)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/netlify"
      dependency-version: 8.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-minor
    - dependency-name: "@noble/curves"
      dependency-version: 2.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-minor
    - dependency-name: "@noble/hashes"
      dependency-version: 2.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-minor
    - dependency-name: astro
      dependency-version: 7.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-minor
    - dependency-name: js-sha3
      dependency-version: 0.13.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-minor
    - dependency-name: postcss
      dependency-version: 8.5.26
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-minor
    ...
    
    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 14, 2026
    @netlify

    netlify Bot commented Aug 14, 2026

    Copy link
    Copy Markdown

    Deploy Preview for staging-tansu ready!

    Name Link
    🔨 Latest commit ff64365
    🔍 Latest deploy log https://app.netlify.com/projects/staging-tansu/deploys/6a7ece6d232712000856cced
    😎 Deploy Preview https://deploy-preview-227--staging-tansu.netlify.app
    📱 Preview on mobile
    Toggle QR Code...

    QR Code

    Use your smartphone camera to open QR code link.

    To edit notification comments on pull requests, go to your Netlify project configuration.

    @netlify

    netlify Bot commented Aug 14, 2026

    Copy link
    Copy Markdown

    Deploy Preview for tansu canceled.

    Name Link
    🔨 Latest commit ff64365
    🔍 Latest deploy log https://app.netlify.com/projects/tansu/deploys/6a7ece6d716ef50008baf769

    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