@aneuhold/be-ts-db-lib 4.2.32 → 4.2.34
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 +15 -0
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ 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
|
+
## 🔖 [4.2.34] (2026-08-14)
|
|
9
|
+
|
|
10
|
+
### 🏗️ Changed
|
|
11
|
+
|
|
12
|
+
- Updated `google-auth-library` to `^11.0.0`, `mongodb` to `^7.5.0`, `uuid` to `^14.0.1`, `bson` to `^7.3.1`, and `zod` to `^4.4.3`.
|
|
13
|
+
- Updated `@aneuhold/be-ts-lib` to `^3.1.20`, `@aneuhold/core-ts-db-lib` to `^5.0.12`, and `@aneuhold/core-ts-lib` to `^2.4.8`.
|
|
14
|
+
|
|
15
|
+
## 🔖 [4.2.33] (2026-08-13)
|
|
16
|
+
|
|
17
|
+
### 🏗️ Changed
|
|
18
|
+
|
|
19
|
+
- Updated `@aneuhold/be-ts-lib` to `^3.1.19`, `@aneuhold/core-ts-db-lib` to `^5.0.11`, and `@aneuhold/core-ts-lib` to `^2.4.7`.
|
|
20
|
+
|
|
8
21
|
## 🔖 [4.2.32] (2026-07-23)
|
|
9
22
|
|
|
10
23
|
### 🏗️ Changed
|
|
@@ -451,6 +464,8 @@ Updated dependencies: now requires `@aneuhold/core-ts-db-lib@^3.0.0`, `@aneuhold
|
|
|
451
464
|
- Updated workflow permissions to allow repository write access
|
|
452
465
|
|
|
453
466
|
<!-- Link References -->
|
|
467
|
+
[4.2.34]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v4.2.33...be-ts-db-lib-v4.2.34
|
|
468
|
+
[4.2.33]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v4.2.32...be-ts-db-lib-v4.2.33
|
|
454
469
|
[4.2.32]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v4.2.31...be-ts-db-lib-v4.2.32
|
|
455
470
|
[4.2.31]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v4.2.30...be-ts-db-lib-v4.2.31
|
|
456
471
|
[4.2.30]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v4.2.29...be-ts-db-lib-v4.2.30
|
package/package.json
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
"name": "@aneuhold/be-ts-db-lib",
|
|
3
3
|
"author": "Anton G. Neuhold Jr.",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "4.2.
|
|
5
|
+
"version": "4.2.34",
|
|
6
6
|
"description": "A backend database library meant to actually interact with various databases in personal projects",
|
|
7
|
-
"packageManager": "pnpm@
|
|
7
|
+
"packageManager": "pnpm@11.21.0",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "rimraf lib && pnpm build:withoutClean",
|
|
11
|
-
"build:withoutClean": "tsc --project tsconfig.build.json && tsx ./scripts/copyTsFiles.ts
|
|
11
|
+
"build:withoutClean": "tsc --project tsconfig.build.json && tsx ./scripts/copyTsFiles.ts",
|
|
12
12
|
"propagateVersion": "tsx ../../scripts/propagateVersion.ts",
|
|
13
13
|
"watch": "nodemon --ignore lib/ -e ts --exec \"pnpm build:withoutClean && local-npm publish\"",
|
|
14
14
|
"unpub:local": "local-npm unpublish || true",
|
|
@@ -60,29 +60,29 @@
|
|
|
60
60
|
"MongoDB"
|
|
61
61
|
],
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@aneuhold/be-ts-lib": "^3.1.
|
|
64
|
-
"@aneuhold/core-ts-db-lib": "^5.0.
|
|
65
|
-
"@aneuhold/core-ts-lib": "^2.4.
|
|
66
|
-
"bson": "^7.
|
|
67
|
-
"google-auth-library": "^
|
|
68
|
-
"mongodb": "^7.
|
|
69
|
-
"uuid": "^
|
|
70
|
-
"zod": "^4.
|
|
63
|
+
"@aneuhold/be-ts-lib": "^3.1.20",
|
|
64
|
+
"@aneuhold/core-ts-db-lib": "^5.0.12",
|
|
65
|
+
"@aneuhold/core-ts-lib": "^2.4.8",
|
|
66
|
+
"bson": "^7.3.1",
|
|
67
|
+
"google-auth-library": "^11.0.0",
|
|
68
|
+
"mongodb": "^7.5.0",
|
|
69
|
+
"uuid": "^14.0.1",
|
|
70
|
+
"zod": "^4.4.3"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@aneuhold/local-npm-registry": "^0.
|
|
74
|
-
"@aneuhold/main-scripts": "^2.
|
|
75
|
-
"@types/node": "^
|
|
73
|
+
"@aneuhold/local-npm-registry": "^1.0.1",
|
|
74
|
+
"@aneuhold/main-scripts": "^2.10.3",
|
|
75
|
+
"@types/node": "^24.13.3",
|
|
76
76
|
"@types/node-fetch": "^2.6.13",
|
|
77
|
-
"@vitest/coverage-v8": "^4.
|
|
78
|
-
"dotenv": "^17.2
|
|
79
|
-
"eslint": "^
|
|
80
|
-
"jsr": "^0.
|
|
81
|
-
"prettier": "^3.
|
|
82
|
-
"rimraf": "^6.1.
|
|
77
|
+
"@vitest/coverage-v8": "^4.1.10",
|
|
78
|
+
"dotenv": "^17.4.2",
|
|
79
|
+
"eslint": "^10.8.0",
|
|
80
|
+
"jsr": "^0.14.3",
|
|
81
|
+
"prettier": "^3.9.6",
|
|
82
|
+
"rimraf": "^6.1.3",
|
|
83
83
|
"tslib": "^2.8.1",
|
|
84
|
-
"tsx": "^4.
|
|
84
|
+
"tsx": "^4.23.9",
|
|
85
85
|
"typescript": "^6.0.3",
|
|
86
|
-
"vitest": "^4.
|
|
86
|
+
"vitest": "^4.1.10"
|
|
87
87
|
}
|
|
88
88
|
}
|