ColorlibHQ / AdminLTE

AdminLTE - Free admin dashboard template based on Bootstrap 5
https://adminlte.io
MIT License
43.75k stars 18.17k forks source link

chore(deps-dev): bump the astro group across 1 directory with 2 updates #5564

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the astro group with 2 updates in the / directory: @astrojs/mdx and astro.

Updates @astrojs/mdx from 2.2.4 to 2.3.1

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​2.3.1

Patch Changes

  • #10754 3e7a12c8532411e580fcfdb8445cad8fc8499291 Thanks @​rishi-raj-jain! - Fixes an issue where images in MDX required a relative specifier (e.g. ./)

    Now, you can use the standard ![](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx/blob/HEAD/img.png) syntax in MDX files for images colocated in the same folder: no relative specifier required!

    There is no need to update your project; your existing images will still continue to work. However, you may wish to remove any relative specifiers from these MDX images as they are no longer necessary:

    - ![A cute dog](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx/blob/HEAD/dog.jpg)
    + ![A cute dog](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx/blob/HEAD/dog.jpg)
    <!-- This dog lives in the same folder as my article! -->
    
  • #10770 88ee63a3ba4488c60348cb821034e6d4a057efd0 Thanks @​bluwy! - Removes internal MDX processor on buildEnd to free up memory

@​astrojs/mdx@​2.3.0

Minor Changes

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

2.3.1

Patch Changes

  • #10754 3e7a12c8532411e580fcfdb8445cad8fc8499291 Thanks @​rishi-raj-jain! - Fixes an issue where images in MDX required a relative specifier (e.g. ./)

    Now, you can use the standard ![](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/img.png) syntax in MDX files for images colocated in the same folder: no relative specifier required!

    There is no need to update your project; your existing images will still continue to work. However, you may wish to remove any relative specifiers from these MDX images as they are no longer necessary:

    - ![A cute dog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/dog.jpg)
    + ![A cute dog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/dog.jpg)
    <!-- This dog lives in the same folder as my article! -->
    
  • #10770 88ee63a3ba4488c60348cb821034e6d4a057efd0 Thanks @​bluwy! - Removes internal MDX processor on buildEnd to free up memory

2.3.0

Minor Changes

Patch Changes

Commits


Updates astro from 4.5.17 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 ? &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)

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


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
netlify[bot] commented 2 months ago

Deploy Preview for adminlte-v4 ready!

Name Link
Latest commit 87ffa165e9473331c830f974fb69a38b69881904
Latest deploy log https://app.netlify.com/sites/adminlte-v4/deploys/662f166f5d71eb0008c6abe7
Deploy Preview https://deploy-preview-5564--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.

dependabot[bot] commented 2 months ago

Superseded by #5569.