orange-orm 3.10.3 → 3.10.4
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/docs/changelog.md +7 -5
- package/package.json +1 -1
- package/src/client/index.mjs +1580 -1016
- package/src/mssql/newTransaction.js +1 -0
- package/src/mySql/newTransaction.js +1 -0
- package/src/oracle/newTransaction.js +1 -0
- package/src/patchTable.js +4 -1
- package/src/pg/newTransaction.js +1 -0
- package/src/sap/newTransaction.js +1 -0
- package/src/sqlite/newTransaction.js +1 -0
- package/src/table/clearCache.js +7 -0
- package/src/table/getSessionCache.js +8 -0
- package/src/table/newRowCache.js +4 -4
- package/src/table/relation/newExpanderCache.js +2 -0
- package/src/table/relation/newManyCache.js +4 -4
- package/src/table/setSessionCache.js +8 -0
- package/src/tedious/newTransaction.js +1 -0
package/docs/changelog.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
## Changelog
|
|
2
|
-
__3.10.
|
|
2
|
+
__3.10.4__
|
|
3
|
+
Bugfix: "Changed by Other User" Error Triggered by Precision Mismatch in Numeric Column. See [#120](https://github.com/alfateam/orange-orm/issues/120)
|
|
4
|
+
__3.10.3__
|
|
3
5
|
Fix duplicate method signatures for those still using code generation
|
|
4
|
-
__3.10.
|
|
6
|
+
__3.10.2__
|
|
5
7
|
Orange ORM was renamed from rdb. New installation url: [npmjs.org/package/orange-orm](https://npmjs.org/package/orange-orm) . Old url was npmjs.org/package/rdb
|
|
6
|
-
__3.10.
|
|
8
|
+
__3.10.1__
|
|
7
9
|
Bugfix: Adding hasOne row to existing parent throws. See [#86](https://github.com/alfateam/orange-orm/issues/86)
|
|
8
|
-
__3.10.
|
|
10
|
+
__3.10.0__
|
|
9
11
|
Aggregate functions
|
|
10
|
-
__3.9.
|
|
12
|
+
__3.9.1__
|
|
11
13
|
Bugfix: Crashing on many relations if foreign key column is omitted in strategy. See [#83](https://github.com/alfateam/orange-orm/issues/83)
|
|
12
14
|
__3.9.0__
|
|
13
15
|
Possible to elevate associated column on a related table to a parent table when fetching. See https://github.com/alfateam/orange-orm/#user-content-aggregate-results
|