Skip to content

chore(deps): bump the agent group with 3 updates#5

Merged
dependabot[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/agent-42465eb326
Apr 8, 2025
Merged

chore(deps): bump the agent group with 3 updates#5
dependabot[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/agent-42465eb326

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 8, 2025

Bumps the agent group with 3 updates: @agentica/core, openai and typia.

Updates @agentica/core from 0.12.21 to 0.16.3

Release notes

Sourced from @​agentica/core's releases.

v0.16.3

   🐞 Bug Fixes

    View changes on GitHub

v0.16.2

   🐞 Bug Fixes

    View changes on GitHub

v0.16.1

   🐞 Bug Fixes

    View changes on GitHub

v0.16.0

   🚀 Features

   ✅ Tests

    View changes on GitHub

v0.15.7

   🚀 Features

   🐞 Bug Fixes

... (truncated)

Commits

Updates openai from 4.89.0 to 4.92.1

Release notes

Sourced from openai's releases.

v4.92.1

4.92.1 (2025-04-07)

Full Changelog: v4.92.0...v4.92.1

Chores

  • internal: only run examples workflow in main repo (#1450) (5e49a7a)

v4.92.0

4.92.0 (2025-04-07)

Full Changelog: v4.91.1...v4.92.0

Features

Bug Fixes

  • api: improve type resolution when importing as a package (#1444) (4aa46d6)
  • client: send X-Stainless-Timeout in seconds (#1442) (aa4206c)
  • embeddings: correctly decode base64 data (#1448) (58128f7)
  • mcp: remove unused tools.ts (#1445) (520a8fa)

Chores

  • internal: add aliases for Record and Array (#1443) (b65391b)

v4.91.1

4.91.1 (2025-04-01)

Full Changelog: v4.91.0...v4.91.1

Bug Fixes

  • docs: correct docstring on responses.stream (1c8cd6a)

Chores

  • Remove deprecated/unused remote spec feature (ce3dfa8)

v4.91.0

4.91.0 (2025-03-31)

... (truncated)

Changelog

Sourced from openai's changelog.

4.92.1 (2025-04-07)

Full Changelog: v4.92.0...v4.92.1

Chores

  • internal: only run examples workflow in main repo (#1450) (5e49a7a)

4.92.0 (2025-04-07)

Full Changelog: v4.91.1...v4.92.0

Features

Bug Fixes

  • api: improve type resolution when importing as a package (#1444) (4aa46d6)
  • client: send X-Stainless-Timeout in seconds (#1442) (aa4206c)
  • embeddings: correctly decode base64 data (#1448) (58128f7)
  • mcp: remove unused tools.ts (#1445) (520a8fa)

Chores

  • internal: add aliases for Record and Array (#1443) (b65391b)

4.91.1 (2025-04-01)

Full Changelog: v4.91.0...v4.91.1

Bug Fixes

  • docs: correct docstring on responses.stream (1c8cd6a)

Chores

  • Remove deprecated/unused remote spec feature (ce3dfa8)

4.91.0 (2025-03-31)

Full Changelog: v4.90.0...v4.91.0

Features

... (truncated)

Commits

Updates typia from 8.0.3 to 9.1.0

Release notes

Sourced from typia's releases.

9.1.0

What's Changed

Full Changelog: samchon/typia@v9.0.1...9.1.0

v9.0.1

Major update from @samchon/openapi: https://github.com/samchon/openapi/releases/tag/v4.0.0

export namespace JsonSchema {
  export interface INumber {
    type: "number";
    minimum?: number;
    maximum?: number;
    exclusiveMinimum?: number; // boolean -> number
    exclusiveMaximum?: number; // boolean -> number;
    examples?: Record<string, any> | Array<any>; // object -> array | object
  }
}

Anthropic Claude has banned boolean typed exclusiveMinimum and exclusiveMaximum properties. So @samchon/openapi has changed them to number type to support Anthropic Claude perflectly, and it is a typical major update taking a break change on types.

Also, in the JSON schema specifications, examples property has been changed from Array<any> type to Record<string, any> type since OpenAPI v3 update. However, too much people and frameworks are not responding such specification change. So, many of users validating OpenAPI specification by typia.assert<OpenApiV3_1.IDocument>(doc) function had been failed due to such JsonSchema.examples reason.

@samchon/openapi's new release allows non-standard example type (Array<any>) considering the industrial environments, and supports polyfill methods instead.

To respond such break changes with major update from @samchon/openapi, typia has released new major update v9. Also, realising a new major update, typia has enhanced number & tags.Type<"uint32"> like unsigned integer type about JSON schema generation. From now on, when define a number & tags.Type<"int32"> like tag, it would also contain the minimum: 0 constraint in the JSON schema.

What's Changed

Full Changelog: samchon/typia@v8.2.0...v9.0.1

v8.2.0

What's Changed

New Contributors

... (truncated)

Commits
  • 75dcc07 New function typia.json.schema\<T>() (#1567)
  • fecdaa2 Merge pull request #1566 from samchon/dependabot/npm_and_yarn/test/ecosystem-...
  • 15fd6f3 Bump typescript from 5.8.2 to 5.8.3 in /test in the ecosystem group
  • e284b63 Merge pull request #1565 from samchon/dependabot/npm_and_yarn/website/ecosyst...
  • fa4c47b Bump the ecosystem group across 1 directory with 3 updates
  • aeec9cc Fix comment tag written @exclusiveMinimum case. (#1564)
  • 184d29c Fix playground rollup version
  • a7febfa Publish v9
  • cc7bc09 Enhance uint type's JSON schema property. (#1563)
  • f61d0c7 exclusiveMinimum/exclusiveMaximum as number type (#1562)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

Dependabot will merge this PR once CI passes on it, as requested by @studio-pro.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the agent group with 3 updates: [@agentica/core](https://github.com/wrtnlabs/agentica), [openai](https://github.com/openai/openai-node) and [typia](https://github.com/samchon/typia).


Updates `@agentica/core` from 0.12.21 to 0.16.3
- [Release notes](https://github.com/wrtnlabs/agentica/releases)
- [Commits](wrtnlabs/agentica@v0.12.21...v0.16.3)

Updates `openai` from 4.89.0 to 4.92.1
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/master/CHANGELOG.md)
- [Commits](openai/openai-node@v4.89.0...v4.92.1)

Updates `typia` from 8.0.3 to 9.1.0
- [Release notes](https://github.com/samchon/typia/releases)
- [Commits](samchon/typia@v8.0.3...9.1.0)

---
updated-dependencies:
- dependency-name: "@agentica/core"
  dependency-version: 0.16.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: agent
- dependency-name: openai
  dependency-version: 4.92.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: agent
- dependency-name: typia
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: agent
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 8, 2025
@studio-pro
Copy link

@dependabot merge

@dependabot dependabot bot merged commit 5d34f20 into main Apr 8, 2025
2 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/agent-42465eb326 branch April 8, 2025 12:13
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant