Skip to content

Commit

Permalink
Bump SPIRE to v1.9.0 and update Changelog (#4756)
Browse files Browse the repository at this point in the history
Signed-off-by: Agustín Martínez Fayó <amartinezfayo@gmail.com>
  • Loading branch information
amartinezfayo authored Dec 26, 2023
1 parent 9f8cdb7 commit 01e3a4b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [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
Expand Down
2 changes: 1 addition & 1 deletion pkg/common/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0"
)

var (
Expand Down
2 changes: 2 additions & 0 deletions pkg/server/datastore/sqlstore/migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ import (
// | v1.8.5 | | |
// |---------| | |
// | v1.8.6 | | |
// |---------| | |
// | v1.8.7 | | |
// ================================================================================================

const (
Expand Down
8 changes: 1 addition & 7 deletions test/integration/suites/upgrade/versions.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
1.7.0
1.7.1
1.7.2
1.7.3
1.7.4
1.7.5
1.7.6
1.8.0
1.8.1
1.8.2
1.8.3
1.8.4
1.8.5
1.8.6
1.8.7

0 comments on commit 01e3a4b

Please sign in to comment.