@juspay/yama 1.1.0 → 1.1.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.
- package/CHANGELOG.md +27 -1
- package/README.md +151 -119
- package/dist/cli/index.js +201 -200
- package/dist/core/ContextGatherer.d.ts +3 -3
- package/dist/core/ContextGatherer.js +145 -149
- package/dist/core/Guardian.d.ts +1 -1
- package/dist/core/Guardian.js +122 -122
- package/dist/core/providers/BitbucketProvider.d.ts +3 -3
- package/dist/core/providers/BitbucketProvider.js +129 -121
- package/dist/features/CodeReviewer.d.ts +3 -3
- package/dist/features/CodeReviewer.js +290 -221
- package/dist/features/DescriptionEnhancer.d.ts +3 -3
- package/dist/features/DescriptionEnhancer.js +115 -94
- package/dist/index.d.ts +11 -11
- package/dist/index.js +10 -48
- package/dist/types/index.d.ts +21 -21
- package/dist/types/index.js +13 -18
- package/dist/utils/Cache.d.ts +1 -1
- package/dist/utils/Cache.js +62 -68
- package/dist/utils/ConfigManager.d.ts +1 -1
- package/dist/utils/ConfigManager.js +281 -253
- package/dist/utils/Logger.d.ts +2 -2
- package/dist/utils/Logger.js +69 -67
- package/package.json +7 -6
- package/yama.config.example.yaml +28 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## [1.1.1](https://github.com/juspay/yama/compare/v1.1.0...v1.1.1) (2025-07-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* bump version to 1.2.1 ([8964645](https://github.com/juspay/yama/commit/89646450a7dec6ffcc3ad7fb745e1414fc751d4f))
|
|
7
|
+
|
|
8
|
+
# [1.1.0](https://github.com/juspay/yama/compare/v1.0.0...v1.1.0) (2025-07-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* migrate from CommonJS to ESM modules ([b45559f](https://github.com/juspay/yama/commit/b45559f86d37ab3516079becfa56a9f73ff8f062))
|
|
14
|
+
|
|
15
|
+
# 1.0.0 (2025-07-25)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* add enterprise-grade CI/CD pipeline and release automation ([e385d69](https://github.com/juspay/yama/commit/e385d69d135bee72f51ac4462adcfc9a4a4be17b))
|
|
21
|
+
* v1.1.0 - Enhanced AI configuration and performance improvements ([e763e93](https://github.com/juspay/yama/commit/e763e9341c2869433097b7a6bcc9080028934e1b))
|
|
22
|
+
|
|
1
23
|
# Changelog
|
|
2
24
|
|
|
3
25
|
All notable changes to this project will be documented in this file.
|
|
@@ -8,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
30
|
## [1.1.0] - 2025-07-25
|
|
9
31
|
|
|
10
32
|
### Added
|
|
33
|
+
|
|
11
34
|
- Enterprise-grade Pull Request automation toolkit
|
|
12
35
|
- AI-powered code review capabilities
|
|
13
36
|
- Description enhancement features
|
|
@@ -16,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
16
39
|
- Quality assurance automation
|
|
17
40
|
|
|
18
41
|
### Features
|
|
42
|
+
|
|
19
43
|
- **Guardian**: Comprehensive PR security and quality checks
|
|
20
44
|
- **Scribe**: AI-enhanced PR description generation
|
|
21
45
|
- **Police**: Automated code review and compliance checking
|
|
@@ -23,12 +47,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
47
|
- **Multi-platform Support**: Works with major Git platforms
|
|
24
48
|
|
|
25
49
|
### Dependencies
|
|
50
|
+
|
|
26
51
|
- @juspay/neurolink for AI capabilities
|
|
27
52
|
- @nexus2520/bitbucket-mcp-server for Bitbucket integration
|
|
28
53
|
- Comprehensive testing suite with Jest
|
|
29
54
|
- TypeScript support with strict type checking
|
|
30
55
|
|
|
31
56
|
### Developer Experience
|
|
57
|
+
|
|
32
58
|
- CLI tools with multiple entry points
|
|
33
59
|
- Configurable via YAML
|
|
34
60
|
- Memory bank for context persistence
|
|
@@ -36,4 +62,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
36
62
|
|
|
37
63
|
---
|
|
38
64
|
|
|
39
|
-
|
|
65
|
+
_This changelog is automatically generated and maintained by semantic-release._
|