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 6 updates #139

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the dependencies group with 6 updates:

Package From To
puppeteer 23.1.1 23.2.1
@types/node 22.5.0 22.5.2
happy-dom 15.0.0 15.7.3
@astrojs/mdx 3.1.4 3.1.5
astro 4.14.5 4.15.1
wrangler 3.72.2 3.73.0

Updates puppeteer from 23.1.1 to 23.2.1

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v23.2.1

23.2.1 (2024-08-29)

Bug Fixes

puppeteer: v23.2.1

23.2.1 (2024-08-29)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.2.0 to 23.2.1

puppeteer-core: v23.2.0

23.2.0 (2024-08-26)

Features

puppeteer: v23.2.0

23.2.0 (2024-08-26)

Features

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.1.1 to 23.2.0
Commits


Updates @types/node from 22.5.0 to 22.5.2

Commits


Updates happy-dom from 15.0.0 to 15.7.3

Release notes

Sourced from happy-dom's releases.

v15.7.3

:construction_worker_man: Patch fixes

  • Fixes bug that occurs when checking if a symbol property exists on HTMLSelectElement - By @​Cherry in task #1526

v15.7.2

:construction_worker_man: Patch fixes

  • Fixes problem where it is not possible to observe again after disconnecting in MutationObserver - By @​capricorn86 in task #1524

v15.7.1

:construction_worker_man: Patch fixes

  • Fixes selector validation and converts selectors to string (e.g. querySelector(['.class'])) - By @​capricorn86 in task #1507

v15.7.0

:art: Features

v15.6.1

:construction_worker_man: Patch fixes

  • Include Access-Control-*, Origin headers for cross-origin preflight requests - By @​rexxars in task #1489

v15.6.0

:art: Features

:construction_worker_man: Patch fixes

  • Changes wrong property name "inputmode" to "inputMode" in HTMLInputElement and HTMLTextAreaElement - By @​capricorn86 in task #1487

v15.5.0

:art: Features

v15.4.3

:construction_worker_man: Patch fixes

  • Adds support for supporting new lines and tabs as white-space character in CSS selectors - By @​syi0808 in task #1414

v15.4.2

:construction_worker_man: Patch fixes

v15.4.1

:construction_worker_man: Patch fixes

  • Throw error in FormData.append() when value parameter type is incorrect - By @​btea in task #1484

v15.4.0

:art: Features

v15.3.2

:construction_worker_man: Patch fixes

  • Fixes the HTMLInputElement.indeterminate, so that it behaves correctly - By @​malko in task #1439

... (truncated)

Commits
  • afc3692 fix: #1526 Handles scenario where a symbol property doesn't exist on HTMLSe...
  • 20b520a fix: #1527 Fixes problem where it is not possible to observe again after di...
  • 07a424a chore: [1] Add vitest extensions (#1523)
  • d0c8ab5 fix: #1507 Fixes selector validation, so that it converts values to string ...
  • 9bde659 feat: #1373 Adds support for the :has pseudo selector (#1521)
  • 2c52052 chore: #1213 Replaces rm rf with a windows compatible script when building ...
  • 86748db fix: #1489 Include Access-Control, Origin headers for cross-origin requests...
  • 71d243a feat: #1515 Adds support for the selectors :focus and :focus-visible (#1520)
  • 2b20cc3 fix: #1487 Changes wrong property name inputmode to inputMode in HTMLInputE...
  • 48dc929 chore: #1504 Upgrades Vitest (#1504)
  • Additional commits viewable in compare view


Updates @astrojs/mdx from 3.1.4 to 3.1.5

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​3.1.5

Patch Changes

  • #11818 88ef1d0 Thanks @​bluwy! - Fixes CSS in the layout component to be ordered first before any other components in the MDX file
Changelog

Sourced from @​astrojs/mdx's changelog.

3.1.5

Patch Changes

  • #11818 88ef1d0 Thanks @​bluwy! - Fixes CSS in the layout component to be ordered first before any other components in the MDX file
Commits


Updates astro from 4.14.5 to 4.15.1

Release notes

Sourced from astro's releases.

astro@4.15.1

Patch Changes

astro@4.15.0

Minor Changes

  • #11729 1c54e63 Thanks @​ematipico! - Adds a new variant sync for the astro:config:setup hook's command property. This value is set when calling the command astro sync.

    If your integration previously relied on knowing how many variants existed for the command property, you must update your logic to account for this new option.

  • #11743 cce0894 Thanks @​ph1p! - Adds a new, optional property timeout for the client:idle directive.

    This value allows you to specify a maximum time to wait, in milliseconds, before hydrating a UI framework component, even if the page is not yet done with its initial load. This means you can delay hydration for lower-priority UI elements with more control to ensure your element is interactive within a specified time frame.

    <ShowHideButton client:idle={{ timeout: 500 }} />
    
  • #11677 cb356a5 Thanks @​ematipico! - Adds a new option fallbackType to i18n.routing configuration that allows you to control how fallback pages are handled.

    When i18n.fallback is configured, this new routing option controls whether to redirect to the fallback page, or to rewrite the fallback page's content in place.

    The "redirect" option is the default value and matches the current behavior of the existing fallback system.

    The option "rewrite" uses the new rewriting system to create fallback pages that render content on the original, requested URL without a browser refresh.

    For example, the following configuration will generate a page /fr/index.html that will contain the same HTML rendered by the page /en/index.html when src/pages/fr/index.astro does not exist.

    // astro.config.mjs
    export default defineConfig({
      i18n: {
        locals: ['en', 'fr'],
        defaultLocale: 'en',
        routing: {
          prefixDefaultLocale: true,
          fallbackType: 'rewrite',
        },
        fallback: {
          fr: 'en',
        },
      },
    });
    
  • #11708 62b0d20 Thanks @​martrapp! - Adds a new object swapFunctions to expose the necessary utility functions on astro:transitions/client that allow you to build custom swap functions to be used with view transitions.

... (truncated)

Changelog

Sourced from astro's changelog.

4.15.1

Patch Changes

4.15.0

Minor Changes

  • #11729 1c54e63 Thanks @​ematipico! - Adds a new variant sync for the astro:config:setup hook's command property. This value is set when calling the command astro sync.

    If your integration previously relied on knowing how many variants existed for the command property, you must update your logic to account for this new option.

  • #11743 cce0894 Thanks @​ph1p! - Adds a new, optional property timeout for the client:idle directive.

    This value allows you to specify a maximum time to wait, in milliseconds, before hydrating a UI framework component, even if the page is not yet done with its initial load. This means you can delay hydration for lower-priority UI elements with more control to ensure your element is interactive within a specified time frame.

    <ShowHideButton client:idle={{ timeout: 500 }} />
    
  • #11677 cb356a5 Thanks @​ematipico! - Adds a new option fallbackType to i18n.routing configuration that allows you to control how fallback pages are handled.

    When i18n.fallback is configured, this new routing option controls whether to redirect to the fallback page, or to rewrite the fallback page's content in place.

    The "redirect" option is the default value and matches the current behavior of the existing fallback system.

    The option "rewrite" uses the new rewriting system to create fallback pages that render content on the original, requested URL without a browser refresh.

    For example, the following configuration will generate a page /fr/index.html that will contain the same HTML rendered by the page /en/index.html when src/pages/fr/index.astro does not exist.

    // astro.config.mjs
    export default defineConfig({
      i18n: {
        locals: ['en', 'fr'],
        defaultLocale: 'en',
        routing: {
          prefixDefaultLocale: true,
          fallbackType: 'rewrite',
        },
        fallback: {
          fr: 'en',
        },
      },
    });
    

... (truncated)

Commits


Updates wrangler from 3.72.2 to 3.73.0

Release notes

Sourced from wrangler's releases.

wrangler@3.73.0

Minor Changes

  • #6571 a7e1bfe Thanks @​penalosa! - feat: Add deployment http targets to wrangler deploy logs, and add url to pages deploy logs

  • #6497 3bd833c Thanks @​WalshyDev! - chore: move wrangler versions ..., wrangler deployments ..., wrangler rollback and wrangler triggers ... out of experimental and open beta. These are now available to use without the --x-versions flag, you can continue to pass this however without issue to keep compatibility with all the usage today.

    A few of the commands had an output that wasn't guarded by --x-versions those have been updated to use the newer output, we have tried to keep compatibility where possible (for example: wrangler rollback will continue to output "Worker Version ID:" so users can continue to grab the ID). If you wish to use the old versions of the commands you can pass the --no-x-versions flag. Note, these will be removed in the future so please work on migrating.

  • #6586 72ea742 Thanks @​penalosa! - feat: Inject a 404 response for browser requested favicon.ico files when loading the /__scheduled page for scheduled-only Workers

  • #6497 3bd833c Thanks @​WalshyDev! - feat: update wrangler deploy to use the new versions and deployments API. This should have zero user-facing impact but sets up the most used command to deploy Workers to use the new recommended APIs and move away from the old ones. We will still call the old upload path where required (e.g. Durable Object migration or Service Worker format).

Patch Changes

wrangler@3.72.3

Patch Changes

... (truncated)

Changelog

Sourced from wrangler's changelog.

3.73.0

Minor Changes

  • #6571 a7e1bfe Thanks @​penalosa! - feat: Add deployment http targets to wrangler deploy logs, and add url to pages deploy logs

  • #6497 3bd833c Thanks @​WalshyDev! - chore: move wrangler versions ..., wrangler deployments ..., wrangler rollback and wrangler triggers ... out of experimental and open beta. These are now available to use without the --x-versions flag, you can continue to pass this however without issue to keep compatibility with all the usage today.

    A few of the commands had an output that wasn't guarded by --x-versions those have been updated to use the newer output, we have tried to keep compatibility where possible (for example: wrangler rollback will continue to output "Worker Version ID:" so users can continue to grab the ID). If you wish to use the old versions of the commands you can pass the --no-x-versions flag. Note, these will be removed in the future so please work on migrating.

  • #6586 72ea742 Thanks @​penalosa! - feat: Inject a 404 response for browser requested favicon.ico files when loading the /__scheduled page for scheduled-only Workers

  • #6497 3bd833c Thanks @​WalshyDev! - feat: update wrangler deploy to use the new versions and deployments API. This should have zero user-facing impact but sets up the most used command to deploy Workers to use the new recommended APIs and move away from the old ones. We will still call the old upload path where required (e.g. Durable Object migration or Service Worker format).

Patch Changes

3.72.3

Patch Changes

... (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 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