dobo 2.2.4 → 2.2.5

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.
@@ -48,6 +48,7 @@ async function driverFactory () {
48
48
  * @param {Object} conn - Connection object
49
49
  */
50
50
  async sanitizeConnection (conn) {
51
+ conn.proto = conn.proto ?? 'http' // used by driver that use url based connection
51
52
  conn.memory = false
52
53
  }
53
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dobo",
3
- "version": "2.2.4",
3
+ "version": "2.2.5",
4
4
  "description": "DBMS for Bajo Framework",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/wiki/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changes
2
2
 
3
+ ## 2026-01-21
4
+
5
+ - [2.2.5] Add ```proto``` to ```connection.options```
6
+
3
7
  ## 2026-01-19
4
8
 
5
9
  - [2.2.4] Bug fix on route ```dobo:/attachment/...```