Version Packages (beta)#6386
Open
effect-bot wants to merge 1 commit into
Open
Conversation
Contributor
Bundle Size Analysis
|
8f07a85 to
be8f811
Compare
be8f811 to
7862284
Compare
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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@effect/ai-anthropic@4.0.0-beta.99
Patch Changes
#6371
7543afeThanks @polRk! - Fix client-executed provider tools (Memory, Text Editor, Computer Use, Bash) which were unusable on the wire.makeResponse(and the streaming equivalents) now map a providertool_usewire name (e.g."memory") back to the tool's custom name (e.g."AnthropicMemory") that the toolkit is keyed by, instead of raisingToolNotFoundError.AnthropicTool.MemoryCreateCommandnow includes the requiredfile_textfield, so acreatecommand no longer drops the file body.Schema.optionalKeyinstead ofSchema.optional, which the Anthropic codec rejected with "Unsupported AST Undefined":Memory/TextEditorview_range,ComputerUsecoordinate, andBashrestart.Closes #2615.
Updated dependencies [
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/ai-openai@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/ai-openai-compat@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/ai-openrouter@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/atom-react@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/atom-solid@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/atom-vue@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:effect@4.0.0-beta.99
Patch Changes
#6397
8ce4795Thanks @IMax153! - Add a scopedCliConfigservice for customizing the built-in global flags used by CLI command runners.For example, provide an explicit list that omits
GlobalFlag.LogLevelto remove the built-in--log-levelflag:#6409
80b539fThanks @IMax153! - Reintroduce interactive CLI wizard mode through the--wizardflag andCommand.wizard.#6394
88a54ccThanks @lloydrichards! - add aradiusoption toGraphsearch configuration, allowingdfs,bfs, anddfsPostOrdertraversals to limit returned nodes by edge distance from the configured start nodes. Traversals can also usedirection: "undirected"to follow edges in either direction.#6389
2e9a34aThanks @IMax153! - Report an error when a CLI flag, including--completions, is provided without its required value.#6359
55d4eb3Thanks @evermake! - - FixCommand.withSubcommandscollapsing the inferred requirements type toneverwhen given more than one subcommandCommand.Servicesutility type to extract the required services from aCommand#6418
8f6e3adThanks @fubhy! - FixGraph.mapEdgesandGraph.filterMapEdgesto preserveGraph.Edgeinstances when transforming edge data.#6414
385f7a4Thanks @fubhy! - FixGraph.toGraphVizto quote DOT graph names and escape labels as literal text.#6371
7543afeThanks @polRk! - Tool: preserve the tool kind when cloning provider-defined and dynamic tools.Tool.addDependency,setParameters,setSuccess,setFailure,annotate, andannotateMergepreviously rebuilt the tool as a user-defined tool, which flippedTool.isProviderDefinedtofalse, corrupted the providerid(e.g.anthropic.memory_20250818), and crashedTool.getStrictMode. These operations now clone the tool while preserving its prototype,id, and kind. Provider-defined tools also now carry an empty annotations context soTool.getStrictMode/annotatework on them. Closes #2615.#6417
c8d9fcfThanks @fubhy! - RejectGraphmutation operations on mutable handles afterGraph.endMutationfinalizes them.#6415
f809189Thanks @fubhy! - FixGraph.Walkeriteration for receiver-sensitive iterables.#6394
88a54ccThanks @lloydrichards! - added graph set operations for combining and comparing graphsGraph.make- creates a graph constructor for a dynamically selected graph kindGraph.compose- composition of two graphs, merging nodes by identityGraph.intersection- intersection of two graphs, keeping only common nodes and edgesGraph.difference- difference of two graphs, removing edges present in the second graphGraph.symmetricDifference- symmetric difference of two graphs, keeping edges present in exactly one graph#6419
7517d09Thanks @fubhy! - Make the public Graph interfaces opaque by hiding internal mutable storage fields from their TypeScript surface.#6394
88a54ccThanks @lloydrichards! - add advanced graph set operations for deriving related graph structuresGraph.complement- complement over the existing node set, adding missing edges between distinct nodesGraph.neighborhood- induced subgraph containing nodes within a radius of a nodeGraph.sum- disjoint union of two graphs without merging equal node data@effect/opentelemetry@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/platform-browser@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/platform-bun@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/platform-node@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/platform-node-shared@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-clickhouse@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-d1@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-libsql@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-mssql@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-mysql2@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-pg@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-pglite@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-sqlite-bun@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-sqlite-do@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-sqlite-node@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-sqlite-react-native@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/sql-sqlite-wasm@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/openapi-generator@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]:@effect/vitest@4.0.0-beta.99
Patch Changes
8ce4795,80b539f,88a54cc,2e9a34a,55d4eb3,8f6e3ad,385f7a4,7543afe,c8d9fcf,f809189,88a54cc,7517d09,88a54cc]: