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

fix(deps): update js/ts dependencies (major) #59

Merged
merged 1 commit into from
Feb 3, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 9, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/mdx (source) ^1.1.5 -> ^2.1.1 age adoption passing confidence
@astrojs/rss (source) ^3.0.0 -> ^4.0.4 age adoption passing confidence
astro (source) ^3.6.4 -> ^4.2.8 age adoption passing confidence
markdown-it ^13.0.2 -> ^14.0.0 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/mdx)

v2.1.1

Compare Source

Patch Changes

v2.1.0

Compare Source

Minor Changes

v2.0.6

Compare Source

Patch Changes

v2.0.5

Compare Source

Patch Changes

v2.0.4

Compare Source

Patch Changes

v2.0.3

Compare Source

Patch Changes

v2.0.2

Compare Source

Patch Changes

v2.0.1

Compare Source

Patch Changes

v2.0.0

Compare Source

Major Changes
  • #​9138 abf601233 Thanks @​bluwy! - Updates the unified, remark, and rehype dependencies to latest. Make sure to update your custom remark and rehype plugins as well to be compatible with the latest versions.

    Potentially breaking change: The default value of markdown.remarkRehype.footnoteBackLabel is changed from "Back to content" to "Back to reference 1". See the mdast-util-to-hast commit for more information.

Patch Changes
withastro/astro (@​astrojs/rss)

v4.0.4

Compare Source

Patch Changes

v4.0.3

Compare Source

Patch Changes

v4.0.2

Compare Source

Patch Changes

v4.0.1

Compare Source

Patch Changes
  • #​9299 edfae50e6 Thanks @​cdvillard! - Improves the @astrojs/rss error message thrown when the object passed to the items property is missing any of the three required keys or if one of those keys is mistyped.

v4.0.0

Compare Source

Major Changes
withastro/astro (astro)

v4.2.8

Compare Source

Patch Changes

v4.2.7

Compare Source

Patch Changes

v4.2.6

Compare Source

Patch Changes

v4.2.5

Compare Source

Patch Changes

v4.2.4

Compare Source

Patch Changes

v4.2.3

Compare Source

Patch Changes

v4.2.2

Compare Source

Patch Changes

v4.2.1

Compare Source

Patch Changes

v4.2.0

Compare Source

Minor Changes
  • #​9566 165cfc154be477337037185c32b308616d1ed6fa Thanks @​OliverSpeir! - Allows remark plugins to pass options specifying how images in .md files will be optimized

  • #​9661 d6edc7540864cf5d294d7b881eb886a3804f6d05 Thanks @​ematipico! - Adds new helper functions for adapter developers.

    • Astro.clientAddress can now be passed directly to the app.render() method.
    const response = await app.render(request, { clientAddress: '012.123.23.3' });
    • Helper functions for converting Node.js HTTP request and response objects to web-compatible Request and Response objects are now provided as static methods on the NodeApp class.
    http.createServer((nodeReq, nodeRes) => {
      const request: Request = NodeApp.createRequest(nodeReq);
      const response = await app.render(request);
      await NodeApp.writeResponse(response, nodeRes);
    });
    • Cookies added via Astro.cookies.set() can now be automatically added to the Response object by passing the addCookieHeader option to app.render().
    -const response = await app.render(request)
    -const setCookieHeaders: Array<string> = Array.from(app.setCookieHeaders(webResponse));
    
    -if (setCookieHeaders.length) {
    -    for (const setCookieHeader of setCookieHeaders) {
    -        headers.append('set-cookie', setCookieHeader);
    -    }
    -}
    +const response = await app.render(request, { addCookieHeader: true })
  • #​9638 f1a61268061b8834f39a9b38bca043ae41caed04 Thanks @​ematipico! - Adds a new i18n.routing config option redirectToDefaultLocale to disable automatic redirects of the root URL (/) to the default locale when prefixDefaultLocale: true is set.

    In projects where every route, including the default locale, is prefixed with /[locale]/ path, this property allows you to control whether or not src/pages/index.astro should automatically redirect your site visitors from / to /[defaultLocale].

    You can now opt out of this automatic redirection by setting redirectToDefaultLocale: false:

    // astro.config.mjs
    export default defineConfig({
      i18n: {
        defaultLocale: 'en',
        locales: ['en', 'fr'],
        routing: {
          prefixDefaultLocale: true,
          redirectToDefaultLocale: false,
        },
      },
    });
  • #​9671 8521ff77fbf7e867701cc30d18253856914dbd1b Thanks @​bholmesdev! - Removes the requirement for non-content files and assets inside content collections to be prefixed with an underscore. For files with extensions like .astro or .css, you can now remove underscores without seeing a warning in the terminal.

    src/content/blog/
    post.mdx
    - _styles.css
    - _Component.astro
    + styles.css
    + Component.astro

    Continue to use underscores in your content collections to exclude individual content files, such as drafts, from the build output.

  • #​9567 3a4d5ec8001ebf95c917fdc0d186d29650533d93 Thanks @​OliverSpeir! - Improves the a11y-missing-content rule and error message for audit feature of dev-overlay. This also fixes an error where this check was falsely reporting accessibility errors.

  • #​9643 e9a72d9a91a3741566866bcaab11172cb0dc7d31 Thanks @​blackmann! - Adds a new markdown.shikiConfig.transformers config option. You can use this option to transform the Shikiji hast (AST format of the generated HTML) to customize the final HTML. Also updates Shikiji to the latest stable version.

    See Shikiji's documentation for more details about creating your own custom transformers, and a list of common transformers you can add directly to your project.

  • #​9644 a5f1682347e602330246129d4666a9227374c832 Thanks @​rossrobino! - Adds an experimental flag clientPrerender to prerender your prefetched pages on the client with the Speculation Rules API.

    // astro.config.mjs
    {
      prefetch: {
        prefetchAll: true,
        defaultStrategy: 'viewport',
      },
      experimental: {
        clientPrerender: true,
      },
    }

    Enabling this feature overrides the default prefetch behavior globally to prerender links on the client according to your prefetch configuration. Instead of appending a <link> tag to the head of the document or fetching the page with JavaScript, a <script> tag will be appended with the corresponding speculation rules.

    Client side prerendering requires browser support. If the Speculation Rules API is not supported, prefetch will fallback to the supported strategy.

    See the Prefetch Guide for more prefetch options and usage.

  • #​9439 fd17f4a40b83d14350dce691aeb79d87e8fcaf40 Thanks @​Fryuni! - Adds an experimental flag globalRoutePriority to prioritize redirects and injected routes equally alongside file-based project routes, following the same route priority order rules for all routes.

    // astro.config.mjs
    export default defineConfig({
      experimental: {
        globalRoutePriority: true,
      },
    });

    Enabling this feature ensures that all routes in your project follow the same, predictable route priority order rules. In particular, this avoids an issue where redirects or injected routes (e.g. from an integration) would always take precedence over local route definitions, making it impossible to override some routes locally.

    The following table shows which route builds certain page URLs when file-based routes, injected routes, and redirects are combined as shown below:

    • File-based route: /blog/post/[pid]
    • File-based route: /[page]
    • Injected route: /blog/[...slug]
    • Redirect: /blog/tags/[tag] -> /[tag]
    • Redirect: /posts -> /blog

    URLs are handled by the following routes:

    Page Current Behavior Global Routing Priority Behavior
    /blog/tags/astro Injected route /blog/[...slug] Redirect to /tags/[tag]
    /blog/post/0 Injected route /blog/[...slug] File-based route /blog/post/[pid]
    /posts File-based route /[page] Redirect to /blog

    In the event of route collisions, where two routes of equal route priority attempt to build the same URL, Astro will log a warning identifying the conflicting routes.

Patch Changes

v4.1.3

Compare Source

Patch Changes

v4.1.2

Compare Source

Patch Changes

v4.1.1

Compare Source

Patch Changes

v4.1.0

Compare Source

Minor Changes

v4.0.9

Compare Source

Patch Changes

v4.0.8

Compare Source

Patch Changes

v4.0.7

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "every 2 day" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests related to dependencies label Dec 9, 2023
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch 5 times, most recently from 3653a21 to e1de5c0 Compare December 15, 2023 03:54
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch 5 times, most recently from ed6cef5 to fa76cb7 Compare December 23, 2023 18:03
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch 3 times, most recently from 695b3ce to bb4564d Compare December 31, 2023 11:30
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch 5 times, most recently from 1ee16ae to 7c68ce9 Compare January 12, 2024 03:33
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from 7c68ce9 to f1026e0 Compare January 13, 2024 07:29
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from f1026e0 to 8b877ab Compare January 14, 2024 11:11
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from 8b877ab to 0edb1e2 Compare January 19, 2024 06:28
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from 0edb1e2 to c1829dd Compare January 19, 2024 13:30
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from c1829dd to d376572 Compare January 21, 2024 13:45
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from d376572 to 6f0056b Compare January 21, 2024 22:11
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from 6f0056b to 313047d Compare January 25, 2024 22:19
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from 313047d to 16587a0 Compare January 26, 2024 00:15
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from 16587a0 to afbaaa9 Compare January 27, 2024 03:19
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from afbaaa9 to 7d3f8b9 Compare January 29, 2024 14:10
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from 7d3f8b9 to f159ff9 Compare January 30, 2024 00:53
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from f159ff9 to 5e380f5 Compare February 2, 2024 16:37
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from 5e380f5 to b6e6d23 Compare February 3, 2024 14:13
@renovate renovate bot force-pushed the renovate/major-jsts-dependencies branch from b6e6d23 to ab01568 Compare February 3, 2024 15:08
@AlexTMjugador AlexTMjugador merged commit 80a9a04 into master Feb 3, 2024
10 checks passed
@renovate renovate bot deleted the renovate/major-jsts-dependencies branch February 3, 2024 15:13
AlexTMjugador pushed a commit that referenced this pull request Feb 20, 2024
Co-authored-by: renovate[bot] <29139614+renovate[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 related to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant