Bump astro from 4.2.6 to 4.3.2 #29

Merged
dependabot[bot] merged 1 commits from dependabot/npm_and_yarn/astro-4.3.2 into main 2024-02-05 13:02:01 +00:00
dependabot[bot] commented 2024-02-05 11:19:46 +00:00 (Migrated from github.com)

Bumps astro from 4.2.6 to 4.3.2.

Release notes

Sourced from astro's releases.

astro@4.3.2

Patch Changes

astro@4.3.1

Patch Changes

astro@4.3.0

Minor Changes

  • #9839 58f9e393a188702eef5329e41deff3dcb65a3230 Thanks @​Princesseuh! - Adds a new ComponentProps type export from astro/types to get the props type of an Astro component.

    ---
    import type { ComponentProps } from 'astro/types';
    import { Button } from './Button.astro';
    

    type myButtonProps = ComponentProps<typeof Button>;

  • #9159 7d937c158959e76443a02f740b10e251d14dbd8c Thanks @​bluwy! - Adds CLI shortcuts as an easter egg for the dev server:

    • o + enter: opens the site in your browser
    • q + enter: quits the dev server
    • h + enter: prints all available shortcuts
  • #9764 fad4f64aa149086feda2d1f3a0b655767034f1a8 Thanks @​matthewp! - Adds a new build.format configuration option: 'preserve'. This option will preserve your source structure in the final build.

    The existing configuration options, file and directory, either build all of your HTML pages as files matching the route name (e.g. /about.html) or build all your files as index.html within a nested directory structure (e.g. /about/index.html), respectively. It was not previously possible to control the HTML file built on a per-file basis.

    One limitation of build.format: 'file' is that it cannot create index.html files for any individual routes (other than the base path of /) while otherwise building named files. Creating explicit index pages within your file structure still generates a file named for the page route (e.g. src/pages/about/index.astro builds /about.html) when using the file configuration option.

    Rather than make a breaking change to allow build.format: 'file' to be more flexible, we decided to create a new build.format: 'preserve'.

    The new format will preserve how the filesystem is structured and make sure that is mirrored over to production. Using this option:

... (truncated)

Changelog

Sourced from astro's changelog.

4.3.2

Patch Changes

4.3.1

Patch Changes

4.3.0

Minor Changes

  • #9839 58f9e393a188702eef5329e41deff3dcb65a3230 Thanks @​Princesseuh! - Adds a new ComponentProps type export from astro/types to get the props type of an Astro component.

    ---
    import type { ComponentProps } from 'astro/types';
    import Button from './Button.astro';
    

    type myButtonProps = ComponentProps<typeof Button>;

  • #9159 7d937c158959e76443a02f740b10e251d14dbd8c Thanks @​bluwy! - Adds CLI shortcuts as an easter egg for the dev server:

    • o + enter: opens the site in your browser
    • q + enter: quits the dev server
    • h + enter: prints all available shortcuts
  • #9764 fad4f64aa149086feda2d1f3a0b655767034f1a8 Thanks @​matthewp! - Adds a new build.format configuration option: 'preserve'. This option will preserve your source structure in the final build.

    The existing configuration options, file and directory, either build all of your HTML pages as files matching the route name (e.g. /about.html) or build all your files as index.html within a nested directory structure (e.g. /about/index.html), respectively. It was not previously possible to control the HTML file built on a per-file basis.

    One limitation of build.format: 'file' is that it cannot create index.html files for any individual routes (other than the base path of /) while otherwise building named files. Creating explicit index pages within your file structure still generates a file named for the page route (e.g. src/pages/about/index.astro builds /about.html) when using the file configuration option.

    Rather than make a breaking change to allow build.format: 'file' to be more flexible, we decided to create a new build.format: 'preserve'.

... (truncated)

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 4.2.6 to 4.3.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/releases">astro's releases</a>.</em></p> <blockquote> <h2>astro@4.3.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9932">#9932</a> <a href="https://github.com/withastro/astro/commit/9f0d89fa7e9e7c08c8600b0c49c2cce7489a7582"><code>9f0d89fa7e9e7c08c8600b0c49c2cce7489a7582</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes a case where a warning was logged even when the feature <code>i18nDomains</code> wasn't enabled</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9907">#9907</a> <a href="https://github.com/withastro/astro/commit/6c894af5ab79f290f4ff7feb68617a66e91febc1"><code>6c894af5ab79f290f4ff7feb68617a66e91febc1</code></a> Thanks <a href="https://github.com/ktym4a"><code>@​ktym4a</code></a>! - Load 404.html on all non-existent paths on astro preview.</p> </li> </ul> <h2>astro@4.3.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9841">#9841</a> <a href="https://github.com/withastro/astro/commit/27ea080e24e2c5cdc59b63b1dfe0a83a0c696597"><code>27ea080e24e2c5cdc59b63b1dfe0a83a0c696597</code></a> Thanks <a href="https://github.com/kristianbinau"><code>@​kristianbinau</code></a>! - Makes the warning clearer when having a custom <code>base</code> and requesting a public URL without it</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9888">#9888</a> <a href="https://github.com/withastro/astro/commit/9d2fdb293d6a7323e10126cebad18ef9a2ea2800"><code>9d2fdb293d6a7323e10126cebad18ef9a2ea2800</code></a> Thanks <a href="https://github.com/natemoo-re"><code>@​natemoo-re</code></a>! - Improves error handling logic for the <code>astro sync</code> command.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9918">#9918</a> <a href="https://github.com/withastro/astro/commit/d52529e09450c84933dd15d6481edb32269f537b"><code>d52529e09450c84933dd15d6481edb32269f537b</code></a> Thanks <a href="https://github.com/LarryIVC"><code>@​LarryIVC</code></a>! - Adds the <code>name</code> attribute to the <code>&lt;details&gt;</code> tag type</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9938">#9938</a> <a href="https://github.com/withastro/astro/commit/1568afb78a163db63a4cde146dec87785a83db1d"><code>1568afb78a163db63a4cde146dec87785a83db1d</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Fixes a regression where middleware did not run for prerendered pages and endpoints.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9931">#9931</a> <a href="https://github.com/withastro/astro/commit/44674418965d658733d3602668a9354e18f8ef89"><code>44674418965d658733d3602668a9354e18f8ef89</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Fixes a regression where a response created with <code>Response.redirect</code> or containing <code>null</code> as the body never completed in node-based adapters.</p> </li> </ul> <h2>astro@4.3.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9839">#9839</a> <a href="https://github.com/withastro/astro/commit/58f9e393a188702eef5329e41deff3dcb65a3230"><code>58f9e393a188702eef5329e41deff3dcb65a3230</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Adds a new <code>ComponentProps</code> type export from <code>astro/types</code> to get the props type of an Astro component.</p> <pre lang="astro"><code>--- import type { ComponentProps } from 'astro/types'; import { Button } from './Button.astro'; <h2>type myButtonProps = ComponentProps&lt;typeof Button&gt;;</h2> <p></code></pre></p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9159">#9159</a> <a href="https://github.com/withastro/astro/commit/7d937c158959e76443a02f740b10e251d14dbd8c"><code>7d937c158959e76443a02f740b10e251d14dbd8c</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Adds CLI shortcuts as an easter egg for the dev server:</p> <ul> <li><code>o + enter</code>: opens the site in your browser</li> <li><code>q + enter</code>: quits the dev server</li> <li><code>h + enter</code>: prints all available shortcuts</li> </ul> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9764">#9764</a> <a href="https://github.com/withastro/astro/commit/fad4f64aa149086feda2d1f3a0b655767034f1a8"><code>fad4f64aa149086feda2d1f3a0b655767034f1a8</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds a new <code>build.format</code> configuration option: <code>'preserve'</code>. This option will preserve your source structure in the final build.</p> <p>The existing configuration options, <code>file</code> and <code>directory</code>, either build all of your HTML pages as files matching the route name (e.g. <code>/about.html</code>) or build all your files as <code>index.html</code> within a nested directory structure (e.g. <code>/about/index.html</code>), respectively. It was not previously possible to control the HTML file built on a per-file basis.</p> <p>One limitation of <code>build.format: 'file'</code> is that it cannot create <code>index.html</code> files for any individual routes (other than the base path of <code>/</code>) while otherwise building named files. Creating explicit index pages within your file structure still generates a file named for the page route (e.g. <code>src/pages/about/index.astro</code> builds <code>/about.html</code>) when using the <code>file</code> configuration option.</p> <p>Rather than make a breaking change to allow <code>build.format: 'file'</code> to be more flexible, we decided to create a new <code>build.format: 'preserve'</code>.</p> <p>The new format will preserve how the filesystem is structured and make sure that is mirrored over to production. Using this option:</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md">astro's changelog</a>.</em></p> <blockquote> <h2>4.3.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9932">#9932</a> <a href="https://github.com/withastro/astro/commit/9f0d89fa7e9e7c08c8600b0c49c2cce7489a7582"><code>9f0d89fa7e9e7c08c8600b0c49c2cce7489a7582</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes a case where a warning was logged even when the feature <code>i18nDomains</code> wasn't enabled</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9907">#9907</a> <a href="https://github.com/withastro/astro/commit/6c894af5ab79f290f4ff7feb68617a66e91febc1"><code>6c894af5ab79f290f4ff7feb68617a66e91febc1</code></a> Thanks <a href="https://github.com/ktym4a"><code>@​ktym4a</code></a>! - Load 404.html on all non-existent paths on astro preview.</p> </li> </ul> <h2>4.3.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9841">#9841</a> <a href="https://github.com/withastro/astro/commit/27ea080e24e2c5cdc59b63b1dfe0a83a0c696597"><code>27ea080e24e2c5cdc59b63b1dfe0a83a0c696597</code></a> Thanks <a href="https://github.com/kristianbinau"><code>@​kristianbinau</code></a>! - Makes the warning clearer when having a custom <code>base</code> and requesting a public URL without it</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9888">#9888</a> <a href="https://github.com/withastro/astro/commit/9d2fdb293d6a7323e10126cebad18ef9a2ea2800"><code>9d2fdb293d6a7323e10126cebad18ef9a2ea2800</code></a> Thanks <a href="https://github.com/natemoo-re"><code>@​natemoo-re</code></a>! - Improves error handling logic for the <code>astro sync</code> command.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9918">#9918</a> <a href="https://github.com/withastro/astro/commit/d52529e09450c84933dd15d6481edb32269f537b"><code>d52529e09450c84933dd15d6481edb32269f537b</code></a> Thanks <a href="https://github.com/LarryIVC"><code>@​LarryIVC</code></a>! - Adds the <code>name</code> attribute to the <code>&lt;details&gt;</code> tag type</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9938">#9938</a> <a href="https://github.com/withastro/astro/commit/1568afb78a163db63a4cde146dec87785a83db1d"><code>1568afb78a163db63a4cde146dec87785a83db1d</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Fixes a regression where middleware did not run for prerendered pages and endpoints.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9931">#9931</a> <a href="https://github.com/withastro/astro/commit/44674418965d658733d3602668a9354e18f8ef89"><code>44674418965d658733d3602668a9354e18f8ef89</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Fixes a regression where a response created with <code>Response.redirect</code> or containing <code>null</code> as the body never completed in node-based adapters.</p> </li> </ul> <h2>4.3.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9839">#9839</a> <a href="https://github.com/withastro/astro/commit/58f9e393a188702eef5329e41deff3dcb65a3230"><code>58f9e393a188702eef5329e41deff3dcb65a3230</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Adds a new <code>ComponentProps</code> type export from <code>astro/types</code> to get the props type of an Astro component.</p> <pre lang="astro"><code>--- import type { ComponentProps } from 'astro/types'; import Button from './Button.astro'; <h2>type myButtonProps = ComponentProps&lt;typeof Button&gt;;</h2> <p></code></pre></p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9159">#9159</a> <a href="https://github.com/withastro/astro/commit/7d937c158959e76443a02f740b10e251d14dbd8c"><code>7d937c158959e76443a02f740b10e251d14dbd8c</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Adds CLI shortcuts as an easter egg for the dev server:</p> <ul> <li><code>o + enter</code>: opens the site in your browser</li> <li><code>q + enter</code>: quits the dev server</li> <li><code>h + enter</code>: prints all available shortcuts</li> </ul> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9764">#9764</a> <a href="https://github.com/withastro/astro/commit/fad4f64aa149086feda2d1f3a0b655767034f1a8"><code>fad4f64aa149086feda2d1f3a0b655767034f1a8</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds a new <code>build.format</code> configuration option: <code>'preserve'</code>. This option will preserve your source structure in the final build.</p> <p>The existing configuration options, <code>file</code> and <code>directory</code>, either build all of your HTML pages as files matching the route name (e.g. <code>/about.html</code>) or build all your files as <code>index.html</code> within a nested directory structure (e.g. <code>/about/index.html</code>), respectively. It was not previously possible to control the HTML file built on a per-file basis.</p> <p>One limitation of <code>build.format: 'file'</code> is that it cannot create <code>index.html</code> files for any individual routes (other than the base path of <code>/</code>) while otherwise building named files. Creating explicit index pages within your file structure still generates a file named for the page route (e.g. <code>src/pages/about/index.astro</code> builds <code>/about.html</code>) when using the <code>file</code> configuration option.</p> <p>Rather than make a breaking change to allow <code>build.format: 'file'</code> to be more flexible, we decided to create a new <code>build.format: 'preserve'</code>.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/57ab98f53148cb00174ca6ddeea3cfc7404f0f22"><code>57ab98f</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9948">#9948</a>)</li> <li><a href="https://github.com/withastro/astro/commit/6c894af5ab79f290f4ff7feb68617a66e91febc1"><code>6c894af</code></a> Fix: 404.html load correctly on preview (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9907">#9907</a>)</li> <li><a href="https://github.com/withastro/astro/commit/cd67dd0a4ffe5ebfb8a2eb47b29c5930c9f1796f"><code>cd67dd0</code></a> Add new test cases for non-UTF-8 and space file names (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9947">#9947</a>)</li> <li><a href="https://github.com/withastro/astro/commit/9f0d89fa7e9e7c08c8600b0c49c2cce7489a7582"><code>9f0d89f</code></a> fix: don't log warning if <code>i18nDomains</code> isn't enabled (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9932">#9932</a>)</li> <li><a href="https://github.com/withastro/astro/commit/2ac371404d588a666ade5ff8f181caa00a75622c"><code>2ac3714</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9926">#9926</a>)</li> <li><a href="https://github.com/withastro/astro/commit/b176825b34a3c687f2b419c12d3888438ea868eb"><code>b176825</code></a> fix: route matching for encoded pathnames (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9934">#9934</a>)</li> <li><a href="https://github.com/withastro/astro/commit/9d2fdb293d6a7323e10126cebad18ef9a2ea2800"><code>9d2fdb2</code></a> Improve <code>astro sync</code> error handling (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9888">#9888</a>)</li> <li><a href="https://github.com/withastro/astro/commit/756f9595e751ea3dbaff5b37c69e4b14da50ae6f"><code>756f959</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/1568afb78a163db63a4cde146dec87785a83db1d"><code>1568afb</code></a> fix(middleware): load while retrieving ssr manifest for prerendering (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9938">#9938</a>)</li> <li><a href="https://github.com/withastro/astro/commit/055bd27d9d66343a0e0c75ed9343109a1a22bc02"><code>055bd27</code></a> [ci] format</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@4.3.2/packages/astro">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astro&package-manager=npm_and_yarn&previous-version=4.2.6&new-version=4.3.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
vercel[bot] commented 2024-02-05 11:19:49 +00:00 (Migrated from github.com)

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
astro-ghostcms-demo Ready (Inspect) Visit Preview 💬 Add feedback Feb 5, 2024 1:00pm
astro-ghostcms-xyz Ready (Inspect) Visit Preview 💬 Add feedback Feb 5, 2024 1:00pm
catppuccin-dark-demo Ready (Inspect) Visit Preview 💬 Add feedback Feb 5, 2024 1:00pm
[vc]: #z0uQT+x3aR560S71/yEWiJpMmdpykQKV3kq4Tl0ui80=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJhc3Ryby1naG9zdGNtcy14eXoiLCJyb290RGlyZWN0b3J5Ijoid3d3IiwiaW5zcGVjdG9yVXJsIjoiaHR0cHM6Ly92ZXJjZWwuY29tL2FkYW1tYXR0aGllc2Vucy1wcm9qZWN0cy9hc3Ryby1naG9zdGNtcy14eXovRjdOZnFwOVNSN3JRY01MWE1Wc25FSkd3aW9QNCIsInByZXZpZXdVcmwiOiJhc3Ryby1naG9zdGNtcy14eXotZ2l0LWRlcGVuZGFiLTVkZmNkZi1hZGFtbWF0dGhpZXNlbnMtcHJvamVjdHMudmVyY2VsLmFwcCIsIm5leHRDb21taXRTdGF0dXMiOiJERVBMT1lFRCIsImxpdmVGZWVkYmFjayI6eyJyZXNvbHZlZCI6MCwidW5yZXNvbHZlZCI6MCwidG90YWwiOjAsImxpbmsiOiJhc3Ryby1naG9zdGNtcy14eXotZ2l0LWRlcGVuZGFiLTVkZmNkZi1hZGFtbWF0dGhpZXNlbnMtcHJvamVjdHMudmVyY2VsLmFwcCJ9fSx7Im5hbWUiOiJhc3Ryby1naG9zdGNtcy1kZW1vIiwicm9vdERpcmVjdG9yeSI6ImRlbW8iLCJpbnNwZWN0b3JVcmwiOiJodHRwczovL3ZlcmNlbC5jb20vYWRhbW1hdHRoaWVzZW5zLXByb2plY3RzL2FzdHJvLWdob3N0Y21zLWRlbW8vRDJOQUtVeU1VbmFHSnhHQXpOdnZGZlZxc1lGQiIsInByZXZpZXdVcmwiOiJhc3Ryby1naG9zdGNtcy1kZW1vLWdpdC1kZXBlbmRhLTgzZmU0NS1hZGFtbWF0dGhpZXNlbnMtcHJvamVjdHMudmVyY2VsLmFwcCIsIm5leHRDb21taXRTdGF0dXMiOiJERVBMT1lFRCIsImxpdmVGZWVkYmFjayI6eyJyZXNvbHZlZCI6MCwidW5yZXNvbHZlZCI6MCwidG90YWwiOjAsImxpbmsiOiJhc3Ryby1naG9zdGNtcy1kZW1vLWdpdC1kZXBlbmRhLTgzZmU0NS1hZGFtbWF0dGhpZXNlbnMtcHJvamVjdHMudmVyY2VsLmFwcCJ9fSx7Im5hbWUiOiJjYXRwcHVjY2luLWRhcmstZGVtbyIsInJvb3REaXJlY3RvcnkiOiJjYXRwcHVjY2luLWRhcmstZGVtbyIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS9hZGFtbWF0dGhpZXNlbnMtcHJvamVjdHMvY2F0cHB1Y2Npbi1kYXJrLWRlbW8vWko3cVZZVkZvM1V6QmZHZHlKNlU3dW5xY1U2ayIsInByZXZpZXdVcmwiOiJjYXRwcHVjY2luLWRhcmstZGVtby1naXQtZGVwZW5kLWRlYjgxMy1hZGFtbWF0dGhpZXNlbnMtcHJvamVjdHMudmVyY2VsLmFwcCIsIm5leHRDb21taXRTdGF0dXMiOiJERVBMT1lFRCIsImxpdmVGZWVkYmFjayI6eyJyZXNvbHZlZCI6MCwidW5yZXNvbHZlZCI6MCwidG90YWwiOjAsImxpbmsiOiJjYXRwcHVjY2luLWRhcmstZGVtby1naXQtZGVwZW5kLWRlYjgxMy1hZGFtbWF0dGhpZXNlbnMtcHJvamVjdHMudmVyY2VsLmFwcCJ9fV19 **The latest updates on your projects**. Learn more about [Vercel for Git ↗︎](https://vercel.link/github-learn-more) | Name | Status | Preview | Comments | Updated (UTC) | | :--- | :----- | :------ | :------- | :------ | | **astro-ghostcms-demo** | ✅ Ready ([Inspect](https://vercel.com/adammatthiesens-projects/astro-ghostcms-demo/D2NAKUyMUnaGJxGAzNvvFfVqsYFB)) | [Visit Preview](https://vercel.live/open-feedback/astro-ghostcms-demo-git-dependa-83fe45-adammatthiesens-projects.vercel.app?via=pr-comment-visit-preview-link&passThrough=1) | 💬 [**Add feedback**](https://vercel.live/open-feedback/astro-ghostcms-demo-git-dependa-83fe45-adammatthiesens-projects.vercel.app?via=pr-comment-feedback-link) | Feb 5, 2024 1:00pm | | **astro-ghostcms-xyz** | ✅ Ready ([Inspect](https://vercel.com/adammatthiesens-projects/astro-ghostcms-xyz/F7Nfqp9SR7rQcMLXMVsnEJGwioP4)) | [Visit Preview](https://vercel.live/open-feedback/astro-ghostcms-xyz-git-dependab-5dfcdf-adammatthiesens-projects.vercel.app?via=pr-comment-visit-preview-link&passThrough=1) | 💬 [**Add feedback**](https://vercel.live/open-feedback/astro-ghostcms-xyz-git-dependab-5dfcdf-adammatthiesens-projects.vercel.app?via=pr-comment-feedback-link) | Feb 5, 2024 1:00pm | | **catppuccin-dark-demo** | ✅ Ready ([Inspect](https://vercel.com/adammatthiesens-projects/catppuccin-dark-demo/ZJ7qVYVFo3UzBfGdyJ6U7unqcU6k)) | [Visit Preview](https://vercel.live/open-feedback/catppuccin-dark-demo-git-depend-deb813-adammatthiesens-projects.vercel.app?via=pr-comment-visit-preview-link&passThrough=1) | 💬 [**Add feedback**](https://vercel.live/open-feedback/catppuccin-dark-demo-git-depend-deb813-adammatthiesens-projects.vercel.app?via=pr-comment-feedback-link) | Feb 5, 2024 1:00pm |
Adammatthiesen (Migrated from github.com) approved these changes 2024-02-05 13:01:54 +00:00
Sign in to join this conversation.
No description provided.