@cocreate/mongodb 1.19.0 → 1.21.0

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 CHANGED
@@ -1,3 +1,27 @@
1
+ # [1.21.0](https://github.com/CoCreate-app/CoCreate-mongodb/compare/v1.20.0...v1.21.0) (2024-11-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * unset array item by index ([80adab3](https://github.com/CoCreate-app/CoCreate-mongodb/commit/80adab31fed06b9b4d6ab44535a960956bbc4e57))
7
+
8
+
9
+ ### Features
10
+
11
+ * handle $unset and $pull ([93fe6cd](https://github.com/CoCreate-app/CoCreate-mongodb/commit/93fe6cd8967b5005e4001d960c28593caa7c3d55))
12
+
13
+ # [1.20.0](https://github.com/CoCreate-app/CoCreate-mongodb/compare/v1.19.0...v1.20.0) (2024-11-04)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * prettier.config options ([1cce40a](https://github.com/CoCreate-app/CoCreate-mongodb/commit/1cce40a4b8320418ff36a76ab4cf421960f9c6c7))
19
+
20
+
21
+ ### Features
22
+
23
+ * add prettier.config.js and format files ([1baba2c](https://github.com/CoCreate-app/CoCreate-mongodb/commit/1baba2c4a8d97f315737e321e7f48193df970a22))
24
+
1
25
  # [1.19.0](https://github.com/CoCreate-app/CoCreate-mongodb/compare/v1.18.7...v1.19.0) (2024-11-02)
2
26
 
3
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/mongodb",
3
- "version": "1.19.0",
3
+ "version": "1.21.0",
4
4
  "description": "A simple mongodb component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "mongodb",
@@ -0,0 +1,16 @@
1
+ module.exports = {
2
+ tabWidth: 4,
3
+ semi: true,
4
+ trailingComma: "none",
5
+ bracketSameLine: true,
6
+ useTabs: true,
7
+ overrides: [
8
+ {
9
+ files: ["*.json", "*.yml", "*.yaml"],
10
+ options: {
11
+ tabWidth: 2,
12
+ useTabs: false
13
+ },
14
+ }
15
+ ],
16
+ };