Logo
Documentation
GitHub
Blogs
YouTube
Supporters
Resources
Changelog
Join us

Changelog

Explore code, SDKs, blogs, and use cases for developing multi-agent systems. Learn how AGNTCY enables open, interoperable AI infrastructure at scale.

release   ·   dir   ·   gui/v1.0.0   ·   2026-02-06
gui/v1.0.0
GUI Release v1.0.0
Version: gui/v1.0.0
Date: 2026-02-06
Status: Released
Breaking: Yes
Components: Core
Authors:
PRs:63d8447
Docs
Release PR
release   ·   slim   ·   slim-v1.0.1   ·   2026-02-06
slim-v1.0.1
# Other
- update Cargo.lock dependencies
Version: slim-v1.0.1
Date: 2026-02-06
Status: Released
Breaking: Yes
Components: Core
Authors:
PRs:2dd4bfa
Docs
Release PR
release   ·   slim   ·   slim-service-v0.8.5   ·   2026-02-06
slim-service-v0.8.5
# Added
- remove lock from mls state ([#1203](https://github.com/agntcy/slim/pull/1203))
Version: slim-service-v0.8.5
Date: 2026-02-06
Status: Released
Breaking: Yes
Components: Core
Authors:
PRs:2dd4bfa
Docs
Release PR
release   ·   slim   ·   slim-session-v0.1.5   ·   2026-02-06
slim-session-v0.1.5
# Added
- remove lock from mls state ([#1203](https://github.com/agntcy/slim/pull/1203))
# Other
- *(data-plane)* upgrade to rust 1.93 ([#1190](https://github.com/agntcy/slim/pull/1190))
Version: slim-session-v0.1.5
Date: 2026-02-06
Status: Released
Breaking: Yes
Components: Core
Authors:
PRs:2dd4bfa
Docs
Release PR
release   ·   slim   ·   slim-mls-v0.1.8   ·   2026-02-06
slim-mls-v0.1.8
# Other
- updated the following local packages: agntcy-slim-datapath
Version: slim-mls-v0.1.8
Date: 2026-02-06
Status: Released
Breaking: Yes
Components: Core
Authors:
PRs:2dd4bfa
Docs
Release PR
release   ·   slim   ·   slim-tracing-v0.3.2   ·   2026-02-06
slim-tracing-v0.3.2
# Other
- updated the following local packages: agntcy-slim-config
Version: slim-tracing-v0.3.2
Date: 2026-02-06
Status: Released
Breaking: Yes
Components: Core
Authors:
PRs:2dd4bfa
Docs
Release PR
release   ·   oasf-sdk   ·   v1.0.0   ·   2026-02-05
v1.0.0
What's Changed
• feat: translator output with empty skills and domains by @akijakya in #125
• feat: OASF v1 proto support by @akijakya in #128
• feat: OASF 1.0.0 rc.1 support by @akijakya in #129
• release: v1.0.0-rc.1 by @akijakya in #130
• chore: update to OASF 1.0.0 from 1.0.0-rc.1 by @akijakya in #131
Full Changelog: https://github.com/agntcy/oasf-sdk/compare/v0.0.16...v1.0.0
Version: v1.0.0
Date: 2026-02-05
Status: Released
Breaking: Yes
Components: Core
Authors: @akijakya
PRs:39e3496
Compare: Previous version
Docs
Release PR
Compare
release   ·   oasf   ·   v1.0.0   ·   2026-02-05
v1.0.0
New Features
- **Evaluation module restoration.** Added back the evaluation module that was previously removed, with updated requirement levels and `at_least_one` constraints on relevant fields for improved flexibility. [(#388)](https://github.com/agntcy/oasf/pull/388) by @akijakya
- **Google Analytics support.** Added GA4 tracking support to the schema server and Helm chart, configurable via `GA_TRACKING_ID` environment variable for enhanced analytics capabilities. [(#380)](https://github.com/agntcy/oasf/pull/380) by @muscariello
- **Enhanced validator improvements.** Improved validator to prevent use of base classes (`base_skill`, `base_domain`, `base_module`) as actual skills/domains/modules, returning clear error messages with attribute paths. Also updated descriptions of base classes with warnings. [(#375)](https://github.com/agntcy/oasf/pull/375) by @akijakya
- **Duplicate detection in validator.** Added comprehensive duplicate checks to both API and JSON schema validators, detecting duplicate classes even when referenced by different identifiers (name vs. id), improving data quality validation. [(#376)](https://github.com/agntcy/oasf/pull/376) by @akijakya
- **Class translation support.** Added translation functionality for class id/name in the server API, enabling easier lookup and conversion between identifiers and names. [(#370)](https://github.com/agntcy/oasf/pull/370) by @akijakya
- **V1 protobuf objects.** Added v1 protobuf types for objects, providing improved versioning and structure for protobuf-based integrations. [(#368)](https://github.com/agntcy/oasf/pull/368) by @ramizpolic
- **MCP and A2A module enhancements.** Improved structured searchability and discovery capabilities for MCP module by moving essential metadata from generic annotations into schema-defined fields. Enhanced MCP module alignment with current MCP registry record schema. Simplified A2A module structure. [(#356)](https://github.com/agntcy/oasf/pull/356) and [(#387)](https://github.com/agntcy/oasf/pull/387) by @akijakya
- **Agent Spec deployment options.** Extended Agent Spec module to support deployment configuration, enabling developers to specify preferred agent communication protocols (e.g., A2A, Responses API) and required environment variables for agent instantiation and consumption. [(#355)](https://github.com/agntcy/oasf/pull/355) by @paul-cayet
- **Base class validation warnings.** Enhanced API validator to return warnings when base classes are detected as placeholders, helping developers identify when concrete classes should be used instead. [(#354)](https://github.com/agntcy/oasf/pull/354) by @akijakya
- **Unknown module warning removal.** Removed warning for unknown modules to reduce noise and improve user experience when working with custom or extended modules. [(#378)](https://github.com/agntcy/oasf/pull/378) by @akijakya
Changed
- **Language model module refactoring.** Merged `model` module class into its parent `language_model` to remove duplication and eliminate a parent class that shouldn't be used as an actual module. Also changed the order of `language_model` and `evaluation` modules to reflect historical creation order. [(#396)](https://github.com/agntcy/oasf/pull/396) by @akijakya
- **Terminology update.** Renamed "LLM" to "Language Model" throughout the schema to be more inclusive towards small language models and improve terminology consistency. [(#390)](https://github.com/agntcy/oasf/pull/390) by @akijakya
Fixed
- **Duplicate enum value prevention.** Fixed validator to prevent duplicate enum values in arrays, ensuring data integrity and preventing invalid configurations. [(#379)](https://github.com/agntcy/oasf/pull/379) by @akijakya
- **Array validation constraints.** Added `minItems` constraint to required arrays in JSON schema generator and fixed acceptance of empty arrays, ensuring proper validation of array fields. [(#372)](https://github.com/agntcy/oasf/pull/372) by @akijakya
- **Empty array validation.** Fixed validator to properly handle empty array validation, preventing incorrect acceptance of empty arrays where they should not be allowed. [(#371)](https://github.com/agntcy/oasf/pull/371) by @akijakya
- **Agent Spec URL fix.** Updated stale URL in agent spec module object to a reachable URL, ensuring proper functionality of the Agent Spec module. [(#362)](https://github.com/agntcy/oasf/pull/362) by @paul-cayet
- **CID type support.** Created new `cid_t` type so the `previous_record_cid` attribute gets generated and validated properly. Also added max length constraint to string attributes for improved validation. [(#353)](https://github.com/agntcy/oasf/pull/353) by @akijakya
- **CI buildx entitlements.** Fixed CI configuration to grant buildx filesystem entitlements, allowing writes to `/tmp/` directory for caching during CI runs. [(#358)](https://github.com/agntcy/oasf/pull/358) by @akijakya
Documentation
- **OASF record generation guide.** Added comprehensive section to README about OASF record generation using the Directory MCP server, helping developers understand how to create and work with OASF records. [(#359)](https://github.com/agntcy/oasf/pull/359) by @akijakya
Infrastructure
- **CodeQL and container security.** Added CodeQL workflow for SAST (Static Application Security Testing) and updated container security workflow to scan the specific OASF server image, improving security posture and vulnerability detection. [(#363)](https://github.com/agntcy/oasf/pull/363) by @muscariello
Full Changelog: [v0.8.0...v1.0.0](https://github.com/agntcy/oasf/compare/v0.8.0...v1.0.0)
Version: v1.0.0
Date: 2026-02-05
Status: Released
Breaking: Yes
Components: Core
Authors: @akijakya, @muscariello, @ramizpolic, @paul
PRs:0bf2931
Compare: Previous version
Docs
Release PR
Compare
release   ·   identity-service   ·   v0.0.69   ·   2026-01-30
v0.0.69
What's Changed
• fix: youtube csp headers by @rafaelsilva29 in #167•
Full Changelog: https://github.com/agntcy/identity-service/compare/v0.0.68...v0.0.69
Version: v0.0.69
Date: 2026-01-30
Status: Released
Breaking: Yes
Components: Core
Authors: @rafaelsilva29
PRs:aab5d5a
Compare: Previous version
Docs
Release PR
Compare
release   ·   identity-service   ·   v0.0.68   ·   2026-01-30
v0.0.68
What's Changed
• Pyra 595 support microsoft azure entra id idp by @copasseron in #155•
Full Changelog: https://github.com/agntcy/identity-service/compare/v0.0.67...v0.0.68
Version: v0.0.68
Date: 2026-01-30
Status: Released
Breaking: Yes
Components: Core
Authors: @copasseron
PRs:ebe9879
Compare: Previous version
Docs
Release PR
Compare
release   ·   identity-service   ·   v0.0.67   ·   2026-01-30
v0.0.67
What's Changed
• chore(deps): bump docker/metadata-action from 5.8.0 to 5.10.0 by @dependabot[bot] in #133•
• chore(deps): bump step-security/harden-runner from 2.13.2 to 2.13.3 by @dependabot[bot] in #139•
• chore(deps): bump docker/bake-action from 6.9.0 to 6.10.0 by @dependabot[bot] in #131•
• chore(deps): bump super-linter/super-linter from 8.2.1 to 8.3.0 by @dependabot[bot] in #132•
• Feat/add ping idp provider by @jadiaconu in #151•
• docs: added meeting notes for audit logging wg track by @alanisaac in #156•
• feat(issuer): used oidc.ParseCommonName() to parse common name by @mkedjour in #161•
• chore(deps): bump super-linter/super-linter from 8.3.0 to 8.3.2 by @dependabot[bot] in #160•
• chore(deps): bump webiny/action-conventional-commits from 1.3.0 to 1.3.1 by @dependabot[bot] in #159•
• chore(deps): bump docker/setup-buildx-action from 3.11.1 to 3.12.0 by @dependabot[bot] in #158•
• chore(deps): bump step-security/harden-runner from 2.13.3 to 2.14.1 by @dependabot[bot] in #157•
• fix: youtube link by @rafaelsilva29 in #163•
Full Changelog: https://github.com/agntcy/identity-service/compare/v0.0.66...v0.0.67
Version: v0.0.67
Date: 2026-01-30
Status: Released
Breaking: Yes
Components: Core
Authors: @dependabot, @jadiaconu, @alanisaac, @mkedjour, @rafaelsilva29
PRs:52fed83
Compare: Previous version
Docs
Release PR
Compare
release   ·   identity-service   ·   v0.0.66   ·   2026-01-30
v0.0.66
What's Changed
• Catch-up on documenting Nov meeting notes by @mksinghtx in #140•
• docs: Create 2025-11-24.md by @mayannuz in #142•
• docs: Create 2025-12-08.md by @mayannuz in #143•
• docs: Update 2025-11-24.md by @mayannuz in #144•
• Audit logs track meeting notes 2025-12-16 by @alanisaac in #145•
• feat: new dasboard page by @rafaelsilva29 in #141•
• Add cross-functional meeting notes from Brokered identity with DCR by @mksinghtx in #150•
• feat(spec): Add threat model for cross-domain agent authorization by @nikkal12 in #146•
• feat(spec): Expand security considerations for agent authorization by @nikkal12 in #147•
• feat(spec): Define delegation semantics for multi-agent workflows by @nikkal12 in #148•
• feat(spec): Specify Agent Authorization Verifiable Credential profile by @nikkal12 in #149•
• fix: Remove previous settings when non empty by @jadiaconu in #154•
New Contributors
• @mksinghtx made their first contribution in #140•
• @nikkal12 made their first contribution in #146•
Full Changelog: https://github.com/agntcy/identity-service/compare/v0.0.65...v0.0.66
Version: v0.0.66
Date: 2026-01-30
Status: Released
Breaking: Yes
Components: Core
Authors: @mksinghtx, @mayannuz, @alanisaac, @rafaelsilva29, @nikkal12, @jadiaconu
PRs:b5239f2
Compare: Previous version
Docs
Release PR
Compare
Page 1 of 3

Copyright © AGNTCY a Series of LF Projects, LLC

For web site terms of use, trademark policy and other project policies please see https://lfprojects.org.

Terms & ConditionsPrivacy Policy