ktym4a / astro-page-insight

Shows everything to improve from Lighthouse results directly on the page.
https://astro-page-insight.pages.dev/
MIT License
67 stars 1 forks source link

chore(deps): bump the dependencies group with 9 updates #134

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the dependencies group with 9 updates:

Package From To
puppeteer 22.14.0 22.15.0
@types/node 22.0.0 22.1.0
@vitest/coverage-v8 2.0.4 2.0.5
tsup 8.2.3 8.2.4
vitest 2.0.4 2.0.5
@astrojs/check 0.8.3 0.9.1
astro 4.12.2 4.13.1
@astrojs/starlight 0.25.2 0.25.3
wrangler 3.67.1 3.68.0

Updates puppeteer from 22.14.0 to 22.15.0

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v22.15.0

22.15.0 (2024-07-31)

Features

Bug Fixes

puppeteer: v22.15.0

22.15.0 (2024-07-31)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.14.0 to 22.15.0
Commits


Updates @types/node from 22.0.0 to 22.1.0

Commits


Updates @vitest/coverage-v8 from 2.0.4 to 2.0.5

Release notes

Sourced from @​vitest/coverage-v8's releases.

v2.0.5

   🚀 Features

  • Introduce experimental reported tasks  -  by @​sheremet-va in vitest-dev/vitest#6149 (13d85)
    • This is part of the experimental API and doesn't follow semver. We are hoping to stabilize it for 2.1. If you are working with custom reporters, give this a go!

   🐞 Bug Fixes

    View changes on GitHub
Commits


Updates tsup from 8.2.3 to 8.2.4

Release notes

Sourced from tsup's releases.

v8.2.4

8.2.4 (2024-08-02)

Bug Fixes

Commits


Updates vitest from 2.0.4 to 2.0.5

Release notes

Sourced from vitest's releases.

v2.0.5

   🚀 Features

  • Introduce experimental reported tasks  -  by @​sheremet-va in vitest-dev/vitest#6149 (13d85)
    • This is part of the experimental API and doesn't follow semver. We are hoping to stabilize it for 2.1. If you are working with custom reporters, give this a go!

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 99452a7 chore: release v2.0.5
  • 9b9bdf7 chore: remove unnecessary await (#6249)
  • 40dfad8 docs: add reported tasks docs (#6245)
  • 13d85bd feat: introduce experimental reported tasks (#6149)
  • b76a927 refactor(vitest): move public exports to public folder (#6218)
  • 56dbfa6 refactor: make a distinction between node and runtime types (#6214)
  • a48be6f fix(vitest): correctly resolve mocked node:* imports in mocks folder (#6204)
  • 3aab8a1 refactor: deprecate all config types from the main Vitest entrypoint, introdu...
  • 57d23ce docs: fix inconsistencies, remove low informative twoslash examples (#6200)
  • 8cd8272 fix(vitest): improve defineProject and defineWorkspace types (#6198)
  • Additional commits viewable in compare view


Updates @astrojs/check from 0.8.3 to 0.9.1

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
  • Updated dependencies [cc94bef]
    • @​astrojs/language-server@​2.13.1

@​astrojs/check@​0.9.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • Updated dependencies [3a60f00]
  • Updated dependencies [b65d6b4]
    • @​astrojs/language-server@​2.13.0
Changelog

Sourced from @​astrojs/check's changelog.

0.9.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
  • Updated dependencies [cc94bef]
    • @​astrojs/language-server@​2.13.1

0.9.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • Updated dependencies [3a60f00]
  • Updated dependencies [b65d6b4]
    • @​astrojs/language-server@​2.13.0
Commits


Updates astro from 4.12.2 to 4.13.1

Release notes

Sourced from astro's releases.

astro@4.13.1

Patch Changes

  • #11584 a65ffe3 Thanks @​bholmesdev! - Removes async local storage dependency from Astro Actions. This allows Actions to run in Cloudflare and Stackblitz without opt-in flags or other configuration.

    This also introduces a new convention for calling actions from server code. Instead of calling actions directly, you must wrap function calls with the new Astro.callAction() utility.

    callAction() is meant to trigger an action from server code. getActionResult() usage with form submissions remains unchanged.

    ---
    import { actions } from 'astro:actions';
    

    const result = await Astro.callAction(actions.searchPosts, { searchTerm: Astro.url.searchParams.get('search'), });

    { result.data && { /* render the results */ } }

    Migration

    If you call actions directly from server code, update function calls to use the Astro.callAction() wrapper for pages and context.callAction() for endpoints:

    ---
    import { actions } from 'astro:actions';
    
    • const result = await actions.searchPosts({ searchTerm: 'test' });
    • const result = await Astro.callAction(actions.searchPosts, { searchTerm: 'test' });

    If you deploy with Cloudflare and added the nodejs_compat or nodejs_als flags for Actions, we recommend removing these:

    compatibility_flags = [
    - "nodejs_compat",
    - "nodejs_als"
    ]
    

    You can also remove node:async_hooks from the vite.ssr.external option in your astro.config file:

... (truncated)

Changelog

Sourced from astro's changelog.

4.13.1

Patch Changes

  • #11584 a65ffe3 Thanks @​bholmesdev! - Removes async local storage dependency from Astro Actions. This allows Actions to run in Cloudflare and Stackblitz without opt-in flags or other configuration.

    This also introduces a new convention for calling actions from server code. Instead of calling actions directly, you must wrap function calls with the new Astro.callAction() utility.

    callAction() is meant to trigger an action from server code. getActionResult() usage with form submissions remains unchanged.

    ---
    import { actions } from 'astro:actions';
    

    const result = await Astro.callAction(actions.searchPosts, { searchTerm: Astro.url.searchParams.get('search'), });

    { result.data && { /* render the results */ } }

    Migration

    If you call actions directly from server code, update function calls to use the Astro.callAction() wrapper for pages and context.callAction() for endpoints:

    ---
    import { actions } from 'astro:actions';
    
    • const result = await actions.searchPosts({ searchTerm: 'test' });
    • const result = await Astro.callAction(actions.searchPosts, { searchTerm: 'test' });

    If you deploy with Cloudflare and added the nodejs_compat or nodejs_als flags for Actions, we recommend removing these:

    compatibility_flags = [
    - "nodejs_compat",
    - "nodejs_als"
    ]
    

    You can also remove node:async_hooks from the vite.ssr.external option in your astro.config file:

... (truncated)

Commits


Updates @astrojs/starlight from 0.25.2 to 0.25.3

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.25.3

Patch Changes

  • #2154 0b381d5 Thanks @​mktbsh! - Updates <head> logic to deduplicate <link rel="canonical"> tags. This means that custom canonicals set via frontmatter now override the default canonical generated by Starlight.

  • #2157 6757d97 Thanks @​astrobot-houston! - Updates file tree icon mapping to correctly map .cjs and .mjs extensions in several contexts

  • #2156 904ad47 Thanks @​delucis! - Fixes builds for projects with a space in their pathname

  • #2137 703903b Thanks @​cevdetardaharan! - Removes twitter:title and twitter:description meta tags from <head>

Changelog

Sourced from @​astrojs/starlight's changelog.

0.25.3

Patch Changes

  • #2154 0b381d5 Thanks @​mktbsh! - Updates <head> logic to deduplicate <link rel="canonical"> tags. This means that custom canonicals set via frontmatter now override the default canonical generated by Starlight.

  • #2157 6757d97 Thanks @​astrobot-houston! - Updates file tree icon mapping to correctly map .cjs and .mjs extensions in several contexts

  • #2156 904ad47 Thanks @​delucis! - Fixes builds for projects with a space in their pathname

  • #2137 703903b Thanks @​cevdetardaharan! - Removes twitter:title and twitter:description meta tags from <head>

Commits


Updates wrangler from 3.67.1 to 3.68.0

Release notes

Sourced from wrangler's releases.

wrangler@3.68.0

Minor Changes

Patch Changes

  • #6379 31aa15c Thanks @​RamIdeas! - fix: clearer error message when trying to use Workers Sites or Legacy Assets with wrangler versions upload

  • #6367 7588800 Thanks @​RamIdeas! - fix: implicitly cleanup (call stop()) in unstable_dev if the returned Promise rejected and the stop() function was not returned

  • #6330 cfbdede Thanks @​RamIdeas! - fix: when the worker's request.url is overridden using the host or localUpstream, ensure port is overridden/cleared too

    When using --localUpstream=example.com, the request.url would incorrectly be "example.com:8787" but is now "example.com".

    This only applies to wrangler dev --x-dev-env and unstable_dev({ experimental: { devEnv: true } }).

  • #6365 13549c3 Thanks @​WalshyDev! - fix: WASM modules meant that wrangler versions secret ... could not properly update the version. This has now been fixed.

  • Updated dependencies [a9021aa, 44ad2c7]:

    • miniflare@3.20240725.0
Changelog

Sourced from wrangler's changelog.

3.68.0

Minor Changes

Patch Changes

  • #6379 31aa15c Thanks @​RamIdeas! - fix: clearer error message when trying to use Workers Sites or Legacy Assets with wrangler versions upload

  • #6367 7588800 Thanks @​RamIdeas! - fix: implicitly cleanup (call stop()) in unstable_dev if the returned Promise rejected and the stop() function was not returned

  • #6330 cfbdede Thanks @​RamIdeas! - fix: when the worker's request.url is overridden using the host or localUpstream, ensure port is overridden/cleared too

    When using --localUpstream=example.com, the request.url would incorrectly be "example.com:8787" but is now "example.com".

    This only applies to wrangler dev --x-dev-env and unstable_dev({ experimental: { devEnv: true } }).

  • #6365 13549c3 Thanks @​WalshyDev! - fix: WASM modules meant that wrangler versions secret ... could not properly update the version. This has now been fixed.

  • Updated dependencies [a9021aa, 44ad2c7]:

    • miniflare@3.20240725.0
Commits
  • 5146775 Version Packages (#6358)
  • 9f02173 Update Workers Sites/Legacy Assets error message in versions commands (#6390)
  • 31aa15c Clearer error message when trying to use Workers Sites with `wrangler version...
  • 13549c3 Fix WASM modules in versions secrets (#6365)
  • a9021aa chore(deps): bump the workerd-and-workers-types group across 1 directory with...
  • 7588800 try improve fixture flakiness due to unstable_dev (#6367)
  • 64f34e8 Support --x-dev-env for Pages (#6097)
  • dc576c8 Log worker script startup time (#6318)
  • cfbdede Add --x-dev-env to fixtures tests (#6330)
  • 6e14865 fix(wrangler): Rename more legacy-assets things (#6336)
  • Additional commits viewable in compare view


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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions