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

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 +30 -0
  2. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,30 @@
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.76] (2025-06-25)
9
+
10
+ ### ✅ Added
11
+
12
+ - CHANGELOG.md file now included in published package
13
+
14
+ ## 🔖 [2.0.75] (2025-06-19)
15
+
16
+ ### 🏗️ Changed
17
+
18
+ - Updated dependencies: `@types/node` to ^22.15.32, `eslint` to ^9.29.0, `tsx` to ^4.20.3, `vitest` to ^3.2.4
19
+ - Updated package.json scripts and configurations
20
+
21
+ ### 🩹 Fixed
22
+
23
+ - Fixed GitHub Actions deployment workflow authentication issues
24
+ - Added proper GitHub token configuration for git tag creation
25
+ - Updated workflow permissions to allow repository write access
26
+
27
+ <!-- Link References -->
28
+
29
+ [2.0.76]: https://github.com/aneuhold/ts-libs/compare/be-ts-db-lib-v2.0.75...be-ts-db-lib-v2.0.76
30
+ [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.76",
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
  ".": {