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-dev): bump the astro group with 3 updates #5408

Merged
merged 1 commit into from
Nov 11, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 11, 2023

Bumps the astro group with 3 updates: @astrojs/check, @astrojs/mdx and astro.

Updates @astrojs/check from 0.2.1 to 0.3.1

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.3.1

Patch Changes

  • ee41dce: Add support for TypeScript 5.3
  • 19217c4: Automatically flatten inferred unions from getStaticPaths into each other so that divergent props don't need to be manually discriminated before destructuring.
  • Updated dependencies [bd3d933]
  • Updated dependencies [ee41dce]
  • Updated dependencies [19217c4]
    • @​astrojs/language-server@​2.5.2

@​astrojs/check@​0.3.0

Minor Changes

  • f4402eb: Add intellisense for Astro.self, add auto inferring of props for getStaticPaths

Patch Changes

  • Updated dependencies [f4402eb]
    • @​astrojs/language-server@​2.5.0
Changelog

Sourced from @​astrojs/check's changelog.

0.3.1

Patch Changes

  • ee41dce: Add support for TypeScript 5.3
  • 19217c4: Automatically flatten inferred unions from getStaticPaths into each other so that divergent props don't need to be manually discriminated before destructuring.
  • Updated dependencies [bd3d933]
  • Updated dependencies [ee41dce]
  • Updated dependencies [19217c4]
    • @​astrojs/language-server@​2.5.2

0.3.0

Minor Changes

  • f4402eb: Add intellisense for Astro.self, add auto inferring of props for getStaticPaths

Patch Changes

  • Updated dependencies [f4402eb]
    • @​astrojs/language-server@​2.5.0
Commits

Updates @astrojs/mdx from 1.1.3 to 1.1.4

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​1.1.4

Patch Changes

  • Updated dependencies [c5010aad3]:
    • @​astrojs/markdown-remark@​3.4.0
Changelog

Sourced from @​astrojs/mdx's changelog.

1.1.4

Patch Changes

  • Updated dependencies [c5010aad3]:
    • @​astrojs/markdown-remark@​3.4.0
Commits

Updates astro from 3.4.0 to 3.5.2

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Minor Changes

  • #8869 f5bdfa272 Thanks @​matthewp! - ## Integration Hooks to add Middleware

    It's now possible in Astro for an integration to add middleware on behalf of the user. Previously when a third party wanted to provide middleware, the user would need to create a src/middleware.ts file themselves. Now, adding third-party middleware is as easy as adding a new integration.

    For integration authors, there is a new addMiddleware function in the astro:config:setup hook. This function allows you to specify a middleware module and the order in which it should be applied:

    // my-package/middleware.js
    import { defineMiddleware } from 'astro:middleware';
    export const onRequest = defineMiddleware(async (context, next) => {
    const response = await next();
    if (response.headers.get('content-type') === 'text/html') {
    let html = await response.text();
    html = minify(html);
    return new Response(html, {
    status: response.status,
    headers: response.headers,
    });
    }
    return response;
    });

    You can now add your integration's middleware and specify that it runs either before or after the application's own defined middleware (defined in src/middleware.{js,ts})

... (truncated)

Changelog

Sourced from astro's changelog.

3.5.2

Patch Changes

3.5.1

Patch Changes

3.5.0

Minor Changes

  • #8869 f5bdfa272 Thanks @​matthewp! - ## Integration Hooks to add Middleware

    It's now possible in Astro for an integration to add middleware on behalf of the user. Previously when a third party wanted to provide middleware, the user would need to create a src/middleware.ts file themselves. Now, adding third-party middleware is as easy as adding a new integration.

    For integration authors, there is a new addMiddleware function in the astro:config:setup hook. This function allows you to specify a middleware module and the order in which it should be applied:

    // my-package/middleware.js
    import { defineMiddleware } from 'astro:middleware';
    export const onRequest = defineMiddleware(async (context, next) => {
    const response = await next();
    if (response.headers.get('content-type') === 'text/html') {
    let html = await response.text();
    html = minify(html);
    return new Response(html, {
    status: response.status,
    headers: response.headers,
    });
    }
    return response;
    });

... (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 astro group with 3 updates: [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check), [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro).


Updates `@astrojs/check` from 0.2.1 to 0.3.1
- [Release notes](https://github.com/withastro/language-tools/releases)
- [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md)
- [Commits](https://github.com/withastro/language-tools/commits/@astrojs/[email protected]/packages/astro-check)

Updates `@astrojs/mdx` from 1.1.3 to 1.1.4
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/mdx)

Updates `astro` from 3.4.0 to 3.5.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: "@astrojs/check"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: astro
- dependency-name: "@astrojs/mdx"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: astro
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: astro
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link

netlify bot commented Nov 11, 2023

Deploy Preview for adminlte-v4 ready!

Name Link
🔨 Latest commit 7c1659b
🔍 Latest deploy log https://app.netlify.com/sites/adminlte-v4/deploys/654f26683e27a80007731b5d
😎 Deploy Preview https://deploy-preview-5408--adminlte-v4.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@danny007in danny007in merged commit c1f87a8 into master Nov 11, 2023
9 checks passed
@danny007in danny007in deleted the dependabot/npm_and_yarn/astro-cf48138640 branch November 11, 2023 14:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant