Skip to content

build(deps): update openai-agents requirement from <0.15,>=0.12 to >=0.12,<0.18 in /engine - #74

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/engine/openai-agents-gte-0.12-and-lt-0.18
Closed

build(deps): update openai-agents requirement from <0.15,>=0.12 to >=0.12,<0.18 in /engine#74
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/engine/openai-agents-gte-0.12-and-lt-0.18

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 15, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on openai-agents to permit the latest version.

Release notes

Sourced from openai-agents's releases.

v0.17.2

What's Changed

Documentation & Other Changes

Full Changelog: openai/openai-agents-python@v0.17.1...v0.17.2

Changelog

Sourced from openai-agents's changelog.

Release process/changelog

The project follows a slightly modified version of semantic versioning using the form 0.Y.Z. The leading 0 indicates the SDK is still evolving rapidly. Increment the components as follows:

Minor (Y) versions

We will increase minor versions Y for breaking changes to any public interfaces that are not marked as beta. For example, going from 0.0.x to 0.1.x might include breaking changes.

If you don't want breaking changes, we recommend pinning to 0.0.x versions in your project.

Patch (Z) versions

We will increment Z for non-breaking changes:

  • Bug fixes
  • New features
  • Changes to private interfaces
  • Updates to beta features

Breaking change changelog

0.17.0

In this version, sandbox local source materialization keeps LocalFile.src and LocalDir.src within the materialization base_dir unless the source path is covered by Manifest.extra_path_grants. The base_dir is the SDK process current working directory when the manifest is applied; relative local sources are resolved from that directory, while absolute local sources must already be inside it or under an explicit grant. This closes a local artifact boundary issue, but it can affect applications that intentionally copy trusted host files or directories from outside that base directory into a sandbox workspace.

To migrate, grant trusted host roots at the manifest level with SandboxPathGrant, preferably as read-only when the sandbox only needs to read those files:

from pathlib import Path
from agents.sandbox import Manifest, SandboxPathGrant
from agents.sandbox.entries import Dir, LocalDir
This is an absolute host path outside the SDK process base_dir.
TRUSTED_DOCS_ROOT = Path("/opt/my-app/docs")
manifest = Manifest(
extra_path_grants=(
# This host root is outside the SDK process base_dir, so the manifest must grant it.
SandboxPathGrant(path=str(TRUSTED_DOCS_ROOT), read_only=True),
),
entries={
# No grant is needed for local sources that stay under the SDK process base_dir.
"fixtures": LocalDir(src=Path("fixtures"), description="Local test fixtures."),
# This entry reads from the granted host root and copies it into the sandbox workspace.
"docs": LocalDir(src=TRUSTED_DOCS_ROOT, description="Trusted local documents."),
# Dir creates a sandbox workspace directory; it does not read from the host filesystem.
"output": Dir(description="Generated artifacts."),
},
)
</tr></table>

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels May 15, 2026
study8677 added a commit that referenced this pull request May 18, 2026
`_read_entry_points` only imported stdlib `tomllib` (Python 3.11+).
On 3.10 the `ModuleNotFoundError` was silently swallowed and entry
points were never detected, causing
`test_full_scan_detects_entry_points_from_pyproject` to fail on
`engine-test (3.10)` (red on main, independent of #74).

Fall back to the `tomli` backport on 3.10 and declare the conditional
dependency in `engine/pyproject.toml`. Verified locally that the test
suite passes on Python 3.10.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@study8677

Copy link
Copy Markdown
Owner

@dependabot rebase

Updates the requirements on [openai-agents](https://github.com/openai/openai-agents-python) to permit the latest version.
- [Release notes](https://github.com/openai/openai-agents-python/releases)
- [Changelog](https://github.com/openai/openai-agents-python/blob/main/docs/release.md)
- [Commits](openai/openai-agents-python@v0.12.0...v0.17.2)

---
updated-dependencies:
- dependency-name: openai-agents
  dependency-version: 0.17.2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/pip/engine/openai-agents-gte-0.12-and-lt-0.18 branch from 9ee8588 to b3fd9a5 Compare May 18, 2026 09:33
@study8677

Copy link
Copy Markdown
Owner

Superseded by #78 — Dependabot rebase conflicted with the scanner 3.10 fix (#77). Replayed the same one-line bump manually on top of fresh main.

@study8677 study8677 closed this May 18, 2026
@study8677
study8677 deleted the dependabot/pip/engine/openai-agents-gte-0.12-and-lt-0.18 branch May 18, 2026 09:34
@dependabot @github

dependabot Bot commented on behalf of github May 18, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

study8677 added a commit that referenced this pull request May 18, 2026
Manual replay of Dependabot PR #74. Dependabot's rebase produced
a conflict against the just-merged scanner 3.10 fix (#77), which
also touched engine/pyproject.toml.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant