Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Dec 22, 2025

This PR contains the following updates:

Package Type Update Change Pending Age Confidence
@arethetypeswrong/cli (source) devDependencies pin ^0.18.00.18.2 age confidence
@​convex-dev/eslint-plugin devDependencies pin ^1.0.01.0.0 age confidence
@edge-runtime/vm (source) devDependencies pin ^5.0.05.0.0 age confidence
@eslint/eslintrc devDependencies pin ^3.3.13.3.1 age confidence
@eslint/js (source) devDependencies patch 9.39.19.39.2 age confidence
@polar-sh/checkout (source) devDependencies pin ^0.1.140.1.14 age confidence
@polar-sh/sdk devDependencies pin ^0.41.50.41.5 age confidence
@radix-ui/react-dialog (source) devDependencies pin ^1.1.151.1.15 age confidence
@​radix-ui/react-icons devDependencies pin ^1.3.21.3.2 age confidence
@radix-ui/react-separator (source) devDependencies pin ^1.1.71.1.8 age confidence
@radix-ui/react-slot (source) devDependencies pin ^1.2.31.2.4 age confidence
@tailwindcss/postcss (source) devDependencies pin ^4.1.174.1.17 age confidence
@tailwindcss/vite (source) devDependencies pin ^4.1.174.1.17 age confidence
@tanstack/react-table (source) devDependencies pin ^8.21.38.21.3 age confidence
@types/node (source) devDependencies pin ^20.19.2520.19.25 age confidence
@types/react (source) devDependencies pin ^19.2.719.2.7 age confidence
@types/react-dom (source) devDependencies pin ^19.2.319.2.3 age confidence
@vitejs/plugin-react (source) devDependencies pin ^5.1.15.1.1 age confidence
actions/checkout (changelog) action digest 08c690393cb6ef
autoprefixer devDependencies pin ^10.4.2110.4.22 age confidence
class-variance-authority devDependencies pin ^0.7.10.7.1 age confidence
clsx devDependencies pin ^2.1.12.1.1 age confidence
convex (source) devDependencies minor 1.29.31.31.2 1.31.3 age confidence
convex-helpers (source) devDependencies pin ^0.1.1040.1.106 age confidence
convex-helpers (source) dependencies patch 0.1.1060.1.108 0.1.109 age confidence
convex-test (source) devDependencies patch 0.0.400.0.41 age confidence
cpy-cli devDependencies pin ^6.0.06.0.0 age confidence
eslint (source) devDependencies patch 9.39.19.39.2 age confidence
eslint-plugin-react devDependencies pin ^7.37.57.37.5 age confidence
eslint-plugin-react-hooks (source) devDependencies pin ^7.0.17.0.1 age confidence
eslint-plugin-react-refresh devDependencies pin ^0.4.240.4.24 age confidence
globals devDependencies pin ^16.5.016.5.0 age confidence
lucide-react (source) devDependencies pin ^0.548.00.548.0 age confidence
next-themes devDependencies pin ^0.4.60.4.6 age confidence
pkg-pr-new (source) devDependencies pin ^0.0.600.0.60 age confidence
postcss (source) devDependencies pin ^8.5.68.5.6 age confidence
prettier (source) devDependencies minor 3.6.23.7.4 age confidence
react (source) devDependencies pin ^19.2.019.2.0 age confidence
react-dom (source) devDependencies pin ^19.2.019.2.0 age confidence
remeda (source) devDependencies pin ^2.32.02.32.0 age confidence
remeda (source) dependencies minor 2.32.02.33.1 age confidence
tailwind-merge devDependencies pin ^3.4.03.4.0 age confidence
tailwindcss (source) devDependencies pin ^4.1.174.1.17 age confidence
tw-animate-css devDependencies pin ^1.4.01.4.0 age confidence
typescript-eslint (source) devDependencies minor 8.47.08.52.0 age confidence
use-debounce devDependencies pin ^10.0.610.0.6 age confidence
wrangler (source) devDependencies pin ^4.45.24.51.0 age confidence

Add the preset :preserveSemverRanges to your config if you don't want to pin your dependencies.


Release Notes

eslint/eslint (@​eslint/js)

v9.39.2

Compare Source

get-convex/convex-js (convex)

v1.31.2

  • Bug fix: the TypeScript types of the new ctx.db APIs introduced in 1.31.0
    incorrectly allowed passing IDs with types broader than the table name
    argument (e.g. db.get("table1", id) where id is
    Id<"table1"> | Id<"table2">). This issue is fixed in 1.31.2.

v1.31.1

v1.31.0

  • db.get, db.patch, db.replace, and db.delete now accept a table name as
    the first argument (e.g. db.get("messages", messageId) instead of
    db.get(messageId)). This new syntax is more ergonomic, safer, and will allow
    developers to customize IDs in the future. We recommend that all developers
    migrate to the new syntax, using the ESLint rule
    @convex-dev/explicit-table-ids
    or our standalone codemod tool
    (npx @&#8203;convex-dev/codemod@latest explicit-ids).
    Learn more on news.convex.dev

v1.30.0

  • The --preview-create parameter for npx convex deploy will now error if
    used with a deploy key that is not a preview deploy key. Previously, the flag
    would be ignored in this situation, and npx convex deploy would deploy to
    the production deployment. If you were depending on this behavior, make sure
    to remove the --preview-create flag when deploying to production.
get-convex/convex-helpers (convex-helpers)

v0.1.108

Compare Source

  • makeUseQueryWithStatus: fix handling of some argument values
    (credit: RhysSullivan)
  • Triggers: fix handling of ctx.db calls with a table name parameter

v0.1.107

Compare Source

  • Zod support: branded object types are now supported (credit: gary-ix)
  • Fixes skipConvexValidation for zod custom functions to still do zod validation.
get-convex/convex-test (convex-test)

v0.0.41

Compare Source

eslint/eslint (eslint)

v9.39.2

Compare Source

prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

remeda/remeda (remeda)

v2.33.1

Compare Source

Bug Fixes
  • Refine typing for optional tuple elements when exactOptionalPropertyTypes is enabled (#​1246) (8c3f7c6)

This change affects the following utilities when dealing with optional tuple elements:

  • chunk
  • drop
  • filter
  • groupByProp
  • hasAtLeast
  • isEmptyish
  • mergeAll
  • omit
  • partialBind
  • partialLastBind
  • pick
  • prop
  • sample

v2.33.0

Compare Source

Features

v2.32.2

Compare Source

Bug Fixes

v2.32.1

Compare Source

Bug Fixes
  • groupByProp: narrow union types in simple arrays correctly (#​1232) (fbc907c)
typescript-eslint/typescript-eslint (typescript-eslint)

v8.52.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.51.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.50.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.50.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.49.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.48.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.48.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 04:59 AM, only on Monday ( * 0-4 * * 1 ) in timezone America/Los_Angeles, 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.

@coderabbitai
Copy link

coderabbitai bot commented Dec 22, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@pkg-pr-new
Copy link

pkg-pr-new bot commented Dec 22, 2025

Open in StackBlitz

npm i https://pkg.pr.new/get-convex/polar/@convex-dev/polar@32

commit: 0ad3a2c

@renovate renovate bot force-pushed the renovate/routine-updates branch 3 times, most recently from 660f4d2 to 5415ff4 Compare January 2, 2026 04:12
@renovate renovate bot force-pushed the renovate/routine-updates branch 2 times, most recently from a3ba17b to 1d68bb8 Compare January 5, 2026 23:22
@renovate renovate bot force-pushed the renovate/routine-updates branch from 1d68bb8 to 0ad3a2c Compare January 9, 2026 11:44
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