ratatui-org / ratatui-website

Ratatui Documentation
http://ratatui.rs/
MIT License
95 stars 57 forks source link

chore(deps): bump the npm-dependencies group with 6 updates #634

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 3 weeks ago

Bumps the npm-dependencies group with 6 updates:

Package From To
@astrojs/starlight 0.23.3 0.24.1
astro 4.9.2 4.10.1
tailwindcss 3.4.3 3.4.4
prettier 3.2.5 3.3.1
prettier-plugin-svelte 3.2.3 3.2.4
prettier-plugin-tailwindcss 0.6.1 0.6.2

Updates @astrojs/starlight from 0.23.3 to 0.24.1

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.24.1

Patch Changes

@​astrojs/starlight@​0.24.0

Minor Changes

  • #1841 ee0cd38a Thanks @​HiDeoo! - Adds support for Astro.currentLocale and Astro’s i18n routing.

    ⚠️ Potentially breaking change: Starlight now configures Astro’s i18n option for you based on its locales config.

    If you are currently using Astro’s i18n option as well as Starlight’s locales option, you will need to remove one of these. In general we recommend using Starlight’s locales, but if you have a more advanced configuration you may choose to keep Astro’s i18n config instead.

  • #1958 081d1a96 Thanks @​delucis! - Allows users to opt into displaying a “Built with Starlight” link in the site footer

  • #1530 dd64836a Thanks @​kevinzunigacuellar! - Adds a new <Badge> component

@​astrojs/starlight@​0.23.4

Patch Changes

Changelog

Sourced from @​astrojs/starlight's changelog.

0.24.1

Patch Changes

0.24.0

Minor Changes

  • #1841 ee0cd38a Thanks @​HiDeoo! - Adds support for Astro.currentLocale and Astro’s i18n routing.

    ⚠️ Potentially breaking change: Starlight now configures Astro’s i18n option for you based on its locales config.

    If you are currently using Astro’s i18n option as well as Starlight’s locales option, you will need to remove one of these. In general we recommend using Starlight’s locales, but if you have a more advanced configuration you may choose to keep Astro’s i18n config instead.

  • #1958 081d1a96 Thanks @​delucis! - Allows users to opt into displaying a “Built with Starlight” link in the site footer

  • #1530 dd64836a Thanks @​kevinzunigacuellar! - Adds a new <Badge> component

0.23.4

Patch Changes

Commits


Updates astro from 4.9.2 to 4.10.1

Release notes

Sourced from astro's releases.

astro@4.10.1

Patch Changes

astro@4.10.0

Minor Changes

  • #10974 2668ef9 Thanks @​florian-lefebvre! - Adds experimental support for the astro:env API.

    The astro:env API lets you configure a type-safe schema for your environment variables, and indicate whether they should be available on the server or the client. Import and use your defined variables from the appropriate /client or /server module:

    ---
    import { PUBLIC_APP_ID } from 'astro:env/client';
    import { PUBLIC_API_URL, getSecret } from 'astro:env/server';
    const API_TOKEN = getSecret('API_TOKEN');
    

    const data = await fetch(${PUBLIC_API_URL}/users, { method: 'POST', headers: { 'Content-Type': 'application/json', Authorization: Bearer ${API_TOKEN}, }, body: JSON.stringify({ appId: PUBLIC_APP_ID }), });

    To define the data type and properties of your environment variables, declare a schema in your Astro config in experimental.env.schema. The envField helper allows you define your variable as a string, number, or boolean and pass properties in an object:

    // astro.config.mjs
    import { defineConfig, envField } from 'astro/config';
    

    export default defineConfig({ experimental: { env: { schema: { PUBLIC_API_URL: envField.string({ context: 'client', access: 'public', optional: true }), PUBLIC_PORT: envField.number({ context: 'server', access: 'public', default: 4321 }), API_SECRET: envField.string({ context: 'server', access: 'secret' }), }, },

... (truncated)

Changelog

Sourced from astro's changelog.

4.10.1

Patch Changes

4.10.0

Minor Changes

  • #10974 2668ef9 Thanks @​florian-lefebvre! - Adds experimental support for the astro:env API.

    The astro:env API lets you configure a type-safe schema for your environment variables, and indicate whether they should be available on the server or the client. Import and use your defined variables from the appropriate /client or /server module:

    ---
    import { PUBLIC_APP_ID } from 'astro:env/client';
    import { PUBLIC_API_URL, getSecret } from 'astro:env/server';
    const API_TOKEN = getSecret('API_TOKEN');
    

    const data = await fetch(${PUBLIC_API_URL}/users, { method: 'POST', headers: { 'Content-Type': 'application/json', Authorization: Bearer ${API_TOKEN}, }, body: JSON.stringify({ appId: PUBLIC_APP_ID }), });

    To define the data type and properties of your environment variables, declare a schema in your Astro config in experimental.env.schema. The envField helper allows you define your variable as a string, number, or boolean and pass properties in an object:

    // astro.config.mjs
    import { defineConfig, envField } from 'astro/config';
    

    export default defineConfig({ experimental: { env: { schema: { PUBLIC_API_URL: envField.string({ context: 'client', access: 'public', optional: true }), PUBLIC_PORT: envField.number({ context: 'server', access: 'public', default: 4321 }), API_SECRET: envField.string({ context: 'server', access: 'secret' }),

... (truncated)

Commits


Updates tailwindcss from 3.4.3 to 3.4.4

Release notes

Sourced from tailwindcss's releases.

v3.4.4

Fixed

  • Make it possible to use multiple <alpha-value> placeholders in a single color definition (#13740)
  • Don't prefix classes in arbitrary values of has-*, group-has-*, and peer-has-* variants (#13770)
  • Support negative values for {col,row}-{start,end} utilities (#13781)
  • Update embedded browserslist database (#13792)
Changelog

Sourced from tailwindcss's changelog.

[3.4.4] - 2024-06-05

Fixed

  • Make it possible to use multiple <alpha-value> placeholders in a single color definition (#13740)
  • Don't prefix classes in arbitrary values of has-*, group-has-*, and peer-has-* variants (#13770)
  • Support negative values for {col,row}-{start,end} utilities (#13781)
  • Update embedded browserslist database (#13792)
Commits


Updates prettier from 3.2.5 to 3.3.1

Release notes

Sourced from prettier's releases.

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.3.1

diff

Preserve empty lines in front matter (#16347 by @​fisker)

<!-- Input -->
---
foo:
  - bar1
  • bar2

  • bar3


Markdown

<!-- Prettier 3.3.0 -->


foo:

  • bar1
  • bar2
  • bar3

Markdown

<!-- Prettier 3.3.1 -->

foo:

  • bar1

  • bar2

  • bar3


Markdown

Preserve explicit language in front matter (#16348 by @​fisker)

<!-- Input -->
---yaml
</tr></table> 

... (truncated)

Commits


Updates prettier-plugin-svelte from 3.2.3 to 3.2.4

Changelog

Sourced from prettier-plugin-svelte's changelog.

3.2.4

  • (fix) speed up regex
Commits


Updates prettier-plugin-tailwindcss from 0.6.1 to 0.6.2

Release notes

Sourced from prettier-plugin-tailwindcss's releases.

v0.6.2

Changed

  • Only remove duplicate Tailwind classes (#277)
  • Make sure escapes in classes are preserved in string literals (#286)
Changelog

Sourced from prettier-plugin-tailwindcss's changelog.

[0.6.2] - 2024-06-07

Changed

  • Only remove duplicate Tailwind classes (#277)
  • Make sure escapes in classes are preserved in string literals (#286)
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
cloudflare-pages[bot] commented 3 weeks ago

Deploying ratatui with  Cloudflare Pages  Cloudflare Pages

Latest commit: 961f52e
Status: ✅  Deploy successful!
Preview URL: https://2e2fb235.ratatui.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-npm-vk0m.ratatui.pages.dev

View logs

joshka commented 3 weeks ago

I'd like to lock prettier at 3.2.5 due to https://github.com/prettier/prettier/issues/16351. Not sure if there's a way to do that with dependabot though.