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 #93

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 3, 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.13.3
octokit 3.2.0 4.0.2
vite 5.2.10 5.2.12
astro 4.7.0 4.9.2

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

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.

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

Changelog

Sourced from vite's changelog.

5.2.12 (2024-05-28)

5.2.11 (2024-05-02)

Commits

Updates astro from 4.7.0 to 4.9.2

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

  • #11138 98e0372 Thanks @​ematipico! - You can now pass props when rendering a component using the Container APIs:

    import { experimental_AstroContainer as AstroContainer } from 'astro/contaienr';
    import Card from '../src/components/Card.astro';
    const container = await AstroContainer.create();
    const result = await container.renderToString(Card, {
    props: {
    someState: true,
    },
    });

[email protected]

Patch Changes

[email protected]

Minor Changes

  • #11051 12a1bcc Thanks @​ematipico! - Introduces an experimental Container API to render .astro components in isolation.

    This API introduces three new functions to allow you to create a new container and render an Astro component returning either a string or a Response:

    • create(): creates a new instance of the container.
    • renderToString(): renders a component and return a string.
    • renderToResponse(): renders a component and returns the Response emitted by the rendering phase.

    The first supported use of this new API is to enable unit testing. For example, with vitest, you can create a container to render your component with test data and check the result:

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import { expect, test } from 'vitest';
    import Card from '../src/components/Card.astro';
    test('Card with slots', async () => {
    const container = await AstroContainer.create();
    const result = await container.renderToString(Card, {
    slots: {
    default: 'Card content',
    },
    });
    expect(result).toContain('This is a card');
    expect(result).toContain('Card content');

... (truncated)

Changelog

Sourced from astro's changelog.

4.9.2

Patch Changes

  • #11138 98e0372 Thanks @​ematipico! - You can now pass props when rendering a component using the Container APIs:

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import Card from '../src/components/Card.astro';
    const container = await AstroContainer.create();
    const result = await container.renderToString(Card, {
    props: {
    someState: true,
    },
    });

4.9.1

Patch Changes

4.9.0

Minor Changes

  • #11051 12a1bcc Thanks @​ematipico! - Introduces an experimental Container API to render .astro components in isolation.

    This API introduces three new functions to allow you to create a new container and render an Astro component returning either a string or a Response:

    • create(): creates a new instance of the container.
    • renderToString(): renders a component and return a string.
    • renderToResponse(): renders a component and returns the Response emitted by the rendering phase.

    The first supported use of this new API is to enable unit testing. For example, with vitest, you can create a container to render your component with test data and check the result:

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import { expect, test } from 'vitest';
    import Card from '../src/components/Card.astro';
    test('Card with slots', async () => {
    const container = await AstroContainer.create();
    const result = await container.renderToString(Card, {
    slots: {
    default: 'Card content',
    },
    });

... (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.13.3` |
| [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.2.12` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.7.0` | `4.9.2` |



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.13.3
- [Release notes](https://github.com/florian-lefebvre/astro-integration-kit/releases)
- [Commits](https://github.com/florian-lefebvre/astro-integration-kit/compare/[email protected]@0.13.3)

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.2.12
- [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.2.12/packages/vite)

Updates `astro` from 4.7.0 to 4.9.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)

---
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-patch
  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 force-pushed the dependabot/npm_and_yarn/prod-dependencies-f6331bfb2c branch from 9981a3d to 4499db0 Compare June 3, 2024 08:38
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 3, 2024
Copy link

changeset-bot bot commented Jun 3, 2024

🦋 Changeset detected

Latest commit: a2fa06d

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 3, 2024

⚠️ No Changeset found

Latest commit: 4499db0

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