Pin dependencies#47
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Conversation
commit: |
a3f7ab2 to
3397dcc
Compare
3397dcc to
6e55a0c
Compare
776bc34 to
182ff50
Compare
182ff50 to
dd6b1e2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^2.0.0→2.0.04.2.2→4.2.453b8394→48b55a01.35.1→1.37.00.1.114→0.1.1150.1.1160.0.48→0.0.517.0.1→7.1.117.5.0→17.6.06.34.0→6.36.06.37.00.0.66→0.0.700.0.714.2.2→4.2.48.58.2→8.59.28.0.8→8.0.108.0.114.1.4→4.1.5Add the preset
:preserveSemverRangesto your config if you don't want to pin your dependencies.Release Notes
tailwindlabs/tailwindcss (@tailwindcss/vite)
v4.2.4Compare Source
Fixed
@importand@pluginstill resolve correctly when using Vite aliases in@tailwindcss/vite(#19947)v4.2.3Compare Source
Fixed
tracking-*utilities by preferring non-negative utilities (e.g.-tracking-tighter→tracking-wider) (#19827)@tailwindcss/webpack(#19723)px-[1.2rem] py-[1.2rem]→p-[1.2rem]) (#19837)border-{t,b}-*intoborder-y-*,border-{l,r}-*intoborder-x-*, andborder-{t,r,b,l}-*intoborder-*(#19842)scroll-m{t,b}-*intoscroll-my-*,scroll-m{l,r}-*intoscroll-mx-*, andscroll-m{t,r,b,l}-*intoscroll-m-*(#19842)scroll-p{t,b}-*intoscroll-py-*,scroll-p{l,r}-*intoscroll-px-*, andscroll-p{t,r,b,l}-*intoscroll-p-*(#19842)overflow-{x,y}-*intooverflow-*(#19842)overscroll-{x,y}-*intooverscroll-*(#19842)--placeholder-colorinstead of--background-colorforplaceholder-*utilities (#19843)config.contentwhen migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846).envand.env.*to default ignored content files (#19846)overflow-ellipsisintotext-ellipsis(#19849)start-full→inset-s-full,start-auto→inset-s-auto,start-px→inset-s-px, andstart-<number>→inset-s-<number>as well as negative versions (#19849)end-full→inset-e-full,end-auto→inset-e-auto,end-px→inset-e-px, andend-<number>→inset-e-<number>as well as negative versions (#19849)-sign inside the arbitrary value-left-[9rem]→left-[-9rem](#19858)-sign outside the arbitrary valueml-[calc(-1*var(--width))]→-ml-(--width)(#19858)NODE_PATHenvironment variable in standalone CLI (#19617)get-convex/convex-backend (convex)
v1.37.0useQuery_experimental, which accepts object-based args and returns anobject with status, data, and error that doesn't throw errors by default.
npx convex deployment token create my-token --save-env, enablingscripts to configure agent environments with access only to develop and deploy
against their own cloud deployment. e.g.
VisibilityPropertiestype to allow types likeRegisteredQueryto be more easily extended without losing covariance.
ctx.meta.getDeploymentMetadata()function.v1.36.1npx convex login --vercelto ask before joining a Convex team through the Vercel Marketplace.v1.36.0npx convex runnow supports--inline-queryfor evaluating readonly querieswithout creating a named function first, for example:
npx convex run --inline-query 'await ctx.db.query("messages").take(5)'.ctx.metato 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 currenttransaction. Only available in queries and mutations.
npx convex env defaultcommand for getting and setting defaultenvironment variables for a project.
npx convex deploynow supports a--messageoption that allows you towrite details in the deployment’s audit log. When running
npx convex deployon 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”).instead of creating a new one by using
--preview-nameinstead of--preview-create.This behavior is also used when deploying to preview deployments from the CI
without specifying
--preview-createexplictly, but you canspecify
--preview-createexplicitly to restore the old behavior. When using the--preview-runflag, the function only runs when a new deployment is created.npx convex codegencan now automatically start a local backend when necessary.with
CONVEX_LOCAL_BACKEND_STARTUP_TIMEOUT_SECS; this can be useful when usinglarge local databases.
npx convex ai-files removewould also remove skill files thatwere not installed by
npx convex ai-filesin inconsistent order across platforms.
npx convex dev --startwhere, in some cases, the--startcommandwould continue to run after closing the Convex dev server with Ctrl+C.
get-convex/convex-helpers (convex-helpers)
v0.1.115Compare Source
get-convex/convex-test (convex-test)
v0.0.51Compare Source
v0.0.50Compare Source
and hit "Cannot read properties of null (reading 'state')".
v0.0.49Compare Source
;and be thestandard length of regular IDs for folks who have validators.
facebook/react (eslint-plugin-react-hooks)
v7.1.1Compare Source
Note: 7.1.0 accidentally removed the
component-hook-factoriesrule, causing errors for users who referenced it in their ESLint config. This is now fixed.component-hook-factoriesrule for backwards compatibility. (@mofeiZ in #36307)v7.1.0Compare 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-effectdetection, improved ref validation, and more helpful error reporting.useEffectEventchecks in component syntax. (@jbrown215 in #35041)set-state-in-effectvalidation with fewer false negatives. (@jorge-cab in #35134, @josephsavona in #35147, @jackpope in #35214, @chesnokov-tony in #35419, @jsleitor in #36107)sindresorhus/globals (globals)
v17.6.0Compare Source
openai/openai-node (openai)
v6.36.0Compare Source
Full Changelog: v6.35.0...v6.36.0
Features
Bug Fixes
Chores
v6.35.0Compare Source
Full Changelog: v6.34.0...v6.35.0
Features
Bug Fixes
oidcdir (cf860f6)Chores
Documentation
stackblitz-labs/pkg.pr.new (pkg-pr-new)
v0.0.70Compare Source
v0.0.69Compare Source
v0.0.68Compare Source
v0.0.67Compare Source
typescript-eslint/typescript-eslint (typescript-eslint)
v8.59.2Compare 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.1Compare 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.0Compare 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.10Compare Source
Features
Bug Fixes
hmrClient.logger.debugandhmrClient.logger.errorlooked different from other HMR logs (#22147) (a4d828f).css?inline(#22292) (83f0a78)Code Refactoring
v8.0.9Compare Source
Features
Bug Fixes
watchChangehook (#22188) (fc08bda)?rawimports (#22148) (3ec9cda)Documentation
Miscellaneous Chores
vitest-dev/vitest (vitest)
v4.1.5Compare Source
🚀 Experimental Features
instrumenteroption - by @BartWaardenburg and @AriPerkkio in #10119 (0e0ff)🐞 Bug Fixes
vi.defineHelpercalled as object method - by @hi-ogawa in #10163 (122c2)agentreporter tominimal- by @sheremet-va in #10157 (663b9)View changes on GitHub
Configuration
📅 Schedule: (in timezone America/Los_Angeles)
* * * * 1-5)🚦 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.
This PR was generated by Mend Renovate. View the repository job log.