orange-orm 5.2.1 → 5.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -5
- package/dist/index.browser.mjs +4 -0
- package/dist/index.mjs +4 -0
- package/docs/changelog.md +2 -0
- package/package.json +1 -1
- package/src/table/column.js +4 -0
package/README.md
CHANGED
|
@@ -12,11 +12,6 @@ The ultimate Object Relational Mapper for Node.js, Bun and Deno, offering seamle
|
|
|
12
12
|
[](https://discord.gg/QjuEgvQXzd)
|
|
13
13
|
[](https://youtu.be/1IwwjPr2lMs)
|
|
14
14
|
|
|
15
|
-
## MCP (Model Context Protocol)
|
|
16
|
-
Orange ORM is available as an MCP resource on Context7. Use it with AI-powered tools like GitHub Copilot, Cursor, or Claude to get up-to-date documentation and code examples directly in your IDE.
|
|
17
|
-
|
|
18
|
-
👉 [https://context7.com/alfateam/orange-orm](https://context7.com/alfateam/orange-orm)
|
|
19
|
-
|
|
20
15
|
## Key Features
|
|
21
16
|
|
|
22
17
|
- **Rich Querying Model**: Orange provides a powerful and intuitive querying model, making it easy to retrieve, filter, and manipulate data from your databases.
|
|
@@ -40,6 +35,10 @@ Orange ORM is available as an MCP resource on Context7. Use it with AI-powered t
|
|
|
40
35
|
## Sponsorship <span style="font-size: larger; color: darkred;">♡</span>
|
|
41
36
|
If you value the hard work behind Orange and wish to see it evolve further, consider [sponsoring](https://github.com/sponsors/lroal). Your support fuels the journey of refining and expanding this tool for our developer community.
|
|
42
37
|
|
|
38
|
+
## MCP (Model Context Protocol)
|
|
39
|
+
Orange ORM is available as an MCP resource on Context7. Use it with AI-powered tools like GitHub Copilot, Cursor, or Claude to get up-to-date documentation and code examples directly in your IDE.
|
|
40
|
+
👉 [https://context7.com/alfateam/orange-orm](https://context7.com/alfateam/orange-orm)
|
|
41
|
+
|
|
43
42
|
## Installation
|
|
44
43
|
|
|
45
44
|
```bash
|
package/dist/index.browser.mjs
CHANGED
package/dist/index.mjs
CHANGED
package/docs/changelog.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
## Changelog
|
|
2
|
+
__5.2.2__
|
|
3
|
+
Bugfix: jsonOf<T>() exists in type definitions but is missing at runtime [#166](https://github.com/alfateam/orange-orm/issues/166)
|
|
2
4
|
__5.2.1__
|
|
3
5
|
Bugfix: Bun Postgres fails on proxied JSON params [#158](https://github.com/alfateam/orange-orm/issues/158)
|
|
4
6
|
__5.2.0__
|
package/package.json
CHANGED