@aneuhold/be-ts-db-lib 2.0.80 → 2.0.82
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 +14 -0
- package/package.json +14 -13
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 🔖 [2.0.82] (2025-11-06)
|
|
9
|
+
|
|
10
|
+
### 🏗️ Changed
|
|
11
|
+
|
|
12
|
+
- Marked package as side-effect free in package.json ("sideEffects": false) for improved tree-shaking.
|
|
13
|
+
|
|
14
|
+
## 🔖 [2.0.81] (2025-10-25)
|
|
15
|
+
|
|
16
|
+
### 🏗️ Changed
|
|
17
|
+
|
|
18
|
+
- Updated dependencies in package.json for compatibility and security improvements
|
|
19
|
+
|
|
8
20
|
## 🔖 [2.0.80] (2025-10-17)
|
|
9
21
|
|
|
10
22
|
### 🏗️ Changed
|
|
@@ -52,6 +64,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
52
64
|
|
|
53
65
|
<!-- Link References -->
|
|
54
66
|
|
|
67
|
+
[2.0.82]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v2.0.81...be-ts-db-lib-v2.0.82
|
|
68
|
+
[2.0.81]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v2.0.80...be-ts-db-lib-v2.0.81
|
|
55
69
|
[2.0.80]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v2.0.79...be-ts-db-lib-v2.0.80
|
|
56
70
|
[2.0.79]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v2.0.78...be-ts-db-lib-v2.0.79
|
|
57
71
|
[2.0.78]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v2.0.77...be-ts-db-lib-v2.0.78
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@aneuhold/be-ts-db-lib",
|
|
3
3
|
"author": "Anton G. Neuhold Jr.",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "2.0.
|
|
5
|
+
"version": "2.0.82",
|
|
6
6
|
"description": "A backend database library meant to actually interact with various databases in personal projects",
|
|
7
7
|
"packageManager": "pnpm@10.12.1",
|
|
8
8
|
"type": "module",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"import": "./lib/index.js"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
|
+
"sideEffects": false,
|
|
40
41
|
"repository": {
|
|
41
42
|
"type": "git",
|
|
42
43
|
"url": "git+https://github.com/aneuhold/ts-libs.git",
|
|
@@ -56,22 +57,22 @@
|
|
|
56
57
|
"@aneuhold/be-ts-lib": "*",
|
|
57
58
|
"@aneuhold/core-ts-db-lib": "*",
|
|
58
59
|
"@aneuhold/core-ts-lib": "*",
|
|
59
|
-
"bson": "^6.
|
|
60
|
-
"mongodb": "^6.
|
|
60
|
+
"bson": "^6.10.4",
|
|
61
|
+
"mongodb": "^6.20.0"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
63
64
|
"@aneuhold/local-npm-registry": "*",
|
|
64
|
-
"@aneuhold/main-scripts": "^2.
|
|
65
|
-
"@types/node": "^
|
|
66
|
-
"@types/node-fetch": "^2.6.
|
|
67
|
-
"dotenv": "^
|
|
68
|
-
"eslint": "^9.
|
|
69
|
-
"jsr": "^0.13.
|
|
70
|
-
"prettier": "^3.
|
|
65
|
+
"@aneuhold/main-scripts": "^2.6.1",
|
|
66
|
+
"@types/node": "^24.9.1",
|
|
67
|
+
"@types/node-fetch": "^2.6.13",
|
|
68
|
+
"dotenv": "^17.2.3",
|
|
69
|
+
"eslint": "^9.38.0",
|
|
70
|
+
"jsr": "^0.13.5",
|
|
71
|
+
"prettier": "^3.6.2",
|
|
71
72
|
"rimraf": "^6.0.1",
|
|
72
73
|
"tslib": "^2.8.1",
|
|
73
|
-
"tsx": "^4.20.
|
|
74
|
-
"typescript": "^5.
|
|
75
|
-
"vitest": "^
|
|
74
|
+
"tsx": "^4.20.6",
|
|
75
|
+
"typescript": "^5.9.3",
|
|
76
|
+
"vitest": "^4.0.3"
|
|
76
77
|
}
|
|
77
78
|
}
|