@aneuhold/be-ts-db-lib 2.0.75 → 2.0.77

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/package.json +5 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,37 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
+
8
+ ## 🔖 [2.0.77] (2025-06-26)
9
+
10
+ ### 🏗️ Changed
11
+
12
+ - Added directory field to repository configuration in package.json
13
+
14
+ ## 🔖 [2.0.76] (2025-06-25)
15
+
16
+ ### ✅ Added
17
+
18
+ - CHANGELOG.md file now included in published package
19
+
20
+ ## 🔖 [2.0.75] (2025-06-19)
21
+
22
+ ### 🏗️ Changed
23
+
24
+ - Updated dependencies: `@types/node` to ^22.15.32, `eslint` to ^9.29.0, `tsx` to ^4.20.3, `vitest` to ^3.2.4
25
+ - Updated package.json scripts and configurations
26
+
27
+ ### 🩹 Fixed
28
+
29
+ - Fixed GitHub Actions deployment workflow authentication issues
30
+ - Added proper GitHub token configuration for git tag creation
31
+ - Updated workflow permissions to allow repository write access
32
+
33
+ <!-- Link References -->
34
+
35
+ [2.0.77]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v2.0.76...be-ts-db-lib-v2.0.77
36
+ [2.0.76]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v2.0.75...be-ts-db-lib-v2.0.76
37
+ [2.0.75]: https://github.com/aneuhold/ts-libs/releases/tag/be-ts-db-lib-v2.0.75
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.75",
5
+ "version": "2.0.77",
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",
@@ -28,7 +28,8 @@
28
28
  "module": "lib/index.js",
29
29
  "types": "lib/index.d.ts",
30
30
  "files": [
31
- "lib"
31
+ "lib",
32
+ "CHANGELOG.md"
32
33
  ],
33
34
  "exports": {
34
35
  ".": {
@@ -38,7 +39,8 @@
38
39
  },
39
40
  "repository": {
40
41
  "type": "git",
41
- "url": "git+https://github.com/aneuhold/ts-libs.git"
42
+ "url": "git+https://github.com/aneuhold/ts-libs.git",
43
+ "directory": "packages/be-ts-db-lib"
42
44
  },
43
45
  "bugs": {
44
46
  "url": "https://github.com/aneuhold/ts-libs/issues"