Skip to content

Commit

Permalink
docs: Release Monaco 1.8.4
Browse files Browse the repository at this point in the history
Bug fixes:
* 9ef99e8 fix: Include already read response body in optional response log (#744)
* 5cf194c fix: Include last API error when failing retries (#744)
* f8d307c fix: Escape all characters for JSON templating (#741)
* ec92caa fix: More leniently handle Dynatrace errors that are ususally caused by newly created applications not being found yet
* e11c45b fix(deploy): URL Path escape identifiers when reading Dynatrace entities by ID

Documentation:
* dc9818d docs: Fix MAC installation links
* d1b66ba fix(docs): Configure all links as relative or absolute from content root (#738)
* 4b1c504 docs: Better describe special types of configuration (#718)
* 647bb7e fix(docs): Fix link to config types in add-new-api guide (#736)

Misc changes:
* 084ad54 refactor: Replace deprecated ioutil.ReadAll
* 2946ec1 test: Extend special character config E2E test (#121, #741)
* 083c46a fix(test): Add missing build tag on logging_test
* bump github.com/urfave/cli/v2 dependency from 2.11.2 to 2.16.3
  * cdf298c chore(deps): bump github.com/urfave/cli/v2 from 2.16.2 to 2.16.3
  * 4ed67ac chore(deps): bump github.com/urfave/cli/v2 from 2.14.1 to 2.16.2
  * 22da053 chore(deps): bump github.com/urfave/cli/v2 from 2.11.2 to 2.14.1
* 7a3a6e8 chore(deps): bump github.com/google/go-cmp from 0.5.8 to 0.5.9
  • Loading branch information
UnseenWizzard committed Sep 22, 2022
1 parent 3dc034b commit 79de369
Show file tree
Hide file tree
Showing 31 changed files with 43 additions and 14 deletions.
26 changes: 26 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Monitoring as Code Tool - Release Notes

- Versions:
- [1.8.4](#184)
- [1.8.3](#183)
- [1.8.2](#182)
- [1.8.1](#181)
Expand All @@ -19,6 +20,31 @@
- [1.0.1](#101)
- [1.0.0](#100)

## 1.8.4
### List of changes
#### Bug fixes
* 9ef99e8b fix: Include already read response body in optional response log (#744)
* 5cf194cf fix: Include last API error when failing retries (#744)
* f8d307ce fix: Escape all characters for JSON templating (#741)
* ec92caa5 fix: More leniently handle Dynatrace errors that are ususally caused by newly created applications not being found yet
* e11c45bd fix(deploy): URL Path escape identifiers when reading Dynatrace entities by ID

#### Documentation
* dc9818d7 docs: Fix MAC installation links
* d1b66ba7 fix(docs): Configure all links as relative or absolute from content root (#738)
* 4b1c5049 docs: Better describe special types of configuration (#718)
* 647bb7ee fix(docs): Fix link to config types in add-new-api guide (#736)

#### Misc changes
* 084ad54e refactor: Replace deprecated ioutil.ReadAll
* 2946ec1a test: Extend special character config E2E test (#121, #741)
* 083c46ac fix(test): Add missing build tag on logging_test
* bump github.com/urfave/cli/v2 dependency from 2.11.2 to 2.16.3
* cdf298c0 chore(deps): bump github.com/urfave/cli/v2 from 2.16.2 to 2.16.3
* 4ed67ac3 chore(deps): bump github.com/urfave/cli/v2 from 2.14.1 to 2.16.2
* 22da0533 chore(deps): bump github.com/urfave/cli/v2 from 2.11.2 to 2.14.1
* 7a3a6e8e chore(deps): bump github.com/google/go-cmp from 0.5.8 to 0.5.9

## 1.8.3
### List of changes
#### Bug fixes
Expand Down
12 changes: 6 additions & 6 deletions documentation/docs/Get-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ For Linux/macOS, we recommend using `curl`. You can download it from [here](http
```shell
# Linux
# x64
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.3/monaco-linux-amd64 -o monaco
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.4/monaco-linux-amd64 -o monaco

# x86
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.3/monaco-linux-386 -o monaco
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.4/monaco-linux-386 -o monaco

# macOS
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.3/monaco-darwin-amd64 -o monaco
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.4/monaco-darwin-amd64 -o monaco

# macOS - Apple Silicon (M1/M2)
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.3/monaco-darwin-arm64 -o monaco
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.4/monaco-darwin-arm64 -o monaco
```

Make the binary executable:
Expand Down Expand Up @@ -74,7 +74,7 @@ NAME:
USAGE:
monaco-linux-amd64 [global options] command [command options] [working directory]
VERSION:
1.8.3
1.8.4
DESCRIPTION:
Tool used to deploy dynatrace configurations via the cli
Examples:
Expand Down Expand Up @@ -125,7 +125,7 @@ USAGE:
monaco.exe [global options] command [command options] [working directory]

VERSION:
1.8.3
1.8.4

DESCRIPTION:
Tool used to deploy dynatrace configurations via the cli
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,16 @@ For Linux/macOS, we recommend using `curl`. You can download it from [here](http
```shell
# Linux
# x64
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.3/monaco-linux-amd64 -o monaco
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.4/monaco-linux-amd64 -o monaco

# x86
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.3/monaco-linux-386 -o monaco
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.4/monaco-linux-386 -o monaco

# macOS
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.3/monaco-darwin-10.16-amd64 -o monaco
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.4/monaco-darwin-amd64 -o monaco

# macOS - Apple Silicon (M1/M2)
curl -L https://github.com/dynatrace-oss/dynatrace-monitoring-as-code/releases/download/v1.8.4/monaco-darwin-arm64 -o monaco
```

Make the binary executable:
Expand Down Expand Up @@ -71,7 +74,7 @@ NAME:
USAGE:
monaco-linux-amd64 [global options] command [command options] [working directory]
VERSION:
1.8.3
1.8.4
DESCRIPTION:
Tool used to deploy dynatrace configurations via the cli
Examples:
Expand Down Expand Up @@ -122,7 +125,7 @@ USAGE:
monaco.exe [global options] command [command options] [working directory]

VERSION:
1.8.3
1.8.4

DESCRIPTION:
Tool used to deploy dynatrace configurations via the cli
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version-1.8.2/tutorialSidebar": [
"version-1.8.4/tutorialSidebar": [
{
"type": "autogenerated",
"dirName": "."
Expand Down
2 changes: 1 addition & 1 deletion documentation/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[
"1.8.3",
"1.8.4",
"1.7.0",
"1.6.0",
"1.5.3"
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

package version

const MonitoringAsCode = "1.8.3"
const MonitoringAsCode = "1.8.4"

0 comments on commit 79de369

Please sign in to comment.