fix(deps): update rhdh augment dependencies (minor)#2914
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
a069ced to
03cac36
Compare
b4ea4cd to
ffad084
Compare
125880e to
fa728f4
Compare
3fe927d to
8f861c1
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2914 +/- ##
=========================================
Coverage 53.78% 53.78%
=========================================
Files 2362 2362
Lines 84847 84847
Branches 23510 23509 -1
=========================================
Hits 45634 45634
- Misses 37755 38938 +1183
+ Partials 1458 275 -1183
*This pull request uses carry forward flags. Click here to find out more. Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
25a4f42 to
51a2a9e
Compare
71517e9 to
c501291
Compare
91863b6 to
df0488d
Compare
Changed Packages
|
|
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This PR contains the following updates:
^0.8.5→^0.11.01.58.2→1.60.0Release Notes
openai/openai-agents-js (@openai/agents-core)
v0.11.4Compare Source
What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.11.3...v0.11.4
v0.11.3Compare Source
What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.11.2...v0.11.3
v0.11.2Compare Source
What's Changed
Documentation & Other Changes
New Contributors
Full Changelog: openai/openai-agents-js@v0.11.1...v0.11.2
v0.11.1Compare Source
What's Changed
Documentation & Other Changes
New Contributors
Full Changelog: openai/openai-agents-js@v0.11.0...v0.11.1
v0.11.0Compare Source
Key Changes
RealtimeAgent's default is now gpt-realtime-2
Since this version, the default model for RealtimeAgents is gpt-realtime-2: https://developers.openai.com/api/docs/models/gpt-realtime-2
Sandbox local source materialization change
In this version, sandbox local source materialization keeps
LocalFile.srcandLocalDir.srcwithin the materializationbaseDirunless the source path is covered byManifest.extraPathGrants. ThebaseDiris 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.What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.10.1...v0.11.0
v0.10.1Compare Source
What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.10.0...v0.10.1
v0.10.0Compare Source
Key Changes
Default model change
In this version, the SDK default model is now
gpt-5.4-miniinstead ofgpt-4.1. This could affect agents and runs that do not explicitly set a model. Because the new default is a GPT-5 model, implicit default model settings now include GPT-5 defaults such asreasoning.effort="none"andverbosity="low".The new default model should work better for most use cases (see the report at #1248), but if you need to keep the previous default model behavior for some reasons, set a model explicitly on the agent or run config or set the
OPENAI_DEFAULT_MODELenvironment variable.maxTurns configuration
This version adds a new option
maxTurns=nullto disable the Agents SDK run turn limit while preserving the existing default ofDEFAULT_MAX_TURNS(10) whenmaxTurnsis omitted.Tool execution concurrency
This version adds a new SDK-side runtime configuration for local function tool execution concurrency:
toolExecution.maxFunctionToolConcurrencyonRunConfig, preserves default behavior when unset. The change keeps provider-sideModelSettings.parallelToolCallsseparate from SDK-side local execution scheduling.Server-prefixed MCP tool naming
This version adds a new option
MCPConfiginAgentto align with the Python SDK. When ItsincludeServerInToolNamesis set to true, the SDK includes the MCP server name in the tool name to prevent tool name conflicts with other MCP servers.What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.9.1...v0.10.0
v0.9.1Compare Source
What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.9.0...v0.9.1
v0.9.0Compare Source
What's Changed
Sandbox Agents
This release adds Sandbox Agents, a beta SDK surface for running agents with persistent workspaces and sandbox-backed capabilities in JavaScript.
Sandbox agents build on the existing
Agent,Runner, andrunflow, while adding workspace manifests, sandbox sessions, capabilities, snapshots, memory, and resume support. They let agents inspect files, run commands, edit repositories, apply patches, generate artifacts, and continue work across runs.Refer to the Sandbox Agents guide and
examples/sandbox/for more details.Key additions include:
SandboxAgent, exported from@openai/agents/sandbox, with sandbox defaults such asdefaultManifest,baseInstructions, capabilities, andrunAs.Manifest, a workspace contract for synthetic files and directories, local files and directories, Git repositories, environment, users, groups, permissions, and mounts.SandboxRunConfig, which wires sandbox clients, live sessions, serialized session resume, manifest overrides, snapshots, and materialization limits into each run.RunStateserialization for resuming runner-managed sandbox sessions.Sandbox Clients and Hosted Providers
Sandbox agents support local, containerized, and hosted execution backends:
UnixLocalSandboxClientfor local development.DockerSandboxClientfor container isolation and image parity.@openai/agents-extensions/sandbox/*subpath exports.Provider-specific examples are available under
examples/sandbox/extensions/.Workspaces, Snapshots, Resume, and Memory
This release adds a workspace model for sandbox sessions, including synthetic files and directories, local files and directories, Git repositories, local bind mounts, Docker volume strategies, and typed remote mounts where supported by the selected backend.
It also adds local and remote snapshot store interfaces for carrying workspace contents across runs, plus runner-managed resume through serialized sandbox session state.
Sandbox memory lets future sandbox-agent runs learn from prior runs by storing extracted lessons in the workspace, injecting concise summaries into later runs, and supporting progressive disclosure through deeper rollout summaries. Memory supports read-only and generate-enabled modes, live updates, automatic generation when sessions are flushed, multi-turn grouping, separate memory layouts, and pluggable
MemoryStoreimplementations.Examples
A new
examples/sandbox/suite demonstrates:SandboxAgentexecution with a manifest.Runtime, Tracing, and Model Plumbing
The release includes the runtime plumbing needed for sandbox agents to work naturally inside the JavaScript SDK:
runAssupport for compatible shell and filesystem operations.What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.8.5...v0.9.0
microsoft/playwright (@playwright/test)
v1.60.0Compare Source
🌐 HAR recording on Tracing
tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same
content,modeandurlFilteroptions asrecordHar. The returned Disposable makes it easy to scope a recording withawait using:🪝 Drop API
New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches
dragenter,dragover, anddropwith a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:🎯 Aria snapshots
page.locator('body').boxesoption on locator.ariaSnapshot() / page.ariaSnapshot() appends each element's bounding box as[box=x,y,width,height], useful for AI consumption.🛑 test.abort()
New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:
New APIs
Browser, Context and Page
Locators and Assertions
descriptionin page.getByRole() / locator.getByRole() / frame.getByRole() / frameLocator.getByRole() for matching the accessible description.pseudoin expect(locator).toHaveCSS() reads computed styles from::beforeor::after.stylein locator.highlight() applies extra inline CSS to the highlight overlay, plus new page.hideHighlight() to clear all highlights.Network
noDefaultsin browserType.connectOverCDP() disables Playwright's default overrides on the default context (download behavior, focus emulation, media emulation), so attaching to a user's daily-driver browser doesn't disturb its state.Errors and Reporting
line/columnproperties (lineNumber/columnNumberare deprecated).expect(...)matcher failure.workerInfoargument with details about the worker for fixture teardown errors.Test runner
{testFileBaseName}token in testProject.snapshotPathTemplate — file name without extension.workers: 0or negative values.🛠️ Other improvements
npx playwright show-reportaccepts.zipfiles directly — no need to unzip first.repeatEachIndexis shown in the test header when non-zero.Breaking Changes⚠️
Locator.ariaRef()— use the standard locator.ariaSnapshot() pipeline.handleoption onBrowserContext.exposeBindingandPage.exposeBinding.loggeroption onBrowserType.connectandBrowserType.connectOverCDP— use tracing instead.videosPath/videoSize— userecordVideoinstead.Browser Versions
This version was also tested against the following stable channels:
v1.59.1Compare Source
v1.59.0Compare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.