Skip to content

Update Routine updates - #69

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

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

Conversation

@renovate

@renovate renovate Bot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@convex-dev/workflow 0.4.40.4.6 age confidence dependencies patch
@convex-dev/workpool (source) 0.4.80.4.11 age confidence dependencies patch
@eslint/eslintrc 3.3.63.3.7 age confidence devDependencies patch
@types/react (source) 19.2.1719.2.18 age confidence devDependencies patch
@types/react-dom (source) 19.2.319.2.5 age confidence devDependencies patch 19.2.7 (+1)
@vitejs/plugin-react (source) 6.0.46.1.1 age confidence devDependencies minor
actions/checkout (changelog) de0fac2d23441a action digest
actions/setup-node (changelog) 48b55a02499707 action digest
convex (source) 1.44.01.45.0 age confidence devDependencies minor
convex-helpers (source) 0.1.1200.1.123 age confidence dependencies patch
convex-test (source) 0.0.540.0.56 age confidence devDependencies patch
eslint-plugin-react-refresh 0.5.30.5.5 age confidence devDependencies patch 0.5.6
globals 17.8.017.12.0 age confidence devDependencies minor
pkg-pr-new (source) 0.0.800.0.88 age confidence devDependencies patch
type-fest 5.8.05.9.0 age confidence dependencies minor
typescript-eslint (source) 8.65.08.69.0 age confidence devDependencies minor
vite (source) 8.1.58.2.2 age confidence devDependencies minor
vitest (source) 4.1.104.1.11 age confidence devDependencies patch

Release Notes

get-convex/workflow (@​convex-dev/workflow)

v0.4.6

Compare Source

  • Fixes the type of step.runWorkflow(child, args): it now resolves to the
    child workflow's return value (per its returns validator) instead of the
    child's WorkflowId, which is what it has always resolved to at runtime. A
    workflow with no returns validator resolves to unknown. Code that relied
    on the old (incorrect) type will need updating.
  • Workflow mutations now declare an argument validator, so statically generated
    API types describe their real shape instead of any. Malformed calls are
    rejected by argument validation rather than reaching the handler, so some
    errors are now Convex validator errors rather than workflow-specific ones.

v0.4.5

Compare Source

  • Adds lenientCtx = step.withOptions({ unstableArgs: true }) to return a new
    WorkflowCtx that can be passed to libraries that have unstable arguments. All
    calls on the scoped lenientCtx will have the specified options applied to
    the relevant calls. This can also be used to provide a default retry policy
    for actions scheduled with the scoped WorkflowCtx.
get-convex/workpool (@​convex-dev/workpool)

v0.4.11

Compare Source

  • Bump Batch Worker dependency to prevent OCC conflicts on enqueue.
  • Keeps the Batch Worker running for a 10-second cooldown while Workpool is
    saturated, reducing enqueue retries with worker status transitions.

v0.4.10

Compare Source

  • Adds vRunResult and type-safety for passing onComplete handlers with return
    values and context validator.
  • Expands vOnCompleteArgs to take an optional second parameter for the
    validator for the return value to expect.
  • Adds a returnValue named parameter to workpool.defineOnComplete that does
    the same.

v0.4.9

Compare Source

  • Runs actions and queries in batches of up to 32 from a single scheduled
    action, instead of scheduling them individually. This reduces scheduled
    function use and reduces the number of actions used (previously each action
    had another action wrapping it).
eslint/eslintrc (@​eslint/eslintrc)

v3.3.7

Compare Source

Bug Fixes
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v6.1.1

Compare Source

Add compiler.logDiagnostics option

Recoverable React Compiler diagnostics are no longer logged by default. Set compiler.logDiagnostics to true to log them through Vite. Fatal diagnostics are always logged and fail the transform.

Respect environment sourcemap option for React Compiler transform when builder.sharedPlugins is enabled (#​1439)

The React Compiler transform was using the top-level sourcemap option instead of the environment sourcemap option. This caused a problem when the experimental builder.sharedPlugins was enabled.

v6.1.0

Compare Source

Add experimental native React Compiler support (#​1419)

Add experimental native React Compiler support.

You can use it by installing oxc-transform-react and enabling it via the compiler option:

npm install -D oxc-transform-react
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

export default defineConfig({
  plugins: [
     react({ compiler: true })
  ]
})

v6.0.5

Compare Source

Fixed the react compiler preset filter to be linear (#​1353)

The improved filter in v6.0.3 was non-linear and caused a performance regression (#​1349). The filter was changed to be linear to avoid that.

get-convex/convex-backend (convex)

v1.45.0

  • Local deployments now upgrade to a new backend version in place, instead of
    going through a snapshot export and import. Upgrades no longer depend on the
    size of your local data, and no longer prompt about transferring it.
  • The Convex MCP server (npx convex mcp) now supports the stateless MCP
    protocol (2026-07-28 MCP specification).
  • Added a new getServiceToken function that generates service tokens for
    first-party Convex services. This will be used by the upcoming Convex AI
    gateway.
  • Improved the error message when npx convex export fails because a snapshot
    export is already in progress.
get-convex/convex-helpers (convex-helpers)

v0.1.123

Compare Source

  • Deprecates some validator utilities now that convex@​1.44 has schema.doc and schema.id

v0.1.122

Compare Source

  • Support TypeScript 7.

v0.1.121

Compare Source

  • Support the new db.vars.commitTs variable and v.commitTs() validator added in
    convex 1.43.0.
  • convex-helpers/server/compare is deprecated and now re-exports
    compareValues from convex/values. There may be small differences in behavior in
    uncommon cases (NaNs, negative zero, etc.) compared with the previous implementation.
get-convex/convex-test (convex-test)

v0.0.56

Compare Source

  • Document the second parameter to finishAllScheduledFunctions

v0.0.55

Compare Source

  • Support db.vars.commitTs and v.commitTs().
  • Fix an issue where finishAllScheduledFunctions would drop functions
    scheduled under real timers.
ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)

v0.5.5

Compare Source

  • Fix SCREAMING_SNAKE_CASE constant exported via export { Name } incorrectly treated as React component #​114 (fixes #​113)
  • Add contentType and size to allowExportNames in Next config #​115

v0.5.4

Compare Source

  • Add instant to allowExportNames in Next config #​112
sindresorhus/globals (globals)

v17.12.0

Compare Source


v17.11.0

Compare Source

v17.10.0

Compare Source

v17.9.0

Compare Source

stackblitz-labs/pkg.pr.new (pkg-pr-new)

v0.0.88

Compare Source

v0.0.87

Compare Source

v0.0.86

Compare Source

v0.0.84

Compare Source

v0.0.83

Compare Source

v0.0.82

Compare Source

v0.0.81

Compare Source

sindresorhus/type-fest (type-fest)

v5.9.0

Compare Source

New types
Improvements
  • SharedUnionFieldsDeep: Ensure it doesn't distribute processed union over mapped type (#​1509) 07a04de
  • TypedArray: Add Float16Array (#​1495) ca27cce
Fixes

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

v8.69.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.68.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.67.0

Compare Source

🚀 Features
  • typescript-eslint: export basic globs for using tseslint (#​12105)
❤️ Thank You

See GitHub Releases for more information.

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

v8.66.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.

vitejs/vite (vite)

v8.2.2

Compare Source

Features
Bug Fixes
Documentation
Miscellaneous Chores
Code Refactoring
Tests
Build System
  • use JSON import attributes instead of readFIleSync in rolldown configs (#​23251) (d615bcd)

v8.2.1

Compare Source

Bug Fixes
Performance Improvements
Documentation
Miscellaneous Chores
Code Refactoring
Tests

v8.2.0

Compare Source

Features
Bug Fixes
  • bundledDev: print build errors to the terminal when an HMR update fails (#​23024) (41c4658)
  • deps: update all non-major dependencies (#​23069) (4c07b74)
  • hmr: preserve environment snapshot during server restart (#​22992) (b1186c3)
  • importAnalysis: interop imports injected into optimized dep files by plugins (#​23029) (8c2a87d)
  • module-runner: keep stack trace interception working when Object.prototype is frozen (#​23073) (599c5b0)
  • server: strip base in indexHtml module graph lookup (#​22932) (fa005d1)
  • support resolving top-level input option with plugins (#​23101) (41df81a)
Documentation
Tests
vitest-dev/vitest (vitest)

v4.1.11

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: (in timezone America/Los_Angeles)

  • Branch creation
    • Between 12:00 AM and 04:59 AM, only on Monday (* 0-4 * * 1)
  • 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 Aug 10, 2026

Copy link
Copy Markdown

Open in StackBlitz

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

commit: 965ad89

@renovate
renovate Bot force-pushed the renovate/routine-updates branch 9 times, most recently from 5abcb77 to 3491095 Compare August 17, 2026 17:58
@renovate
renovate Bot force-pushed the renovate/routine-updates branch 10 times, most recently from 6194ebb to 850f78c Compare August 25, 2026 20:49
@renovate
renovate Bot force-pushed the renovate/routine-updates branch 4 times, most recently from 378fee1 to 17214be Compare August 31, 2026 09:12
@renovate
renovate Bot force-pushed the renovate/routine-updates branch 3 times, most recently from 62fdc72 to 875d882 Compare September 4, 2026 09:57
@renovate
renovate Bot force-pushed the renovate/routine-updates branch from 875d882 to 965ad89 Compare September 4, 2026 16:24
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