orange-orm 4.4.0-beta.1 → 4.4.1

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 CHANGED
@@ -40,7 +40,7 @@ If you value the hard work behind Orange and wish to see it evolve further, cons
40
40
  ## Installation
41
41
 
42
42
  ```bash
43
- $ npm install orange-orm
43
+ npm install orange-orm
44
44
  ```
45
45
 
46
46
  ## Example
@@ -50,7 +50,7 @@ Watch the [tutorial video on YouTube](https://youtu.be/1IwwjPr2lMs)
50
50
 
51
51
  Here we choose SQLite.
52
52
  ```bash
53
- $ npm install sqlite3
53
+ npm install sqlite3
54
54
  ```
55
55
  <sub>📄 map.ts</sub>
56
56
  ```javascript
@@ -280,7 +280,7 @@ In SQLite, columns with the INTEGER PRIMARY KEY attribute are designed to autoin
280
280
 
281
281
  __SQLite__
282
282
  ```bash
283
- $ npm install sqlite3
283
+ npm install sqlite3
284
284
  ```
285
285
  ```javascript
286
286
  import map from './map';
@@ -288,7 +288,7 @@ const db = map.sqlite('demo.db');
288
288
  ```
289
289
  __With connection pool__
290
290
  ```bash
291
- $ npm install sqlite3
291
+ npm install sqlite3
292
292
  ```
293
293
  ```javascript
294
294
  import map from './map';
@@ -331,7 +331,7 @@ const db = map.mysql('mysql://test:test@mysql/test');
331
331
 
332
332
  __MS SQL__
333
333
  ```bash
334
- $ npm install tedious
334
+ npm install tedious
335
335
  ```
336
336
  ```javascript
337
337
  import map from './map';
@@ -353,7 +353,7 @@ const db = map.mssql({
353
353
 
354
354
  __PostgreSQL__
355
355
  ```bash
356
- $ npm install pg
356
+ npm install pg
357
357
  ```
358
358
  ```javascript
359
359
  import map from './map';
@@ -361,7 +361,7 @@ const db = map.postgres('postgres://postgres:postgres@postgres/postgres');
361
361
  ```
362
362
  __Oracle__
363
363
  ```bash
364
- $ npm install oracledb
364
+ npm install oracledb
365
365
  ```
366
366
  ```javascript
367
367
  import map from './map';
@@ -375,7 +375,7 @@ const db = map.oracle({
375
375
  __SAP Adaptive Server__
376
376
  Even though msnodesqlv8 was developed for MS SQL, it also works for SAP ASE as it is ODBC compliant.
377
377
  ```bash
378
- $ npm install msnodesqlv8
378
+ npm install msnodesqlv8
379
379
  ```
380
380
  ```javascript
381
381
  import { fileURLToPath } from 'url';
package/docs/changelog.md CHANGED
@@ -1,4 +1,10 @@
1
1
  ## Changelog
2
+ __4.4.1__
3
+ Support for date-only ISO strings. [#116](https://github.com/alfateam/orange-orm/issues/116)
4
+ __4.4.0__
5
+ More performance gains.
6
+ __4.3.0__
7
+ Minor performance improvements.
2
8
  __4.2.0__
3
9
  Improved performance.
4
10
  __4.1.4__
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orange-orm",
3
- "version": "4.4.0-beta.1",
3
+ "version": "4.4.1",
4
4
  "main": "./src/index.js",
5
5
  "browser": "./src/client/index.mjs",
6
6
  "bin": {