@cocreate/mongodb 1.8.0 → 1.9.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/CHANGELOG.md +22 -0
- package/CoCreate.config.js +4 -4
- package/LICENSE +683 -21
- package/package.json +3 -3
- package/src/index.js +296 -421
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## [1.9.1](https://github.com/CoCreate-app/CoCreate-mongodb/compare/v1.9.0...v1.9.1) (2023-09-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Add path and pathname ([7ae3b2d](https://github.com/CoCreate-app/CoCreate-mongodb/commit/7ae3b2d7b57fdfbbfe26782ca260e5ad01b13cd0))
|
|
7
|
+
* Update dCoCreate dpendencies to latest versions ([b583adc](https://github.com/CoCreate-app/CoCreate-mongodb/commit/b583adc423db188577fe8e1fbac6304dabf8c86a))
|
|
8
|
+
|
|
9
|
+
# [1.9.0](https://github.com/CoCreate-app/CoCreate-mongodb/compare/v1.8.0...v1.9.0) (2023-09-17)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* isFilter, cursor and upsert logic ([5bd0316](https://github.com/CoCreate-app/CoCreate-mongodb/commit/5bd0316b4849fbba70c90338308d75fa9640b933))
|
|
15
|
+
* merge reference after data update references. convert ObjectId to string before pushing to documents ([b3ee3f8](https://github.com/CoCreate-app/CoCreate-mongodb/commit/b3ee3f8e04efcf202db49b8820adafdd9bc647e0))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* createProjection function and refactor code to improve performance and readability ([c80ae1c](https://github.com/CoCreate-app/CoCreate-mongodb/commit/c80ae1c92e7f4fe40f64ebbc974496b34e83ba7e))
|
|
21
|
+
* set replaceArray(object, true) to true returns projection ([4db10a9](https://github.com/CoCreate-app/CoCreate-mongodb/commit/4db10a91ff9ab69b9f36ba547997770087a5382a))
|
|
22
|
+
|
|
1
23
|
# [1.8.0](https://github.com/CoCreate-app/CoCreate-mongodb/compare/v1.7.2...v1.8.0) (2023-09-07)
|
|
2
24
|
|
|
3
25
|
|
package/CoCreate.config.js
CHANGED
|
@@ -8,15 +8,15 @@ module.exports = {
|
|
|
8
8
|
"object": {
|
|
9
9
|
"_id": "60145dc49f64ba1680b86693",
|
|
10
10
|
"name": "index.html",
|
|
11
|
-
"path": "/docs/mongodb
|
|
11
|
+
"path": "/docs/mongodb",
|
|
12
|
+
"pathname": "/docs/mongodb/index.html",
|
|
12
13
|
"src": "{{./docs/index.html}}",
|
|
13
14
|
"host": [
|
|
14
15
|
"*"
|
|
15
16
|
],
|
|
16
|
-
"directory": "
|
|
17
|
+
"directory": "mongodb",
|
|
17
18
|
"content-type": "text/html",
|
|
18
|
-
"public": "true"
|
|
19
|
-
"website_id": "5ffbceb7f11d2d00103c4535"
|
|
19
|
+
"public": "true"
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
]
|