pms_md 1.0.3 → 1.0.4
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/PEER_DEPENDENCY_FIX.txt +57 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [1.0.4] - 2025-11-17
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **Peer Dependency Compatibility**: Extended MSSQL peer dependency support to include older versions
|
|
14
|
+
- Now supports: `mssql@^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0`
|
|
15
|
+
- Now supports: `tedious@^14.0.0 || ^15.0.0 || ^16.0.0`
|
|
16
|
+
- Fixes installation conflicts with projects using MSSQL v7.x
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Updated package version to 1.0.4
|
|
20
|
+
- Improved backward compatibility with existing MSSQL installations
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
10
24
|
## [1.0.3] - 2025-11-17
|
|
11
25
|
|
|
12
26
|
### 🎉 Added - Comprehensive Database Support
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
╔══════════════════════════════════════════════════════════════════════════════╗
|
|
2
|
+
║ ║
|
|
3
|
+
║ ✅ PEER DEPENDENCY ISSUE FIXED! ✅ ║
|
|
4
|
+
║ ║
|
|
5
|
+
║ PMS_MD v1.0.4 - Ready to Install ║
|
|
6
|
+
║ ║
|
|
7
|
+
╚══════════════════════════════════════════════════════════════════════════════╝
|
|
8
|
+
|
|
9
|
+
🔧 ISSUE IDENTIFIED:
|
|
10
|
+
Your ISCCM project uses mssql@^7.2.0
|
|
11
|
+
Package v1.0.3 required mssql@^9.0.0 || ^10.0.0
|
|
12
|
+
Result: Peer dependency conflict ❌
|
|
13
|
+
|
|
14
|
+
✅ SOLUTION APPLIED:
|
|
15
|
+
Updated peer dependencies to support older versions:
|
|
16
|
+
|
|
17
|
+
Before: mssql@^9.0.0 || ^10.0.0
|
|
18
|
+
After: mssql@^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 ✅
|
|
19
|
+
|
|
20
|
+
Before: tedious@^15.0.0 || ^16.0.0
|
|
21
|
+
After: tedious@^14.0.0 || ^15.0.0 || ^16.0.0 ✅
|
|
22
|
+
|
|
23
|
+
📦 NEW PACKAGE BUILT:
|
|
24
|
+
Package: pms_md-1.0.4.tgz
|
|
25
|
+
Version: 1.0.3 → 1.0.4
|
|
26
|
+
Package Size: 143.9 kB
|
|
27
|
+
Unpacked Size: 625.3 kB
|
|
28
|
+
Total Files: 61
|
|
29
|
+
|
|
30
|
+
🚀 NOW YOU CAN INSTALL:
|
|
31
|
+
|
|
32
|
+
Option 1: Install from local package
|
|
33
|
+
─────────────────────────────────────
|
|
34
|
+
cd d:\ProJectMD\ISCCM\isccm_node
|
|
35
|
+
npm install ../PMS/pms_md-1.0.4.tgz
|
|
36
|
+
|
|
37
|
+
Option 2: Install with legacy peer deps (if still issues)
|
|
38
|
+
──────────────────────────────────────────────────────────
|
|
39
|
+
npm install ../PMS/pms_md-1.0.4.tgz --legacy-peer-deps
|
|
40
|
+
|
|
41
|
+
✅ COMPATIBILITY:
|
|
42
|
+
Now supports MSSQL versions:
|
|
43
|
+
• v7.x (your version) ✅
|
|
44
|
+
• v8.x ✅
|
|
45
|
+
• v9.x ✅
|
|
46
|
+
• v10.x ✅
|
|
47
|
+
|
|
48
|
+
📝 CHANGELOG UPDATED:
|
|
49
|
+
• Added v1.0.4 release notes
|
|
50
|
+
• Documented peer dependency fix
|
|
51
|
+
• Improved backward compatibility notes
|
|
52
|
+
|
|
53
|
+
╔══════════════════════════════════════════════════════════════════════════════╗
|
|
54
|
+
║ ║
|
|
55
|
+
║ 🎉 Ready to Install in ISCCM Project! 🎉 ║
|
|
56
|
+
║ ║
|
|
57
|
+
╚══════════════════════════════════════════════════════════════════════════════╝
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pms_md",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Comprehensive monitoring solution for Node.js applications with error tracking, health checks, multi-database support (MongoDB, PostgreSQL, MySQL, MSSQL, SQLite, Redis, Cassandra, Elasticsearch, DynamoDB, Neo4j, CouchDB), and multi-channel notifications",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"pg": "^8.0.0",
|
|
49
49
|
"mysql2": "^2.0.0 || ^3.0.0",
|
|
50
50
|
"mariadb": "^3.0.0",
|
|
51
|
-
"mssql": "^9.0.0 || ^10.0.0",
|
|
52
|
-
"tedious": "^15.0.0 || ^16.0.0",
|
|
51
|
+
"mssql": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
|
|
52
|
+
"tedious": "^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
53
53
|
"sqlite3": "^5.0.0",
|
|
54
54
|
"better-sqlite3": "^8.0.0 || ^9.0.0",
|
|
55
55
|
"sequelize": "^6.0.0",
|