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

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 10, 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.13
astro 4.7.0 4.10.1

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

Changelog

Sourced from vite's changelog.

5.2.13 (2024-06-07)

5.2.12 (2024-05-28)

5.2.11 (2024-05-02)

Commits

Updates astro from 4.7.0 to 4.10.1

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

[email protected]

Minor Changes

  • #10974 2668ef9 Thanks @​florian-lefebvre! - Adds experimental support for the astro:env API.

    The astro:env API lets you configure a type-safe schema for your environment variables, and indicate whether they should be available on the server or the client. Import and use your defined variables from the appropriate /client or /server module:

    ---
    import { PUBLIC_APP_ID } from 'astro:env/client';
    import { PUBLIC_API_URL, getSecret } from 'astro:env/server';
    const API_TOKEN = getSecret('API_TOKEN');
    const data = await fetch(${PUBLIC_API_URL}/users, {
    method: 'POST',
    headers: {
    'Content-Type': 'application/json',
    Authorization: Bearer ${API_TOKEN},
    },
    body: JSON.stringify({ appId: PUBLIC_APP_ID }),
    });

    To define the data type and properties of your environment variables, declare a schema in your Astro config in experimental.env.schema. The envField helper allows you define your variable as a string, number, or boolean and pass properties in an object:

    // astro.config.mjs
    import { defineConfig, envField } from 'astro/config';
    export default defineConfig({
    experimental: {
    env: {
    schema: {
    PUBLIC_API_URL: envField.string({ context: 'client', access: 'public', optional: true }),
    PUBLIC_PORT: envField.number({ context: 'server', access: 'public', default: 4321 }),
    API_SECRET: envField.string({ context: 'server', access: 'secret' }),
    },
    },

... (truncated)

Changelog

Sourced from astro's changelog.

4.10.1

Patch Changes

4.10.0

Minor Changes

  • #10974 2668ef9 Thanks @​florian-lefebvre! - Adds experimental support for the astro:env API.

    The astro:env API lets you configure a type-safe schema for your environment variables, and indicate whether they should be available on the server or the client. Import and use your defined variables from the appropriate /client or /server module:

    ---
    import { PUBLIC_APP_ID } from 'astro:env/client';
    import { PUBLIC_API_URL, getSecret } from 'astro:env/server';
    const API_TOKEN = getSecret('API_TOKEN');
    const data = await fetch(${PUBLIC_API_URL}/users, {
    method: 'POST',
    headers: {
    'Content-Type': 'application/json',
    Authorization: Bearer ${API_TOKEN},
    },
    body: JSON.stringify({ appId: PUBLIC_APP_ID }),
    });

    To define the data type and properties of your environment variables, declare a schema in your Astro config in experimental.env.schema. The envField helper allows you define your variable as a string, number, or boolean and pass properties in an object:

    // astro.config.mjs
    import { defineConfig, envField } from 'astro/config';
    export default defineConfig({
    experimental: {
    env: {
    schema: {
    PUBLIC_API_URL: envField.string({ context: 'client', access: 'public', optional: true }),
    PUBLIC_PORT: envField.number({ context: 'server', access: 'public', default: 4321 }),
    API_SECRET: envField.string({ context: 'server', access: 'secret' }),

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



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.13
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.2.13/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.2.13/packages/vite)

Updates `astro` from 4.7.0 to 4.10.1
- [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 added the dependencies Pull requests that update a dependency file label Jun 10, 2024
Copy link

changeset-bot bot commented Jun 10, 2024

🦋 Changeset detected

Latest commit: 8f60b4b

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

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