Skip to content

Commit 0142a54

Browse files
committed
docs: Release 1.8.7
Update documentation and release monaco 1.8.7. Release 1.8.7 fixes three issues in monaco: * Download APIs where the id contains characters that need escaping no longer error * Predefined anomaly-detection-metrics are now ignored during download * HTTP errors and responses are logged when retrying Additionally, the documentation has been updated to include 1) what and why configs are skipped during download, and 2) how to migrate app-detection-rules. ### List of changes #### Bug fixes * 2c6b39c fix(download): Don't double-escape ids * a4f51f6 fix(download): Skip plugin-definitions of ad-metrics * 8437d71 fix(rest): Log http error and response in case of retry failures #### Documentation * b4d55cc docs(download): Add documentation of the configurations skipped during download * dd15f33 docs: Document App Detection Rule ordering workaround * 865f423 docs: Add migration guide for app-detection-rules renamed by settings migration #### Misc changes * e6f9c5b chore(deps): bump golangci/golangci-lint-action from 3.3.0 to 3.3.1 * ee85da7 chore(deps): bump loader-utils from 2.0.2 to 2.0.3 in /documentation * cf45d54 chore(deps): bump github.com/urfave/cli/v2 from 2.23.4 to 2.23.5 * 31eaf01 chore(deps): bump github.com/urfave/cli/v2 from 2.23.0 to 2.23.4 Signed-off-by: David Laubreiter <3740651+Laubi@users.noreply.github.com>
1 parent 92d4de1 commit 0142a54

34 files changed

+59
-15
lines changed

RELEASE_NOTES.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Monitoring as Code Tool - Release Notes
22

33
- Versions:
4+
- [1.8.7](#187)
45
- [1.8.6](#186)
56
- [1.8.5](#185)
67
- [1.8.4](#184)
@@ -22,6 +23,36 @@
2223
- [1.0.1](#101)
2324
- [1.0.0](#100)
2425

26+
27+
## 1.8.7
28+
29+
Release 1.8.7 fixes three issues in monaco:
30+
* Download APIs where the id contains characters that need escaping no longer error
31+
* Predefined anomaly-detection-metrics are now ignored during download
32+
* HTTP errors and responses are logged when retrying
33+
34+
Additionally, the documentation has been updated to include
35+
1) what and why configs are skipped during download, and
36+
2) how to migrate app-detection-rules.
37+
38+
### List of changes
39+
#### Bug fixes
40+
* 2c6b39cb fix(download): Don't double-escape ids
41+
* a4f51f6d fix(download): Skip plugin-definitions of ad-metrics
42+
* 8437d714 fix(rest): Log http error and response in case of retry failures
43+
44+
#### Documentation
45+
* b4d55cc6 docs(download): Add documentation of the configurations skipped during download
46+
* dd15f330 docs: Document App Detection Rule ordering workaround
47+
* 865f4232 docs: Add migration guide for app-detection-rules renamed by settings migration
48+
49+
#### Misc changes
50+
* e6f9c5b9 chore(deps): bump golangci/golangci-lint-action from 3.3.0 to 3.3.1
51+
* ee85da7c chore(deps): bump loader-utils from 2.0.2 to 2.0.3 in /documentation
52+
* cf45d54f chore(deps): bump github.com/urfave/cli/v2 from 2.23.4 to 2.23.5
53+
* 31eaf019 chore(deps): bump github.com/urfave/cli/v2 from 2.23.0 to 2.23.4
54+
55+
2556
## 1.8.6
2657

2758
Release 1.8.6 fixes an issue of monaco not ignoring hidden sub-folders - like it's own .logs/ - in some cases.

documentation/docs/Get-started/installation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ For Linux/macOS, we recommend using `curl`. You can download it from [here](http
3434
```shell
3535
# Linux
3636
# x64
37-
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.6/monaco-linux-amd64 -o monaco
37+
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.7/monaco-linux-amd64 -o monaco
3838

3939
# x86
40-
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.6/monaco-linux-386 -o monaco
40+
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.7/monaco-linux-386 -o monaco
4141

4242
# macOS
43-
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.6/monaco-darwin-amd64 -o monaco
43+
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.7/monaco-darwin-amd64 -o monaco
4444

4545
# macOS - Apple Silicon (M1/M2)
46-
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.6/monaco-darwin-arm64 -o monaco
46+
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.7/monaco-darwin-arm64 -o monaco
4747
```
4848

4949
Make the binary executable:
@@ -74,7 +74,7 @@ NAME:
7474
USAGE:
7575
monaco-linux-amd64 [global options] command [command options] [working directory]
7676
VERSION:
77-
1.8.6
77+
1.8.7
7878
DESCRIPTION:
7979
Tool used to deploy dynatrace configurations via the cli
8080
Examples:
@@ -125,7 +125,7 @@ USAGE:
125125
monaco.exe [global options] command [command options] [working directory]
126126

127127
VERSION:
128-
1.8.6
128+
1.8.7
129129

130130
DESCRIPTION:
131131
Tool used to deploy dynatrace configurations via the cli

documentation/versioned_docs/version-1.8.6/Get-started/installation.md renamed to documentation/versioned_docs/version-1.8.x/Get-started/installation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ For Linux/macOS, we recommend using `curl`. You can download it from [here](http
3434
```shell
3535
# Linux
3636
# x64
37-
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.6/monaco-linux-amd64 -o monaco
37+
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.7/monaco-linux-amd64 -o monaco
3838

3939
# x86
40-
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.6/monaco-linux-386 -o monaco
40+
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.7/monaco-linux-386 -o monaco
4141

4242
# macOS
43-
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.6/monaco-darwin-amd64 -o monaco
43+
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.7/monaco-darwin-amd64 -o monaco
4444

4545
# macOS - Apple Silicon (M1/M2)
46-
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.6/monaco-darwin-arm64 -o monaco
46+
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.7/monaco-darwin-arm64 -o monaco
4747
```
4848

4949
Make the binary executable:
@@ -74,7 +74,7 @@ NAME:
7474
USAGE:
7575
monaco-linux-amd64 [global options] command [command options] [working directory]
7676
VERSION:
77-
1.8.6
77+
1.8.7
7878
DESCRIPTION:
7979
Tool used to deploy dynatrace configurations via the cli
8080
Examples:
@@ -125,7 +125,7 @@ USAGE:
125125
monaco.exe [global options] command [command options] [working directory]
126126

127127
VERSION:
128-
1.8.6
128+
1.8.7
129129

130130
DESCRIPTION:
131131
Tool used to deploy dynatrace configurations via the cli
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)