Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the minorandpatch group in /website with 9 updates #2457

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 19, 2024

Bumps the minorandpatch group in /website with 9 updates:

Package From To
@astrojs/node 8.3.2 8.3.3
astro 4.13.3 4.14.2
neverthrow 7.0.0 7.0.1
winston 3.14.1 3.14.2
@astrojs/check 0.9.2 0.9.3
@iconify/json 2.2.236 2.2.238
@playwright/test 1.46.0 1.46.1
@types/node 22.2.0 22.4.1
tailwindcss 3.4.9 3.4.10

Updates @astrojs/node from 8.3.2 to 8.3.3

Release notes

Sourced from @​astrojs/node's releases.

@​astrojs/node@​8.3.3

Patch Changes

  • #11535 932bd2e Thanks @​matthewp! - Move polyfills up before awaiting the env module in the Node.js adapter.

    Previously the env setting was happening before the polyfills were applied. This means that if the Astro env code (or any dependencies) depended on crypto, it would not be polyfilled in time.

    Polyfills should be applied ASAP to prevent races. This moves it to the top of the Node adapter.

Changelog

Sourced from @​astrojs/node's changelog.

8.3.3

Patch Changes

  • #11535 932bd2e Thanks @​matthewp! - Move polyfills up before awaiting the env module in the Node.js adapter.

    Previously the env setting was happening before the polyfills were applied. This means that if the Astro env code (or any dependencies) depended on crypto, it would not be polyfilled in time.

    Polyfills should be applied ASAP to prevent races. This moves it to the top of the Node adapter.

Commits

Updates astro from 4.13.3 to 4.14.2

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #11725 6c1560f Thanks @​ascorbic! - Prevents content layer importing node builtins in runtime

  • #11692 35af73a Thanks @​matthewp! - Prevent errant HTML from crashing server islands

    When an HTML minifier strips away the server island comment, the script can't correctly know where the end of the fallback content is. This makes it so that it simply doesn't remove any DOM in that scenario. This means the fallback isn't removed, but it also doesn't crash the browser.

  • #11727 3c2f93b Thanks @​florian-lefebvre! - Fixes a type issue when using the Content Layer in dev

[email protected]

Minor Changes

  • #11657 a23c69d Thanks @​bluwy! - Deprecates the option for route-generating files to export a dynamic value for prerender. Only static values are now supported (e.g. export const prerender = true or = false). This allows for better treeshaking and bundling configuration in the future.

    Adds a new "astro:route:setup" hook to the Integrations API to allow you to dynamically set options for a route at build or request time through an integration, such as enabling on-demand server rendering.

    To migrate from a dynamic export to the new hook, update or remove any dynamic prerender exports from individual routing files:

    // src/pages/blog/[slug].astro
    - export const prerender = import.meta.env.PRERENDER

    Instead, create an integration with the "astro:route:setup" hook and update the route's prerender option:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { loadEnv } from 'vite';
    export default defineConfig({
    integrations: [setPrerender()],
    });
    function setPrerender() {
    const { PRERENDER } = loadEnv(process.env.NODE_ENV, process.cwd(), '');
    return {
    name: 'set-prerender',
    hooks: {
    'astro:route:setup': ({ route }) => {
    if (route.component.endsWith('/blog/[slug].astro')) {
    route.prerender = PRERENDER;

... (truncated)

Changelog

Sourced from astro's changelog.

4.14.2

Patch Changes

4.14.1

Patch Changes

  • #11725 6c1560f Thanks @​ascorbic! - Prevents content layer importing node builtins in runtime

  • #11692 35af73a Thanks @​matthewp! - Prevent errant HTML from crashing server islands

    When an HTML minifier strips away the server island comment, the script can't correctly know where the end of the fallback content is. This makes it so that it simply doesn't remove any DOM in that scenario. This means the fallback isn't removed, but it also doesn't crash the browser.

  • #11727 3c2f93b Thanks @​florian-lefebvre! - Fixes a type issue when using the Content Layer in dev

4.14.0

Minor Changes

  • #11657 a23c69d Thanks @​bluwy! - Deprecates the option for route-generating files to export a dynamic value for prerender. Only static values are now supported (e.g. export const prerender = true or = false). This allows for better treeshaking and bundling configuration in the future.

    Adds a new "astro:route:setup" hook to the Integrations API to allow you to dynamically set options for a route at build or request time through an integration, such as enabling on-demand server rendering.

    To migrate from a dynamic export to the new hook, update or remove any dynamic prerender exports from individual routing files:

    // src/pages/blog/[slug].astro
    - export const prerender = import.meta.env.PRERENDER

    Instead, create an integration with the "astro:route:setup" hook and update the route's prerender option:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { loadEnv } from 'vite';
    export default defineConfig({
    integrations: [setPrerender()],
    });
    function setPrerender() {
    const { PRERENDER } = loadEnv(process.env.NODE_ENV, process.cwd(), '');
    return {
    name: 'set-prerender',
    hooks: {

... (truncated)

Commits

Updates neverthrow from 7.0.0 to 7.0.1

Release notes

Sourced from neverthrow's releases.

v7.0.1

Patch Changes

Changelog

Sourced from neverthrow's changelog.

7.0.1

Patch Changes

Commits
  • 599f28b Merge pull request #560 from supermacro/changeset-release/master
  • 04a2cd6 Version Packages
  • 3960060 Merge pull request #497 from braxtonhall/match
  • 1f87908 Merge branch 'master' into match
  • e06203e Create tall-berries-guess.md
  • ced9108 Merge pull request #527 from 3846masa-tmp/fix/strict-type-inference-for-safetry
  • 2e1f198 Create mean-eagles-develop.md
  • 2d00330 fix: change type definitions to make inferring types of safeTry more strict
  • 1100fbe chore: add test cases for type inference of safeTry
  • 844b93d Merge pull request #539 from supermacro/dependabot/npm_and_yarn/braces-3.0.3
  • Additional commits viewable in compare view

Updates winston from 3.14.1 to 3.14.2

Release notes

Sourced from winston's releases.

v3.14.2

  • Move initialization to constructor (#2503) 2458ba6

winstonjs/winston@v3.14.1...v3.14.2

Commits

Updates @astrojs/check from 0.9.2 to 0.9.3

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.3

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/language-server@​2.14.1
Changelog

Sourced from @​astrojs/check's changelog.

0.9.3

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/language-server@​2.14.1
Commits

Updates @iconify/json from 2.2.236 to 2.2.238

Commits

Updates @playwright/test from 1.46.0 to 1.46.1

Release notes

Sourced from @​playwright/test's releases.

v1.46.1

Highlights

microsoft/playwright#32004 - [REGRESSION]: Client Certificates don't work with Microsoft IIS microsoft/playwright#32004 - [REGRESSION]: Websites stall on TLS handshake errors when using Client Certificates microsoft/playwright#32146 - [BUG]: Credential scanners warn about internal socks-proxy TLS certificates microsoft/playwright#32056 - [REGRESSION]: 1.46.0 (TypeScript) - custom fixtures extend no longer chainable microsoft/playwright#32070 - [Bug]: --only-changed flag and project dependencies microsoft/playwright#32188 - [Bug]: --only-changed with shallow clone throws "unknown revision" error

Browser Versions

  • Chromium 128.0.6613.18
  • Mozilla Firefox 128.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 127
  • Microsoft Edge 127
Commits
  • e1c861c cherry-pick(#32021): test: fix failing client-certificate tests
  • 20b0788 chore: mark v1.46.1 (#32194)
  • 57c3240 cherry-pick(#32192): chore: generate self-signed certificates for socks proxy
  • 301f179 cherry-pick(#32189): fix(only-changed): show nice error message about shallow...
  • b2d6a09 cherry-pick(#32164): docs: release video and trace viewer video (#32173)
  • 7cf7aec cherry-pick(#32094): fix(test runner): run project dependencies of `--only-ch...
  • d78ae01 cherry-pick(#32163): fix(client-certificates): stall on tls handshake errors
  • bd13da4 cherry-pick(#32155): fix(client-certificates): when server does tls renegotia...
  • 30684a7 cherry-pick(#32066): fix(types): revert type changes made to support TS 5.5 (...
  • 5e68061 cherry-pick(#32015): docs(release-notes): fix typo in .NET release notes
  • See full diff in compare view

Updates @types/node from 22.2.0 to 22.4.1

Commits

Updates tailwindcss from 3.4.9 to 3.4.10

Release notes

Sourced from tailwindcss's releases.

v3.4.10

Fixed

  • Bump versions of plugins in the Standalone CLI (#14185)
Changelog

Sourced from tailwindcss's changelog.

[3.4.10] - 2024-08-13

Fixed

  • Bump versions of plugins in the Standalone CLI (#14185)
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 <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 minorandpatch group in /website with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/node](https://github.com/withastro/astro/tree/HEAD/packages/integrations/node) | `8.3.2` | `8.3.3` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.13.3` | `4.14.2` |
| [neverthrow](https://github.com/supermacro/neverthrow) | `7.0.0` | `7.0.1` |
| [winston](https://github.com/winstonjs/winston) | `3.14.1` | `3.14.2` |
| [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.9.2` | `0.9.3` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.236` | `2.2.238` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.46.0` | `1.46.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.2.0` | `22.4.1` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.9` | `3.4.10` |


Updates `@astrojs/node` from 8.3.2 to 8.3.3
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/node/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/node)

Updates `astro` from 4.13.3 to 4.14.2
- [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/[email protected]/packages/astro)

Updates `neverthrow` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/supermacro/neverthrow/releases)
- [Changelog](https://github.com/supermacro/neverthrow/blob/master/CHANGELOG.md)
- [Commits](supermacro/neverthrow@v7.0.0...v7.0.1)

Updates `winston` from 3.14.1 to 3.14.2
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston@v3.14.1...v3.14.2)

Updates `@astrojs/check` from 0.9.2 to 0.9.3
- [Release notes](https://github.com/withastro/language-tools/releases)
- [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md)
- [Commits](https://github.com/withastro/language-tools/commits/@astrojs/[email protected]/packages/astro-check)

Updates `@iconify/json` from 2.2.236 to 2.2.238
- [Commits](iconify/icon-sets@2.2.236...2.2.238)

Updates `@playwright/test` from 1.46.0 to 1.46.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.46.0...v1.46.1)

Updates `@types/node` from 22.2.0 to 22.4.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `tailwindcss` from 3.4.9 to 3.4.10
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.10/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.9...v3.4.10)

---
updated-dependencies:
- dependency-name: "@astrojs/node"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: neverthrow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: winston
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@astrojs/check"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@iconify/json"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 19, 2024
@corneliusroemer corneliusroemer merged commit 9afbcca into main Aug 20, 2024
16 checks passed
@corneliusroemer corneliusroemer deleted the dependabot/npm_and_yarn/website/minorandpatch-4e2be2506a branch August 20, 2024 10:58
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