db-crud-api 0.2.0 → 0.2.1

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 +3 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -32,3 +32,6 @@
32
32
  - parameters position have been change for some api
33
33
  Added:
34
34
  - batch job that run multiple instructions
35
+ ## v0.2.1 (2024-12-05)
36
+
37
+ Refresh dependency
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "db-crud-api",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
5
  "description": "CRUD api for database tables",
6
6
  "main": "index.js",
@@ -10,8 +10,8 @@
10
10
  "author": "FF",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
- "mssql": "^10.0.2",
14
- "uuid": "^9.0.1"
13
+ "mssql": "^11.0.1",
14
+ "uuid": "^11.0.3"
15
15
  },
16
16
  "keywords":["db","crud","api"]
17
17
  }