Skip to content

chore(deps): bump the npm-dependencies group with 6 updates - #221

Merged
gui-ace merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-63cb6309d7
Aug 14, 2026
Merged

chore(deps): bump the npm-dependencies group with 6 updates#221
gui-ace merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-63cb6309d7

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies group with 6 updates:

Package From To
astro 7.1.6 7.2.0
jose 6.2.5 6.2.8
js-yaml 5.2.2 5.2.3
@cloudflare/workers-types 5.20260730.1 5.20260804.1
@iconify-json/lucide 1.2.120 1.2.121
wrangler 4.116.0 4.119.0

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 jose from 6.2.5 to 6.2.8

    Release notes

    Sourced from jose's releases.

    v6.2.8

    Fixes

    • enforce a single recipient when decrypting dir and ECDH-ES (505c383)
    • reject a non-string "alg" in EmbeddedJWK (714f870)

    Refactor

    • index the JWS and JWE registries without a wrapper (925f3bb)
    • name the "alg" source in unsupported algorithm failures (1500459)

    v6.2.7

    Fixes

    • require own JOSE properties for presence checks (90ab09c)

    Refactor

    v6.2.6

    Fixes

    • types: accept host CryptoKey declarations (b48a15b)
    Changelog

    Sourced from jose's changelog.

    6.2.8 (2026-08-03)

    Fixes

    • enforce a single recipient when decrypting dir and ECDH-ES (505c383)
    • reject a non-string "alg" in EmbeddedJWK (714f870)

    Refactor

    • index the JWS and JWE registries without a wrapper (925f3bb)
    • name the "alg" source in unsupported algorithm failures (1500459)

    6.2.7 (2026-08-01)

    Fixes

    • require own JOSE properties for presence checks (90ab09c)

    Refactor

    6.2.6 (2026-07-31)

    Fixes

    • types: accept host CryptoKey declarations (b48a15b)
    Commits
    • 8b768eb chore(release): 6.2.8
    • 1500459 refactor: name the "alg" source in unsupported algorithm failures
    • 714f870 fix: reject a non-string "alg" in EmbeddedJWK
    • 925f3bb refactor: index the JWS and JWE registries without a wrapper
    • 505c383 fix: enforce a single recipient when decrypting dir and ECDH-ES
    • 514831d chore(deps): bump the actions group with 3 updates
    • 45965db chore: cleanup after release
    • 60b941f chore(release): 6.2.7
    • 90ab09c fix: require own JOSE properties for presence checks
    • 767d7f1 refactor: reduce bundle size
    • Additional commits viewable in compare view

    Updates js-yaml from 5.2.2 to 5.2.3

    Changelog

    Sourced from js-yaml's changelog.

    [5.2.3] - 2026-08-01

    Fixed

    • Prevent prototype fallback when resolving tags and mapping entries, #782.
    • Resolve !!timestamp years 0000-0099 correctly, #775.
    • Preserve implicit null mapping values before document markers and reject unpaired mapping event streams, #784.
    • Preserve folded scalar values with tab-indented lines when round-tripping a parsed AST through present(); dump() and loading are unaffected, #780.
    Commits
    • 6740445 5.2.3 released
    • 94e766d Update changelog
    • c3bd7ca Polish previous commit, #780
    • 00209b6 presenter: treat a tab-indented line in a folded scalar as more-indented (#780)
    • 40fcb4f Fix missing mapping values before document markers and reject unpaired mappin...
    • 49280f3 Fix !!timestamp resolution for years 0000-0099, #775
    • 355dc96 fix: prevent prototype fallback in tag and harden object lookups, #782 (than...
    • d524f83 docs: add contributing guidelines
    • See full diff in compare view

    Updates @cloudflare/workers-types from 5.20260730.1 to 5.20260804.1

    Commits

    Updates @iconify-json/lucide from 1.2.120 to 1.2.121

    Commits

    Updates wrangler from 4.116.0 to 4.119.0

    Release notes

    Sourced from wrangler's releases.

    wrangler@4.119.0

    Minor Changes

    • #14952 20470fa Thanks @​nelsonjsduarte! - Add --parse-type flag to wrangler ai-search create

      wrangler ai-search create now accepts --parse-type to control how a website data source discovers URLs. sitemap (the default) reads XML sitemaps; discover follows links recursively.

      Previously the parse type could only be chosen through the interactive wizard, which was skipped whenever --source was supplied — so it was impossible to create a discover instance from a script.

      wrangler ai-search create my-instance \
        --type web-crawler \
        --source https://example.com \
        --parse-type discover

      The interactive wizard now offers Discover alongside Sitemap. --parse-type is only valid with --type web-crawler; passing it with --type builtin or --type r2 is rejected, since the API stores the value for those source types but never reads it. When the flag is omitted in non-interactive mode the field is left unset and the API default (sitemap) applies.

    • #14941 266172b Thanks @​nickpatt! - Improve the Local Explorer's Observability views

      console.log messages now render the way the console would (JSON-encoded strings are unwrapped and multi-argument logs are joined), traces and events can be looked up by trace or span id from the search bar, and an event's "View trace" button jumps to the exact invocation that emitted it — even when a trace_id spans several invocations (e.g. a subrequest or self fetch).

    • #14064 a9e5abb Thanks @​petebacondarwin! - Add support for OAuth 2.0 Device Authorization Grant to wrangler login

      Run wrangler login --device to authenticate without a local callback server. Useful in containers, remote SSH sessions, Codespaces, and any other environment where localhost:8976 is unreachable from your browser.

      The new flow:

      • prints the verification URL and user code to the terminal,
      • attempts to open the verification URL in your default browser automatically (suppressed via --browser=false),
      • and polls the token endpoint until you approve the request (with a 5-minute hard cap).

      The verification URL is supplied by the authorization server, so it is rejected unless it is an https URL on the same auth domain the device code was requested from — it is never printed or opened otherwise.

      --callback-host and --callback-port cannot be combined with --device, since this flow does not start a local callback server.

    Patch Changes

    • #14984 9c74538 Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

      The following dependency versions have been updated:

      Dependency From To
      @​cloudflare/workers-types ^5.20260730.1 ^5.20260731.1
      workerd 1.20260730.1 1.20260731.1
    • #15012 0d33cb8 Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

      The following dependency versions have been updated:

    ... (truncated)

    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-dependencies group with 6 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.1.6` | `7.2.0` |
    | [jose](https://github.com/panva/jose) | `6.2.5` | `6.2.8` |
    | [js-yaml](https://github.com/nodeca/js-yaml) | `5.2.2` | `5.2.3` |
    | [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `5.20260730.1` | `5.20260804.1` |
    | [@iconify-json/lucide](https://github.com/iconify/icon-sets) | `1.2.120` | `1.2.121` |
    | [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.116.0` | `4.119.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 `jose` from 6.2.5 to 6.2.8
    - [Release notes](https://github.com/panva/jose/releases)
    - [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
    - [Commits](panva/jose@v6.2.5...v6.2.8)
    
    Updates `js-yaml` from 5.2.2 to 5.2.3
    - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
    - [Commits](nodeca/js-yaml@5.2.2...5.2.3)
    
    Updates `@cloudflare/workers-types` from 5.20260730.1 to 5.20260804.1
    - [Release notes](https://github.com/cloudflare/workerd/releases)
    - [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
    - [Commits](https://github.com/cloudflare/workerd/commits)
    
    Updates `@iconify-json/lucide` from 1.2.120 to 1.2.121
    - [Commits](https://github.com/iconify/icon-sets/commits)
    
    Updates `wrangler` from 4.116.0 to 4.119.0
    - [Release notes](https://github.com/cloudflare/workers-sdk/releases)
    - [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.119.0/packages/wrangler)
    
    ---
    updated-dependencies:
    - dependency-name: astro
      dependency-version: 7.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: jose
      dependency-version: 6.2.8
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: js-yaml
      dependency-version: 5.2.3
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@cloudflare/workers-types"
      dependency-version: 5.20260804.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@iconify-json/lucide"
      dependency-version: 1.2.121
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: wrangler
      dependency-version: 4.119.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    ...
    
    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 9, 2026
    @cloudflare-workers-and-pages

    Copy link
    Copy Markdown

    Deploying acecore-net with  Cloudflare Pages  Cloudflare Pages

    Latest commit: fb584d4
    Status: ✅  Deploy successful!
    Preview URL: https://1f4127fa.acecore-net.pages.dev
    Branch Preview URL: https://dependabot-npm-and-yarn-npm-shhz.acecore-net.pages.dev

    View logs

    @gui-ace
    gui-ace merged commit 711bdc1 into main Aug 14, 2026
    3 checks passed
    @gui-ace
    gui-ace deleted the dependabot/npm_and_yarn/npm-dependencies-63cb6309d7 branch August 14, 2026 06:20
    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.

    1 participant