Skip to content

Update Routine updates#96

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

Update Routine updates#96
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/routine-updates

Conversation

@renovate

@renovate renovate Bot commented Jun 3, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@types/node (source) 24.12.424.13.2 age confidence devDependencies minor
@types/react (source) 19.2.1519.2.17 age confidence devDependencies patch
actions/checkout (changelog) de0fac2df4cb1c action digest
convex (source) 1.39.11.42.0 age confidence devDependencies minor
eslint (source) 10.4.110.5.0 age confidence devDependencies minor 10.6.0
eslint-plugin-react-refresh 0.5.20.5.3 age confidence devDependencies patch
globals 17.6.017.7.0 age confidence devDependencies minor
prettier (source) 3.8.33.8.4 age confidence devDependencies patch 3.9.1 (+2)
react (source) 19.2.619.2.7 age confidence devDependencies patch
react-dom (source) 19.2.619.2.7 age confidence devDependencies patch
remeda (source) 2.37.02.39.0 age confidence dependencies minor
resend 6.12.46.14.0 age confidence dependencies minor 6.16.0 (+1)
svix 1.95.11.96.1 age confidence dependencies minor
typescript-eslint (source) 8.60.08.62.0 age confidence devDependencies minor
vitest (source) 4.1.74.1.9 age confidence devDependencies patch

Release Notes

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 [email protected],
    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.
eslint/eslint (eslint)

v10.5.0

Compare Source

Features

  • 5ca8c52 feat: correct stack tracking in max-nested-callbacks (#​20973) (Pixel998)
  • b565783 feat: report no-with violations at the with keyword (#​20971) (Pixel998)
  • 2ce032f feat: report max-lines-per-function violations at function head (#​20966) (Pixel998)
  • 732cb3e feat: report max-nested-callbacks violations at function head (#​20967) (Pixel998)
  • f9c138a feat: report max-depth violations on keywords (#​20943) (Pixel998)
  • bdb496c feat: correct max-depth handling for else-if chains (#​20944) (Pixel998)
  • c296873 feat: update error loc in max-statements to function header (#​20907) (Taejin Kim)

Documentation

  • 8ae1b5b docs: Update README (GitHub Actions Bot)
  • ca7eb90 docs: update Node.js prerequisites to include ICU support (#​20962) (Francesco Trotta)
  • f99b47a docs: Update README (GitHub Actions Bot)
  • acf03d4 docs: clarify precedence of parserOptions over languageOptions (#​20926) (sethamus)

Chores

ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)

v0.5.3

Compare Source

  • Fix check for non component class exported via export { } #​110 (fixes #​109)
sindresorhus/globals (globals)

v17.7.0

Compare Source

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
facebook/react (react)

v19.2.7: 19.2.7 (June 1st, 2026)

Compare Source

React Server Components
remeda/remeda (remeda)

v2.39.0

Compare Source

Bug Fixes

v2.38.0

Compare Source

Bug Fixes
  • drop,filter,groupBy,indexBy,isEmptyish,mapKeys,omit,pick,prop,sample,...: Remove trivial type-fest utilities (#​1366) (c8a7c2b)
resend/resend-node (resend)

v6.14.0

Compare Source

v6.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: resend/resend-node@v6.12.4...v6.13.0

svix/svix-webhooks (svix)

v1.96.1

Compare Source

  • Libs/Java: Upgrade jackson dependency to v2.21.4
  • Libs/Rust: Make MessagePollerv2Consumer*Options public

v1.96.0

Compare Source

  • CLI (New): Add --token option to svix listen
  • Libs (New): AutoConfigConsumer SDK to consume Polling Endpoints
  • Libs/Csharp: Accept a valid signature when it is last in a multi-sig header (thanks [@​devteamaegis])
  • Libs/All: Stop sending with_content parameter to the backend, handle it client-side

v1.95.2

Compare Source

  • Libs/Kotlin: Webhooks AutoConfig SDK
  • Libs: Add health.get to Go, Python and Rust SDK
    • It was previously missing from these SDKs for historical reasons
  • Libs/All: Add versions in user-agent header
  • Libs/Go: Add additional internal management APIs
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.

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 (a5180)
  • browser:
    • Wait for orchestrator readiness before resolving browser sessions [backport to v4] - by Vladimir and Séamus O'Connor in #​10555 (7fb29)
    • Wait for iframe tester readiness before preparing [backport to v4] - by Vladimir and Séamus O'Connor in #​10497 and #​10556 (fbc62)
  • mocker:
    • Hoist vi.mock() for vite-plus/test imports [backport to v4] - by Hiroshi Ogawa, LongYinan, Claude Opus 4.8 and Vladimir in #​10548 (2c955)
  • pool:
    • Prevent test run hang on worker crash [backport to v4] - by Ari Perkkiö and Jattioui Ismail in #​10543 and #​10564 (934b0)
View changes on GitHub

v4.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

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 becomes conflicted, 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 Jun 3, 2026

Copy link
Copy Markdown

Open in StackBlitz

npm i https://pkg.pr.new/@convex-dev/resend@96

commit: 0aeece6

@renovate renovate Bot force-pushed the renovate/routine-updates branch from 11a29c3 to 19e34cf Compare June 4, 2026 10:07
@renovate renovate Bot changed the title Update Routine updates to df4cb1c Update Routine updates Jun 4, 2026
@renovate renovate Bot force-pushed the renovate/routine-updates branch 5 times, most recently from bc07709 to 1c13aee Compare June 10, 2026 19:41
@renovate renovate Bot force-pushed the renovate/routine-updates branch 9 times, most recently from 8a61261 to 8131c97 Compare June 18, 2026 19:06
@renovate renovate Bot force-pushed the renovate/routine-updates branch 6 times, most recently from aa06eef to 92229e6 Compare June 27, 2026 02:02
@renovate renovate Bot force-pushed the renovate/routine-updates branch from 92229e6 to 0aeece6 Compare June 28, 2026 14:51
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