Compare commits

...

2 Commits
main ... v1.8.4

Author SHA1 Message Date
Agustín Martínez Fayó f99ecac9d6 - Update to go 1.21.4
- Bump version to 1.8.4
- Update the CHANGELOG with 1.8.4 release

Signed-off-by: Agustín Martínez Fayó <amartinezfayo@gmail.com>
2023-11-07 22:01:13 -03:00
Marcos Yacob eaa04d51a1
Add changelog for v1.8.3 (#4605)
* Add changelog for v1.8.3

Signed-off-by: Marcos Yacob <marcos.yacob@hpe.com>
2023-10-25 17:25:56 -03:00
7 changed files with 36 additions and 4 deletions

View File

@ -3,7 +3,7 @@ on:
pull_request: {}
workflow_dispatch: {}
env:
GO_VERSION: 1.21.3
GO_VERSION: 1.21.4
permissions:
contents: read

View File

@ -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)

View File

@ -1 +1 @@
1.21.3
1.21.4

View File

@ -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

View File

@ -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 (

View File

@ -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 (

View File

@ -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