-
Notifications
You must be signed in to change notification settings - Fork 0
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
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/astro-integrations-and-adapters
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
Deploying astrosite with
|
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 |
97f91b8
to
3feec2f
Compare
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
3feec2f
to
c6f8b06
Compare
c6f8b06
to
a7db593
Compare
a7db593
to
9701d87
Compare
1a06a71
to
040e624
Compare
040e624
to
1f72381
Compare
1f72381
to
7d98742
Compare
7d98742
to
a69ff62
Compare
a69ff62
to
6030f0b
Compare
6030f0b
to
ac0e142
Compare
ac0e142
to
b848168
Compare
5797a87
to
141f25c
Compare
141f25c
to
68bb680
Compare
68bb680
to
3f2140b
Compare
3f2140b
to
611ecd3
Compare
611ecd3
to
80b9a82
Compare
80b9a82
to
9611456
Compare
9611456
to
a280fd9
Compare
a280fd9
to
f6e2b40
Compare
f6e2b40
to
bfc903c
Compare
bfc903c
to
3611e10
Compare
3611e10
to
48f2cbe
Compare
7fb8f0d
to
c22c6c3
Compare
c22c6c3
to
203d2cf
Compare
| 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 |
203d2cf
to
d580235
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
5.1.0
->5.1.5
7.7.2
->7.8.2
0.35.3
->0.40.1
1.1.0
->1.1.5
0.33.4
->0.33.5
Release Notes
withastro/astro (@astrojs/tailwind)
v5.1.5
Compare Source
Patch Changes
cf30880
Thanks @ascorbic! - Upgrades Vitev5.1.4
Compare Source
Patch Changes
739dbfb
Thanks @ascorbic! - Upgrades Vite to pin esbuildv5.1.3
Compare Source
Patch Changes
4f2fd0a
Thanks @Princesseuh! - Fixes compatibility with Astro 5v5.1.2
Compare Source
Patch Changes
8e500f2
Thanks @delucis! - Adds keywords topackage.json
to improve categorization in the Astro integrations catalogv5.1.1
Compare Source
Patch Changes
dcd1158
Thanks @matthewp! - Make @astrojs/tailwind compat with Astro 5withastro/adapters (@astrojs/vercel)
v7.8.2
Compare Source
Patch Changes
5b802a4
Thanks @hrabiel! - Fix excluding routes with rest parameters from ISRv7.8.1
Patch Changes
46fbb26
Thanks @matthewp! - Prevent crawling for dependencies outside of the workspace rootv7.8.0
Minor Changes
#11728
5ea02b1
Thanks @matthewp! - Deprecates thefunctionPerRoute
optionThis 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 18Using 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
ecf6ca1
: Removes unnecessary end padding from the first code line if the copy to clipboard button is disabled. Thank you @goulvenclech!ecf6ca1
]v0.40.0
Compare Source
Patch Changes
v0.39.0
Compare Source
Minor Changes
dc05ddc
: Adds new config optionshiki.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 optionshiki.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 optionremoveUnusedThemes
.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 optionshiki.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 usingmjs
in your code blocks as an alias for thejavascript
language.9149332
: Updates Shiki to the latest version (1.26.1).Patch Changes
9149332
]v0.38.3
Compare Source
Patch Changes
90b614e
: Makes the types used by theshiki.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.90b614e
]v0.38.2
Compare Source
Patch Changes
480361a
: Fixes an issue where the optionalgetBlockLocale
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 thegetBlockLocale
callback function now contains an additionalurl
property that will be set to the value ofAstro.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
andcwd
properties ifurl
is undefined.480361a
: Fixes an issue where thetabWidth
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 toastro-expressive-code
, which allows usingec.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
944dda0
]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
370a236
: Fixes type incompatibility with Astro v4.15. Thank you @delucis!v0.36.0
Compare Source
Minor Changes
bff1106
: Adds the experimentaltransformers
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
bff1106
]ca54f6e
]v0.35.6
Compare Source
Patch Changes
ffab5a5
: Hides the copy code button in case JavaScript is disabled. Thank you @imkunet!ffab5a5
]v0.35.5
Compare Source
Patch Changes
7f9b29e
: Fixes a Vite warning aboutemitFile()
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 thatemitFile
is only seen by Vite during build.v0.35.4
Compare Source
Patch Changes
876d24c
: Improves performance of client script managingtabindex
on code samples. Thanks @delucis!876d24c
]natemoo-re/astro-icon (astro-icon)
v1.1.5
Compare Source
Patch Changes
61d5da607914212b8c7895cbffb049512a289b5a
Thanks @maxchang3! - Fix icon reloading logic to only trigger for relevant file changesv1.1.4
Compare Source
Patch Changes
41218facd06f51a63d75cccb80c3745c256ec99f
Thanks @harukats! - Fixes type definitions and hash calculation for aliased icon namesv1.1.2
Compare Source
Patch Changes
#247
fce07f17fe67116165d5d3dd279519bb7bbed55c
Thanks @christina-de-martinez! - Adds adesc
prop shorthand which maps to the SVG<desc>
tag, similar totitle
.#246
4c5da3378436c2bee6ccdf4ad9cf0e1f32fb6903
Thanks @stramel! - Fixes an issue whereviewBox
was not correctly passed to<symbol>
elements#245
ff3a66a8a357375076022b6f9800561ed845c071
Thanks @stramel! - Fixes handling of duplicate icon entries in the integration configuration#243
a8c0a6c5fe2a01841c258af5fb3abe04839df5eb
Thanks @stramel! - Replaces deprecatedxlink:href
attribute with standardhref
attributev1.1.1
Compare Source
Patch Changes
#219
f18661fc47da152e7555d24b23143f0b481c852b
Thanks @Harry-Ross! - Added better typings for height, width and size to accept non-number values (i.e. 2 rem)#203
a4ff8736965214e16ce0b72364f43b3a4973f281
Thanks @natemoo-re! - Fixes an issue where collections would not be updated when the dev server was automatically restarted#230
7b11f6b0fb8977bfa35305f48ce70e9bc04ea07a
Thanks @frankievalentine! - Fixes a type definition issue caused by outdated dependencylovell/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.
This PR was generated by Mend Renovate. View the repository job log.