File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ All notable changes to this project will be documented in this file.
4+
5+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7+
8+ ## [ 0.1.0] - 2026-02-19
9+
10+ ### Added
11+ - ** Nexus Broker** : Core service for managing OAuth 2.0 and OIDC connections.
12+ - ** Nexus Gateway** : Public-facing API gateway for agents.
13+ - ** Nexus Bridge** : Go library for integrating agents with the Nexus framework.
14+ - ** Documentation** : Comprehensive guides for architecture, deployment, and integration.
15+ - ** Versioning** : Centralized version management via ` VERSION ` file.
16+
17+ ### Changed
18+ - Initial project release.
Original file line number Diff line number Diff line change 1- v1.0 .0
1+ v0.1 .0
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ func TestNewMetrics_WithLabels(t *testing.T) {
1010 registry := prometheus .NewRegistry ()
1111 agentLabels := map [string ]string {
1212 "agent_id" : "test-agent" ,
13- "version" : "1.0 .0" ,
13+ "version" : "0.1 .0" ,
1414 }
1515
1616 m := NewMetrics (registry , agentLabels )
@@ -42,8 +42,8 @@ func TestNewMetrics_WithLabels(t *testing.T) {
4242 if labelMap ["agent_id" ] != "test-agent" {
4343 t .Errorf ("expected agent_id=test-agent, got %s" , labelMap ["agent_id" ])
4444 }
45- if labelMap ["version" ] != "1.0 .0" {
46- t .Errorf ("expected version=1.0 .0, got %s" , labelMap ["version" ])
45+ if labelMap ["version" ] != "0.1 .0" {
46+ t .Errorf ("expected version=0.1 .0, got %s" , labelMap ["version" ])
4747 }
4848
4949 if m .GetCounter ().GetValue () != 1 {
Original file line number Diff line number Diff line change 11openapi : 3.0.3
22info :
33 title : Nexus Broker API
4- version : 1.0 .0
4+ version : 0.1 .0
55 description : |
66 Internal API for the Nexus Broker service.
77 This service handles OAuth 2.0 and OIDC flows, encrypts tokens, and manages provider configurations.
Original file line number Diff line number Diff line change 11openapi : 3.0.3
22info :
33 title : Nexus Gateway API
4- version : 1.0 .0
4+ version : 0.1 .0
55 description : |
66 Stable v1 contract for the Nexus Gateway. This spec freezes the agent-facing endpoints.
77 Breaking changes require a new major version (e.g., /v2). Additive changes only in v1.
You can’t perform that action at this time.
0 commit comments