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

Bump the prod-dependencies group across 1 directory with 9 updates #99

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 24, 2024

Bumps the prod-dependencies group with 9 updates in the / directory:

Package From To
@expressive-code/core 0.35.2 0.35.3
@expressive-code/plugin-frames 0.35.2 0.35.3
@expressive-code/plugin-shiki 0.35.2 0.35.3
@expressive-code/plugin-text-markers 0.35.2 0.35.3
@expressive-code/plugin-line-numbers 0.35.2 0.35.3
astro-integration-kit 0.12.0 0.14.0
octokit 3.2.0 4.0.2
vite 5.2.10 5.3.1
astro 4.7.0 4.11.0

Updates @expressive-code/core from 0.35.2 to 0.35.3

Release notes

Sourced from @​expressive-code/core's releases.

@​expressive-code/core@​0.35.3

No release notes provided.

Changelog

Sourced from @​expressive-code/core's changelog.

0.35.3

Commits

Updates @expressive-code/plugin-frames from 0.35.2 to 0.35.3

Release notes

Sourced from @​expressive-code/plugin-frames's releases.

@​expressive-code/plugin-frames@​0.35.3

Patch Changes

  • c892206: - Fixes file names containing + not being recognized in file name comments. Thank you @​amandaguthrie!
    • @​expressive-code/core@​0.35.3
Changelog

Sourced from @​expressive-code/plugin-frames's changelog.

0.35.3

Patch Changes

  • c892206: Fixes file names containing + not being recognized in file name comments. Thank you @​amandaguthrie!
    • @​expressive-code/core@​0.35.3
Commits

Updates @expressive-code/plugin-shiki from 0.35.2 to 0.35.3

Release notes

Sourced from @​expressive-code/plugin-shiki's releases.

@​expressive-code/plugin-shiki@​0.35.3

Patch Changes

  • @​expressive-code/core@​0.35.3
Changelog

Sourced from @​expressive-code/plugin-shiki's changelog.

0.35.3

Patch Changes

  • @​expressive-code/core@​0.35.3
Commits

Updates @expressive-code/plugin-text-markers from 0.35.2 to 0.35.3

Release notes

Sourced from @​expressive-code/plugin-text-markers's releases.

@​expressive-code/plugin-text-markers@​0.35.3

Patch Changes

  • @​expressive-code/core@​0.35.3
Changelog

Sourced from @​expressive-code/plugin-text-markers's changelog.

0.35.3

Patch Changes

  • @​expressive-code/core@​0.35.3
Commits

Updates @expressive-code/plugin-line-numbers from 0.35.2 to 0.35.3

Release notes

Sourced from @​expressive-code/plugin-line-numbers's releases.

@​expressive-code/plugin-line-numbers@​0.35.3

Patch Changes

  • @​expressive-code/core@​0.35.3
Changelog

Sourced from @​expressive-code/plugin-line-numbers's changelog.

0.35.3

Patch Changes

  • @​expressive-code/core@​0.35.3
Commits

Updates astro-integration-kit from 0.12.0 to 0.14.0

Release notes

Sourced from astro-integration-kit's releases.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

Commits

Updates octokit from 3.2.0 to 4.0.2

Release notes

Sourced from octokit's releases.

v4.0.2

4.0.2 (2024-05-08)

Bug Fixes

v4.0.1

4.0.1 (2024-05-07)

Bug Fixes

  • docs: remove NodeJS 10 and add callout for conditional exports (#2675) (c99ff62)

v4.0.0

BREAKING CHANGES

  • package is now ESM
  • remove authentication type "oauth" that was previously deprecated
  • Switch from @octokit/webhooks-types to @octokit/openapi-webhooks-types due to the transition to using GitHub's OpenAPI schema

v3.2.1

3.2.1 (2024-05-03)

Bug Fixes

v3.2.1-beta.1

3.2.1-beta.1 (2024-05-06)

Bug Fixes

  • adapt code for ESM/new deps (314b46e)
  • deps: update octokit monorepo (b318e23)
Commits

Updates vite from 5.2.10 to 5.3.1

Release notes

Sourced from vite's releases.

[email protected]

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.3.1 (2024-06-14)

5.3.0 (2024-06-13)

Features

Performance

Fixes

Chore

... (truncated)

Commits

Updates astro from 4.7.0 to 4.11.0

Release notes

Sourced from astro's releases.

[email protected]

Minor Changes

  • #11197 4b46bd9 Thanks @​braebo! - Adds ShikiTransformer support to the <Code /> component with a new transformers prop.

    Note that transformers only applies classes and you must provide your own CSS rules to target the elements of your code block.

    ---
    import { transformerNotationFocus } from '@shikijs/transformers';
    import { Code } from 'astro:components';
    const code = const foo = 'hello' const bar = ' world' console.log(foo + bar) // [!code focus] ;
    <Code {code} lang="js" transformers={[transformerNotationFocus()]} />
    <style is:global>
    pre.has-focused .line:not(.focused) {
    filter: blur(1px);
    }
    </style>

  • #11134 9042be0 Thanks @​florian-lefebvre! - Improves the developer experience of the 500.astro file by passing it a new error prop.

    When an error is thrown, the special src/pages/500.astro page now automatically receives the error as a prop. This allows you to display more specific information about the error on a custom 500 page.

    ---
    // src/pages/500.astro
    interface Props {
      error: unknown;
    }
    const { error } = Astro.props;
    <div>{error instanceof Error ? error.message : 'Unknown error'}</div>

    If an error occurs rendering this page, your host's default 500 error page will be shown to your visitor in production, and Astro's default error overlay will be shown in development.

Patch Changes

... (truncated)

Changelog

Sourced from astro's changelog.

4.11.0

Minor Changes

  • #11197 4b46bd9 Thanks @​braebo! - Adds ShikiTransformer support to the <Code /> component with a new transformers prop.

    Note that transformers only applies classes and you must provide your own CSS rules to target the elements of your code block.

    ---
    import { transformerNotationFocus } from '@shikijs/transformers';
    import { Code } from 'astro:components';
    const code = const foo = 'hello' const bar = ' world' console.log(foo + bar) // [!code focus] ;
    <Code {code} lang="js" transformers={[transformerNotationFocus()]} />
    <style is:global>
    pre.has-focused .line:not(.focused) {
    filter: blur(1px);
    }
    </style>

  • #11134 9042be0 Thanks @​florian-lefebvre! - Improves the developer experience of the 500.astro file by passing it a new error prop.

    When an error is thrown, the special src/pages/500.astro page now automatically receives the error as a prop. This allows you to display more specific information about the error on a custom 500 page.

    ---
    // src/pages/500.astro
    interface Props {
      error: unknown;
    }
    const { error } = Astro.props;
    <div>{error instanceof Error ? error.message : 'Unknown error'}</div>

    If an error occurs rendering this page, your host's default 500 error page will be shown to your visitor in production, and Astro's default error overlay will be shown in development.

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 <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 prod-dependencies group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@expressive-code/core](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/core) | `0.35.2` | `0.35.3` |
| [@expressive-code/plugin-frames](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/plugin-frames) | `0.35.2` | `0.35.3` |
| [@expressive-code/plugin-shiki](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/plugin-shiki) | `0.35.2` | `0.35.3` |
| [@expressive-code/plugin-text-markers](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/plugin-text-markers) | `0.35.2` | `0.35.3` |
| [@expressive-code/plugin-line-numbers](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/plugin-line-numbers) | `0.35.2` | `0.35.3` |
| [astro-integration-kit](https://github.com/florian-lefebvre/astro-integration-kit) | `0.12.0` | `0.14.0` |
| [octokit](https://github.com/octokit/octokit.js) | `3.2.0` | `4.0.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.2.10` | `5.3.1` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.7.0` | `4.11.0` |



Updates `@expressive-code/core` from 0.35.2 to 0.35.3
- [Release notes](https://github.com/expressive-code/expressive-code/releases)
- [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/core/CHANGELOG.md)
- [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/[email protected]/packages/@expressive-code/core)

Updates `@expressive-code/plugin-frames` from 0.35.2 to 0.35.3
- [Release notes](https://github.com/expressive-code/expressive-code/releases)
- [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/plugin-frames/CHANGELOG.md)
- [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/[email protected]/packages/@expressive-code/plugin-frames)

Updates `@expressive-code/plugin-shiki` from 0.35.2 to 0.35.3
- [Release notes](https://github.com/expressive-code/expressive-code/releases)
- [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/plugin-shiki/CHANGELOG.md)
- [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/[email protected]/packages/@expressive-code/plugin-shiki)

Updates `@expressive-code/plugin-text-markers` from 0.35.2 to 0.35.3
- [Release notes](https://github.com/expressive-code/expressive-code/releases)
- [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/plugin-text-markers/CHANGELOG.md)
- [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/[email protected]/packages/@expressive-code/plugin-text-markers)

Updates `@expressive-code/plugin-line-numbers` from 0.35.2 to 0.35.3
- [Release notes](https://github.com/expressive-code/expressive-code/releases)
- [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/plugin-line-numbers/CHANGELOG.md)
- [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/[email protected]/packages/@expressive-code/plugin-line-numbers)

Updates `astro-integration-kit` from 0.12.0 to 0.14.0
- [Release notes](https://github.com/florian-lefebvre/astro-integration-kit/releases)
- [Commits](https://github.com/florian-lefebvre/astro-integration-kit/compare/[email protected]@0.14.0)

Updates `octokit` from 3.2.0 to 4.0.2
- [Release notes](https://github.com/octokit/octokit.js/releases)
- [Commits](octokit/octokit.js@v3.2.0...v4.0.2)

Updates `vite` from 5.2.10 to 5.3.1
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.3.1/packages/vite)

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

---
updated-dependencies:
- dependency-name: "@expressive-code/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@expressive-code/plugin-frames"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@expressive-code/plugin-shiki"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@expressive-code/plugin-text-markers"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@expressive-code/plugin-line-numbers"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: astro-integration-kit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: octokit
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-dependencies
- dependency-name: vite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 24, 2024
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-9fc5741439 branch from fab5bff to e6f63ec Compare June 24, 2024 08:23
Copy link

changeset-bot bot commented Jun 24, 2024

🦋 Changeset detected

Latest commit: 29ae015

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@matthiesenxyz/astro-gists Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link

changeset-bot bot commented Jun 24, 2024

⚠️ No Changeset found

Latest commit: fab5bff

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants