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

build(deps): Bump the patch-minor group with 11 updates #514

Merged
merged 1 commit into from
Aug 26, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the patch-minor group with 11 updates:

Package From To
@astrojs/db 0.13.1 0.13.2
@astrojs/mdx 3.1.3 3.1.4
@astrojs/vercel 7.7.2 7.8.0
@types/react 18.3.3 18.3.4
astro 4.14.2 4.14.5
astro-expressive-code 0.35.6 0.36.0
dayjs 1.11.12 1.11.13
framer-motion 11.3.28 11.3.30
@axe-core/playwright 4.9.1 4.10.0
@types/node 22.4.1 22.5.0
husky 9.1.4 9.1.5

Updates @astrojs/db from 0.13.1 to 0.13.2

Release notes

Sourced from @​astrojs/db's releases.

@​astrojs/db@​0.13.2

Patch Changes

  • #11744 b677429 Thanks @​bluwy! - Disables the WebSocket server when creating a Vite server for loading config files

  • Updated dependencies []:

    • @​astrojs/studio@​0.1.1

@​astrojs/db@​0.13.2-alpha.0

Patch Changes

  • #11744 b677429 Thanks @​bluwy! - Disables the WebSocket server when creating a Vite server for loading config files

  • Updated dependencies []:

    • @​astrojs/studio@​0.1.1
Changelog

Sourced from @​astrojs/db's changelog.

0.13.2

Patch Changes

  • #11744 b677429 Thanks @​bluwy! - Disables the WebSocket server when creating a Vite server for loading config files

  • Updated dependencies []:

    • @​astrojs/studio@​0.1.1
Commits

Updates @astrojs/mdx from 3.1.3 to 3.1.4

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​3.1.4

Patch Changes

  • #11717 423614e Thanks @​bluwy! - Fixes stack trace location when failed to parse an MDX file with frontmatter
Changelog

Sourced from @​astrojs/mdx's changelog.

3.1.4

Patch Changes

  • #11717 423614e Thanks @​bluwy! - Fixes stack trace location when failed to parse an MDX file with frontmatter
Commits

Updates @astrojs/vercel from 7.7.2 to 7.8.0

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​7.8.0

Minor Changes

  • #11728 5ea02b1 Thanks @​matthewp! - Deprecates the functionPerRoute option

    This option is now deprecated, and will be removed entirely in Astro v5.0. We suggest removing this option from your configuration as soon as you are able to:

    import { defineConfig } from 'astro/config';
    import vercel from '@astrojs/vercel/serverless';
    export default defineConfig({
    // ...
    output: 'server',
    adapter: vercel({
    
    
    functionPerRoute: true,
    
    }),
    });

Patch Changes

  • #11783 fc81b01 Thanks @​matthewp! - Prevent race condition with Node 18

    Using Node 18 there can be a race condition where polyfill for the crypto global is not applied in time. This change ensures the polyfills run first.

Changelog

Sourced from @​astrojs/vercel's changelog.

7.8.0

Minor Changes

  • #11728 5ea02b1 Thanks @​matthewp! - Deprecates the functionPerRoute option

    This option is now deprecated, and will be removed entirely in Astro v5.0. We suggest removing this option from your configuration as soon as you are able to:

    import { defineConfig } from 'astro/config';
    import vercel from '@astrojs/vercel/serverless';
    export default defineConfig({
    // ...
    output: 'server',
    adapter: vercel({
    
    
    functionPerRoute: true,
    
    }),
    });

Patch Changes

  • #11783 fc81b01 Thanks @​matthewp! - Prevent race condition with Node 18

    Using Node 18 there can be a race condition where polyfill for the crypto global is not applied in time. This change ensures the polyfills run first.

Commits

Updates @types/react from 18.3.3 to 18.3.4

Commits

Updates astro from 4.14.2 to 4.14.5

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #11794 3691a62 Thanks @​bholmesdev! - Fixes unexpected warning log when using Actions on "hybrid" rendered projects.

  • #11801 9f943c1 Thanks @​delucis! - Fixes a bug where the filePath property was not available on content collection entries when using the content layer file() loader with a JSON file that contained an object instead of an array. This was breaking use of the image() schema utility among other things.

[email protected]

Patch Changes

Changelog

Sourced from astro's changelog.

4.14.5

Patch Changes

4.14.4

Patch Changes

  • #11794 3691a62 Thanks @​bholmesdev! - Fixes unexpected warning log when using Actions on "hybrid" rendered projects.

  • #11801 9f943c1 Thanks @​delucis! - Fixes a bug where the filePath property was not available on content collection entries when using the content layer file() loader with a JSON file that contained an object instead of an array. This was breaking use of the image() schema utility among other things.

4.14.3

Patch Changes

Commits

Updates astro-expressive-code from 0.35.6 to 0.36.0

Release notes

Sourced from astro-expressive-code's releases.

[email protected]

Minor Changes

  • bff1106: Adds the experimental transformers option to the Shiki plugin. Thank you @​MichaelMakesGames!

    This option allows you to specify a list of Shiki transformers to be called during syntax highlighting.

    Important: This option is marked as experimental because it only supports a very limited subset of Shiki transformer features right now. Most importantly, transformers cannot modify a code block's text contents in any way, so most popular transformers will not work.

    In its current state, this option allows you to use transformers that solely modify the tokens produced by Shiki to improve syntax highlighting, e.g. applying bracket matching or changing the color of certain tokens.

    Attempting to pass incompatible transformers to this option will throw an error. This is not a bug, neither in Expressive Code, nor in Shiki or the transformers. Please do not report incompatibilities to other authors, as they are unable to fix them. The current limitations exist because the Shiki transformer API is incompatible with Expressive Code's architecture, and we will continue to work on closing the gap and improving this feature.

  • ca54f6e: Updates Shiki dependency to the latest version.

Patch Changes

Changelog

Sourced from astro-expressive-code's changelog.

0.36.0

Minor Changes

  • bff1106: Adds the experimental transformers option to the Shiki plugin. Thank you @​MichaelMakesGames!

    This option allows you to specify a list of Shiki transformers to be called during syntax highlighting.

    Important: This option is marked as experimental because it only supports a very limited subset of Shiki transformer features right now. Most importantly, transformers cannot modify a code block's text contents in any way, so most popular transformers will not work.

    In its current state, this option allows you to use transformers that solely modify the tokens produced by Shiki to improve syntax highlighting, e.g. applying bracket matching or changing the color of certain tokens.

    Attempting to pass incompatible transformers to this option will throw an error. This is not a bug, neither in Expressive Code, nor in Shiki or the transformers. Please do not report incompatibilities to other authors, as they are unable to fix them. The current limitations exist because the Shiki transformer API is incompatible with Expressive Code's architecture, and we will continue to work on closing the gap and improving this feature.

  • ca54f6e: Updates Shiki dependency to the latest version.

Patch Changes

Commits

Updates dayjs from 1.11.12 to 1.11.13

Release notes

Sourced from dayjs's releases.

v1.11.13

1.11.13 (2024-08-20)

Bug Fixes

  • customParseFormat supports Q quter / w ww weekOfYear (#2705) (8ca74f1)
Changelog

Sourced from dayjs's changelog.

1.11.13 (2024-08-20)

Bug Fixes

  • customParseFormat supports Q quter / w ww weekOfYear (#2705) (8ca74f1)
Commits

Updates framer-motion from 11.3.28 to 11.3.30

Changelog

Sourced from framer-motion's changelog.

[11.3.30] 2024-08-23

Fixed

  • Removed double "change" handler on externally-provided MotionValues.

[11.3.29] 2024-08-21

Fixed

  • Selective cancellation of optimised appear animations.
Commits

Updates @axe-core/playwright from 4.9.1 to 4.10.0

Release notes

Sourced from @​axe-core/playwright's releases.

Release 4.10.0

What's Changed

New Contributors

Full Changelog: dequelabs/axe-core-npm@v4.9.1...v4.10.0

Changelog

Sourced from @​axe-core/playwright's changelog.

4.10.0 (2024-08-16)

Bug Fixes

Features

Commits

Updates @types/node from 22.4.1 to 22.5.0

Commits

Updates husky from 9.1.4 to 9.1.5

Release notes

Sourced from husky's releases.

v9.1.5

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.4...v9.1.5

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 patch-minor group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/db](https://github.com/withastro/astro/tree/HEAD/packages/db) | `0.13.1` | `0.13.2` |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `3.1.3` | `3.1.4` |
| [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel) | `7.7.2` | `7.8.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.3` | `18.3.4` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.14.2` | `4.14.5` |
| [astro-expressive-code](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code) | `0.35.6` | `0.36.0` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.12` | `1.11.13` |
| [framer-motion](https://github.com/framer/motion) | `11.3.28` | `11.3.30` |
| [@axe-core/playwright](https://github.com/dequelabs/axe-core-npm) | `4.9.1` | `4.10.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.4.1` | `22.5.0` |
| [husky](https://github.com/typicode/husky) | `9.1.4` | `9.1.5` |


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

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

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

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

Updates `astro` from 4.14.2 to 4.14.5
- [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 `astro-expressive-code` from 0.35.6 to 0.36.0
- [Release notes](https://github.com/expressive-code/expressive-code/releases)
- [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/astro-expressive-code/CHANGELOG.md)
- [Commits](https://github.com/expressive-code/expressive-code/commits/[email protected]/packages/astro-expressive-code)

Updates `dayjs` from 1.11.12 to 1.11.13
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/v1.11.13/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.12...v1.11.13)

Updates `framer-motion` from 11.3.28 to 11.3.30
- [Changelog](https://github.com/framer/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v11.3.28...v11.3.30)

Updates `@axe-core/playwright` from 4.9.1 to 4.10.0
- [Release notes](https://github.com/dequelabs/axe-core-npm/releases)
- [Changelog](https://github.com/dequelabs/axe-core-npm/blob/v4.10.0/CHANGELOG.md)
- [Commits](dequelabs/axe-core-npm@v4.9.1...v4.10.0)

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

Updates `husky` from 9.1.4 to 9.1.5
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.4...v9.1.5)

---
updated-dependencies:
- dependency-name: "@astrojs/db"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@astrojs/mdx"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@astrojs/vercel"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: astro-expressive-code
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: dayjs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: framer-motion
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@axe-core/playwright"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
...

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 26, 2024
@evadecker evadecker merged commit 7e3e4dd into main Aug 26, 2024
5 checks passed
@evadecker evadecker deleted the dependabot/npm_and_yarn/patch-minor-fad47340d2 branch August 26, 2024 16:14
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