Update dependency astro to v3.3.4 #5

Merged
jahanson merged 1 commit from renovate/astro-3.x-lockfile into main 2023-10-25 14:25:57 -05:00
Collaborator

This PR contains the following updates:

Package Type Update Change
astro (source) dependencies minor 3.1.0 -> 3.3.4

Release Notes

withastro/astro (astro)

v3.3.4

Compare Source

Patch Changes

v3.3.3

Compare Source

Patch Changes

v3.3.2

Compare Source

Patch Changes

v3.3.1

Compare Source

Patch Changes

v3.3.0

Compare Source

Minor Changes
  • #​8808 2993055be Thanks @​delucis! - Adds support for an --outDir CLI flag to astro build

  • #​8502 c4270e476 Thanks @​bluwy! - Updates the internal shiki syntax highlighter to shikiji, an ESM-focused alternative that simplifies bundling and maintenance.

    There are no new options and no changes to how you author code blocks and syntax highlighting.

    Potentially breaking change: While this refactor should be transparent for most projects, the transition to shikiji now produces a smaller HTML markup by attaching a fallback color style to the pre or code element, instead of to the line span directly. For example:

    Before:

    <code class="astro-code" style="background-color: #&#8203;24292e">
      <pre>
        <span class="line" style="color: #e1e4e8">my code</span>
      </pre>
    </code>
    

    After:

    <code class="astro-code" style="background-color: #&#8203;24292e; color: #e1e4e8">
      <pre>
        <span class="line">my code<span>
      </pre>
    </code>
    

    This does not affect the colors as the span will inherit the color from the parent, but if you're relying on a specific HTML markup, please check your site carefully after upgrading to verify the styles.

  • #​8798 f369fa250 Thanks @​Princesseuh! - Fixed tsconfig.json's new array format for extends not working. This was done by migrating Astro to use tsconfck instead of tsconfig-resolver to find and parse tsconfig.json files.

  • #​8620 b2ae9ee0c Thanks @​Princesseuh! - Adds experimental support for generating srcset attributes and a new <Picture /> component.

v3.2.4

Compare Source

Patch Changes

v3.2.3

Compare Source

Patch Changes

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes
  • #​8696 2167ffd72 Thanks @​matthewp! - Support adding integrations dynamically

    Astro integrations can now themselves dynamically add and configure additional integrations during set-up. This makes it possible for integration authors to bundle integrations more intelligently for their users.

    In the following example, a custom integration checks whether @astrojs/sitemap is already configured. If not, the integration adds Astro’s sitemap integration, passing any desired configuration options:

    import sitemap from '@&#8203;astrojs/sitemap';
    import type { AstroIntegration } from 'astro';
    
    const MyIntegration = (): AstroIntegration => {
      return {
        name: 'my-integration',
    
        'astro:config:setup': ({ config, updateConfig }) => {
          // Look for sitemap in user-configured integrations.
          const userSitemap = config.integrations.find(
            ({ name }) => name === '@&#8203;astrojs/sitemap'
          );
    
          if (!userSitemap) {
            // If sitemap wasn’t found, add it.
            updateConfig({
              integrations: [sitemap({ /* opts */ }],
            });
          }
        },
      };
    };
    
  • #​8696 2167ffd72 Thanks @​matthewp! - View transitions can now be triggered from JavaScript!

    Import the client-side router from "astro:transitions/client" and enjoy your new remote control for navigation:

    import { navigate } from 'astro:transitions/client';
    
    // Navigate to the selected option automatically.
    document.querySelector('select').onchange = (ev) => {
      let href = ev.target.value;
      navigate(href);
    };
    
  • #​8696 2167ffd72 Thanks @​matthewp! - Route Announcer in <ViewTransitions />

    The View Transitions router now does route announcement. When transitioning between pages with a traditional MPA approach, assistive technologies will announce the page title when the page finishes loading. This does not automatically happen during client-side routing, so visitors relying on these technologies to announce routes are not aware when a page has changed.

    The view transitions route announcer runs after the astro:page-load event, looking for the page <title> to announce. If one cannot be found, the announcer falls back to the first <h1> it finds, or otherwise announces the pathname. We recommend you always include a <title> in each page for accessibility.

    See the View Transitions docs for more on how accessibility is handled.

Patch Changes

v3.1.4

Compare Source

Patch Changes

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes

v3.1.1

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [astro](https://astro.build) ([source](https://github.com/withastro/astro)) | dependencies | minor | [`3.1.0` -> `3.3.4`](https://renovatebot.com/diffs/npm/astro/3.1.0/3.3.4) | --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v3.3.4`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#334) [Compare Source](https://github.com/withastro/astro/compare/astro@3.3.3...astro@3.3.4) ##### Patch Changes - [#&#8203;8877](https://github.com/withastro/astro/pull/8877) [`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fixes CSS modules ordering by rendering styles before links - Updated dependencies \[[`341ef6578`](https://github.com/withastro/astro/commit/341ef6578528a00f89bf6da5e4243b0fde272816)]: - [@&#8203;astrojs/telemetry](https://github.com/astrojs/telemetry)[@&#8203;3](https://github.com/3).0.4 ### [`v3.3.3`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#333) [Compare Source](https://github.com/withastro/astro/compare/astro@3.3.2...astro@3.3.3) ##### Patch Changes - [#&#8203;8870](https://github.com/withastro/astro/pull/8870) [`5ea6ee0ed`](https://github.com/withastro/astro/commit/5ea6ee0ed494c792a4c94928a83c5c85b9b6ac32) Thanks [@&#8203;xstevenyung](https://github.com/xstevenyung)! - prevent production install on astro add cmd - [#&#8203;8840](https://github.com/withastro/astro/pull/8840) [`5c888c10b`](https://github.com/withastro/astro/commit/5c888c10b712ca60a23e66b88af8051b54b42323) Thanks [@&#8203;martrapp](https://github.com/martrapp)! - Fixes styles of `client:only` components not persisting during view transitions in dev mode - [#&#8203;8814](https://github.com/withastro/astro/pull/8814) [`ad2bb9155`](https://github.com/withastro/astro/commit/ad2bb9155997380d0880b0c6c7b12f079a031d48) Thanks [@&#8203;lilnasy](https://github.com/lilnasy)! - Fix an issue where `500.astro` did not render when the middleware threw an error. - [#&#8203;8863](https://github.com/withastro/astro/pull/8863) [`326e17893`](https://github.com/withastro/astro/commit/326e178933f7a22f4e897b763832619f168b53dd) Thanks [@&#8203;florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes an issue where the dev server logged the full file path on updates. ### [`v3.3.2`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#332) [Compare Source](https://github.com/withastro/astro/compare/astro@3.3.1...astro@3.3.2) ##### Patch Changes - [#&#8203;8852](https://github.com/withastro/astro/pull/8852) [`2c18e2d12`](https://github.com/withastro/astro/commit/2c18e2d127516c2130cf50369885a30af0190d58) Thanks [@&#8203;rayriffy](https://github.com/rayriffy)! - Only use Vite config from astro.config.mjs as source of truth - [#&#8203;8828](https://github.com/withastro/astro/pull/8828) [`11f45b9a3`](https://github.com/withastro/astro/commit/11f45b9a3216f60317e1c54bb3e6c4e9e0add342) Thanks [@&#8203;rishi-raj-jain](https://github.com/rishi-raj-jain)! - fix file system path references - [#&#8203;8779](https://github.com/withastro/astro/pull/8779) [`2b8a459a6`](https://github.com/withastro/astro/commit/2b8a459a6ae82c7a1d278ef263e316841295e7d6) Thanks [@&#8203;ematipico](https://github.com/ematipico)! - Enriches the explanation of the `base` configuration with examples. ### [`v3.3.1`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#331) [Compare Source](https://github.com/withastro/astro/compare/astro@3.3.0...astro@3.3.1) ##### Patch Changes - [#&#8203;8823](https://github.com/withastro/astro/pull/8823) [`8946f2a25`](https://github.com/withastro/astro/commit/8946f2a256edf1aca6a7bb0db1f6ea9ce9493253) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Fix duplicate images being created in some cases when using densities and/or widths - [#&#8203;8842](https://github.com/withastro/astro/pull/8842) [`b405b039a`](https://github.com/withastro/astro/commit/b405b039a6824590e4ad63605f19f0925b4b88ce) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Fixes Picture component not taking into account the fallback format specified - [#&#8203;8827](https://github.com/withastro/astro/pull/8827) [`ce3025cfa`](https://github.com/withastro/astro/commit/ce3025cfa27a38199f81fb783a68fe1190c1d09e) Thanks [@&#8203;rishi-raj-jain](https://github.com/rishi-raj-jain)! - better error handling there whenever we don't get a normal 200 response - [#&#8203;8817](https://github.com/withastro/astro/pull/8817) [`f8de1983b`](https://github.com/withastro/astro/commit/f8de1983bde3ecfed3ab61abf0aa9f967b0d86ce) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fix error overlay syntax highlighting - [#&#8203;8838](https://github.com/withastro/astro/pull/8838) [`2f9e2083d`](https://github.com/withastro/astro/commit/2f9e2083d5783c9980cd8b9d69165128f0a5ae19) Thanks [@&#8203;dominikg](https://github.com/dominikg)! - deps: unpin and update tsconfck from `3.0.0-next.9` to `^3.0.0` - [#&#8203;8823](https://github.com/withastro/astro/pull/8823) [`8946f2a25`](https://github.com/withastro/astro/commit/8946f2a256edf1aca6a7bb0db1f6ea9ce9493253) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - fix remote srcset images not being resized ### [`v3.3.0`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#330) [Compare Source](https://github.com/withastro/astro/compare/astro@3.2.4...astro@3.3.0) ##### Minor Changes - [#&#8203;8808](https://github.com/withastro/astro/pull/8808) [`2993055be`](https://github.com/withastro/astro/commit/2993055bed2764c31ff4b4f55b81ab6b1ae6b401) Thanks [@&#8203;delucis](https://github.com/delucis)! - Adds support for an `--outDir` CLI flag to `astro build` - [#&#8203;8502](https://github.com/withastro/astro/pull/8502) [`c4270e476`](https://github.com/withastro/astro/commit/c4270e47681ee2453f3fea07fed7b238645fd6ea) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Updates the internal `shiki` syntax highlighter to `shikiji`, an ESM-focused alternative that simplifies bundling and maintenance. There are no new options and no changes to how you author code blocks and syntax highlighting. **Potentially breaking change:** While this refactor should be transparent for most projects, the transition to `shikiji` now produces a smaller HTML markup by attaching a fallback `color` style to the `pre` or `code` element, instead of to the line `span` directly. For example: Before: ```html <code class="astro-code" style="background-color: #&#8203;24292e"> <pre> <span class="line" style="color: #e1e4e8">my code</span> </pre> </code> ``` After: ```html <code class="astro-code" style="background-color: #&#8203;24292e; color: #e1e4e8"> <pre> <span class="line">my code<span> </pre> </code> ``` This does not affect the colors as the `span` will inherit the `color` from the parent, but if you're relying on a specific HTML markup, please check your site carefully after upgrading to verify the styles. - [#&#8203;8798](https://github.com/withastro/astro/pull/8798) [`f369fa250`](https://github.com/withastro/astro/commit/f369fa25055a3497ebaf61c88fb0e8af56c73212) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Fixed `tsconfig.json`'s new array format for `extends` not working. This was done by migrating Astro to use [`tsconfck`](https://github.com/dominikg/tsconfck) instead of [`tsconfig-resolver`](https://github.com/ifiokjr/tsconfig-resolver) to find and parse `tsconfig.json` files. - [#&#8203;8620](https://github.com/withastro/astro/pull/8620) [`b2ae9ee0c`](https://github.com/withastro/astro/commit/b2ae9ee0c42b11ffc1d3f070d1d5ac881aef84ed) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Adds experimental support for generating `srcset` attributes and a new `<Picture />` component. ### [`v3.2.4`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#324) [Compare Source](https://github.com/withastro/astro/compare/astro@3.2.3...astro@3.2.4) ##### Patch Changes - [#&#8203;8638](https://github.com/withastro/astro/pull/8638) [`160d1cd75`](https://github.com/withastro/astro/commit/160d1cd755e70af1d8ec294d01dd2cb32d60db50) Thanks [@&#8203;florian-lefebvre](https://github.com/florian-lefebvre)! - The `@astrojs/tailwind` integration now creates a `tailwind.config.mjs` file by default - [#&#8203;8767](https://github.com/withastro/astro/pull/8767) [`30de32436`](https://github.com/withastro/astro/commit/30de324361bc261956eb9fc08fe60a82ff602a9b) Thanks [@&#8203;martrapp](https://github.com/martrapp)! - Revert fix [#&#8203;8472](https://github.com/withastro/astro/issues/8472) [#&#8203;8472](https://github.com/withastro/astro/pull/8472) caused some style files from previous pages to not be cleanly deleted on view transitions. For a discussion of a future fix for the original issue [#&#8203;8144](https://github.com/withastro/astro/issues/8114) see [#&#8203;8745](https://github.com/withastro/astro/pull/8745). - [#&#8203;8741](https://github.com/withastro/astro/pull/8741) [`c4a7ec425`](https://github.com/withastro/astro/commit/c4a7ec4255e7acb9555cb8bb74ea13c5fbb2ac17) Thanks [@&#8203;lilnasy](https://github.com/lilnasy)! - Fixed an issue on Windows where lowercase drive letters in current working directory led to missing scripts and styles. - [#&#8203;8772](https://github.com/withastro/astro/pull/8772) [`c24f70d91`](https://github.com/withastro/astro/commit/c24f70d91601dd3a6b5a84f04d61824e775e9b44) Thanks [@&#8203;martrapp](https://github.com/martrapp)! - Fix flickering during view transitions - [#&#8203;8754](https://github.com/withastro/astro/pull/8754) [`93b092266`](https://github.com/withastro/astro/commit/93b092266febfad16a48575f8eee12d5910bf071) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Make CSS chunk names less confusing - [#&#8203;8776](https://github.com/withastro/astro/pull/8776) [`29cdfa024`](https://github.com/withastro/astro/commit/29cdfa024886dd581cb207586f7dfec6966bdd4e) Thanks [@&#8203;martrapp](https://github.com/martrapp)! - Fix transition attributes on islands - [#&#8203;8773](https://github.com/withastro/astro/pull/8773) [`eaed844ea`](https://github.com/withastro/astro/commit/eaed844ea8f2f52e0c9caa40bb3ec7377e10595f) Thanks [@&#8203;sumimakito](https://github.com/sumimakito)! - Fix an issue where HTML attributes do not render if getHTMLAttributes in an image service returns a Promise ### [`v3.2.3`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#323) [Compare Source](https://github.com/withastro/astro/compare/astro@3.2.2...astro@3.2.3) ##### Patch Changes - [#&#8203;8737](https://github.com/withastro/astro/pull/8737) [`6f60da805`](https://github.com/withastro/astro/commit/6f60da805e0014bc50dd07bef972e91c73560c3c) Thanks [@&#8203;ematipico](https://github.com/ematipico)! - Add provenance statement when publishing the library from CI - [#&#8203;8747](https://github.com/withastro/astro/pull/8747) [`d78806dfe`](https://github.com/withastro/astro/commit/d78806dfe0301ea7ffe6c7c1f783bd415ac7cda9) Thanks [@&#8203;natemoo-re](https://github.com/natemoo-re)! - Improve error message when user attempts to render a dynamic component reference - [#&#8203;8736](https://github.com/withastro/astro/pull/8736) [`d1c75fe15`](https://github.com/withastro/astro/commit/d1c75fe158839699c59728cf3a83888e8c72a459) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fix `tsconfig.json` update causing the server to crash - [#&#8203;8743](https://github.com/withastro/astro/pull/8743) [`aa265d730`](https://github.com/withastro/astro/commit/aa265d73024422967c1b1c68ad268c419c6c798f) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Remove unused CSS output files when inlined - [#&#8203;8700](https://github.com/withastro/astro/pull/8700) [`78adbc443`](https://github.com/withastro/astro/commit/78adbc4433208458291e36713909762e148e1e5d) Thanks [@&#8203;jacobthesheep](https://github.com/jacobthesheep)! - Update link for Netlify SSR - [#&#8203;8729](https://github.com/withastro/astro/pull/8729) [`21e0757ea`](https://github.com/withastro/astro/commit/21e0757ea22a57d344c934045ca19db93b684436) Thanks [@&#8203;lilnasy](https://github.com/lilnasy)! - Node-based adapters now create less server-side javascript - [#&#8203;8730](https://github.com/withastro/astro/pull/8730) [`357270f2a`](https://github.com/withastro/astro/commit/357270f2a3d0bf2aa634ba7e52e9d17618eff4a7) Thanks [@&#8203;natemoo-re](https://github.com/natemoo-re)! - Improve `astro info` copy to clipboard compatability - Updated dependencies \[[`21f482657`](https://github.com/withastro/astro/commit/21f4826576c2c812a1604e18717799da3470decd), [`6f60da805`](https://github.com/withastro/astro/commit/6f60da805e0014bc50dd07bef972e91c73560c3c), [`21e0757ea`](https://github.com/withastro/astro/commit/21e0757ea22a57d344c934045ca19db93b684436)]: - [@&#8203;astrojs/markdown-remark](https://github.com/astrojs/markdown-remark)[@&#8203;3](https://github.com/3).2.1 - [@&#8203;astrojs/internal-helpers](https://github.com/astrojs/internal-helpers)[@&#8203;0](https://github.com/0).2.1 - [@&#8203;astrojs/telemetry](https://github.com/astrojs/telemetry)[@&#8203;3](https://github.com/3).0.3 ### [`v3.2.2`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#322) [Compare Source](https://github.com/withastro/astro/compare/astro@3.2.1...astro@3.2.2) ##### Patch Changes - [#&#8203;8724](https://github.com/withastro/astro/pull/8724) [`455af3235`](https://github.com/withastro/astro/commit/455af3235b3268852e6988accecc796f03f6d16e) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fix CSS styles on Windows - [#&#8203;8710](https://github.com/withastro/astro/pull/8710) [`4c2bec681`](https://github.com/withastro/astro/commit/4c2bec681b0752e7215b8a32bd2d44bf477adac1) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Fixes View transition styles being missing when component used multiple times ### [`v3.2.1`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#321) [Compare Source](https://github.com/withastro/astro/compare/astro@3.2.0...astro@3.2.1) ##### Patch Changes - [#&#8203;8680](https://github.com/withastro/astro/pull/8680) [`31c59ad8b`](https://github.com/withastro/astro/commit/31c59ad8b6a72f95c98a306ecf92d198c03110b4) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fix hydration on slow connection - [#&#8203;8698](https://github.com/withastro/astro/pull/8698) [`47ea310f0`](https://github.com/withastro/astro/commit/47ea310f01d06ed1562c790bec348718a2fa8277) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Use a Node-specific image endpoint to resolve images in dev and Node SSR. This should fix many issues related to getting 404 from the \_image endpoint under certain configurations - [#&#8203;8706](https://github.com/withastro/astro/pull/8706) [`345808170`](https://github.com/withastro/astro/commit/345808170fce783ddd3c9a4035a91fa64dcc5f46) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fix duplicated Astro and Vite injected styles ### [`v3.2.0`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#320) [Compare Source](https://github.com/withastro/astro/compare/astro@3.1.4...astro@3.2.0) ##### Minor Changes - [#&#8203;8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Support adding integrations dynamically Astro integrations can now themselves dynamically add and configure additional integrations during set-up. This makes it possible for integration authors to bundle integrations more intelligently for their users. In the following example, a custom integration checks whether `@astrojs/sitemap` is already configured. If not, the integration adds Astro’s sitemap integration, passing any desired configuration options: ```ts import sitemap from '@&#8203;astrojs/sitemap'; import type { AstroIntegration } from 'astro'; const MyIntegration = (): AstroIntegration => { return { name: 'my-integration', 'astro:config:setup': ({ config, updateConfig }) => { // Look for sitemap in user-configured integrations. const userSitemap = config.integrations.find( ({ name }) => name === '@&#8203;astrojs/sitemap' ); if (!userSitemap) { // If sitemap wasn’t found, add it. updateConfig({ integrations: [sitemap({ /* opts */ }], }); } }, }; }; ``` - [#&#8203;8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - View transitions can now be triggered from JavaScript! Import the client-side router from "astro:transitions/client" and enjoy your new remote control for navigation: ```js import { navigate } from 'astro:transitions/client'; // Navigate to the selected option automatically. document.querySelector('select').onchange = (ev) => { let href = ev.target.value; navigate(href); }; ``` - [#&#8203;8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Route Announcer in `<ViewTransitions />` The View Transitions router now does route announcement. When transitioning between pages with a traditional MPA approach, assistive technologies will announce the page title when the page finishes loading. This does not automatically happen during client-side routing, so visitors relying on these technologies to announce routes are not aware when a page has changed. The view transitions route announcer runs after the `astro:page-load` event, looking for the page `<title>` to announce. If one cannot be found, the announcer falls back to the first `<h1>` it finds, or otherwise announces the pathname. We recommend you always include a `<title>` in each page for accessibility. See the [View Transitions docs](https://docs.astro.build/en/guides/view-transitions/) for more on how accessibility is handled. ##### Patch Changes - [#&#8203;8647](https://github.com/withastro/astro/pull/8647) [`408b50c5e`](https://github.com/withastro/astro/commit/408b50c5ea5aba66252424f54788557274a58571) Thanks [@&#8203;lilnasy](https://github.com/lilnasy)! - Fixed an issue where configured redirects with dynamic routes did not work in dev mode. - [#&#8203;8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Fix logLevel passed to Vite build - [#&#8203;8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Fix NoImageMetadata image path error message - [#&#8203;8670](https://github.com/withastro/astro/pull/8670) [`e797b6816`](https://github.com/withastro/astro/commit/e797b6816072f63f38d9a91dd2a66765c558d46c) Thanks [@&#8203;MichailiK](https://github.com/MichailiK)! - Fix asset optimization failing when outDir is outside the project directory - [#&#8203;8684](https://github.com/withastro/astro/pull/8684) [`824dd4670`](https://github.com/withastro/astro/commit/824dd4670a145c47337eff84a5ae412bf7443117) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Support content collections with % in filename - [#&#8203;8648](https://github.com/withastro/astro/pull/8648) [`cfd895d87`](https://github.com/withastro/astro/commit/cfd895d877fdb7fc69e745665a374fc32cb3ef7d) Thanks [@&#8203;lilnasy](https://github.com/lilnasy)! - Fixed an issue where a response with status code 404 led to an endless loop of implicit rerouting in dev mode. ### [`v3.1.4`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#314) [Compare Source](https://github.com/withastro/astro/compare/astro@3.1.3...astro@3.1.4) ##### Patch Changes - [#&#8203;8646](https://github.com/withastro/astro/pull/8646) [`69fbf95b2`](https://github.com/withastro/astro/commit/69fbf95b22c0fb0d8e7e5fef9ec61e26cac9767f) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Fix cases of head propagation not occuring in dev server ### [`v3.1.3`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#313) [Compare Source](https://github.com/withastro/astro/compare/astro@3.1.2...astro@3.1.3) ##### Patch Changes - [#&#8203;8591](https://github.com/withastro/astro/pull/8591) [`863f5171e`](https://github.com/withastro/astro/commit/863f5171e8e7516c9d72f2e48ea7db1dea71c4f5) Thanks [@&#8203;rishi-raj-jain](https://github.com/rishi-raj-jain)! - add site url to the location of redirect - [#&#8203;8633](https://github.com/withastro/astro/pull/8633) [`63141f3f3`](https://github.com/withastro/astro/commit/63141f3f3e4a57d2f55ccfebd7e506ea1033a1ab) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Fix build not working when having multiple images in the same Markdown file - [#&#8203;8636](https://github.com/withastro/astro/pull/8636) [`974d5117a`](https://github.com/withastro/astro/commit/974d5117abc8b47f8225e455b9285c88e305272f) Thanks [@&#8203;martrapp](https://github.com/martrapp)! - fix: no deletion of scripts during view transition - [#&#8203;8645](https://github.com/withastro/astro/pull/8645) [`cb838b84b`](https://github.com/withastro/astro/commit/cb838b84b457041b0442996f7611b04aa940a620) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Fix getDataEntryById to lookup by basename - [#&#8203;8640](https://github.com/withastro/astro/pull/8640) [`f36c4295b`](https://github.com/withastro/astro/commit/f36c4295be1ef2bcfa4aecb3c59551388419c53d) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Warn on empty content collections - [#&#8203;8615](https://github.com/withastro/astro/pull/8615) [`4c4ad9d16`](https://github.com/withastro/astro/commit/4c4ad9d167e8d15ff2c15e3336ede8ca22f646b2) Thanks [@&#8203;alexanderniebuhr](https://github.com/alexanderniebuhr)! - Improve the logging of assets for adapters that do not support image optimization ### [`v3.1.2`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#312) [Compare Source](https://github.com/withastro/astro/compare/astro@3.1.1...astro@3.1.2) ##### Patch Changes - [#&#8203;8612](https://github.com/withastro/astro/pull/8612) [`bcad715ce`](https://github.com/withastro/astro/commit/bcad715ce67bc73a7927c941d1e7f02a82d638c2) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Ensure cookies are attached when middleware changes the Response - [#&#8203;8598](https://github.com/withastro/astro/pull/8598) [`bdd267d08`](https://github.com/withastro/astro/commit/bdd267d08937611984d074a2872af11ecf3e1a12) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Fix relative images in Markdown breaking the build process in certain circumstances - [#&#8203;8382](https://github.com/withastro/astro/pull/8382) [`e522a5eb4`](https://github.com/withastro/astro/commit/e522a5eb41c7df1e62c307c84cd14d53777439ff) Thanks [@&#8203;DerTimonius](https://github.com/DerTimonius)! - Do not throw an error for an empty collection directory. - [#&#8203;8600](https://github.com/withastro/astro/pull/8600) [`ed54d4644`](https://github.com/withastro/astro/commit/ed54d46449accc99ad117d6b0d50a8905e4d65d7) Thanks [@&#8203;FredKSchott](https://github.com/FredKSchott)! - Improve config info telemetry - [#&#8203;8592](https://github.com/withastro/astro/pull/8592) [`70f2a8003`](https://github.com/withastro/astro/commit/70f2a80039d232731f63ea735e896997ec0eac7a) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fix alias plugin causing CSS ordering issue - [#&#8203;8614](https://github.com/withastro/astro/pull/8614) [`4398e9298`](https://github.com/withastro/astro/commit/4398e929877dfadd2067af28413284afdfde9d8b) Thanks [@&#8203;lilnasy](https://github.com/lilnasy)! - Fixed an issue where spaces and unicode characters in project path prevented middleware from running. - [#&#8203;8603](https://github.com/withastro/astro/pull/8603) [`8f8b9069d`](https://github.com/withastro/astro/commit/8f8b9069ddd21cf57d37955ab3a92710492226f5) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Prevent body scripts from re-executing on navigation - [#&#8203;8609](https://github.com/withastro/astro/pull/8609) [`5a988eaf6`](https://github.com/withastro/astro/commit/5a988eaf609ddc1b9609acb0cdc2dda43d10a5c2) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fix Astro HMR from a CSS dependency - Updated dependencies \[[`ed54d4644`](https://github.com/withastro/astro/commit/ed54d46449accc99ad117d6b0d50a8905e4d65d7)]: - [@&#8203;astrojs/telemetry](https://github.com/astrojs/telemetry)[@&#8203;3](https://github.com/3).0.2 ### [`v3.1.1`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#311) [Compare Source](https://github.com/withastro/astro/compare/astro@3.1.0...astro@3.1.1) ##### Patch Changes - [#&#8203;8580](https://github.com/withastro/astro/pull/8580) [`8d361169b`](https://github.com/withastro/astro/commit/8d361169b8e487933d671ce347f0ce74922c80cc) Thanks [@&#8203;rishi-raj-jain](https://github.com/rishi-raj-jain)! - add hide to style & script generated for island - [#&#8203;8568](https://github.com/withastro/astro/pull/8568) [`95b5f6280`](https://github.com/withastro/astro/commit/95b5f6280d124f8d6f866dc3286406c272ee91bf) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Fix small types issues related to `astro:assets`'s AVIF support and `getImage` - [#&#8203;8579](https://github.com/withastro/astro/pull/8579) [`0586e20e8`](https://github.com/withastro/astro/commit/0586e20e8338e077b8eb1a3a96bdd19f5950c22f) Thanks [@&#8203;rishi-raj-jain](https://github.com/rishi-raj-jain)! - show redirect symbol as of the page </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS41IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
smeagol-help added 1 commit 2023-10-25 14:17:55 -05:00
jahanson merged commit 976501d8ef into main 2023-10-25 14:25:57 -05:00
jahanson deleted branch renovate/astro-3.x-lockfile 2023-10-25 14:25:57 -05:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: jahanson/joehanson-dev#5
No description provided.