Conversation
commit: |
52b0b71 to
54c2e5f
Compare
40bdf08 to
f3fbfa4
Compare
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Comment |
f036719 to
eb4c9a3
Compare
9b76ce5 to
256cbae
Compare
3c94c1e to
aa21fc8
Compare
899f74d to
e2b8045
Compare
a5c6c6e to
7be9071
Compare
7be9071 to
6c2a350
Compare
6c2a350 to
c97e4c0
Compare
c97e4c0 to
53eac01
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.2.2→0.2.2^3.2.2→3.2.2^1.9.21→1.9.2120.19.24→20.19.30^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.008c6903→93cb6ef^5.27.6→5.27.61.29.0→1.31.51.31.60.0.38→0.0.41^3.2.4→3.2.4^8.57.1→8.57.1^7.0.1→7.0.1^0.4.24→0.4.246adc566→792bb85^15.9.0→15.15.0^4.3.0→4.3.0^1.9.4→1.9.43.2.5→3.8.03.8.1^18.3.1→18.3.1^18.3.1→18.3.1^4.2.1→4.2.1^5.9.3→5.9.3^8.46.2→8.46.2^6.4.1→6.4.1^3.2.4→3.2.4Add the preset
:preserveSemverRangesto your config if you don't want to pin your dependencies.Release Notes
get-convex/convex-js (convex)
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.
get-convex/convex-test (convex-test)
v0.0.41Compare Source
v0.0.40Compare Source
v0.0.39Compare Source
ex.
prettier/prettier (prettier)
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
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.