process_executer 4.0.2 → 4.0.3

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: a033cd4abe84b2a664cb59bd5a3110302a478d871e096ecde3031fc76278f324
4
- data.tar.gz: 5de784c728d11852efac17fb035e15e9e3c2f35ff36e402f260cf011a3ce55b8
3
+ metadata.gz: 80aa4031ab96fafeb8d1c1126fe4646145b59208221aec2188f21904cede7b7d
4
+ data.tar.gz: 1007e6fb46320b51bfe9d216a0ef9646d357bcff20c60313c32885b31db8b7f2
5
5
  SHA512:
6
- metadata.gz: 0c5b2ae5438c7c263b1105b8e6a5d4ecf18b0836a5cc1a376b610fae3adbee123f851b8357b5113ff1bb35af5048af08f9a2d0b1ac50bc89a7234b2480727c9e
7
- data.tar.gz: d29494c96b22e31e994a880d7a3c514c7e13d08d695e41794ed2609f76048dc2e4c8a995d48eb5babe8f5da27a9649dce5198baf09c35828a40547bba149c382
6
+ metadata.gz: c2cb8d71448b21f256d03011b20492eb8f5b766d668c564a3a836e01fe4aa68bdbf2d5135f8461d576cccb54ca3e189f59999f93aa51d33dcd65bb00b3be15f9
7
+ data.tar.gz: d6cb1188669658fed64b92f5bdce4262bb87b1e38f6fff710cfe9e15773d753b70e6d4aff9b73def4ff1e823428ddf7dd8356518c33deccfb88de3658f706787
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "4.0.2"
2
+ ".": "4.0.3"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to the process_executer gem 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
+ ## [4.0.3](https://github.com/main-branch/process_executer/compare/v4.0.2...v4.0.3) (2026-01-04)
9
+
10
+
11
+ ### Other Changes
12
+
13
+ * Note JRuby Windows support issue ([4cc6903](https://github.com/main-branch/process_executer/commit/4cc69036bbdda383a8ecb50bd63b19f96303203a))
14
+
8
15
  ## [4.0.2](https://github.com/main-branch/process_executer/compare/v4.0.1...v4.0.2) (2026-01-03)
9
16
 
10
17
 
data/README.md CHANGED
@@ -203,17 +203,12 @@ This gem will be expected to function correctly on:
203
203
  - The latest version of TruffleRuby 24+ on Linux
204
204
 
205
205
  It is this project's intent to support the latest version of JRuby on Windows once
206
- Process.wait2 and Process.wait work correctly on this platform.
206
+ Process.wait and Process.wait2 report subprocess status correctly on that platform
207
+ (tracking: https://github.com/main-branch/process_executer/issues/156).
207
208
 
208
- Currently, JRuby on Windows does not capture and report the subprocess status via $?
209
- (or $CHILD_STATUS), Process.wait, or Process.wait2. These values always return `nil`
210
- for the status, preventing this gem from properly detecting command failures and
211
- timeouts.
212
-
213
- This repository includes a separate test suite in the `process_spawn_test/` directory
214
- that specifically validates JRuby's subprocess behavior. The [Process Spawn Test
215
- workflow](https://github.com/main-branch/process_executer/actions/workflows/process-spawn-test.yml)
216
- can be run manually to verify the status of this issue.
209
+ This repository includes a separate test suite in the `process_spawn_test/` directory.
210
+ The [Process Spawn Test workflow](https://github.com/main-branch/process_executer/actions/workflows/process-spawn-test.yml)
211
+ can be run manually to check the current JRuby/Windows status.
217
212
 
218
213
  ## Breaking Changes
219
214
 
@@ -3,5 +3,5 @@
3
3
  module ProcessExecuter
4
4
  # The current Gem version
5
5
  # @return [String]
6
- VERSION = '4.0.2'
6
+ VERSION = '4.0.3'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: process_executer
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -293,8 +293,8 @@ metadata:
293
293
  allowed_push_host: https://rubygems.org
294
294
  homepage_uri: https://github.com/main-branch/process_executer
295
295
  source_code_uri: https://github.com/main-branch/process_executer
296
- documentation_uri: https://rubydoc.info/gems/process_executer/4.0.2
297
- changelog_uri: https://rubydoc.info/gems/process_executer/4.0.2/file/CHANGELOG.md
296
+ documentation_uri: https://rubydoc.info/gems/process_executer/4.0.3
297
+ changelog_uri: https://rubydoc.info/gems/process_executer/4.0.3/file/CHANGELOG.md
298
298
  rubygems_mfa_required: 'true'
299
299
  rdoc_options: []
300
300
  require_paths:
@@ -312,7 +312,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
312
312
  requirements:
313
313
  - 'Platform: Mac, Linux, or Windows'
314
314
  - 'Ruby: MRI 3.1 or later, TruffleRuby 24 or later, or JRuby 9.4 or later'
315
- rubygems_version: 4.0.3
315
+ rubygems_version: 4.0.6
316
316
  specification_version: 4
317
317
  summary: Enhanced subprocess execution with timeouts, output capture, and flexible
318
318
  redirection