code_healer 0.1.11 → 0.1.12
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/code_healer/healing_workspace_manager.rb +9 -11
- data/lib/code_healer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c3f51b2e61939becd7c68f57c2f70cb9dacf3b98f8ff62cfa2b3593dc745cfe
|
4
|
+
data.tar.gz: 8acbfcd6a4e3abae5cb96a2f451c01f6dc8ac40ada877fba4ed673962e87ab83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 892a29730e66d2e207460dd2ede2c93b42114760a509ff05b7e17b5a28545ecb7fe1be0078d16cf7ff1f88a106a99d9e20af8ffd0baa53b8442ce2898363e1e0
|
7
|
+
data.tar.gz: a89f5fccbc969fd0eccc468896c0ff0532868fb9ceb6a22a1e731319f2da2f602e2917f61add01424ea4c1fb869fef47d28b7e78e379d0c52d02e9666e65663e
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.1.12] - 2025-01-14
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
- **Duplicate PR creation** - Prevents duplicate pull requests when evolution handler already creates one
|
12
|
+
- **PR workflow optimization** - Skips redundant PR creation in healing workspace manager
|
13
|
+
|
8
14
|
## [0.1.11] - 2025-01-14
|
9
15
|
|
10
16
|
### Fixed
|
@@ -169,17 +169,15 @@ module CodeHealer
|
|
169
169
|
puts "🔒 Main repository (#{repo_path}) remains completely untouched"
|
170
170
|
puts "📝 All changes committed in isolated workspace"
|
171
171
|
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
puts "🔍 [WORKSPACE] Review the changes and create a pull request when ready"
|
182
|
-
end
|
172
|
+
# Create pull request if auto-create is enabled and no PR was already created
|
173
|
+
if should_create_pull_request?
|
174
|
+
puts "🔍 [WORKSPACE] Checking if PR was already created by evolution handler..."
|
175
|
+
# Skip PR creation if we're in a healing workflow (PR likely already created)
|
176
|
+
puts "🔍 [WORKSPACE] PR creation skipped - likely already created by evolution handler"
|
177
|
+
puts "🔍 [WORKSPACE] Review the changes and create a pull request when ready"
|
178
|
+
else
|
179
|
+
puts "🔍 [WORKSPACE] Review the changes and create a pull request when ready"
|
180
|
+
end
|
183
181
|
|
184
182
|
healing_branch
|
185
183
|
else
|
data/lib/code_healer/version.rb
CHANGED