datadog_backup 3.0.0.alpha.2 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/rspec_and_release.yml +0 -1
- data/CHANGELOG.md +19 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/datadog_backup/version.rb +1 -1
- data/release.config.js +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0eec1a1c9c37c415e69f59bccdc5fb28cfc2260b4cf40941c283a588c89727e8
|
4
|
+
data.tar.gz: 202db8cd658b13977d8c9e1dc3248e8bf33411aeeb4102e669f9a572c92dce39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48d83c230a6ee5a17957e5c5da124911529e28a230170c3556105639025497d79e8528555cbf8e37b00abc70256399addbaabc1d8101dd367574d248557826af
|
7
|
+
data.tar.gz: 9bcb707a074415be48f1f687f29e524ebcbfbbe60ca85dd7c56a95e3a6d0bcec7606da3504045b716b012c03c3c2a4a16d3808f1150e3e2dfd3a0101d29b7d41
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,22 @@
|
|
1
|
+
# [3.0.0](https://github.com/scribd/datadog_backup/compare/v2.0.2...v3.0.0) (2022-08-25)
|
2
|
+
|
3
|
+
|
4
|
+
* feat!: release 3.0 (#136) ([3d23b03](https://github.com/scribd/datadog_backup/commit/3d23b03668e888886f394de2fa4884aa1e3ca287)), closes [#136](https://github.com/scribd/datadog_backup/issues/136)
|
5
|
+
|
6
|
+
|
7
|
+
### BREAKING CHANGES
|
8
|
+
|
9
|
+
* DATADOG_API_KEY and DATADOG_APP_KEY are no longer the environment variables used to authenticate to Datadog. Instead, set the environment variables DD_API_KEY and DD_APP_KEY.
|
10
|
+
* ruby 2.6 is no longer supported. Please upgrade to ruby 2.7 or higher.
|
11
|
+
* The options `--ssh` and `--ssshh` are no longer supported. Instead, please use `--quiet` to supress logging. `--debug` remains supported.
|
12
|
+
* The environment variable `DATADOG_HOST` is no longer supported. Instead, please use `DD_SITE_URL`.
|
13
|
+
|
14
|
+
refactor: The legacy [dogapi-rb ](https://github.com/DataDog/dogapi-rb) gem is replaced with [faraday](https://lostisland.github.io/faraday/). The [official client library](https://github.com/DataDog/datadog-api-client-ruby) was considered, but was not adopted as I had a hard time grok-ing it.
|
15
|
+
|
16
|
+
* chore: permit logging from tests, but only error+
|
17
|
+
|
18
|
+
Co-authored-by: semantic-release-bot <semantic-release-bot@martynus.net>
|
19
|
+
|
1
20
|
# [3.0.0-alpha.2](https://github.com/scribd/datadog_backup/compare/v3.0.0-alpha.1...v3.0.0-alpha.2) (2022-08-25)
|
2
21
|
|
3
22
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -86,7 +86,7 @@ DD_API_KEY | The Application key for the Datadog account
|
|
86
86
|
|
87
87
|
### Usage in a Github repo
|
88
88
|
|
89
|
-
See [example/](https://github.com/scribd/datadog_backup/tree/
|
89
|
+
See [example/](https://github.com/scribd/datadog_backup/tree/main/example) for an example implementation as a repo that backs up your Datadog dashboards hourly.
|
90
90
|
|
91
91
|
# Development
|
92
92
|
|
data/release.config.js
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: datadog_backup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kamran Farhadi
|
@@ -257,9 +257,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
257
257
|
version: '2.7'
|
258
258
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
259
259
|
requirements:
|
260
|
-
- - "
|
260
|
+
- - ">="
|
261
261
|
- !ruby/object:Gem::Version
|
262
|
-
version:
|
262
|
+
version: '0'
|
263
263
|
requirements: []
|
264
264
|
rubygems_version: 3.1.6
|
265
265
|
signing_key:
|