thomasKn / astro-shopify

A lightweight and powerful ecommerce starter theme to build headless Shopify storefronts with Astro.
https://astro-shopify.frontvibe.com
MIT License
332 stars 99 forks source link

Bump the patch-minor group with 5 updates #59

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the patch-minor group with 5 updates:

Package From To
astro 4.5.16 4.7.0
nanostores 0.10.2 0.10.3
zod 3.23.4 3.23.5
prettier-plugin-tailwindcss 0.5.13 0.5.14
typescript 5.4.4 5.4.5

Updates astro from 4.5.16 to 4.7.0

Release notes

Sourced from astro's releases.

astro@4.7.0

Minor Changes

  • #10665 7b4f284 Thanks @​Princesseuh! - Adds new utilities to ease the creation of toolbar apps including defineToolbarApp to make it easier to define your toolbar app and app and server helpers for easier communication between the toolbar and the server. These new utilities abstract away some of the boilerplate code that is common in toolbar apps, and lower the barrier of entry for app authors.

    For example, instead of creating an event listener for the app-toggled event and manually typing the value in the callback, you can now use the onAppToggled method. Additionally, communicating with the server does not require knowing any of the Vite APIs anymore, as a new server object is passed to the init function that contains easy to use methods for communicating with the server.

    import { defineToolbarApp } from "astro/toolbar";
    

    export default defineToolbarApp({ init(canvas, app, server) {

    • app.addEventListener("app-toggled", (e) => {
    •  console.log(`App is now ${state ? "enabled" : "disabled"}`);.
      
    • });
    • app.onToggled(({ state }) => {
    •    console.log(`App is now ${state ? "enabled" : "disabled"}`);
      
    • });
    • if (import.meta.hot) {
    •  import.meta.hot.send("my-app:my-client-event", { message: "world" });
      
    • }
    • server.send("my-app:my-client-event", { message: "world" })
    • if (import.meta.hot) {
    •  import.meta.hot.on("my-server-event", (data: {message: string}) => {
      
    •    console.log(data.message);
      
    •  });
      
    • }
    • server.on<{ message: string }>("my-server-event", (data) => {
    •  console.log(data.message); // data is typed using the type parameter
      
    • }); }, })

Server helpers are also available on the server side, for use in your integrations, through the new toolbar object:

"astro:server:setup": ({ toolbar }) => {
  toolbar.on<{ message: string }>("my-app:my-client-event", (data) => {
    console.log(data.message);
    toolbar.send("my-server-event", { message: "hello" });
  });
}

... (truncated)

Changelog

Sourced from astro's changelog.

4.7.0

Minor Changes

  • #10665 7b4f284 Thanks @​Princesseuh! - Adds new utilities to ease the creation of toolbar apps including defineToolbarApp to make it easier to define your toolbar app and app and server helpers for easier communication between the toolbar and the server. These new utilities abstract away some of the boilerplate code that is common in toolbar apps, and lower the barrier of entry for app authors.

    For example, instead of creating an event listener for the app-toggled event and manually typing the value in the callback, you can now use the onAppToggled method. Additionally, communicating with the server does not require knowing any of the Vite APIs anymore, as a new server object is passed to the init function that contains easy to use methods for communicating with the server.

    import { defineToolbarApp } from "astro/toolbar";
    

    export default defineToolbarApp({ init(canvas, app, server) {

    • app.addEventListener("app-toggled", (e) => {
    •  console.log(`App is now ${state ? &quot;enabled&quot; : &quot;disabled&quot;}`);.
      
    • });
    • app.onToggled(({ state }) => {
    •    console.log(`App is now ${state ? &quot;enabled&quot; : &quot;disabled&quot;}`);
      
    • });
    • if (import.meta.hot) {
    •  import.meta.hot.send(&quot;my-app:my-client-event&quot;, { message: &quot;world&quot; });
      
    • }
    • server.send("my-app:my-client-event", { message: "world" })
    • if (import.meta.hot) {
    •  import.meta.hot.on(&quot;my-server-event&quot;, (data: {message: string}) =&gt; {
      
    •    console.log(data.message);
      
    •  });
      
    • }
    • server.on<{ message: string }>("my-server-event", (data) => {
    •  console.log(data.message); // data is typed using the type parameter
      
    • }); }, })

Server helpers are also available on the server side, for use in your integrations, through the new toolbar object:

"astro:server:setup": ({ toolbar }) => {
  toolbar.on<{ message: string }>("my-app:my-client-event", (data) => {
    console.log(data.message);
    toolbar.send("my-server-event", { message: "hello" });
  });
}

... (truncated)

Commits


Updates nanostores from 0.10.2 to 0.10.3

Release notes

Sourced from nanostores's releases.

0.10.3

  • Fixed incorrect previous value when listening deep store (by @​euaaaio).
Changelog

Sourced from nanostores's changelog.

0.10.3

  • Fixed incorrect previous value when listening deep store (by @​euaaaio).
Commits


Updates zod from 3.23.4 to 3.23.5

Release notes

Sourced from zod's releases.

v3.23.5

Commits:

  • 110b8211f991b3e060ab2da4fec7b63d600439ad Update README_ZH.md (#3433)
  • c1910bdfc98709b8f14231e2cefc5a3be401e3ee Made ZodEnum take readonly string array (#3444)
  • 541a862e978f96eb391849a6bf16be84231aa1b3 3.23.5
Commits


Updates prettier-plugin-tailwindcss from 0.5.13 to 0.5.14

Release notes

Sourced from prettier-plugin-tailwindcss's releases.

v0.5.14

Fixed

  • Fix detection of v4 projects on Windows (#265)
Changelog

Sourced from prettier-plugin-tailwindcss's changelog.

[0.5.14] - 2024-04-15

Fixed

  • Fix detection of v4 projects on Windows (#265)
Commits


Updates typescript from 5.4.4 to 5.4.5

Release notes

Sourced from typescript's releases.

TypeScript 5.4.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • 27bcd4c Update LKG
  • 9f33bf1 🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...
  • 71b2f84 Bump version to 5.4.5 and LKG
  • 892936f 🤖 Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...
  • 38a7c05 release-5.4: Always set node-version for setup-node (#58117)
  • b754fc3 🤖 Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...
  • See full diff 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
vercel[bot] commented 6 months ago

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

Name Status Preview Comments Updated (UTC)
astro-shopify ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 30, 2024 0:58am