Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the production-dependencies group across 1 directory with 15 updates #5

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 20, 2025

Bumps the production-dependencies group with 15 updates in the / directory:

Package From To
@clack/prompts 0.8.2 0.9.1
@floating-ui/dom 1.6.12 1.6.13
@myriaddreamin/rehype-typst 0.5.0-rc9 0.5.4
chalk 5.3.0 5.4.1
chokidar 4.0.2 4.0.3
lightningcss 1.28.2 1.29.1
mdast-util-find-and-replace 3.0.1 3.0.2
pixi.js 8.6.5 8.6.6
preact 10.25.2 10.25.4
preact-render-to-string 6.5.12 6.5.13
satori 0.12.0 0.12.1
shiki 1.24.2 2.0.3
@types/node 22.10.2 22.10.7
esbuild 0.24.0 0.24.2
typescript 5.7.2 5.7.3

Updates @clack/prompts from 0.8.2 to 0.9.1

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​0.9.1

Patch Changes

  • 8093f3c: Adds Error support to the validate function
  • 98925e3: Exports the Option type and improves JSDocannotations
  • 1904e57: Replace custom utility for stripping ANSI control sequences with Node's built-in stripVTControlCharacters utility.
  • Updated dependencies [8093f3c]
  • Updated dependencies [e5ba09a]
  • Updated dependencies [8cba8e3]
    • @​clack/core@​0.4.1

@​clack/prompts@​0.9.0

Minor Changes

  • a83d2f8: Adds a new updateSettings() function to support new global keybindings.

    updateSettings() accepts an aliases object that maps custom keys to an action (up | down | left | right | space | enter | cancel).

    import { updateSettings } from "@clack/prompts";
    // Support custom keybindings
    updateSettings({
    aliases: {
    w: "up",
    a: "left",
    s: "down",
    d: "right",
    },
    });

[!WARNING] In order to enforce consistent, user-friendly defaults across the ecosystem, updateSettings does not support disabling Clack's default keybindings.

  • 801246b: Adds a new signal option to support programmatic prompt cancellation with an abort controller.

    One example use case is automatically cancelling a prompt after a timeout.

    const shouldContinue = await confirm({
      message: "This message will self destruct in 5 seconds",
      signal: AbortSignal.timeout(5000),
    });

    Another use case is racing a long running task with a manual prompt.

    const abortController = new AbortController();

... (truncated)

Changelog

Sourced from @​clack/prompts's changelog.

0.9.1

Patch Changes

  • 8093f3c: Adds Error support to the validate function
  • 98925e3: Exports the Option type and improves JSDocannotations
  • 1904e57: Replace custom utility for stripping ANSI control sequences with Node's built-in stripVTControlCharacters utility.
  • Updated dependencies [8093f3c]
  • Updated dependencies [e5ba09a]
  • Updated dependencies [8cba8e3]
    • @​clack/core@​0.4.1

0.9.0

Minor Changes

  • a83d2f8: Adds a new updateSettings() function to support new global keybindings.

    updateSettings() accepts an aliases object that maps custom keys to an action (up | down | left | right | space | enter | cancel).

    import { updateSettings } from "@clack/prompts";
    // Support custom keybindings
    updateSettings({
    aliases: {
    w: "up",
    a: "left",
    s: "down",
    d: "right",
    },
    });

[!WARNING] In order to enforce consistent, user-friendly defaults across the ecosystem, updateSettings does not support disabling Clack's default keybindings.

  • 801246b: Adds a new signal option to support programmatic prompt cancellation with an abort controller.

    One example use case is automatically cancelling a prompt after a timeout.

    const shouldContinue = await confirm({
      message: "This message will self destruct in 5 seconds",
      signal: AbortSignal.timeout(5000),
    });

    Another use case is racing a long running task with a manual prompt.

... (truncated)

Commits

Updates @floating-ui/dom from 1.6.12 to 1.6.13

Release notes

Sourced from @​floating-ui/dom's releases.

@​floating-ui/dom@​1.6.13

Patch Changes

  • fix(autoUpdate): work around IntersectionObserver issue that sometimes fails to detect movement of reference element
  • Update dependencies: @floating-ui/[email protected]
Changelog

Sourced from @​floating-ui/dom's changelog.

1.6.13

Patch Changes

  • fix(autoUpdate): work around IntersectionObserver issue that sometimes fails to detect movement of reference element
  • Update dependencies: @floating-ui/[email protected]
Commits
  • b0dfb58 chore: version packages (#3187)
  • 87504f9 style(dom): apply prettier config (#3189)
  • 1fa2c50 chore(eslint): add 'eslint-plugin-prettier', apply 'prettier' rules (#3177)
  • 1d20f84 fix(getContainingBlock): check for shorthand transform CSS properties (transl...
  • 993e823 fix(autoUpdate): work around bug where intersection ratio is 1 but element ac...
  • 48c872c chore(eslint): migrate eslint configuration .eslintrc.js to eslint.config.mjs...
  • See full diff in compare view

Updates @myriaddreamin/rehype-typst from 0.5.0-rc9 to 0.5.4

Updates chalk from 5.3.0 to 5.4.1

Release notes

Sourced from chalk's releases.

v5.4.1

  • Fix navigator not defined ReferenceError (#642) 4ebb62d

chalk/chalk@v5.4.0...v5.4.1

v5.4.0

  • Update CIRCLECI environments to return level 3 color support f838120

chalk/chalk@v5.3.0...v5.4.0

Commits

Updates chokidar from 4.0.2 to 4.0.3

Release notes

Sourced from chokidar's releases.

4.0.3

What's Changed

Full Changelog: paulmillr/chokidar@4.0.2...4.0.3

Commits

Updates lightningcss from 1.28.2 to 1.29.1

Release notes

Sourced from lightningcss's releases.

v1.29.0

Added

  • Implement view transitions level 2, including the @view-transition rule, view-transition-class and view-transition-group properties, and class selector features of the view transition pseudo elements. This enables CSS module scoping and better minification when using these features. – #885
  • Support parsing the @font-feature-values rule – #840
  • Add a feature flag to explicitly enable or disable transpiling the light-dark() function – parcel-bundler/lightningcss@3043896

Fixed

Commits

Updates mdast-util-find-and-replace from 3.0.1 to 3.0.2

Release notes

Sourced from mdast-util-find-and-replace's releases.

3.0.2

Types

  • f67eee4 Refactor to use @imports
  • 8ac2d6b Add declaration maps

Full Changelog: syntax-tree/mdast-util-find-and-replace@3.0.1...3.0.2

Commits

Updates pixi.js from 8.6.5 to 8.6.6

Release notes

Sourced from pixi.js's releases.

v8.6.6

💾 Download

Development Build:

Production Build:

Documentation:

Changed

pixijs/pixijs@v8.6.5...v8.6.6

🐛 Fixed

🧹 Chores

Commits

Updates preact from 10.25.2 to 10.25.4

Release notes

Sourced from preact's releases.

10.25.4

Types

Fixes

10.25.3

Fixes

Types

Commits

Updates preact-render-to-string from 6.5.12 to 6.5.13

Release notes

Sourced from preact-render-to-string's releases.

v6.5.13

Patch Changes

  • #408 8e8e8ac Thanks @​f0x52! - Ensure that the _parent is kept around across multiple suspensions and avoid circular references. In doing so our useId hook should always output unique ids during renderingToString.

  • #409 2afaf31 Thanks @​f0x52! - Ensure the renderToStream types of /stream and /stream-node accept a generic for the props of the passed in VNode

  • #405 0a698f6 Thanks @​f0x52! - renderToPipeableStream: expose errors through onError, no longer emit un-catchable error event on internal stream

Changelog

Sourced from preact-render-to-string's changelog.

6.5.13

Patch Changes

  • #408 8e8e8ac Thanks @​f0x52! - Ensure that the _parent is kept around across multiple suspensions and avoid circular references. In doing so our useId hook should always output unique ids during renderingToString.
  • #409 2afaf31 Thanks @​f0x52! - Ensure the renderToStream types of /stream and /stream-node accept a generic for the props of the passed in VNode
  • #405 0a698f6 Thanks @​f0x52! - renderToPipeableStream: expose errors through onError, no longer emit un-catchable error event on internal stream
Commits
  • b2050f4 Version Packages (#410)
  • 0a698f6 renderToPipeableStream: expose errors through onError, no longer emit un-catc...
  • c819f51 Ensure use id works (#411)
  • 8e8e8ac Use suspense boundary vnode as parent for subtree re-render (#408)
  • 2afaf31 Use generic type for vnode props in renderToReadableStream/renderToPipeableSt...
  • See full diff in compare view

Updates satori from 0.12.0 to 0.12.1

Release notes

Sourced from satori's releases.

0.12.1

0.12.1 (2025-01-06)

Bug Fixes

Commits

Updates shiki from 1.24.2 to 2.0.3

Release notes

Sourced from shiki's releases.

v2.0.3

   🐞 Bug Fixes

    View changes on GitHub

v2.0.2

   🐞 Bug Fixes

    View changes on GitHub

v2.0.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v2.0.0

Read the announcement: Shiki v2

    View changes on GitHub

v1.29.1

   🚀 Features

    View changes on GitHub

v1.29.0

   🚀 Features

    View changes on GitHub

v1.28.0

   🚀 Features

... (truncated)

Commits

Updates @types/node from 22.10.2 to 22.10.7

Commits

Updates esbuild from 0.24.0 to 0.24.2

Release notes

Sourced from esbuild's releases.

v0.24.2

  • Fix regression with --define and import.meta (#4010, #4012, #4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

v0.24.1

  • Allow es2024 as a target in tsconfig.json (#4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#4008)

    The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

    // The following code now transforms to "return true;\n"
    console.log(esbuild.transformSync(
      `return process.env['SOME-TEST-VAR']`,
      { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
    ))

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.24.2

  • Fix regression with --define and import.meta (#4010, #4012, #4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

0.24.1

  • Allow es2024 as a target in tsconfig.json (#4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#4008)

    The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

    // The following code now transforms to "return true;\n"
    console.log(esbuild.transformSync(
      `return process.env['SOME-TEST-VAR']`,
      { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },

... (truncated)

Commits

Updates typescript from 5.7.2 to 5.7.3

Release notes

Sourced from typescript's releases.

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

Commits
  • a5e123d Update LKG
  • 8bc0204 🤖 Pick PR #60828 (Fix CodeQL configuration, releases) into release-5.7 (#60923)
  • 7aa63df 🤖 Pick PR #60393 (Don't try to add an implicit undefi...) into release-5.7 (#...
  • 9df7c36 Bump version to 5.7.3 and LKG
  • e167412 🤖 Pick PR #60794 (Harden sanitizeLog against incorr...) into release-5.7 (#...
  • 9ba364c Fix coverage build on release-5.7 (#60792)
  • 4b7441a 🤖 Pick PR #60680 (Mark the inherited any-based index ...) into release-5.7 (#...
  • e844dc3 Cherry-pick #60402, #60440, #60616 into release-5.7 (#60777)
  • 21b02a1 🤖 Pick PR #60749 (Do not require import attribute on ...) into release-5.7 (#...
  • b82fd16 🤖 Pick PR #60576 (Avoid incorrectly reusing assertion...) into release-5.7 (#...
  • Additional commits viewable 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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…y with 15 updates

Bumps the production-dependencies group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@clack/prompts](https://github.com/natemoo-re/clack/tree/HEAD/packages/prompts) | `0.8.2` | `0.9.1` |
| [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom) | `1.6.12` | `1.6.13` |
| @myriaddreamin/rehype-typst | `0.5.0-rc9` | `0.5.4` |
| [chalk](https://github.com/chalk/chalk) | `5.3.0` | `5.4.1` |
| [chokidar](https://github.com/paulmillr/chokidar) | `4.0.2` | `4.0.3` |
| [lightningcss](https://github.com/parcel-bundler/lightningcss) | `1.28.2` | `1.29.1` |
| [mdast-util-find-and-replace](https://github.com/syntax-tree/mdast-util-find-and-replace) | `3.0.1` | `3.0.2` |
| [pixi.js](https://github.com/pixijs/pixijs) | `8.6.5` | `8.6.6` |
| [preact](https://github.com/preactjs/preact) | `10.25.2` | `10.25.4` |
| [preact-render-to-string](https://github.com/preactjs/preact-render-to-string) | `6.5.12` | `6.5.13` |
| [satori](https://github.com/vercel/satori) | `0.12.0` | `0.12.1` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `1.24.2` | `2.0.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.2` | `22.10.7` |
| [esbuild](https://github.com/evanw/esbuild) | `0.24.0` | `0.24.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |



Updates `@clack/prompts` from 0.8.2 to 0.9.1
- [Release notes](https://github.com/natemoo-re/clack/releases)
- [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
- [Commits](https://github.com/natemoo-re/clack/commits/@clack/[email protected]/packages/prompts)

Updates `@floating-ui/dom` from 1.6.12 to 1.6.13
- [Release notes](https://github.com/floating-ui/floating-ui/releases)
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md)
- [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/[email protected]/packages/dom)

Updates `@myriaddreamin/rehype-typst` from 0.5.0-rc9 to 0.5.4

Updates `chalk` from 5.3.0 to 5.4.1
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v5.3.0...v5.4.1)

Updates `chokidar` from 4.0.2 to 4.0.3
- [Release notes](https://github.com/paulmillr/chokidar/releases)
- [Commits](paulmillr/chokidar@4.0.2...4.0.3)

Updates `lightningcss` from 1.28.2 to 1.29.1
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/commits)

Updates `mdast-util-find-and-replace` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/syntax-tree/mdast-util-find-and-replace/releases)
- [Commits](syntax-tree/mdast-util-find-and-replace@3.0.1...3.0.2)

Updates `pixi.js` from 8.6.5 to 8.6.6
- [Release notes](https://github.com/pixijs/pixijs/releases)
- [Commits](pixijs/pixijs@v8.6.5...v8.6.6)

Updates `preact` from 10.25.2 to 10.25.4
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.25.2...10.25.4)

Updates `preact-render-to-string` from 6.5.12 to 6.5.13
- [Release notes](https://github.com/preactjs/preact-render-to-string/releases)
- [Changelog](https://github.com/preactjs/preact-render-to-string/blob/main/CHANGELOG.md)
- [Commits](preactjs/preact-render-to-string@v6.5.12...v6.5.13)

Updates `satori` from 0.12.0 to 0.12.1
- [Release notes](https://github.com/vercel/satori/releases)
- [Commits](vercel/satori@0.12.0...0.12.1)

Updates `shiki` from 1.24.2 to 2.0.3
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v2.0.3/packages/shiki)

Updates `@types/node` from 22.10.2 to 22.10.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `esbuild` from 0.24.0 to 0.24.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.24.0...v0.24.2)

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

---
updated-dependencies:
- dependency-name: "@clack/prompts"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@floating-ui/dom"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@myriaddreamin/rehype-typst"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: chalk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: chokidar
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: lightningcss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: mdast-util-find-and-replace
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pixi.js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: preact
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: preact-render-to-string
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: satori
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: shiki
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 20, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 27, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 27, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-c31d24eacc branch January 27, 2025 11:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants