-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
- Loading branch information
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
```release-note:feature | ||
ui: Display the Consul agent version in the nodes list, and allow filtering and sorting of nodes based on versions. | ||
``` | ||
ui: consul version is displayed in nodes list with filtering and sorting based on versions | ||
``` |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:improvement | ||
connect: update supported envoy versions to 1.23.12, 1.24.10, 1.25.9, 1.26.4 | ||
``` |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
```release-note:improvement | ||
checks: It is now possible to configure agent TCP checks to use TLS with | ||
optional server SNI and mutual authentication. To use TLS with a TCP check, the | ||
check must enable the `tcp_use_tls` boolean. By default the agent will use the | ||
TLS configuration in the `tls.default` stanza. | ||
``` |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
```release-note:improvement | ||
log: Currently consul logs files like this consul-{timestamp}.log. This change makes sure that there is always | ||
consul.log file with the latest logs in it. | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
```release-note:improvement | ||
Adds flag -append-filename (which works on values version, dc, node and status) to consul snapshot save command. | ||
Adding the flag -append-filename version,dc,node,status will add consul version, consul datacenter, node name and leader/follower | ||
(status) in the file name given in the snapshot save command before the file extension. | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:bug | ||
connect: Fix issue where Envoy endpoints would not populate correctly after a snapshot restore. | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:improvement | ||
api: Add support for listing ACL tokens by service name. | ||
``` |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
#!/usr/bin/env bash | ||
# Copyright (c) HashiCorp, Inc. | ||
# SPDX-License-Identifier: BUSL-1.1 | ||
# SPDX-License-Identifier: MPL-2.0 | ||
|
||
# | ||
# This script generates tag-sets that can be used as runs-on: values to select runners. | ||
|
||
set -euo pipefail | ||
|
||
case "$GITHUB_REPOSITORY" in | ||
*-enterprise) | ||
# shellcheck disable=SC2129 | ||
echo "compute-small=['self-hosted', 'linux', 'small']" >> "$GITHUB_OUTPUT" | ||
echo "compute-medium=['self-hosted', 'linux', 'medium']" >> "$GITHUB_OUTPUT" | ||
echo "compute-large=['self-hosted', 'linux', 'large']" >> "$GITHUB_OUTPUT" | ||
# m5d.8xlarge is equivalent to our xl custom runner in CE | ||
echo "compute-xl=['self-hosted', 'ondemand', 'linux', 'type=m5d.8xlarge']" >> "$GITHUB_OUTPUT" | ||
;; | ||
*) | ||
# shellcheck disable=SC2129 | ||
echo "compute-small=['custom-linux-s-consul-latest']" >> "$GITHUB_OUTPUT" | ||
echo "compute-medium=['custom-linux-m-consul-latest']" >> "$GITHUB_OUTPUT" | ||
echo "compute-large=['custom-linux-l-consul-latest']" >> "$GITHUB_OUTPUT" | ||
echo "compute-xl=['custom-linux-xl-consul-latest']" >> "$GITHUB_OUTPUT" | ||
;; | ||
*-enterprise) | ||
# shellcheck disable=SC2129 | ||
echo "compute-small=['self-hosted', 'linux', 'small']" >>"$GITHUB_OUTPUT" | ||
echo "compute-medium=['self-hosted', 'linux', 'medium']" >>"$GITHUB_OUTPUT" | ||
echo "compute-large=['self-hosted', 'linux', 'large']" >>"$GITHUB_OUTPUT" | ||
# m5d.8xlarge is equivalent to our xl custom runner in CE | ||
echo "compute-xl=['self-hosted', 'ondemand', 'linux', 'type=m6a.2xlarge']" >>"$GITHUB_OUTPUT" | ||
;; | ||
*) | ||
# shellcheck disable=SC2129 | ||
echo "compute-small=['custom-linux-s-consul-latest']" >>"$GITHUB_OUTPUT" | ||
echo "compute-medium=['custom-linux-m-consul-latest']" >>"$GITHUB_OUTPUT" | ||
echo "compute-large=['custom-linux-l-consul-latest']" >>"$GITHUB_OUTPUT" | ||
echo "compute-xl=['custom-linux-xl-consul-latest']" >>"$GITHUB_OUTPUT" | ||
;; | ||
esac |
This file was deleted.