mirror of https://github.com/spiffe/spire.git
Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
f99ecac9d6 | |
|
eaa04d51a1 |
|
@ -3,7 +3,7 @@ on:
|
|||
pull_request: {}
|
||||
workflow_dispatch: {}
|
||||
env:
|
||||
GO_VERSION: 1.21.3
|
||||
GO_VERSION: 1.21.4
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ on:
|
|||
tags:
|
||||
- 'v[0-9].[0-9]+.[0-9]+'
|
||||
env:
|
||||
GO_VERSION: 1.21.3
|
||||
GO_VERSION: 1.21.4
|
||||
jobs:
|
||||
cache-deps:
|
||||
name: cache-deps (linux)
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.21.3
|
||||
1.21.4
|
||||
|
|
24
CHANGELOG.md
24
CHANGELOG.md
|
@ -1,5 +1,29 @@
|
|||
# Changelog
|
||||
|
||||
## [1.8.4] - 2023-11-07
|
||||
|
||||
### Security
|
||||
|
||||
- Updated to Go 1.21.4 to address CVE-2023-45283, CVE-2023-45284
|
||||
|
||||
## [1.8.3] - 2023-10-25
|
||||
|
||||
### Added
|
||||
|
||||
- SPIRE Agent distributes sync requests to the SPIRE server to mitigate thundering herd situations (#4534)
|
||||
- Allow configuring prefixes for all metrics (#4535)
|
||||
- Documentation improvements (#4579, #4569)
|
||||
|
||||
### Changed
|
||||
|
||||
- SPIRE Agent performs the initial sync more aggressively when tuned with a longer sync interval (#4479)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Release artifacts have the correct version information (#4564)
|
||||
- The SPIRE Agent `insecureBootstrap` and `trustBundleUrl` configurables are now mutually exclusive (#4532)
|
||||
- Bug preventing JWT-SVIDs from being minted when a Credential Composer plugin is configured (#4489)
|
||||
|
||||
## [1.8.2] - 2023-10-12
|
||||
|
||||
### 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.3"
|
||||
Base = "1.8.4"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -194,12 +194,18 @@ import (
|
|||
// | v1.7.3 | | |
|
||||
// |---------| | |
|
||||
// | v1.7.4 | | |
|
||||
// |---------| | |
|
||||
// | v1.7.5 | | |
|
||||
// |*********|********|***************************************************************************|
|
||||
// | v1.8.0 | 23 | Added ca_journals table |
|
||||
// |---------| | |
|
||||
// | v1.8.1 | | |
|
||||
// |---------| | |
|
||||
// | v1.8.2 | | |
|
||||
// |---------| | |
|
||||
// | v1.8.3 | | |
|
||||
// |---------| | |
|
||||
// | v1.8.4 | | |
|
||||
// ================================================================================================
|
||||
|
||||
const (
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
1.7.2
|
||||
1.7.3
|
||||
1.7.4
|
||||
1.7.5
|
||||
1.8.0
|
||||
1.8.1
|
||||
1.8.2
|
||||
1.8.3
|
||||
|
|
Loading…
Reference in New Issue