AVGVSTVS96 / astroSite

Built with Astro and TailwindCSS, this MPA portfolio & blog site is version 3 of my personal website, my first MPA.
https://astrosite-aid.pages.dev/
GNU Affero General Public License v3.0
0 stars 0 forks source link

Bump the astro group across 1 directory with 4 updates #377

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the astro group with 4 updates in the / directory: @astrojs/check, astro, astro-expressive-code and sharp.

Updates @astrojs/check from 0.5.10 to 0.7.0

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.7.0

Minor Changes

  • c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [c8af6db]
    • @​astrojs/language-server@​2.10.0

@​astrojs/check@​0.6.0

Minor Changes

  • 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [65d3425]
    • @​astrojs/language-server@​2.9.0
Changelog

Sourced from @​astrojs/check's changelog.

0.7.0

Minor Changes

  • c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [c8af6db]
    • @​astrojs/language-server@​2.10.0

0.6.0

Minor Changes

  • 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [65d3425]
    • @​astrojs/language-server@​2.9.0
Commits


Updates astro from 4.6.1 to 4.9.1

Release notes

Sourced from astro's releases.

astro@4.9.1

Patch Changes

astro@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', }, });

    expect(result).toContain('This is a card'); expect(result).toContain('Card content'); });

    For a complete reference, see the Container API docs.

    For a feature overview, and to give feedback on this experimental API, see the Container API roadmap discussion.

  • #11021 2d4c8fa Thanks @​ematipico! - The CSRF protection feature that was introduced behind a flag in v4.6.0 is no longer experimental and is available for general use.

    To enable the stable version, add the new top-level security option in astro.config.mjs. If you were previously using the experimental version of this feature, also delete the experimental flag:

    export default defineConfig({
    -  experimental: {
    -    security: {
    -      csrfProtection: {
    -        origin: true
    

... (truncated)

Changelog

Sourced from astro's changelog.

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', }, });

    expect(result).toContain('This is a card'); expect(result).toContain('Card content'); });

    For a complete reference, see the Container API docs.

    For a feature overview, and to give feedback on this experimental API, see the Container API roadmap discussion.

  • #11021 2d4c8fa Thanks @​ematipico! - The CSRF protection feature that was introduced behind a flag in v4.6.0 is no longer experimental and is available for general use.

    To enable the stable version, add the new top-level security option in astro.config.mjs. If you were previously using the experimental version of this feature, also delete the experimental flag:

    export default defineConfig({
    -  experimental: {
    -    security: {
    

... (truncated)

Commits


Updates astro-expressive-code from 0.35.0 to 0.35.3

Release notes

Sourced from astro-expressive-code's releases.

astro-expressive-code@0.35.3

Patch Changes

  • rehype-expressive-code@0.35.3

astro-expressive-code@0.35.2

Patch Changes

  • dd54846: Fixes text marker labels including special characters like \ by properly escaping CSS variable contents. Thank you @​stancl!
  • Updated dependencies [dd54846]
    • rehype-expressive-code@0.35.2

astro-expressive-code@0.35.1

Patch Changes

  • Updated dependencies [389c098]
    • rehype-expressive-code@0.35.1
Changelog

Sourced from astro-expressive-code's changelog.

0.35.3

Patch Changes

  • rehype-expressive-code@0.35.3

0.35.2

Patch Changes

  • dd54846: Fixes text marker labels including special characters like \ by properly escaping CSS variable contents. Thank you @​stancl!
  • Updated dependencies [dd54846]
    • rehype-expressive-code@0.35.2

0.35.1

Patch Changes

  • Updated dependencies [389c098]
    • rehype-expressive-code@0.35.1
Commits


Updates sharp from 0.33.3 to 0.33.4

Changelog

Sourced from sharp's changelog.

v0.33.4 - 16th May 2024

  • Remove experimental status from pipelineColourspace.

  • Reduce default concurrency when musl thread over-subscription detected.

  • TypeScript: add missing definitions for OverlayOptions. #4048 @​ike-gg

  • Install: add advanced option to force use of a globally-installed libvips. #4060

  • Expose bilinear resizing kernel (and interpolator). #4061

  • Ensure extend operation stays sequential for multi-page TIFF (regression in 0.32.0). #4069

  • Tighten validation of constructor text integer properties. #4071

  • Simplify internal StaySequential logic. #4074 @​kleisauke

  • Ensure negate operation occurs after profile conversion. #4096 @​adriaanmeuris

Commits
  • 19d0e27 Release v0.33.4
  • 16b764f Prerelease v0.33.4-rc.0
  • 1593ee3 Bump devDeps
  • 668b5ba Docs: changelog and credit for #4096
  • 29336f4 Ensure negate op occurs after profile conversion (#4096)
  • b5fddd7 Install: log node-addon-api version if available
  • da655a1 Reduce default concurrency for musl thread over-subscription
  • 93c615d Bump devDeps
  • f325dc3 Refactor to use C++ boolean literals rather than macros
  • 0fde71c Ensure all contributor email addresses are valid (#4088)
  • Additional commits viewable in compare view


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
codesandbox[bot] commented 4 months ago

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders
Open Preview

cloudflare-workers-and-pages[bot] commented 4 months ago

Deploying astrosite with  Cloudflare Pages  Cloudflare Pages

Latest commit: fe047d0
Status:🚫  Build failed.

View logs

dependabot[bot] commented 4 months ago

Superseded by #386.