x_aeon_agents 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '096c25ea4f181ba26f5a0f6debf4f93ae61253acb015049ad47c0d709aaf6059'
4
- data.tar.gz: c78ebab6bb4c30ba13e1a038b65941f26558639d66da8f927ce96021d110a71d
3
+ metadata.gz: 0a4335e47de00b04d09dfb6086ba9a8ac31821ab4e53b2c0293c6abd62940431
4
+ data.tar.gz: 54f710beff803354735b044009aa0a901aed9b083f1a22776ce78abedbbf4a40
5
5
  SHA512:
6
- metadata.gz: e32d45eab37494203ad86dcf30a7cdf95d645274ffc8559c1811f8b4a4d04b1f6c6a7a898c4b8f626295c2472794f8a28acc0116e1ed7de46a4fe30337790c75
7
- data.tar.gz: 781b4f7613d2e54236e625b2ea3a3f7f0d6d1029edd388e31f8075ff24741fc5debb1dab633a316e638bb48990184da8234046a5dd31b2b2c1cd6b2c51c3946d
6
+ metadata.gz: 35fa42d65d0d75abcfa7df6f3e0a1e49a84d477aec3aaf95e22e35fd4165bb607be9085291143a2770fb41f16f69e94f5d9b3e69e43bfad19cc6873f517c1545
7
+ data.tar.gz: 5c7d8635f6c0a734a777749924e5ffa436447cf9f601d7cbd150c3f1ec8c9b0b25edea560f5f9ddcd849f6c26ac26f48c73714c3e8122117b3ca56bb9d869d0d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # [v1.1.1](https://github.com/Muriel-Salvan/x_aeon_agents/compare/v1.1.0...v1.1.1) (2026-09-11 17:27:09)
2
+
3
+ ### Patches
4
+
5
+ * [refactor: update git status calls to use status_info](https://github.com/Muriel-Salvan/x_aeon_agents/commit/d3c7017c01efc34bd619bbd2ef55d9e63e63bcb3)
6
+
1
7
  # [v1.1.0](https://github.com/Muriel-Salvan/x_aeon_agents/compare/v1.0.34...v1.1.0) (2026-09-11 15:35:31)
2
8
 
3
9
  ## Global changes
@@ -48,7 +48,7 @@ module XAeonAgents
48
48
  intent: 'Implement the requirements following the implementation plan',
49
49
  user_instructions: "Follow all the steps of the implementation plan described in the artifact named `#{coder_agent.artifact_ref(:plan)}`."
50
50
  )
51
- logger.info "Coder changes: #{Helpers.git.status.changed.keys.join(', ')}"
51
+ logger.info "Coder changes: #{Helpers.git.status_info.changed.keys.join(', ')}"
52
52
 
53
53
  task(new_agent(CommitterAgent, user_review: false, stage: :all, authors: [coder_agent]), intent: 'Commit coder changes') if @commit
54
54
 
@@ -110,7 +110,7 @@ module XAeonAgents
110
110
  ]
111
111
  }
112
112
  )
113
- logger.info "Tester changes: #{Helpers.git.status.changed.keys.join(', ')}"
113
+ logger.info "Tester changes: #{Helpers.git.status_info.changed.keys.join(', ')}"
114
114
  # Integrate potential implementation plan modifications
115
115
  unless @artifacts[:plan_modifications].strip.empty?
116
116
  plan_modifications = @artifacts.delete(:plan_modifications)
@@ -206,7 +206,7 @@ module XAeonAgents
206
206
  ]
207
207
  }
208
208
  )
209
- logger.info "Documenter changes: #{Helpers.git.status.changed.keys.join(', ')}"
209
+ logger.info "Documenter changes: #{Helpers.git.status_info.changed.keys.join(', ')}"
210
210
 
211
211
  if @commit || @pull_request
212
212
  task(
@@ -85,7 +85,7 @@ module XAeonAgents
85
85
  <<~EO_ARTIFACT
86
86
  ### New untracked files
87
87
 
88
- #{git.status.untracked.keys.map do |file|
88
+ #{git.status_info.untracked.keys.map do |file|
89
89
  <<~EO_UNTRACKED_FILE
90
90
  #### #{file}
91
91
  ```
@@ -2,5 +2,5 @@ module XAeonAgents
2
2
  # @!group Global API
3
3
 
4
4
  # Gem version
5
- VERSION = '1.1.0'
5
+ VERSION = '1.1.1'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: x_aeon_agents
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Muriel Salvan