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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ada6cc077ab1a7145bdbee5db768e9544a50a20f427c49bf86aabfe63ab2b74
4
- data.tar.gz: 0e40617381ac33d1b4094cd277303dca2d0ece0372f7f13a3b4161eac304f34c
3
+ metadata.gz: 0eec1a1c9c37c415e69f59bccdc5fb28cfc2260b4cf40941c283a588c89727e8
4
+ data.tar.gz: 202db8cd658b13977d8c9e1dc3248e8bf33411aeeb4102e669f9a572c92dce39
5
5
  SHA512:
6
- metadata.gz: 437faae8390ce834b7a20bfcf6f2097f94a8ab93a808aa0c5594e1972e0e8b9497e16838dda7b02f89349b8a41c721e4577ea552cf1b267ea923b016d00f77dc
7
- data.tar.gz: 9a96702e3928e1768adc888dc206cdf13e4a7a3adb9b99a385dd487338b52ff62028de96e87220eb487b9959d73e58a1a02d12f125c906b8e62209ad6e65d94d
6
+ metadata.gz: 48d83c230a6ee5a17957e5c5da124911529e28a230170c3556105639025497d79e8528555cbf8e37b00abc70256399addbaabc1d8101dd367574d248557826af
7
+ data.tar.gz: 9bcb707a074415be48f1f687f29e524ebcbfbbe60ca85dd7c56a95e3a6d0bcec7606da3504045b716b012c03c3c2a4a16d3808f1150e3e2dfd3a0101d29b7d41
@@ -25,7 +25,6 @@ jobs:
25
25
  run: |
26
26
  bundle exec rspec --format documentation --require spec_helper
27
27
  release:
28
- if: github.event_name == 'push'
29
28
  needs: rspec
30
29
  runs-on: ubuntu-latest
31
30
  env:
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- datadog_backup (3.0.0.alpha.1)
4
+ datadog_backup (3.0.0.alpha.2)
5
5
  amazing_print
6
6
  concurrent-ruby
7
7
  deepsort
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/master/example) for an example implementation as a repo that backs up your Datadog dashboards hourly.
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DatadogBackup
4
- VERSION = '3.0.0.alpha.2'
4
+ VERSION = '3.0.0'
5
5
  end
data/release.config.js CHANGED
@@ -1,4 +1,9 @@
1
1
  module.exports = {
2
+ "branches": [
3
+ '+([0-9])?(.{+([0-9]),x}).x',
4
+ 'main',
5
+ {name: 'alpha', prerelease: true}
6
+ ],
2
7
  "plugins": [
3
8
  "@semantic-release/commit-analyzer",
4
9
  "@semantic-release/release-notes-generator",
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.alpha.2
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: 1.3.1
262
+ version: '0'
263
263
  requirements: []
264
264
  rubygems_version: 3.1.6
265
265
  signing_key: