codex-ruby 0.1.2 → 0.1.4
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 +10 -0
- data/lib/codex_sdk/exec.rb +3 -3
- data/lib/codex_sdk/version.rb +1 -1
- metadata +1 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ba6980e6b87c0c4edff93f2577d49f167bf05264ba84e94077b6014deba03e9
|
|
4
|
+
data.tar.gz: 4dac330c5ddefe50cae38009aa706a2782b1673cbefe78122b934b894b92a5bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 920bf04a7dbc12d6129b761032c61fcf5929fe22b4370fab1f47e07eb46fa7578908c7cb448776ebfa8dbefc5d34c6728172a3bb2804e139363edbb7b7dc0ef0
|
|
7
|
+
data.tar.gz: a76ee269289b0e7441f27ca14710b51d411a31505bd8a337973e0f63d2614eaea5f0da2e3c6971381b9d95a74ea7a979458503c0f7eca90bca8e96761e43dc08
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.4 (2026-06-16)
|
|
4
|
+
|
|
5
|
+
- Pass `web_search: true` to current Codex CLI versions as the global
|
|
6
|
+
`--search` flag instead of the rejected `web_search=true` config override
|
|
7
|
+
|
|
8
|
+
## 0.1.3 (2026-06-16)
|
|
9
|
+
|
|
10
|
+
- Add `AGENTS.md` with contributor and release rules for AI agents
|
|
11
|
+
- Disable the `Gemspec/RequireMFA` RuboCop cop to match the intentionally MFA-free release setup
|
|
12
|
+
|
|
3
13
|
## 0.1.2 (2026-04-19)
|
|
4
14
|
|
|
5
15
|
- Expose rollout-derived `context_snapshot` data on `Exec`, `AgentThread`, and blocking `Turn` results
|
data/lib/codex_sdk/exec.rb
CHANGED
|
@@ -106,7 +106,9 @@ module CodexSDK
|
|
|
106
106
|
|
|
107
107
|
def build_args(resume_thread_id: nil, images: [], output_schema_path: nil)
|
|
108
108
|
codex_path = @options.codex_path || find_codex_path
|
|
109
|
-
args = [codex_path
|
|
109
|
+
args = [codex_path]
|
|
110
|
+
args << "--search" if @thread_options.web_search
|
|
111
|
+
args.concat(["exec", "--experimental-json"])
|
|
110
112
|
|
|
111
113
|
# Global config overrides
|
|
112
114
|
args.concat(ConfigSerializer.to_flags(@options.config)) if @options.config.any?
|
|
@@ -134,8 +136,6 @@ module CodexSDK
|
|
|
134
136
|
args.concat(["--config", "sandbox_workspace_write.network_access=#{to.network_access}"])
|
|
135
137
|
end
|
|
136
138
|
|
|
137
|
-
args.concat(["--config", "web_search=#{ConfigSerializer.to_toml_value(to.web_search)}"]) if to.web_search
|
|
138
|
-
|
|
139
139
|
if to.approval_policy
|
|
140
140
|
args.concat(["--config", "approval_policy=#{ConfigSerializer.to_toml_value(to.approval_policy)}"])
|
|
141
141
|
end
|
data/lib/codex_sdk/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: codex-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anton Kopylov
|
|
@@ -37,7 +37,6 @@ metadata:
|
|
|
37
37
|
homepage_uri: https://github.com/tonic20/codex-ruby
|
|
38
38
|
source_code_uri: https://github.com/tonic20/codex-ruby
|
|
39
39
|
changelog_uri: https://github.com/tonic20/codex-ruby/blob/main/CHANGELOG.md
|
|
40
|
-
rubygems_mfa_required: 'true'
|
|
41
40
|
rdoc_options: []
|
|
42
41
|
require_paths:
|
|
43
42
|
- lib
|