Skip to content

Update npm (minor updates)#71

Open
renovate[bot] wants to merge 1 commit into
devfrom
renovate/npm-(minor-updates)
Open

Update npm (minor updates)#71
renovate[bot] wants to merge 1 commit into
devfrom
renovate/npm-(minor-updates)

Conversation

@renovate

@renovate renovate Bot commented Jun 21, 2024

Copy link
Copy Markdown

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@clack/prompts (source) ^0.7.0^0.11.0 age confidence
@iconify-icon/react (source) 2.0.12.3.0 age confidence
@mdx-js/loader (source) 3.0.13.1.1 age confidence
@mdx-js/mdx (source) 3.0.13.1.1 age confidence
@shikijs/transformers (source) 1.1.71.29.2 age confidence
@standard-schema/spec (source) 1.0.01.1.0 age confidence
@types/node (source) 20.11.1920.19.43 age confidence
@types/react (source) 18.2.5618.3.31 age confidence
autoprefixer 10.4.1710.5.2 age confidence
dotenv 16.4.416.6.1 age confidence
eslint (source) 8.56.08.57.1 age confidence
eslint-plugin-prettier 5.1.35.5.6 age confidence
fastify (source) 4.26.14.29.1 age confidence
fastify-type-provider-zod 1.1.91.2.0 age confidence
flexsearch ^0.7.43^0.8.0 age confidence
fs-extra 11.2.011.3.6 age confidence
git-url-parse 14.0.014.1.0 age confidence
glob 10.3.1010.5.0 age confidence
joi 17.12.117.13.4 age confidence
next (source) 14.1.014.2.35 age confidence
next-seo 6.5.06.8.0 age confidence
pnpm (source) 8.14.18.15.9 age confidence
postcss (source) 8.4.378.5.18 age confidence
postcss-import 16.0.116.1.1 age confidence
react (source) 18.2.018.3.1 age confidence
react-dom (source) 18.2.018.3.1 age confidence
rehype-extract-excerpt ^0.3.1^0.4.0 age confidence
rehype-pretty-code (source) ^0.13.0^0.14.0 age confidence
shiki (source) 1.1.71.29.2 age confidence
tailwindcss-themer 4.0.04.1.1 age confidence
turbo (source) 1.11.31.13.4 age confidence
type-fest 4.10.34.41.0 age confidence
typescript (source) 5.4.55.9.3 age confidence
unist-util-visit 5.0.05.1.0 age confidence
vite (source) 5.2.115.4.21 age confidence
webpack 5.91.05.108.4 age confidence

Release Notes

bombshell-dev/clack (@​clack/prompts)

v0.11.0

Compare Source

Minor Changes
  • 07ca32d: Reverted a change where placeholders were being set as values on return.
Patch Changes

v0.10.1

Compare Source

Patch Changes
  • 11a5dc1: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
  • 30aa7ed: Adds a new selectableGroups boolean to the group multi-select prompt. Using selectableGroups: false will disable the ability to select a top-level group, but still allow every child to be selected individually.
  • Updated dependencies [30aa7ed]
  • Updated dependencies [5dfce8a]
  • Updated dependencies [f574297]

v0.10.0

Compare Source

Minor Changes
  • 613179d: Adds a new indicator option to spinner, which supports the original "dots" loading animation or a new "timer" loading animation.

    import * as p from "@​clack/prompts";
    
    const spin = p.spinner({ indicator: "timer" });
    spin.start("Loading");
    await sleep(3000);
    spin.stop("Loaded");
  • a38b2bc: Adds stream API which provides the same methods as log, but for iterable (even async) message streams. This is particularly useful for AI responses which are dynamically generated by LLMs.

    import * as p from "@​clack/prompts";
    
    await p.stream.step(
      (async function* () {
        yield* generateLLMResponse(question);
      })()
    );

v0.9.1

Compare Source

Patch Changes

v0.9.0

Compare Source

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();
    
    const projectType = await Promise.race([
      detectProjectType({
        signal: abortController.signal,
      }),
      select({
        message: "Pick a project type.",
        options: [
          { value: "ts", label: "TypeScript" },
          { value: "js", label: "JavaScript" },
          { value: "coffee", label: "CoffeeScript", hint: "oh no" },
        ],
        signal: abortController.signal,
      }),
    ]);
    
    abortController.abort();
  • a83d2f8: Updates default keybindings to support Vim motion shortcuts and map the escape key to cancel (ctrl+c).

    alias action
    k up
    l right
    j down
    h left
    esc cancel
Patch Changes

v0.8.2

Compare Source

Patch Changes

v0.8.1

Compare Source

Patch Changes
  • 360afeb: feat: adaptative max items
mdx-js/mdx (@​mdx-js/loader)

v3.1.1

Compare Source

Fix
Types
  • 933ab44 @mdx-js/mdx: add attributes to export/import declarations
Docs

Full Changelog: mdx-js/mdx@3.1.0...3.1.1

v3.1.0

Compare Source

Add
Fix
Types
Miscellaneous
  • 77158cd Refactor to externalize recma packages
Site

Full Changelog: mdx-js/mdx@3.0.1...3.1.0

shikijs/shiki (@​shikijs/transformers)

v1.29.2

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.29.1

Compare Source

   🚀 Features
    View changes on GitHub

v1.29.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.28.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.27.2

Compare Source

No significant changes

    View changes on GitHub

v1.26.2

Compare Source

   🚀 Features
    View changes on GitHub

v1.26.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.26.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.25.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.25.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.24.4

Compare Source

   🚀 Features
    View changes on GitHub

v1.24.3

Compare Source

   🚀 Features
    View changes on GitHub

v1.24.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.24.1

Compare Source

   🚀 Features
    View changes on GitHub

v1.24.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.23.1

Compare Source

   🚀 Features
    View changes on GitHub

v1.23.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.22.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.22.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.22.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.21.1

Compare Source

   🚀 Features
    View changes on GitHub

v1.21.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.20.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.19.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.18.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.17.7

Compare Source

   🚀 Features
    View changes on GitHub

v1.17.6

Compare Source

   🚀 Features
  • engine-js:
   🐞 Bug Fixes
  • Missing named exports for shiki/wasm and @shikijs/wasm-inlined  -  by @​antfu (3f226)
    View changes on GitHub

v1.17.5

Compare Source

   🚀 Features
    View changes on GitHub

v1.17.4

Compare Source

No significant changes

    View changes on GitHub

v1.17.0

Compare Source

Refactor the monorepo and separate engines into each own package.

    View changes on GitHub

v1.16.3

Compare Source

   🚀 Features
    View changes on GitHub

v1.16.2

Compare Source

   🚀 Features
    View changes on GitHub

v1.16.1

Compare Source

   🏎 Performance
    View changes on GitHub

v1.16.0

Compare Source

   🚀 Features
  • Synchronous Shiki usage  -  by @​antfu in #​764 (9396a)
  • core: New options object signature for createdBundledHighlighter for custom engine bundle, deprecate old signature  -  by @​antfu (51322)
   🐞 Bug Fixes
  • core: createdBundledHighlighter allow user to override engine  -  by [@​antfu](http

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/Amsterdam)

  • Branch creation
    • Between 12:00 AM and 03:59 AM (* 0-3 * * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 4 times, most recently from 63925f6 to 674d1de Compare June 29, 2024 14:47
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 4 times, most recently from a4ec4da to 1b0c366 Compare July 9, 2024 05:25
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 3 times, most recently from c0bbe95 to 3763b5f Compare July 14, 2024 23:37
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 5 times, most recently from 2896f98 to 2bf143e Compare July 27, 2024 08:48
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 4 times, most recently from 68b369e to 74939ac Compare August 5, 2024 08:59
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 2 times, most recently from 0a7bc2e to 9ac0c4b Compare August 13, 2024 02:51
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 4 times, most recently from ba44aa5 to 0960912 Compare August 24, 2024 03:02
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 4 times, most recently from 5fead09 to 14a5000 Compare September 1, 2024 05:22
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 5 times, most recently from baee062 to 5303446 Compare September 24, 2024 11:46
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 6 times, most recently from a0e2405 to 7689234 Compare October 2, 2024 02:50
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 5 times, most recently from 47c1db2 to 75e9655 Compare October 11, 2024 05:33
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 2 times, most recently from 8947bf9 to a1a5773 Compare October 17, 2024 23:54
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 5 times, most recently from e0d51ec to 005d870 Compare October 27, 2024 02:22
@renovate
renovate Bot force-pushed the renovate/npm-(minor-updates) branch 6 times, most recently from 8329e7f to cba5a1e Compare November 3, 2024 11:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants