Skip to content

Commit af5f240

Browse files
authored
Merge pull request #2108 from ripienaar/0_28_0
(misc) Prepare release 0.28.0
2 parents 6af7f21 + bf838b7 commit af5f240

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+100
-62
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
| Date | Issue | Description |
22
|------------|-------|--------------------------------------------------------------------------------------------------------------------|
3+
| 2024/02/03 | | Release 0.28.0 |
4+
| 2024/01/04 | 2104 | Allow clients to view the ACLs applied to their connections in various utilities |
5+
| 2024/12/19 | 2101 | Improve shutdown reliability by giving Stream brokers more shutdown grace |
6+
| 2023/12/18 | 2096 | Allow setting SRV domain using the `CHORIA_SRV_DOMAIN` environment variable > |
7+
| 2023/12/07 | 2094 | Adds additional utilities to maintain autonomous agent plugin manifests under `choria machine plugins` |
8+
| 2023/12/04 | | Upgrade to NATS Server 2.10.x and updates the embedded `nats` command line |
9+
| 2023/09/20 | 2077 | Various improvements to audit logging and expose its settings in `choria tool config` |
10+
| 2023/09/07 | 2077 | Allow audit log ownership to be set using `plugin.rpcaudit.logfile.group` and `plugin.rpcaudit.logfile.mode` |
11+
| 2023/08/25 | 2079 | Disable `appbuilder` on Windows |
12+
| 2024/05/04 | 2066 | Allow those who embed Choria Server to get notified when it's ready using `RegisterReadyCallback()` |
313
| 2023/04/24 | 2059 | Support verifying packed plugin specifications in `machine pugins` and `mms` |
414
| 2023/04/19 | 2055 | Retry calls to streams that can fail in early election setup |
515
| 2023/04/19 | 2052 | Ensure stream users can access KV and Object stores |

build/build.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017-2022, R.I. Pienaar and the Choria Project contributors
1+
// Copyright (c) 2017-2024, R.I. Pienaar and the Choria Project contributors
22
//
33
// SPDX-License-Identifier: Apache-2.0
44

@@ -9,7 +9,7 @@ import (
99
)
1010

1111
// Version the application version
12-
var Version = "0.27.0"
12+
var Version = "0.28.0"
1313

1414
// SHA is the git reference used to build this package
1515
var SHA = "unknown"

client/aaa_signerclient/action_sign.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'aaa_signer' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'aaa_signer' Version 0.28.0 generated using Choria version 0.28.0
44

55
package aaa_signerclient
66

client/aaa_signerclient/ddl.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"$schema":"https://choria.io/schemas/mcorpc/ddl/v1/agent.json","metadata":{"license":"Apache-2.0","author":"R.I.Pienaar \[email protected]\u003e","timeout":10,"name":"aaa_signer","version":"0.27.0","url":"https://github.com/choria-io/aaasvc","description":"Request Signer for Choria AAA Service","provider":"golang","service":true},"actions":[{"action":"sign","input":{"request":{"prompt":"RPC Request","description":"The request to sign","type":"string","optional":false,"validation":"shellsafe","maxlength":100240},"token":{"prompt":"JWT Token","description":"The JWT token authenticating the user","type":"string","optional":false,"validation":".","maxlength":10024},"signature":{"prompt":"Request Signature","description":"A signature produced using the ed25519 seed of the request, hex encoded","type":"string","optional":false,"validation":".","maxlength":1024}},"output":{"secure_request":{"description":"The signed Secure Request","display_as":"Secure Request","type":"string"}},"display":"always","description":"Signs a RPC Request on behalf of a user"}]}
1+
{"$schema":"https://choria.io/schemas/mcorpc/ddl/v1/agent.json","metadata":{"license":"Apache-2.0","author":"R.I.Pienaar \[email protected]\u003e","timeout":10,"name":"aaa_signer","version":"0.28.0","url":"https://github.com/choria-io/aaasvc","description":"Request Signer for Choria AAA Service","provider":"golang","service":true},"actions":[{"action":"sign","input":{"request":{"prompt":"RPC Request","description":"The request to sign","type":"string","optional":false,"validation":"shellsafe","maxlength":100240},"token":{"prompt":"JWT Token","description":"The JWT token authenticating the user","type":"string","optional":false,"validation":".","maxlength":10024},"signature":{"prompt":"Request Signature","description":"A signature produced using the ed25519 seed of the request, hex encoded","type":"string","optional":false,"validation":".","maxlength":1024}},"output":{"secure_request":{"description":"The signed Secure Request","display_as":"Secure Request","type":"string"}},"display":"always","description":"Signs a RPC Request on behalf of a user"}]}

client/aaa_signerclient/doc.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'aaa_signer' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'aaa_signer' Version 0.28.0 generated using Choria version 0.28.0
44

5-
// Package aaa_signerclient is an API client to the Choria Aaa_signer agent Version 0.27.0.
5+
// Package aaa_signerclient is an API client to the Choria Aaa_signer agent Version 0.28.0.
66
//
77
// Actions:
88
// - Sign - Signs a RPC Request on behalf of a user

client/choria_provisionclient/action_configure.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'choria_provision' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'choria_provision' Version 0.28.0 generated using Choria version 0.28.0
44

55
package choria_provisionclient
66

client/choria_provisionclient/action_gen25519.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'choria_provision' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'choria_provision' Version 0.28.0 generated using Choria version 0.28.0
44

55
package choria_provisionclient
66

client/choria_provisionclient/action_gencsr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'choria_provision' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'choria_provision' Version 0.28.0 generated using Choria version 0.28.0
44

55
package choria_provisionclient
66

client/choria_provisionclient/action_jwt.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'choria_provision' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'choria_provision' Version 0.28.0 generated using Choria version 0.28.0
44

55
package choria_provisionclient
66

client/choria_provisionclient/action_release_update.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'choria_provision' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'choria_provision' Version 0.28.0 generated using Choria version 0.28.0
44

55
package choria_provisionclient
66

client/choria_provisionclient/action_reprovision.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'choria_provision' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'choria_provision' Version 0.28.0 generated using Choria version 0.28.0
44

55
package choria_provisionclient
66

client/choria_provisionclient/action_restart.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'choria_provision' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'choria_provision' Version 0.28.0 generated using Choria version 0.28.0
44

55
package choria_provisionclient
66

client/choria_provisionclient/action_shutdown.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// generated code; DO NOT EDIT
22
//
3-
// Client for Choria RPC Agent 'choria_provision' Version 0.27.0 generated using Choria version 0.27.0
3+
// Client for Choria RPC Agent 'choria_provision' Version 0.28.0 generated using Choria version 0.28.0
44

55
package choria_provisionclient
66

0 commit comments

Comments
 (0)