mirror of https://github.com/spiffe/spire.git
Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
f847aab63b | |
|
2df9e4077b | |
|
50dd676f42 |
|
@ -3,7 +3,7 @@ on:
|
|||
pull_request: {}
|
||||
workflow_dispatch: {}
|
||||
env:
|
||||
GO_VERSION: 1.21.5
|
||||
GO_VERSION: 1.21.8
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ on:
|
|||
tags:
|
||||
- 'v[0-9].[0-9]+.[0-9]+'
|
||||
env:
|
||||
GO_VERSION: 1.21.5
|
||||
GO_VERSION: 1.21.8
|
||||
jobs:
|
||||
cache-deps:
|
||||
name: cache-deps (linux)
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.21.5
|
||||
1.21.8
|
||||
|
|
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -1,5 +1,28 @@
|
|||
# Changelog
|
||||
|
||||
## [1.8.8] - 2024-03-05
|
||||
|
||||
### Security
|
||||
|
||||
- Update Go to v1.21.8 to patch CVE-2024-24783.
|
||||
|
||||
## [1.8.7] - 2023-12-21
|
||||
|
||||
### Added
|
||||
|
||||
- Agents can now be configured with an availability target, which establishes the minimum amount of time desired to gracefully handle server or agent downtime, influencing how aggressively X509-SVIDs should be rotated (#4599)
|
||||
- SyncAuthorizedEntries RPC, which allows agents to only sync down changes instead of the entire set of entries. Agents can be configured to use this new RPC through the `use_sync_authorized_entries` experimental setting (#4648)
|
||||
- Experimental support for an events based entry cache which reduces overhead on the database (#4379, #4411, #4527, #4451, #4562, #4723, #4731)
|
||||
|
||||
### Changed
|
||||
|
||||
- The maximum number of open database connections in the datastore now defaults to 100 instead of unlimited (#4656)
|
||||
- Agents now shut down when they can't synchronize entries with the server due to an unknown authority error (#4617)
|
||||
|
||||
### Removed
|
||||
|
||||
- Agents no longer maintains agent SVID and bundle information in the legacy paths in the data directory (#4717)
|
||||
|
||||
## [1.8.6] - 2023-12-07
|
||||
|
||||
### Security
|
||||
|
|
|
@ -8,7 +8,7 @@ const (
|
|||
// IMPORTANT: When updating, make sure to reconcile the versions list that
|
||||
// is part of the upgrade integration test. See
|
||||
// test/integration/suites/upgrade/README.md for details.
|
||||
Base = "1.8.7"
|
||||
Base = "1.8.8"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -212,6 +212,10 @@ import (
|
|||
// | v1.8.5 | | |
|
||||
// |---------| | |
|
||||
// | v1.8.6 | | |
|
||||
// |---------| | |
|
||||
// | v1.8.7 | | |
|
||||
// |---------| | |
|
||||
// | v1.8.8 | | |
|
||||
// ================================================================================================
|
||||
|
||||
const (
|
||||
|
|
|
@ -12,3 +12,4 @@
|
|||
1.8.4
|
||||
1.8.5
|
||||
1.8.6
|
||||
1.8.7
|
||||
|
|
Loading…
Reference in New Issue