Skip to content

chore(deps): pin dependencies#14

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/routine-updates
Feb 10, 2026
Merged

chore(deps): pin dependencies#14
renovate[bot] merged 1 commit intomainfrom
renovate/routine-updates

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 8, 2026

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.1.1 age confidence
@edge-runtime/vm (source) devDependencies pin ^5.0.05.0.0 age confidence
@eslint/eslintrc devDependencies pin ^3.3.13.3.3 age confidence
@eslint/js (source) devDependencies patch 9.39.19.39.2 age confidence
@types/node (source) devDependencies pin ^20.19.2520.19.33 age confidence
@types/react (source) devDependencies pin ^19.2.719.2.13 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.3 age confidence
@workos-inc/authkit-react peerDependencies minor ^0.13.0^0.13.0 || ^0.16.0 age confidence
convex-test (source) devDependencies patch 0.0.400.0.41 age confidence
cpy-cli devDependencies pin ^7.0.07.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.26 age confidence
globals devDependencies pin ^17.0.017.3.0 age confidence
prettier (source) devDependencies minor 3.6.23.8.1 age confidence
react (source) devDependencies pin ^19.2.019.2.4 age confidence
react-dom (source) devDependencies pin ^19.2.019.2.4 age confidence
typescript-eslint (source) devDependencies minor 8.47.08.54.0 8.55.0 age confidence

⚠️ Renovate's pin functionality does not currently wire in the release age for a package, so the Minimum Release Age checks can apply. You will need to manually validate the Minimum Release Age for these package(s).

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

workos/authkit-react (@​workos-inc/authkit-react)

v0.16.0

Compare Source

What's Changed

Full Changelog: workos/authkit-react@v0.15.1...v0.16.0

v0.15.1

Compare Source

What's Changed

New Contributors

Full Changelog: workos/authkit-react@v0.15.0...v0.15.1

v0.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: workos/authkit-react@v0.14.0...v0.15.0

v0.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: workos/authkit-react@v0.13.0...v0.14.0

get-convex/convex-test (convex-test)

v0.0.41

Compare Source

eslint/eslint (eslint)

v9.39.2

Compare Source

prettier/prettier (prettier)

v3.8.1

Compare Source

v3.8.0

Compare Source

diff

🔗 Release note

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

typescript-eslint/typescript-eslint (typescript-eslint)

v8.54.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.53.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.53.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.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.

@renovate renovate Bot force-pushed the renovate/routine-updates branch 6 times, most recently from 611c30d to ce4d724 Compare February 9, 2026 23:23
@renovate renovate Bot changed the title fix(deps): pin dependencies chore(deps): pin dependencies Feb 9, 2026
@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented Feb 9, 2026

Open in StackBlitz

npm i https://pkg.pr.new/get-convex/workos-authkit/@convex-dev/workos-authkit@14

commit: 356512c

@renovate renovate Bot force-pushed the renovate/routine-updates branch from ce4d724 to 356512c Compare February 9, 2026 23:24
@renovate renovate Bot merged commit 04b64ec into main Feb 10, 2026
3 checks passed
@renovate renovate Bot deleted the renovate/routine-updates branch February 10, 2026 02:07
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