Closed renovate[bot] closed 1 week ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
chat-io | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Nov 17, 2024 0:07am |
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
Package | New capabilities | Transitives | Size | Publisher |
---|---|---|---|---|
npm/convex-ents@0.13.0 | None | 0 |
920 kB | xixixao |
🚮 Removed packages: npm/convex-ents@0.12.0
[!IMPORTANT]
Review skipped
Bot user detected.
To trigger a single review, invoke the
@coderabbitai review
command.You can disable this status message by setting the
reviews.review_status
tofalse
in the CodeRabbit configuration file.
This PR contains the following updates:
^0.12.0
->^0.13.0
Release Notes
xixixao/convex-ents (convex-ents)
### [`v0.13.0`](https://redirect.github.com/xixixao/convex-ents/blob/HEAD/CHANGELOG.md#0130) [Compare Source](https://redirect.github.com/xixixao/convex-ents/compare/v0.12.0...e83ba4875434551636bfbfefe60c4e6ededb6b09) Breaking schema change: - The syntax for 1:1 edge declaration has been aligned with 1:many edges. Before: ```ts defineEntSchema({ users: defineEnt({ name: v.string(), }).edges("messages", { optional: true }), messages: defineEnt({ text: v.string(), }).edge("user"), }); ``` Now: ```ts defineEntSchema({ users: defineEnt({ name: v.string(), }).edges("messages", { ref: true }), messages: defineEnt({ text: v.string(), }).edge("user"), }); ``` The `optional` flag is now reserved for the direction which stores the field: ```ts defineEntSchema({ users: defineEnt({ name: v.string(), }).edges("messages", { ref: true }), messages: defineEnt({ text: v.string(), }).edge("user", { field: "userId", optional: true }), }); ``` In this case `field` is required to avoid ambiguity with the previous syntax, but this constraint might be removed in the future. - Added support for edges to `_storage` and `_scheduled_functions`Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.