Open
Conversation
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the
Comment |
commit: |
88b10b9 to
93ae6cd
Compare
1ae40a2 to
27aea32
Compare
27aea32 to
8ad6d93
Compare
8278695 to
328fa0d
Compare
6fb54a6 to
13171a6
Compare
b0f8de9 to
b983de1
Compare
04446af to
94756fe
Compare
85b2551 to
54f1f70
Compare
54f1f70 to
a81b452
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:
^9.9.1→9.38.0^0.1.3→0.1.62.8.0→2.17.2^4.2.2→4.2.2^4.5.8→4.17.1220.19.24→20.19.33^19.2.2→19.2.2^19.2.2→19.2.2^8.46.2→8.46.2^8.46.2→8.46.2^5.1.0→5.1.0^2.1.1→2.1.908c6903→93cb6ef1.29.0→1.32.0^0.0.35→0.0.35^9.38.0→9.38.0^7.0.1→7.0.1^0.4.24→0.4.24^15.9.0→15.9.0^4.1.5→4.1.53.2.5→3.8.1^19.2.0→19.2.0^19.2.0→19.2.05.8.3→5.9.3^8.4.0→8.5.0^7.1.12→7.1.12^2.1.1→2.1.9Add the preset
:preserveSemverRangesto your config if you don't want to pin your dependencies.Release Notes
get-convex/convex-js (convex)
v1.32.0Improved the API documentation with more examples to help AI agents.
Added a new
npx convex insightsCLI command to show the insightsfor a deployment.
Added
insightsMCP tool for diagnosing OCC conflicts and resource limit issueson cloud deployments.
The
insightsMCP tool works on production deployments without requiring--dangerously-enable-production-deployments.When using a local Convex backend (local dev deployment, agent mode or
anonymous mode), the deployment’s data is now stored in a
.convexdirectory in the project root (instead of
~/.convex). This changeis helpful when using multiple worktrees, since each worktree can get
its own isolated storage. Existing local deployments are not affected.
Added new options
maximumRowsReadandmaximumBytesReadto
PaginationOptionsto get more fine-grained control overthe number of rows read when using pagination.
When creating a new dev deployment, the Convex CLI now asks you which
deployment region you want to use if you haven’t set a team default.
Increased the default value for
authRefreshTokenLeewaySecondsto 10 seconds.
The CLI now uses
VITE_CONVEX_*environment variables when using Remixalongside Vite, instead of
CONVEX_*.Fixed an issue where the CLI would sometimes be affected by GitHub API
rate limits when downloading the local deployment binary.
Fixed an issue where websockets would disconnect when using Bun.
Fixed an issue with the WorkOS integration that caused crashes
when running
npx convex deploywith a deployment that hasits own WorkOS credentials.
Fixed an issue with the WorkOS integration where the
WORKOS_API_KEYenvironment variable from the shellwould incorrectly be used.
Fixed an issue where some modifications to
auth.config.tswould cause the push process to fail.
Fixed an issue on Windows that caused arrow key presses to be ignored when the “cloud or local deployment” prompt is shown.
v1.31.7getConvexSizeandgetDocumentSizefunctions toconvex/valuesfor calculating the size of Convex values in bytes. This is the same size calculation used for bandwidth tracking and document size limits.CONVEX_SITE_URLin environment variables.v1.31.6authKitfield inconvex.jsonthat allows you to customize the automatic provisioning and configuration of WorkOS environments.v1.31.5size of the bundled pushed by
npx convex devandnpx convex deployto makethem run faster.
v1.31.4window.addEventListener is not a functionbug in React Native.v1.31.3CONVEX_AGENT_MODE=anonymouscan now be used while logged in.The client will try to reconnect immediately after being offline instead of
waiting for the scheduled backoff delay.
Optimize bundling during code push, and add
includeSourcesContentoption inconvex.jsonto configure whether to include source code content in bundledsourcemaps.
v1.31.2ctx.dbAPIs introduced in 1.31.0incorrectly allowed passing IDs with types broader than the table name
argument (e.g.
db.get("table1", id)whereidisId<"table1"> | Id<"table2">). This issue is fixed in 1.31.2.v1.31.1npx convex devby enabling the TypeScript native preview
(TypeScript 7).
To do so, add
@typescript/native-previewas a dev dependency andset
typescriptCompiler: "tsGo"inconvex.json.v1.31.0db.get,db.patch,db.replace, anddb.deletenow accept a table name asthe first argument (e.g.
db.get("messages", messageId)instead ofdb.get(messageId)). This new syntax is more ergonomic, safer, and will allowdevelopers to customize IDs in the future. We recommend that all developers
migrate to the new syntax, using the ESLint rule
@convex-dev/explicit-table-idsor our standalone codemod tool
(
npx @​convex-dev/codemod@latest explicit-ids).Learn more on news.convex.dev
v1.30.0--preview-createparameter fornpx convex deploywill now error ifused with a deploy key that is not a preview deploy key. Previously, the flag
would be ignored in this situation, and
npx convex deploywould deploy tothe production deployment. If you were depending on this behavior, make sure
to remove the
--preview-createflag when deploying to production.v1.29.3Revert ApiFromModules type changes introduced in 1.29.0 which sometimes caused
type mismatches due to
FunctionReferencesometimes missing properties.Don't warn when
"$schema"is present in convex.json.Replace ProxyAgent with EnvHttpProxyAgent in the CLI so the
NO_PROXYenvironment variable is respected.
v1.29.2npx convex deploy, the CLI will now ask for explicitconfirmation before deleting large indexes. This change is helpful for
avoiding situations where an index is accidentally deleted and backfilling it
takes a long time.
v1.29.1CONVEX_DEPLOY_KEYenvironmentvariable used by the Convex Vercel integration.
prettier/prettier (prettier)
v3.8.1Compare Source
v3.8.0Compare Source
diff
🔗 Release note
v3.7.4Compare Source
diff
LWC: Avoid quote around interpolations (#18383 by @kovsu)
TypeScript: Fix comment inside union type gets duplicated (#18393 by @fisker)
TypeScript: Fix unstable comment print in union type comments (#18395 by @fisker)
v3.7.3Compare 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.2Compare Source
diff
JavaScript: Fix string print when switching quotes (#18351 by @fisker)
JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @kovsu)
TypeScript: Fix comment in empty type literal (#18364 by @fisker)
v3.7.1Compare Source
diff
API: Fix performance regression in doc printer (#18342 by @fisker)
Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.
v3.7.0Compare Source
diff
🔗 Release Notes
v3.6.2Compare Source
diff
Markdown: Add missing blank line around code block (#17675 by @fisker)
v3.6.1Compare Source
diff
TypeScript: Allow const without initializer (#17650, #17654 by @fisker)
Miscellaneous: Avoid closing files multiple times (#17665 by @43081j)
When reading a file to infer the interpreter from a shebang, we use the
n-readlineslibrary to read the first line in order to get the shebang.This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if
n-readlinesdid not already closethem.
v3.6.0Compare Source
diff
🔗 Release Notes
v3.5.3Compare Source
diff
Flow: Fix missing parentheses in
ConditionalTypeAnnotation(#17196 by @fisker)v3.5.2Compare Source
diff
Remove
module-synccondition (#17156 by @fisker)In Prettier 3.5.0, we added
module-synccondition topackage.json, so thatrequire("prettier")can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove themodule-synccondition, sorequire("prettier")will still use the CommonJS version, we'll revisit untilrequire(ESM)feature is more stable.v3.5.1Compare Source
diff
Fix CLI crash when cache for old version exists (#17100 by @sosukesuzuki)
Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.
Support dockercompose and github-actions-workflow in VSCode (#17101 by @remcohaszing)
Prettier now supports the
dockercomposeandgithub-actions-workflowlanguages in Visual Studio Code.v3.5.0Compare Source
diff
🔗 Release Notes
v3.4.2Compare Source
diff
Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @tats-u)
Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.
U+30A0 can be used as the replacement of the
-in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).Fix comments print on class methods with decorators (#16891 by @fisker)
Fix non-idempotent formatting (#16899 by @seiyab)
This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.
v3.4.1Compare Source
diff
Remove unnecessary parentheses around assignment in
v-on(#16887 by @fisker)v3.4.0Compare Source
diff
🔗 Release Notes
v3.3.3Compare Source
diff
Add parentheses for nullish coalescing in ternary (#16391 by @cdignam-segment)
This change adds clarity to operator precedence.
Add parentheses for decorator expressions (#16458 by @y-schneider)
Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.
Support
@letdeclaration syntax (#16474 by @sosukesuzuki)Adds support for Angular v18
@letdeclaration syntax.Please see the following code example. The
@letdeclaration allows you to define local variables within the template:For more details, please refer to the excellent blog post by the Angular Team: Introducing @let in Angular.
We also appreciate the Angular Team for kindly answering our questions to implement this feature.
v3.3.2Compare Source
diff
Fix handlebars path expressions starts with
@(#16358 by @Princeyadav05)v3.3.1Compare Source
diff
Preserve empty lines in front matter (#16347 by @fisker)
Preserve explicit language in front matter (#16348 by @fisker)
Avoid line breaks in import attributes (#16349 by @fisker)
v3.3.0Compare Source
diff
🔗 Release Notes
microsoft/TypeScript (typescript)
v5.9.3: TypeScript 5.9.3Compare Source
Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.
For release notes, check out the release announcement
Downloads are available on:
v5.9.2: TypeScript 5.9Compare Source
Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.
For release notes, check out the release announcement
Downloads are available on:
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 04:59 AM, only on Monday ( * 0-4 * * 1 ) in timezone America/Los_Angeles, 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.
This PR was generated by Mend Renovate. View the repository job log.