mcp-dbutils 0.12.0__py3-none-any.whl → 0.14.0__py3-none-any.whl
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.
- {mcp_dbutils-0.12.0.dist-info → mcp_dbutils-0.14.0.dist-info}/METADATA +33 -1
- {mcp_dbutils-0.12.0.dist-info → mcp_dbutils-0.14.0.dist-info}/RECORD +5 -5
- {mcp_dbutils-0.12.0.dist-info → mcp_dbutils-0.14.0.dist-info}/WHEEL +0 -0
- {mcp_dbutils-0.12.0.dist-info → mcp_dbutils-0.14.0.dist-info}/entry_points.txt +0 -0
- {mcp_dbutils-0.12.0.dist-info → mcp_dbutils-0.14.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-dbutils
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.14.0
|
4
4
|
Summary: MCP Database Utilities Service
|
5
5
|
Author: Dong Hao
|
6
6
|
License-Expression: MIT
|
@@ -460,6 +460,38 @@ Provides MySQL-specific features:
|
|
460
460
|
- SSL/TLS secure connection
|
461
461
|
- URL and standard connection methods
|
462
462
|
|
463
|
+
## Code Quality
|
464
|
+
|
465
|
+
### Quality Gates
|
466
|
+
We use SonarCloud to maintain high code quality standards. All pull requests must pass the following quality gates:
|
467
|
+
|
468
|
+
- Code Coverage: ≥ 80%
|
469
|
+
- Code Quality:
|
470
|
+
* No blocker or critical issues
|
471
|
+
* Less than 10 major issues
|
472
|
+
* Code duplication < 3%
|
473
|
+
- Security:
|
474
|
+
* No security vulnerabilities
|
475
|
+
* No security hotspots
|
476
|
+
|
477
|
+
### Automated Checks
|
478
|
+
Our CI/CD pipeline automatically performs:
|
479
|
+
1. Full test suite execution
|
480
|
+
2. Code coverage analysis
|
481
|
+
3. SonarCloud static code analysis
|
482
|
+
4. Quality gate validation
|
483
|
+
|
484
|
+
Pull requests that don't meet these standards will be automatically blocked from merging.
|
485
|
+
|
486
|
+
### Local Development
|
487
|
+
To check code quality locally:
|
488
|
+
1. Run tests with coverage:
|
489
|
+
```bash
|
490
|
+
pytest --cov=src/mcp_dbutils --cov-report=xml:coverage.xml tests/
|
491
|
+
```
|
492
|
+
2. Use SonarLint in your IDE to catch issues early
|
493
|
+
3. Review SonarCloud analysis results in PR comments
|
494
|
+
|
463
495
|
## Contributing
|
464
496
|
Contributions are welcome! Here's how you can help:
|
465
497
|
|
@@ -15,8 +15,8 @@ mcp_dbutils/sqlite/__init__.py,sha256=lTUOkSfSWNw_BohJ_KNxYKMCANdtpGa3JK_ZyJsg_L
|
|
15
15
|
mcp_dbutils/sqlite/config.py,sha256=2ekTp89rcCu4qQN1O3sZjIcOwjhzWi4tisD20T2WAik,4533
|
16
16
|
mcp_dbutils/sqlite/handler.py,sha256=VxBVbwpNSQHyiudQXYFYpcdoScvbK2IGzYMbkcpvFcI,17731
|
17
17
|
mcp_dbutils/sqlite/server.py,sha256=PBjQLvxuxMq7FhTuu5ZX1y1AR1casCbio4dp1eeX6y0,7694
|
18
|
-
mcp_dbutils-0.
|
19
|
-
mcp_dbutils-0.
|
20
|
-
mcp_dbutils-0.
|
21
|
-
mcp_dbutils-0.
|
22
|
-
mcp_dbutils-0.
|
18
|
+
mcp_dbutils-0.14.0.dist-info/METADATA,sha256=luBQ5_SiC5LDs5aO-TBDNHqqJt7eb_Q1fC_g6opDe3o,15241
|
19
|
+
mcp_dbutils-0.14.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
20
|
+
mcp_dbutils-0.14.0.dist-info/entry_points.txt,sha256=XTjt0QmYRgKOJQT6skR9bp1EMUfIrgpHeZJPZ3CJffs,49
|
21
|
+
mcp_dbutils-0.14.0.dist-info/licenses/LICENSE,sha256=1A_CwpWVlbjrKdVEYO77vYfnXlW7oxcilZ8FpA_BzCI,1065
|
22
|
+
mcp_dbutils-0.14.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|