forked from elastic/fleet-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change fleet-server to use changelog tool (elastic#2499)
* Change fleet-server to use changelog tool Create changelog fragments and log for 8.7.0 release and remove the old changelog. Use changelog tool for all new changes. * Apply suggestions from code review Co-authored-by: Kyle Pollich <[email protected]> --------- Co-authored-by: Kyle Pollich <[email protected]>
- Loading branch information
1 parent
94da0b0
commit 4667d85
Showing
14 changed files
with
418 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
version: 8.7.0 | ||
entries: | ||
- kind: feature | ||
summary: Accept raw errors as a fallback to detailed error type | ||
description: "" | ||
component: "" | ||
pr: | ||
- "2079" | ||
issue: | ||
- https://github.com/elastic/elastic-agent/issues/931 | ||
timestamp: 1668434027 | ||
file: | ||
name: 1668434027-Accept-raw-errors-as-a-fallback-to-detailed-error-type.yaml | ||
checksum: 9409686f6ea1d4edc1291531f9e4bfb8b7a0b554 | ||
- kind: bug-fix | ||
summary: filter out UPDATE_TAGS and FORCE_UNENROLL actions on agent checkin | ||
description: "" | ||
component: "" | ||
pr: | ||
- "2200" | ||
issue: | ||
- "2199" | ||
timestamp: 1671566400 | ||
file: | ||
name: 1671566400-filter-out-UPDATE_TAGS-and-FORCE_UNENROLL.yaml | ||
checksum: d1fb905d44cb56930188a7916cc463363cf1c644 | ||
- kind: breaking-change | ||
summary: Remove automatic agent unenrollment | ||
description: "" | ||
component: "" | ||
pr: | ||
- "2096" | ||
issue: | ||
- "2063" | ||
timestamp: 1672689600 | ||
file: | ||
name: 1672689600-remove-automatic-agent-unenrollment.yaml | ||
checksum: 39f5d89bc387cca29a2696b3369d7bda02591239 | ||
- kind: feature | ||
summary: Replaced upgrade expiration and minimum_execution_duration with rollout_duration_seconds | ||
description: "" | ||
component: "" | ||
pr: | ||
- "2243" | ||
issue: [] | ||
timestamp: 1673467200 | ||
file: | ||
name: 1673467200-replaced-upgrade-expiration-and-minimum_execution_time.yaml | ||
checksum: 115fcdac8c8c128bff36489c6e335e872461ad39 | ||
- kind: feature | ||
summary: Document how to run the fleet server locally. | ||
description: "" | ||
component: "" | ||
pr: | ||
- "2212" | ||
issue: | ||
- "1423" | ||
timestamp: 1673553600 | ||
file: | ||
name: 1673553600-document-how-to-run-fleet-server-locally.yaml | ||
checksum: f702299f22a08d353b2cce789012de5338dc983e | ||
- kind: feature | ||
summary: Fleet server now supports file uploads for a limited subset of integrations. | ||
description: "" | ||
component: "" | ||
pr: | ||
- "1902" | ||
issue: [] | ||
timestamp: 1674244800 | ||
file: | ||
name: 1674244800-fleet-server-file-upload.yaml | ||
checksum: e6c3fef52a872e46e8cb0e2a169928a23891f6cf | ||
- kind: bug-fix | ||
summary: Fix fleet-server discarding duplicate `server` keys input when creating config from policy. | ||
description: "" | ||
component: "" | ||
pr: | ||
- "2354" | ||
issue: | ||
- "2303" | ||
timestamp: 1677009600 | ||
file: | ||
name: 1677009600-fix-fleet-server-discard-keys.yaml | ||
checksum: 3a6f42e0edf9d9226c2971e6a087792d85f3e7c9 |
31 changes: 31 additions & 0 deletions
31
changelog/fragments/1671566400-filter-out-UPDATE_TAGS-and-FORCE_UNENROLL.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Kind can be one of: | ||
# - breaking-change: a change to previously-documented behavior | ||
# - deprecation: functionality that is being removed in a later release | ||
# - bug-fix: fixes a problem in a previous version | ||
# - enhancement: extends functionality but does not break or fix existing behavior | ||
# - feature: new functionality | ||
# - known-issue: problems that we are aware of in a given version | ||
# - security: impacts on the security of a product or a user’s deployment. | ||
# - upgrade: important information for someone upgrading from a prior version | ||
# - other: does not fit into any of the other categories | ||
kind: bug-fix | ||
|
||
# Change summary; a 80ish characters long description of the change. | ||
summary: filter out UPDATE_TAGS and FORCE_UNENROLL actions on agent checkin | ||
|
||
# Long description; in case the summary is not enough to describe the change | ||
# this field accommodate a description without length limits. | ||
#description: | ||
|
||
# Affected component; a word indicating the component this changeset affects. | ||
component: | ||
|
||
# PR number; optional; the PR number that added the changeset. | ||
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added. | ||
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number. | ||
# Please provide it if you are adding a fragment for a different PR. | ||
pr: 2200 | ||
|
||
# Issue number; optional; the GitHub issue related to this changeset (either closes or is part of). | ||
# If not present is automatically filled by the tooling with the issue linked to the PR number. | ||
issue: 2199 |
31 changes: 31 additions & 0 deletions
31
changelog/fragments/1672689600-remove-automatic-agent-unenrollment.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Kind can be one of: | ||
# - breaking-change: a change to previously-documented behavior | ||
# - deprecation: functionality that is being removed in a later release | ||
# - bug-fix: fixes a problem in a previous version | ||
# - enhancement: extends functionality but does not break or fix existing behavior | ||
# - feature: new functionality | ||
# - known-issue: problems that we are aware of in a given version | ||
# - security: impacts on the security of a product or a user’s deployment. | ||
# - upgrade: important information for someone upgrading from a prior version | ||
# - other: does not fit into any of the other categories | ||
kind: breaking-change | ||
|
||
# Change summary; a 80ish characters long description of the change. | ||
summary: Remove automatic agent unenrollment | ||
|
||
# Long description; in case the summary is not enough to describe the change | ||
# this field accommodate a description without length limits. | ||
#description: | ||
|
||
# Affected component; a word indicating the component this changeset affects. | ||
component: | ||
|
||
# PR number; optional; the PR number that added the changeset. | ||
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added. | ||
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number. | ||
# Please provide it if you are adding a fragment for a different PR. | ||
pr: 2096 | ||
|
||
# Issue number; optional; the GitHub issue related to this changeset (either closes or is part of). | ||
# If not present is automatically filled by the tooling with the issue linked to the PR number. | ||
issue: 2063 |
31 changes: 31 additions & 0 deletions
31
changelog/fragments/1673467200-replaced-upgrade-expiration-and-minimum_execution_time.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Kind can be one of: | ||
# - breaking-change: a change to previously-documented behavior | ||
# - deprecation: functionality that is being removed in a later release | ||
# - bug-fix: fixes a problem in a previous version | ||
# - enhancement: extends functionality but does not break or fix existing behavior | ||
# - feature: new functionality | ||
# - known-issue: problems that we are aware of in a given version | ||
# - security: impacts on the security of a product or a user’s deployment. | ||
# - upgrade: important information for someone upgrading from a prior version | ||
# - other: does not fit into any of the other categories | ||
kind: feature | ||
|
||
# Change summary; a 80ish characters long description of the change. | ||
summary: Replaced upgrade expiration and minimum_execution_duration with rollout_duration_seconds | ||
|
||
# Long description; in case the summary is not enough to describe the change | ||
# this field accommodate a description without length limits. | ||
#description: | ||
|
||
# Affected component; a word indicating the component this changeset affects. | ||
component: | ||
|
||
# PR number; optional; the PR number that added the changeset. | ||
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added. | ||
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number. | ||
# Please provide it if you are adding a fragment for a different PR. | ||
pr: 2243 | ||
|
||
# Issue number; optional; the GitHub issue related to this changeset (either closes or is part of). | ||
# If not present is automatically filled by the tooling with the issue linked to the PR number. | ||
#issue: |
31 changes: 31 additions & 0 deletions
31
changelog/fragments/1673553600-document-how-to-run-fleet-server-locally.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Kind can be one of: | ||
# - breaking-change: a change to previously-documented behavior | ||
# - deprecation: functionality that is being removed in a later release | ||
# - bug-fix: fixes a problem in a previous version | ||
# - enhancement: extends functionality but does not break or fix existing behavior | ||
# - feature: new functionality | ||
# - known-issue: problems that we are aware of in a given version | ||
# - security: impacts on the security of a product or a user’s deployment. | ||
# - upgrade: important information for someone upgrading from a prior version | ||
# - other: does not fit into any of the other categories | ||
kind: feature | ||
|
||
# Change summary; a 80ish characters long description of the change. | ||
summary: Document how to run the fleet server locally. | ||
|
||
# Long description; in case the summary is not enough to describe the change | ||
# this field accommodate a description without length limits. | ||
#description: | ||
|
||
# Affected component; a word indicating the component this changeset affects. | ||
component: | ||
|
||
# PR number; optional; the PR number that added the changeset. | ||
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added. | ||
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number. | ||
# Please provide it if you are adding a fragment for a different PR. | ||
pr: 2212 | ||
|
||
# Issue number; optional; the GitHub issue related to this changeset (either closes or is part of). | ||
# If not present is automatically filled by the tooling with the issue linked to the PR number. | ||
issue: 1423 |
31 changes: 31 additions & 0 deletions
31
changelog/fragments/1674244800-fleet-server-file-upload.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Kind can be one of: | ||
# - breaking-change: a change to previously-documented behavior | ||
# - deprecation: functionality that is being removed in a later release | ||
# - bug-fix: fixes a problem in a previous version | ||
# - enhancement: extends functionality but does not break or fix existing behavior | ||
# - feature: new functionality | ||
# - known-issue: problems that we are aware of in a given version | ||
# - security: impacts on the security of a product or a user’s deployment. | ||
# - upgrade: important information for someone upgrading from a prior version | ||
# - other: does not fit into any of the other categories | ||
kind: feature | ||
|
||
# Change summary; a 80ish characters long description of the change. | ||
summary: Fleet server now supports file uploads for a limited subset of integrations. | ||
|
||
# Long description; in case the summary is not enough to describe the change | ||
# this field accommodate a description without length limits. | ||
#description: | ||
|
||
# Affected component; a word indicating the component this changeset affects. | ||
component: | ||
|
||
# PR number; optional; the PR number that added the changeset. | ||
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added. | ||
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number. | ||
# Please provide it if you are adding a fragment for a different PR. | ||
pr: 1902 | ||
|
||
# Issue number; optional; the GitHub issue related to this changeset (either closes or is part of). | ||
# If not present is automatically filled by the tooling with the issue linked to the PR number. | ||
#issue: |
Oops, something went wrong.