Skip to content

chore(deps): update @happyvertical/utils to ^0.66.0#22

Merged
have-renovate[bot] merged 1 commit intomainfrom
renovate/happyvertical-utils-0.x
Jan 17, 2026
Merged

chore(deps): update @happyvertical/utils to ^0.66.0#22
have-renovate[bot] merged 1 commit intomainfrom
renovate/happyvertical-utils-0.x

Conversation

@have-renovate
Copy link
Copy Markdown
Contributor

@have-renovate have-renovate Bot commented Dec 23, 2025

This PR contains the following updates:

Package Change Age Confidence
@happyvertical/utils (source) ^0.60.2 -> ^0.66.0 age confidence

Release Notes

happyvertical/sdk (@​happyvertical/utils)

v0.66.11

Compare Source

Patch Changes

v0.66.10

Compare Source

Patch Changes
  • Bug Fixes

    • convert ? placeholders to $1 style for postgres (#​725) (sql)

v0.66.9

Compare Source

v0.66.8

Compare Source

Patch Changes

v0.66.7

Compare Source

Patch Changes

v0.66.6

Compare Source

Patch Changes
  • Features

    • add browser-safe entry point (#​743) (utils)

v0.66.5

Compare Source

Patch Changes
  • Features

    • add browser-safe entry point (#​742) (utils)

v0.66.4

Compare Source

Patch Changes
  • Bug Fixes

    • capture pg error details (code, detail, hint, severity) (sql)

v0.66.3

Compare Source

Patch Changes
  • Bug Fixes

    • include original error in postgres table creation error message (sql)

v0.66.2

Compare Source

Patch Changes
  • Features

    • add issue checkup workflow (#​734) (ci)

v0.66.1

Compare Source

Patch Changes
  • Features

    • integrate Claude Code Action via org workflows (#​733)

v0.66.0

Compare Source

v0.65.1

Compare Source

Patch Changes
  • Features

    • add Google and GitHub OAuth providers (#​717) (auth)

v0.65.0

Compare Source

v0.64.0

Compare Source

v0.63.0

Compare Source

Minor Changes
  • 8c28ddc: Add number type support to CLI OptionConfig.

    Previously OptionConfig.type only supported 'string' | 'boolean'. Now it supports 'number' as well:

    const command = {
      name: "search",
      options: {
        limit: { type: "number", description: "Max results", default: 50 },
        threshold: { type: "number", description: "Match threshold", short: "t" },
      },
    };
    
    // Handler receives actual numbers, not strings
    const result = parseCliArgs(
      ["search", "--limit=100", "-t", "0.75"],
      [command]
    );
    console.log(result.options.limit); // 100 (number)
    console.log(result.options.threshold); // 0.75 (number)

    Features:

    • Automatic conversion from string to number after parsing
    • Supports integers, decimals, negative numbers, and scientific notation
    • Validates that values are valid numbers (throws error for invalid values like --limit=abc)
    • Empty string values are treated as invalid (throws error for --limit=)
    • Default values work correctly with number types

v0.62.0

Compare Source

v0.61.4

Compare Source

Patch Changes
  • Bug Fixes

    • use flex instead of inline-flex for Satori compatibility (images)

v0.61.3

Compare Source

Patch Changes
  • Bug Fixes

    • use WOFF format for Google Fonts (Satori compatibility) (images)

v0.61.2

Compare Source

Patch Changes

v0.61.1

Compare Source

Patch Changes
  • Features

    • add image description, embedding, and generation methods (#​702) (ai)

v0.61.0

Compare Source

v0.60.9

Compare Source

Patch Changes
  • Bug Fixes

    • cast Date parameters to TIMESTAMP for DuckDB (#​698) (sql)

v0.60.8

Compare Source

v0.60.7

Compare Source

Patch Changes
  • Bug Fixes

    • handle JSON objects/arrays in insertRecordsWithCast (sql)

v0.60.6

Compare Source

v0.60.5

Compare Source

v0.60.4

Compare Source

Patch Changes
  • Bug Fixes

    • make changeset publish idempotent for existing tags (#​673) (ci)

v0.60.3

Compare Source

Patch Changes
  • Bug Fixes

    • add NODE_AUTH_TOKEN to setup-environment action (ci)

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Renovate Bot.

@have-renovate have-renovate Bot force-pushed the renovate/happyvertical-utils-0.x branch from 9b24489 to ff1aea6 Compare December 27, 2025 13:37
@have-renovate have-renovate Bot changed the title chore(deps): update @happyvertical/utils to ^0.61.0 chore(deps): update @happyvertical/utils to ^0.62.0 Dec 27, 2025
@have-renovate have-renovate Bot force-pushed the renovate/happyvertical-utils-0.x branch from ff1aea6 to 9913583 Compare December 28, 2025 16:36
@have-renovate have-renovate Bot changed the title chore(deps): update @happyvertical/utils to ^0.62.0 chore(deps): update @happyvertical/utils to ^0.63.0 Dec 28, 2025
@have-renovate have-renovate Bot changed the title chore(deps): update @happyvertical/utils to ^0.63.0 chore(deps): update @happyvertical/utils to ^0.64.0 Dec 28, 2025
@have-renovate have-renovate Bot force-pushed the renovate/happyvertical-utils-0.x branch 2 times, most recently from 5834f6e to 828bf9b Compare December 29, 2025 01:42
@have-renovate have-renovate Bot changed the title chore(deps): update @happyvertical/utils to ^0.64.0 chore(deps): update @happyvertical/utils to ^0.65.0 Dec 29, 2025
@have-renovate have-renovate Bot force-pushed the renovate/happyvertical-utils-0.x branch from 828bf9b to 4a2fa8a Compare January 1, 2026 03:37
@have-renovate have-renovate Bot changed the title chore(deps): update @happyvertical/utils to ^0.65.0 chore(deps): update @happyvertical/utils to ^0.66.0 Jan 1, 2026
@have-renovate have-renovate Bot force-pushed the renovate/happyvertical-utils-0.x branch from 4a2fa8a to 3336b6b Compare January 16, 2026 17:46
@have-renovate have-renovate Bot force-pushed the renovate/happyvertical-utils-0.x branch from 3336b6b to dde428d Compare January 17, 2026 21:37
@have-renovate have-renovate Bot merged commit bc704a2 into main Jan 17, 2026
2 checks passed
@have-renovate have-renovate Bot deleted the renovate/happyvertical-utils-0.x branch January 17, 2026 22:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants