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

fix(deps): update all non-major dependencies #256

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 30, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@clack/core (source) ^0.3.3 -> ^0.4.0 age adoption passing confidence dependencies minor
@clack/prompts (source) ^0.7.0 -> ^0.9.0 age adoption passing confidence dependencies minor
changesets/action v1.4.8 -> v1.4.9 age adoption passing confidence action patch
lucide-react (source) 0.445.0 -> 0.471.1 age adoption passing confidence dependencies minor
next-themes ^0.3.0 -> ^0.4.0 age adoption passing confidence dependencies minor
pnpm (source) 9.11.0 -> 9.15.4 age adoption passing confidence packageManager minor
typescript (source) 5.6.2 -> 5.7.3 age adoption passing confidence devDependencies minor
vitest-fetch-mock ^0.3.0 -> ^0.4.0 age adoption passing confidence devDependencies minor
zod (source) 3.23.8 -> 3.24.1 age adoption passing confidence dependencies minor

Release Notes

natemoo-re/clack (@​clack/core)

v0.4.1

Compare Source

Patch Changes
  • 8093f3c: Adds Error support to the validate function
  • e5ba09a: Fixes a cursor display bug in terminals that do not support the "hidden" escape sequence. See Issue #​127.
  • 8cba8e3: Fixes a rendering bug with cursor positions for TextPrompt

v0.4.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/core";
    
    // 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.

  • 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
  • 51e12bc: Improves types for events and interaction states.

v0.3.5

Patch Changes
  • 4845f4f: Fixes a bug which kept the terminal cursor hidden after a prompt is cancelled
  • d7b2fb9: Adds missing LICENSE file. Since the package.json file has always included "license": "MIT", please consider this a licensing clarification rather than a licensing change.
natemoo-re/clack (@​clack/prompts)

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
changesets/action (changesets/action)

v1.4.9

Compare Source

Patch Changes
lucide-icons/lucide (lucide-react)

v0.471.1: Hotfix Lucide React exports

Compare Source

What's Changed

v0.471.0: Dynamic Icon component Lucide React and new icons 0.471.0

Compare Source

New Dynamic Icon Component (lucide-react)

This is an easier approach than the previous dynamicIconImports we exported in the library. This one supports all environments.
We removed the examples in the docs of how you can make a dynamic icon yourself with a dedicated DynamicIcon component.
This one fetches the icon data itself and renders it instead of fetching the Icon component from the library.
This makes it more flexible with all the frontend frameworks and libraries that exist for React.

🚨
Not recommended for regular applications that work fine with the regular static icon components.
Using the dynamic icon component increases build time, separate bundles, and separate network requests for each icon.

How to use

DynamicIcon is useful for applications that want to show icons dynamically by icon name, for example when using a content management system where icon names are stored in a database.

const App = () => (
  <DynamicIcon name="camera" color="red" size={48} />
);
Possible Breaking changes

We have switched to the "exports" property in package.json. This can cause issues if you have directly imported scripts from the package. Please open an issue if we need to refine this export map.

New icons 🎨

v0.470.0: New icons 0.470.0

Compare Source

New icons 🎨
Modified Icons 🔨

v0.469.0: New icons 0.469.0

Compare Source

Modified Icons 🔨

v0.468.0: New icons 0.468.0

Compare Source

New icons 🎨

v0.467.0: New icons 0.467.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.466.0: New icons 0.466.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.465.0: New icons 0.465.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.464.0: New icons 0.464.0

Compare Source

Modified Icons 🔨

v0.463.0: New icons 0.463.0

Compare Source

Modified Icons 🔨

v0.462.0: New icons 0.462.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.461.0: New icons 0.461.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.460.0: New icons 0.460.0

Compare Source

New icons 🎨

v0.459.0: New icons 0.459.0

Compare Source

New icons 🎨

v0.458.0: New icons 0.458.0

Compare Source

New icons 🎨

Modified Icons 🔨

Other Changes

Full Changelog: lucide-icons/lucide@0.457.0...0.458.0

v0.457.0: New icons 0.457.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.456.0: Choosing import name style 0.456.0

Compare Source

What's Changed

Adjustable icon naming imports

Customize import name styles for lucide-react, lucide-vue, lucide-react-native, lucide-preact, to manage autocompletion in your IDE.

  1. Turn off autocomplete in your IDE:
    Add the following to your settings.json
{
  "typescript.preferences.autoImportFileExcludePatterns": [
    "lucide-react",
    "lucide-preact",
    "lucide-react-native",
    "lucide-vue-next"
  ]
}
  1. Create a custom module declaration file:

It allows you to choose the import name style.

For React:

declare module "lucide-react" {
  // Prefixed import names
  export * from "lucide-react/dist/lucide-react.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-react/dist/lucide-react.suffixed";
}

For Vue:

declare module "lucide-vue-next" {
  // Prefixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.suffixed";
}

v0.455.0: New icons 0.455.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.454.0: New icons 0.454.0

Compare Source

Modified Icons 🔨

v0.453.0: New icons 0.453.0

Compare Source

New icons 🎨

v0.452.0: New icons 0.452.0

Compare Source

Modified Icons 🔨

v0.451.0: New icons 0.451.0

Compare Source

Modified Icons 🔨

v0.449.0: New icons 0.449.0

Compare Source

New icons 🎨

v0.448.0: New icons 0.448.0

Compare Source

New icons 🎨

v0.447.0: New icons 0.447.0

Compare Source

v0.446.0: New icons 0.446.0

Compare Source

New icons 🎨

pacocoursey/next-themes (next-themes)

v0.4.4

Compare Source

What's Changed

New Contributors

Full Changelog: pacocoursey/next-themes@v0.4.3...v0.4.4

v0.4.3

Compare Source

What's Changed

  • Pass nonce to inline style tag when using disableTransitionOnChange

Full Changelog: pacocoursey/next-themes@v0.4.2...v0.4.3

v0.4.2

Compare Source

What's Changed

New Contributors

Full Changelog: pacocoursey/next-themes@v0.4.1...v0.4.2

v0.4.1

Compare Source

What's Changed

New Contributors

Full Changelog: pacocoursey/next-themes@v0.4.0...v0.4.1

v0.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: pacocoursey/next-themes@v0.3.0...v0.4.0

pnpm/pnpm (pnpm)

v9.15.4

Compare Source

v9.15.3

Compare Source

v9.15.2: pnpm 9.15.2

Compare Source

Patch Changes

  • Fixed publish/pack error with workspace dependencies with relative paths #​8904. It was broken in v9.4.0 (398472c).
  • Use double quotes in the command suggestion by pnpm patch on Windows #​7546.
  • Do not fall back to SSH, when resolving a git-hosted package if git ls-remote works via HTTPS #​8906.
  • Improve how packages with blocked lifecycle scripts are reported during installation. Always print the list of ignored scripts at the end of the output. Include a hint about how to allow the execution of those packages.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.1

Compare Source

v9.15.0

Compare Source

v9.14.4

Compare Source

v9.14.3

Compare Source

v9.14.2

Compare Source

Patch Changes

  • pnpm publish --json should work #​8788.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.1

Compare Source

Minor Changes

  • Added support for pnpm pack --json to print packed tarball and contents in JSON format #​8765.

Patch Changes

  • pnpm exec should print a meaningful error message when no command is provided #​8752.
  • pnpm setup should remove the CLI from the target location before moving the new binary #​8173.
  • Fix ERR_PNPM_TARBALL_EXTRACT error while installing a dependency from GitHub having a slash in branch name #​7697.
  • Don't crash if the use-node-version setting is used and the system has no Node.js installed #​8769.
  • Convert settings in local .npmrc files to their correct types. For instance, child-concurrency should be a number, not a string #​5075.
  • pnpm should fail if a project requires a different package manager even if manage-package-manager-versions is set to true.
  • pnpm init should respect the --dir option #​8768.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
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.

Copy link

vercel bot commented Sep 30, 2024

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

Name Status Preview Comments Updated (UTC)
ts-ghost-docs ❌ Failed (Inspect) Jan 16, 2025 6:08pm

Copy link

changeset-bot bot commented Sep 30, 2024

⚠️ No Changeset found

Latest commit: 46bc69f

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6b244ce to cc4f9d2 Compare September 30, 2024 16:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cc4f9d2 to dcceaec Compare October 4, 2024 21:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dcceaec to d18deb3 Compare October 5, 2024 12:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d18deb3 to 40de0c1 Compare October 5, 2024 19:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 40de0c1 to c9974d9 Compare October 10, 2024 15:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c9974d9 to a4fc1cb Compare October 11, 2024 09:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a4fc1cb to a68abb3 Compare October 12, 2024 02:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a68abb3 to fa266ff Compare October 14, 2024 19:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fa266ff to 50a667f Compare October 18, 2024 02:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 50a667f to 0ad5703 Compare October 19, 2024 15:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0ad5703 to ffa61d2 Compare October 26, 2024 04:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ffa61d2 to 02753cd Compare October 28, 2024 13:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 02753cd to a348b5f Compare October 31, 2024 04:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a348b5f to 9183701 Compare October 31, 2024 14:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d8c07c8 to 45bb9b6 Compare December 8, 2024 14:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 45bb9b6 to db38664 Compare December 9, 2024 15:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from db38664 to b3f8d34 Compare December 13, 2024 07:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b3f8d34 to f9ee424 Compare December 14, 2024 03:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f9ee424 to e42af43 Compare December 22, 2024 21:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e42af43 to 04652c2 Compare December 23, 2024 00:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 04652c2 to 7513fa4 Compare December 23, 2024 11:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7513fa4 to 86d5a79 Compare December 30, 2024 17:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 86d5a79 to 125aa86 Compare January 9, 2025 03:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 125aa86 to d574db6 Compare January 11, 2025 22:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d574db6 to 52e4806 Compare January 13, 2025 12:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 52e4806 to 96737af Compare January 14, 2025 17:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 96737af to e6c1bd8 Compare January 16, 2025 12:59
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