Skip to content

Pin dependencies#47

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

Pin dependencies#47
renovate[bot] wants to merge 1 commit intomainfrom
renovate/routine-updates

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 20, 2026

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
@tailwindcss/vite (source) devDependencies patch 4.2.24.2.4 age confidence
actions/setup-node (changelog) action digest 53b839448b55a0
convex (source) devDependencies minor 1.35.11.37.0 age confidence
convex-helpers (source) dependencies patch 0.1.1140.1.115 0.1.116 age confidence
convex-test (source) devDependencies patch 0.0.480.0.51 age confidence
eslint-plugin-react-hooks (source) devDependencies minor 7.0.17.1.1 age confidence
globals devDependencies minor 17.5.017.6.0 age confidence
openai devDependencies minor 6.34.06.36.0 6.37.0 age confidence
pkg-pr-new (source) devDependencies patch 0.0.660.0.70 0.0.71 age confidence
tailwindcss (source) devDependencies patch 4.2.24.2.4 age confidence
typescript-eslint (source) devDependencies minor 8.58.28.59.2 age confidence
vite (source) devDependencies patch 8.0.88.0.10 8.0.11 age confidence
vitest (source) devDependencies patch 4.1.44.1.5 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

tailwindlabs/tailwindcss (@​tailwindcss/vite)

v4.2.4

Compare Source

Fixed
  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#​19947)

v4.2.3

Compare Source

Fixed
  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#​19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#​19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#​19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#​19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#​19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#​19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#​19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#​19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#​19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#​19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#​19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#​19846)
  • Upgrade: never migrate files that are ignored by git (#​19846)
  • Add .env and .env.* to default ignored content files (#​19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#​19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#​19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#​19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#​19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#​19858)
  • Improve performance when scanning JSONL / NDJSON files (#​19862)
  • Support NODE_PATH environment variable in standalone CLI (#​19617)
get-convex/convex-backend (convex)

v1.37.0

  • Adds useQuery_experimental, which accepts object-based args and returns an
    object with status, data, and error that doesn't throw errors by default.
  • Adds npx convex deployment token create my-token --save-env, enabling
    scripts to configure agent environments with access only to develop and deploy
    against their own cloud deployment. e.g.
    npx convex deployment create dev/foo --select --expiration "in 7 days" --type dev
    # npx convex env set ... (optional - typically default env vars suffice)
    npx convex deployment token create foo --save-env
    # npx convex dev --once (optional)
  • Re-exports ValidatorTypeToReturnType from convex/server
  • AI Files will no longer prompt when connecting to an existing project.
  • Updates the VisibilityProperties type to allow types like RegisteredQuery
    to be more easily extended without losing covariance.
  • New ctx.meta.getDeploymentMetadata() function.
    • Includes the name, region and class of the deployment.

v1.36.1

  • Updated npx convex login --vercel to ask before joining a Convex team through the Vercel Marketplace.

v1.36.0

  • npx convex run now supports --inline-query for evaluating readonly queries
    without creating a named function first, for example:
    npx convex run --inline-query 'await ctx.db.query("messages").take(5)'.
  • Added ctx.meta to access extra metadata at runtime:
    • ctx.meta.getFunctionMetadata(): the current function's name, component,
      visibility, and whether it's a query, mutation, or action.
    • ctx.meta.getTransactionMetrics(): how much capacity remains in the current
      transaction. Only available in queries and mutations.
  • Added a npx convex env default command for getting and setting default
    environment variables for a project.
  • npx convex deploy now supports a --message option that allows you to
    write details in the deployment’s audit log. When running
    npx convex deploy on CI runners on popular platforms (including GitHub Actions,
    Vercel, and Netlify), a default message will be provided if you don’t provide one
    (e.g. “Deployed from GitHub Actions • e83c516”).
  • When deploying to a preview deployment, you can now reuse the existing deployment
    instead of creating a new one by using --preview-name instead of --preview-create.
    This behavior is also used when deploying to preview deployments from the CI
    without specifying --preview-create explictly, but you can
    specify --preview-create explicitly to restore the old behavior. When using the
    --preview-run flag, the function only runs when a new deployment is created.
  • npx convex codegen can now automatically start a local backend when necessary.
  • You can now increase the timeout used by the CLI when starting a local backend
    with CONVEX_LOCAL_BACKEND_STARTUP_TIMEOUT_SECS; this can be useful when using
    large local databases.
  • Fixed a bug where npx convex ai-files remove would also remove skill files that
    were not installed by npx convex ai-files
  • Fixed a bug where the automatically-generated files would sometimes sort imports
    in inconsistent order across platforms.
  • Fixed a bug in npx convex dev --start where, in some cases, the --start command
    would continue to run after closing the Convex dev server with Ctrl+C.
  • Generating APIs via function-spec now supports validators with int64 literals.
get-convex/convex-helpers (convex-helpers)

v0.1.115

Compare Source

  • Supports typescript ^6.0.0
get-convex/convex-test (convex-test)

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.
facebook/react (eslint-plugin-react-hooks)

v7.1.1

Compare Source

Note: 7.1.0 accidentally removed the component-hook-factories rule, causing errors for users who referenced it in their ESLint config. This is now fixed.

  • Add deprecated no-op component-hook-factories rule for backwards compatibility. (@​mofeiZ in #​36307)

v7.1.0

Compare Source

This release adds ESLint v10 support, improves performance by skipping compilation for non-React files, and includes compiler lint improvements including better set-state-in-effect detection, improved ref validation, and more helpful error reporting.

sindresorhus/globals (globals)

v17.6.0

Compare Source

openai/openai-node (openai)

v6.36.0

Compare Source

Full Changelog: v6.35.0...v6.36.0

Features
  • api: add group_type/user metadata fields, update types across admin resources (cc52f97)
  • api: add support for Admin API Keys per endpoint (770d187)
  • api: admin API updates (ee2bd2d)
  • api: manual updates (6af2b6d)
  • api: manual updates (f2dceda)
Bug Fixes
  • api: support admin api key auth (e3862a3)
  • api: tighten auth header selection (f1203bd)
Chores
  • format: run eslint and prettier separately (104543a)
  • internal: codegen related update (05d86da)
  • internal: codegen related update (f184586)

v6.35.0

Compare Source

Full Changelog: v6.34.0...v6.35.0

Features
  • api: Add detail to InputFileContent (910ec5d)
  • api: add OAuthErrorCode type (f84bd1f)
  • api: add prompt_cache_retention parameter to responses compact (c486d1f)
  • api: add web_search_call.results to ResponseIncludable (72449a1)
  • api: manual updates (b742f1f)
  • client: add support for binary messages (c498cc3)
  • client: add support for path parameters in websockets clients (e0aba70)
  • client: add support for queuing messages when waiting for a connection (fd8868c)
  • client: add support for WebSockets in the browser when using simple auth (27bda6a)
  • client: support automatic reconnection for websockets (189410b)
  • typescript: expose underlying WebSocket type (7e96939)
Bug Fixes
  • client: allow single messages greater than the size of the websockets queue (ad19ab2)
  • internal: gitignore generated oidc dir (cf860f6)
  • types: correct prompt_cache_retention enum value in chat/completions and responses (5a81e1a)
  • types: preserve emitted ts-ignore comments (1cde375)
Chores
  • ci: remove release-doctor workflow (e5ab4d1)
  • format: apply prettier output (80fa23d)
  • format: ignore release-updated jsr config (f606e8b)
  • formatter: run prettier and eslint separately (68a988e)
  • internal: codegen related update (7673137)
  • internal: fix package.json duplicate keys (5f075a8)
  • internal: more robust bootstrap script (252e70a)
  • internal: version bump (34c84ee)
  • tests: bump steady to v0.22.1 (316bdba)
Documentation
stackblitz-labs/pkg.pr.new (pkg-pr-new)

v0.0.70

Compare Source

v0.0.69

Compare Source

v0.0.68

Compare Source

v0.0.67

Compare Source

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

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.

vitejs/vite (vite)

v8.0.10

Compare Source

Features
Bug Fixes
  • hmrClient.logger.debug and hmrClient.logger.error looked different from other HMR logs (#​22147) (a4d828f)
  • css: show filename in CSS minification warnings for .css?inline (#​22292) (83f0a78)
  • optimizer: allow user transform.target to override default in optimizeDeps (#​22273) (5c7cec6)
  • remove format sniffing module resolution from JS resolver (#​22297) (b8a21cc)
Code Refactoring

v8.0.9

Compare Source

Features
Bug Fixes
Documentation
Miscellaneous Chores
vitest-dev/vitest (vitest)

v4.1.5

Compare Source

   🚀 Experimental Features
   🐞 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 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
Copy link
Copy Markdown

pkg-pr-new Bot commented Apr 20, 2026

Open in StackBlitz

npm i https://pkg.pr.new/@convex-dev/persistent-text-streaming@47

commit: dd6b1e2

@renovate renovate Bot force-pushed the renovate/routine-updates branch 9 times, most recently from a3f7ab2 to 3397dcc Compare April 27, 2026 01:20
@renovate renovate Bot force-pushed the renovate/routine-updates branch from 3397dcc to 6e55a0c Compare April 27, 2026 22:43
@renovate renovate Bot changed the title Update Routine updates Pin dependencies Apr 27, 2026
@renovate renovate Bot force-pushed the renovate/routine-updates branch 9 times, most recently from 776bc34 to 182ff50 Compare May 5, 2026 05:57
@renovate renovate Bot force-pushed the renovate/routine-updates branch from 182ff50 to dd6b1e2 Compare May 7, 2026 21:50
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