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): update astro, integrations, and adapters #513

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 20, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/tailwind (source) 5.1.0 -> 5.1.5 age adoption passing confidence
@astrojs/vercel (source) 7.7.2 -> 7.8.2 age adoption passing confidence
astro-expressive-code (source) 0.35.3 -> 0.40.1 age adoption passing confidence
astro-icon (source) 1.1.0 -> 1.1.5 age adoption passing confidence
sharp (source, changelog) 0.33.4 -> 0.33.5 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/tailwind)

v5.1.5

Compare Source

Patch Changes

v5.1.4

Compare Source

Patch Changes

v5.1.3

Compare Source

Patch Changes

v5.1.2

Compare Source

Patch Changes

v5.1.1

Compare Source

Patch Changes
withastro/adapters (@​astrojs/vercel)

v7.8.2

Compare Source

Patch Changes

v7.8.1

Patch Changes

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

expressive-code/expressive-code (astro-expressive-code)

v0.40.1

Compare Source

Patch Changes

v0.40.0

Compare Source

Patch Changes

v0.39.0

Compare Source

Minor Changes
  • dc05ddc: Adds new config option shiki.engine.

    Allows selecting the Shiki RegExp engine to be used for syntax highlighting. The following options are available:

    • 'oniguruma': The default engine that supports all grammars, but requires a target environment with WebAssembly (WASM) support.
    • 'javascript': A pure JavaScript engine that does not require WASM. The Shiki team is continuously improving this engine and aims for full compatibility with the Oniguruma engine. Use this engine if your target environment does not support WASM.
  • 9149332: Adds new config option shiki.bundledLangs.

    Allows defining a subset of language IDs from the full Shiki bundle that should be available for syntax highlighting.

    In server-side rendering (SSR) environments, setting this option to the languages used on your site can reduce bundle size by up to 80%.

    If this option is not set, all languages from the full Shiki bundle are available.

  • dc05ddc: Adds new config option removeUnusedThemes.

    In Astro and Starlight, Expressive Code now automatically removes any themes from the bundle that are not used by your themes configuration. This reduces the SSR bundle size by over 1 MB.

    This new optimization is enabled by default and does not need to be configured for most sites. If you have an advanced use case that requires access all bundled themes, you can set this option to false.

  • dc05ddc: Adds new config option shiki.langAlias.

    Allows defining alias names for languages. The keys are the alias names, and the values are the language IDs to which they should resolve.

    The values can either be bundled languages, or additional languages defined in shiki.langs.

    For example, setting langAlias: { mjs: 'javascript' } allows using mjs in your code blocks as an alias for the javascript language.

  • 9149332: Updates Shiki to the latest version (1.26.1).

Patch Changes

v0.38.3

Compare Source

Patch Changes
  • 90b614e: Makes the types used by the shiki.langs config option less strict to align them better with actual grammars found in the wild. This attempts to reduce the amount of type errors that occurred before when using external grammars, while still being supported by the language processing code.
  • Updated dependencies [90b614e]

v0.38.2

Compare Source

Patch Changes
  • 480361a: Fixes an issue where the optional getBlockLocale callback function was not called when using the <Code> component. Thank you @​HiDeoo!

    As the parent document's source file path is not available from an Astro component, the file property passed to the getBlockLocale callback function now contains an additional url property that will be set to the value of Astro.url in this case.

    When determining the locale of a code block, it is recommended to use this new property first, and only fall back to the existing path and cwd properties if url is undefined.

  • 480361a: Fixes an issue where the tabWidth setting was not applied when using the <Code> component. Thank you @​mrchantey!

  • Updated dependencies [480361a]

v0.38.1

Compare Source

Patch Changes

v0.38.0

Compare Source

Minor Changes
  • 944dda0: Updates Shiki to the latest version (1.22.2).

  • b6638f9: Adds config merging functionality to astro-expressive-code, which allows using ec.config.mjs together with other configuration sources like the Astro / Starlight config or Starlight themes.

    Options defined in ec.config.mjs have the highest priority and will override any corresponding values coming from other configuration sources.

    For the following object options, a deep merge is performed instead of a simple override:

    • defaultProps
    • frames
    • shiki
    • styleOverrides

    The following array options are concatenated instead of being replaced:

    • shiki.langs
Patch Changes

v0.37.1

Compare Source

Patch Changes

v0.37.0

Compare Source

Minor Changes
  • f07fc81: Updates peer dependency range to support Astro 5.
Patch Changes

v0.36.1

Compare Source

Patch Changes

v0.36.0

Compare Source

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

v0.35.6

Compare Source

Patch Changes

v0.35.5

Compare Source

Patch Changes
  • 7f9b29e: Fixes a Vite warning about emitFile() usage. Thank you @​evadecker and @​alexanderniebuhr!

    To avoid this warning from being incorrectly triggered, the Vite plugin internally used by astro-expressive-code has now been split into two separate plugins, making sure that emitFile is only seen by Vite during build.

v0.35.4

Compare Source

Patch Changes
natemoo-re/astro-icon (astro-icon)

v1.1.5

Compare Source

Patch Changes

v1.1.4

Compare Source

Patch Changes

v1.1.2

Compare Source

Patch Changes

v1.1.1

Compare Source

Patch Changes
lovell/sharp (sharp)

v0.33.5

Compare Source


Configuration

📅 Schedule: Branch creation - "every 2 weeks on friday at 8pm" in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 20, 2024
Copy link

codesandbox bot commented Jul 20, 2024

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

Copy link

cloudflare-workers-and-pages bot commented Jul 20, 2024

Deploying astrosite with  Cloudflare Pages  Cloudflare Pages

Latest commit: 97f91b8
Status: ✅  Deploy successful!
Preview URL: https://1603e870.astrosite-aid.pages.dev
Branch Preview URL: https://renovate-astro-integrations.astrosite-aid.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch 2 times, most recently from 97f91b8 to 3feec2f Compare July 22, 2024 01:55
Copy link

vercel bot commented Jul 22, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
astro-portfolio-site ❌ Failed (Inspect) Feb 8, 2025 4:29am

@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 3feec2f to c6f8b06 Compare July 22, 2024 03:15
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from c6f8b06 to a7db593 Compare July 25, 2024 17:51
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from a7db593 to 9701d87 Compare July 26, 2024 23:04
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch 3 times, most recently from 1a06a71 to 040e624 Compare July 26, 2024 23:11
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 040e624 to 1f72381 Compare July 27, 2024 00:48
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 1f72381 to 7d98742 Compare July 30, 2024 19:53
@renovate renovate bot changed the title chore(deps): update astro to v4.12.2 chore(deps): update astro, integrations, and adapters Jul 30, 2024
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 7d98742 to a69ff62 Compare July 31, 2024 03:30
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from a69ff62 to 6030f0b Compare August 1, 2024 14:42
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 6030f0b to ac0e142 Compare August 2, 2024 17:16
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from ac0e142 to b848168 Compare August 8, 2024 12:37
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 5797a87 to 141f25c Compare November 27, 2024 16:18
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 141f25c to 68bb680 Compare December 3, 2024 16:56
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 68bb680 to 3f2140b Compare December 5, 2024 19:34
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 3f2140b to 611ecd3 Compare December 18, 2024 14:36
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 611ecd3 to 80b9a82 Compare December 20, 2024 13:02
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 80b9a82 to 9611456 Compare December 27, 2024 01:01
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 9611456 to a280fd9 Compare January 3, 2025 06:01
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from a280fd9 to f6e2b40 Compare January 10, 2025 15:32
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from f6e2b40 to bfc903c Compare January 13, 2025 13:55
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from bfc903c to 3611e10 Compare January 19, 2025 09:18
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 3611e10 to 48f2cbe Compare January 20, 2025 21:46
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch 2 times, most recently from 7fb8f0d to c22c6c3 Compare January 25, 2025 06:17
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from c22c6c3 to 203d2cf Compare February 8, 2025 04:08
| datasource | package               | from   | to     |
| ---------- | --------------------- | ------ | ------ |
| npm        | @astrojs/tailwind     | 5.1.0  | 5.1.5  |
| npm        | @astrojs/vercel       | 7.7.2  | 7.8.2  |
| npm        | astro-expressive-code | 0.35.3 | 0.40.1 |
| npm        | astro-icon            | 1.1.0  | 1.1.5  |
| npm        | sharp                 | 0.33.4 | 0.33.5 |
@renovate renovate bot force-pushed the renovate/astro-integrations-and-adapters branch from 203d2cf to d580235 Compare February 8, 2025 04:28
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