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 minor dependencies #178

Merged
merged 2 commits into from
Dec 26, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 17, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@clack/prompts (source) ^0.8.0 -> ^0.9.0 age adoption passing confidence
openai 4.76.1 -> 4.77.0 age adoption passing confidence
pkgroll 2.5.1 -> 2.6.0 age adoption passing confidence

Release Notes

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

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
openai/openai-node (openai)

v4.77.0

Compare Source

Full Changelog: v4.76.3...v4.77.0

Features
  • api: new o1 and GPT-4o models + preference fine-tuning (#​1229) (2e872d4)
Chores

v4.76.3

Compare Source

Full Changelog: v4.76.2...v4.76.3

Chores
  • internal: better ecosystem test debugging (86fc0a8)
Documentation

v4.76.2

Compare Source

Full Changelog: v4.76.1...v4.76.2

Chores
privatenumber/pkgroll (pkgroll)

v2.6.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 enabled auto-merge (squash) December 17, 2024 20:08
@renovate renovate bot force-pushed the renovate/update-minor-dependencies branch from f2e8ed9 to 1d266b8 Compare December 19, 2024 23:39
@renovate renovate bot changed the title fix(deps): update dependency openai to v4.77.0 fix(deps): update all minor dependencies Dec 19, 2024
@renovate renovate bot force-pushed the renovate/update-minor-dependencies branch from 1d266b8 to 76b5e6d Compare December 24, 2024 02:31
@renovate renovate bot merged commit 6f7f741 into master Dec 26, 2024
2 checks passed
@renovate renovate bot deleted the renovate/update-minor-dependencies branch December 26, 2024 00:42
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.

1 participant