Skip to content

Pin dependencies#10

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/routine-updates
Open

Pin dependencies#10
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/routine-updates

Conversation

@renovate

@renovate renovate Bot commented Apr 6, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Pending Age Confidence
@convex-dev/eslint-plugin (source) devDependencies pin ^2.0.02.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.3 age confidence
@eslint/js (source) devDependencies patch 9.39.19.39.4 age confidence
@types/node (source) devDependencies pin ^24.10.424.10.8 age confidence
@types/react (source) devDependencies pin ^19.2.719.2.8 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.2 age confidence
actions/checkout (changelog) action digest de0fac2df4cb1c
actions/setup-node (changelog) action digest 2028fbc48b55a0
convex (source) devDependencies minor 1.38.01.42.0 age confidence
convex-test (source) devDependencies patch 0.0.400.0.53 0.0.54 age confidence
cpy-cli devDependencies pin ^7.0.07.0.0 age confidence
eslint (source) devDependencies patch 9.39.19.39.4 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.0.0 age confidence
npm-run-all2 devDependencies patch 9.0.09.0.2 age confidence
pkg-pr-new (source) devDependencies pin ^0.0.600.0.60 age confidence
prettier (source) devDependencies minor 3.6.23.8.4 3.9.0 (+1) age confidence
react (source) devDependencies pin ^19.2.119.2.3 age confidence
react-dom (source) devDependencies pin ^19.2.119.2.3 age confidence
typescript-eslint (source) devDependencies minor 8.47.08.62.0 age confidence
vite (source) devDependencies minor 7.2.67.3.5 7.3.6 age confidence
vitest (source) devDependencies minor 4.0.174.1.9 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.4

Compare Source

Bug Fixes

Documentation

Chores

v9.39.3

Compare Source

Bug Fixes

  • 791bf8d fix: restore TypeScript 4.0 compatibility in types (#​20504) (sethamus)

Chores

v9.39.2

Compare Source

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#​20381) (sethamus)

Build Related

Chores

get-convex/convex-backend (convex)

v1.42.0

  • Added a new npx convex project create command that can be used
    to create new projects programmatically.
  • Added a new --names-only flag to npx convex env list
    (and npx convex env default list). This flag shows the names of
    the env vars that are set, without the values. It can be useful
    to let AI coding agents know the variables that are set on a deployment,
    without giving them the actual values.
  • Added a new useStaleSnapshot option to the arguments for runQuery.
    This is an advanced feature that can be used to allow mutations
    to avoid optimistic concurrency control (OCC) conflicts in some cases
    where they can commit even though they depend on conflicting reads.
    This change allows us to improve the performance of some of the
    official Convex components, including Workpool.
  • Improved the documentation of db.* methods to more clearly explain
    the difference between the old APIs without table names
    (e.g. db.get(userId)) and the new APIs with table names
    (e.g. db.get("users", userId)).
  • Fixed an issue where the CLI would not surface permission errors
    correctly when the user or token doesn’t have permission to do something.
  • Exposes the current scheduled function's ID as scheduledFunctionId in
    ctx.meta.getRequestMetadata().
  • npx convex insights has a new --json flag that makes the command
    output easier to parse programmatically.
  • File storage: marked a few TypeScript types in convex/server as @deprecated
    (FileMetadata, FileStorageId, StorageId). These types are used
    only by file storage APIs that were deprecated in convex@1.6.0,
    so we also marked them as @deprecated for clarity.
  • Bumps the ws peer dependency to avoid a vulnerable range.

v1.41.0

  • It is now possible to set limits on nested queries and mutations
    with the new transactionLimits option in runQuery/runMutation.
  • npx convex ai-files now installs skills with separate copies of
    each skill for each coding agent instead of using symlinks.
    We made this change to avoid known issues with symlinks on Windows.
  • When using Convex in anonymous mode (without a Convex account),
    npx convex dev now starts a different dashboard server for each
    deployment. This ensures the dashboard always connects to the
    right deployment when multiple deployments are running at the same time.

v1.40.0

  • You can now create a local deployment in a specific Convex cloud project with
    npx convex deployment create team-slug:project-slug:local.
  • You can now move a local deployment to another cloud project
    using npx convex deployment select team-slug:project-slug:local. This command warns
    when it moves the deployment to another project.
  • The CLI now shows more clearly which deployment is targeted when running commands
    such as npx convex dev and npx convex deploy.
  • Added a new <AuthRefreshing /> helper component, used to show indicators when
    function calls are paused because the authentication token is refreshing.
  • Removed --local and --cloud flags from npx convex dev. The behavior of these flags
    was misleading when a deployment was already selected. Instead, use
    npx convex deployment select local to use a local deployment, and
    npx convex deployment select dev to use your personal cloud dev deployment.
  • The CLI now provides guidance when TypeScript type checking is taking too long.
  • Improved the CLI command documentation to include more details and examples.
  • npx convex logs: --tail is now accepted as an alias for the --history flag.
  • When creating a local deployment, the CLI now skips importing the default environment variables
    from the Convex cloud project if you don’t have permission to view the default environment
    variables instead of crashing.

v1.39.1

  • Fixes package.json bin entrypoint bug in 1.39.0.

v1.39.0

  • Apps and components may now declare typesafe env vars that they require. Both defineApp
    and defineComponent now accept an env object with string keys and validator values.
    Declared environment variables must be present and match the validators before deployment.
  • Allow --local-cloud-port, --local-site-port, --local-backend-version and
    --local-force-upgrade options to npx convex dev to be used whenever using a local deployment.
  • The AsyncLocalStorage and AsyncResource APIs from node:async_hooks are now available
    in the standard Convex runtime. Note that stored values will not be threaded through calls to
    ctx.runQuery/ctx.runMutation/ctx.runAction.
get-convex/convex-test (convex-test)

v0.0.53

Compare Source

  • Support scheduled functions correctly with or without fake timers,
    by always serializing scheduled mutations with the global transaction
    manager.

v0.0.52

Compare Source

  • Add implementation for ctx.meta.getDeploymentMetadata().
  • Add support for internal audit log syscall.

v0.0.51

Compare Source

  • Add implementation for internal snapshot query syscall.

v0.0.50

Compare Source

  • Correctly deserializes ConvexError thrown within nested functions.
  • Fixes a bug where orphaned scheduled functions would eventually fire
    and hit "Cannot read properties of null (reading 'state')".

v0.0.49

Compare Source

  • Changes the test ID formatting to not include a ; and be the
    standard length of regular IDs for folks who have validators.

v0.0.48

Compare Source

  • Add implementations for internal syscalls for upcoming ctx.meta
    features (ctx.meta.{getFunctionMetadata,getTransactionMetrics})

v0.0.47

Compare Source

  • Fix: Isolate function stack tracking between parallel function calls
    to prevent corruption when calling different components in parallel.
    This may have presented previously as not being able to find modules
    that existed but were being resolved for the wrong component.

v0.0.46

Compare Source

  • Changes finishAllScheduledFunctions to pump the macrotask queue instead
    of microtask queue to enable dynamic imports to resolve, which regressed
    in 0.0.45.

v0.0.45

Compare Source

  • Replaces global usage with AsyncLocalStorage-scoped test state for isolation.
    Now tests shouldn't fail due to dirty state left behind by other tests.
  • Better support for setTimeout usage within tested functions
  • Improves typing for inline calls to t.mutation(() => {}) to be a union
    instead of overload so TestConvex<SpecificSchema> is assignable to
    TestConvex<GenericSchema>.

v0.0.44

Compare Source

  • More correctly implements nested transactions and parallel calls.
  • Starts validating return validators.
  • Propagates auth more correctly between callsites-not scheduler or components.

v0.0.43

Compare Source

  • Support pagination when documents may be deleted by using the values as the cursor
    instead of the ID.

v0.0.41

Compare Source

  • Removes ActionCtx support for now. Calling component actions was not working correctly.
bcomnes/npm-run-all2 (npm-run-all2)

v9.0.2

Compare Source

Merged
  • fix: update Node.js version requirements #232
  • Upgrade: Bump codecov/codecov-action from 6 to 7 #233
  • fix: bump shell-quote to ^1.8.4 #236
  • Upgrade: Bump pidtree from 0.6.1 to 1.0.0 #234

v9.0.1

Compare Source

Merged
  • fix: update help.js to include --node-run option details #230
prettier/prettier (prettier)

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d

v3.8.3

Compare Source

diff

SCSS: Prevent trailing comma in if() function (#​18471 by @​kovsu)
// Input
$value: if(sass(false): 1; else: -1);

// Prettier 3.8.2
$value: if(
  sass(false): 1; else: -1,
);

// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

v3.8.2

Compare Source

diff

Angular: Support Angular v21.2 (#​18722, #​19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @&#8203; character, you should use the "&#&#8203;64;" HTML entity instead. (3:3)

<!-- Prettier 3.8.2 -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.1 -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.2 -->
@&#8203;let fn = (a) => (a ? 1 : 2);

{{ fn(a instanceof b) }}

v3.8.1

Compare Source

diff

Include available printers in plugin type declarations (#​18706 by @​porada)
// Input
import * as prettierPluginEstree from "prettier/plugins/estree";

// Prettier 3.8.0
// Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339)
prettierPluginEstree.printers.estree; //=> any

// Prettier 3.8.1
prettierPluginEstree.printers.estree; //=> Printer
prettierPluginEstree.printers["estree-json"]; //=> Printer

v3.8.0

Compare Source

diff

🔗 Release Notes

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.0 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.62.0

Compare Source

🚀 Features
  • remove redundant package.json "files" (#​12444)
❤️ Thank You

See GitHub Releases for more information.

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

v8.61.1

Compare Source

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

See GitHub Releases for more information.

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

v8.61.0

Compare Source

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

See GitHub Releases for more information.

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

v8.60.1

Compare Source

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

See GitHub Releases for more information.

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

v8.60.0

Compare Source

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

See GitHub Releases for more information.

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

v8.59.4

Compare Source

🩹 Fixes
  • typescript-eslint: export Compatible* types from typescript-eslint to resolve pnpm TS error (#​12340)
❤️ Thank You

See GitHub Releases for more information.

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

v8.59.3

Compare Source

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

See GitHub Releases for more information.

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

v8.59.2

Compare Source

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

See GitHub Releases for more information.

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

v8.59.1

Compare Source

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

See GitHub Releases for more information.

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

v8.59.0

Compare Source

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

See GitHub Releases for more information.

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

v8.58.2

Compare Source

🩹 Fixes
  • remove tsbuildinfo cache file from published packages (#​12187)
❤️ Thank You

See GitHub Releases for more information.

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

v8.58.1

Compare Source

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

See GitHub Releases for more information.

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

v8.58.0

Compare Source

🚀 Features
❤️ Thank You

See GitHub Releases for more information.

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

v8.57.2

Compare Source

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

See GitHub Releases for more information.

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

v8.57.1

Compare Source

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

See GitHub Releases for more information.

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

v8.57.0

Compare Source

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

See GitHub Releases for more information.

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

v8.56.1

Compare Source

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

See GitHub Releases for more information.

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

v8.56.0

Compare Source

🚀 Features
❤️ Thank You

See GitHub Releases for more information.

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

v8.55.0

Compare Source

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

See GitHub Releases for more information.

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

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.

vitejs/vite (vite)

v7.3.5

Compare Source

Please refer to CHANGELOG.md for details.

v7.3.3

Compare Source

Please refer to CHANGELOG.md for details.

v7.3.2

Compare Source

Please refer to CHANGELOG.md for details.

v7.3.1

Compare Source

Please refer to CHANGELOG.md for details.

v7.3.0

Compare Source

Please refer to CHANGELOG.md for details.

v7.2.7

Compare Source

vitest-dev/vitest (vitest)

v4.1.9

Compare Source

🐞 Bug Fixes
  • Fix importOriginal with optimizer and query import [backport to v4] - by Hiroshi Ogawa, David Harris, Codexand Vladimir in [#​10546](https://redirect.gi

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/Los_Angeles)

  • Branch creation
    • Monday through Friday (* * * * 1-5)
  • 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.

@pkg-pr-new

pkg-pr-new Bot commented Apr 6, 2026

Copy link
Copy Markdown

Open in StackBlitz

npm i https://pkg.pr.new/get-convex/static-hosting/@convex-dev/static-hosting@10

commit: 7486c72

@renovate renovate Bot force-pushed the renovate/routine-updates branch 4 times, most recently from 496f7e7 to 390c33d Compare April 20, 2026 04:47
@renovate renovate Bot force-pushed the renovate/routine-updates branch 6 times, most recently from 8103ed1 to 67e186a Compare April 30, 2026 18:42
@renovate renovate Bot force-pushed the renovate/routine-updates branch 3 times, most recently from 7e6cd53 to e06f75c Compare May 10, 2026 08:25
@renovate renovate Bot force-pushed the renovate/routine-updates branch 8 times, most recently from 6f1bf44 to e85cb07 Compare May 18, 2026 11:09
@renovate renovate Bot force-pushed the renovate/routine-updates branch 6 times, most recently from 6c40403 to 9701722 Compare May 26, 2026 04:37
@renovate renovate Bot force-pushed the renovate/routine-updates branch 2 times, most recently from 60c4652 to 4fe30fe Compare June 3, 2026 16:38
@renovate renovate Bot force-pushed the renovate/routine-updates branch 3 times, most recently from 8765e92 to 44cbf46 Compare June 5, 2026 02:08
@renovate renovate Bot force-pushed the renovate/routine-updates branch 7 times, most recently from f5441c8 to a160109 Compare June 18, 2026 19:01
@renovate renovate Bot force-pushed the renovate/routine-updates branch from a160109 to 44dae2f Compare June 25, 2026 21:37
@renovate renovate Bot force-pushed the renovate/routine-updates branch from 44dae2f to 7486c72 Compare June 27, 2026 01:32
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