datadog_backup 1.1.0 → 1.1.3

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: 8ca039ced5dce0c26aa2dd6533d4a33d1e3b9819d2f086c656cdfa29b7591df0
4
- data.tar.gz: 9123edb391f2f6538ef1f4c87f6acbb2c651694e83044d17cea6155075abccce
3
+ metadata.gz: fc6a61474d254bb7be4de1829b8e08f3a5eba3846e4ec540b3a25d7abaf0a65b
4
+ data.tar.gz: fdd5b870d391ca9d5fc827b349bac07c3ed62b00b47aefd65c840864a93637d7
5
5
  SHA512:
6
- metadata.gz: e6d094cea9a1058ea91a5fcb686dbb3cc7207eb441933973a33697fb1d7abce76d6773e1732c67a24ccbb2253e7e0757324d5f4d7d349bb347e5dee6fe72073f
7
- data.tar.gz: 38f3d9d7d71abe27bad552f97cc005c55c6894f1800b02cf9a5a8115f2722ddb17bfd0c0900f8da07f3886a4decca6816b830e440ac4148a33749806a9ab6aea
6
+ metadata.gz: 277b327e9b216c75433d3f488714a72b6638465d44f7c2d769f45028d3bf7c847a3c2a7ab4e91e4bb1393e3a7d513d001dce8a14551855defa9f8985fa1294f0
7
+ data.tar.gz: c87a5f7f5a5609329d3f7e004a960c110fd835ded85dbafdb9dc358d042fa61056210dc588f10d76e5cbcd70333f852fcb7f6d383cc5dbfd8391dcf9e38945b4
@@ -15,7 +15,7 @@ jobs:
15
15
  ruby: [2.5, 2.6, 2.7, '3.0']
16
16
  runs-on: ${{ matrix.os }}
17
17
  steps:
18
- - uses: actions/checkout@v2.3.4
18
+ - uses: actions/checkout@v3
19
19
  - name: Set up Ruby
20
20
  uses: ruby/setup-ruby@v1
21
21
  with:
@@ -31,7 +31,7 @@ jobs:
31
31
  env:
32
32
  BUNDLE_DEPLOYMENT: true
33
33
  steps:
34
- - uses: actions/checkout@v2.3.4
34
+ - uses: actions/checkout@v3
35
35
  - name: Set up Ruby
36
36
  uses: ruby/setup-ruby@v1
37
37
  with:
@@ -49,6 +49,6 @@ jobs:
49
49
  with:
50
50
  semantic_version: 17
51
51
  extra_plugins: |
52
- @semantic-release/changelog
53
- @semantic-release/git
54
- semantic-release-rubygem
52
+ @semantic-release/changelog@5
53
+ @semantic-release/git@9
54
+ semantic-release-rubygem@1
@@ -0,0 +1,17 @@
1
+ name: Validate PR Title
2
+ on:
3
+ pull_request_target:
4
+ types:
5
+ - opened
6
+ - edited
7
+ - synchronize
8
+ jobs:
9
+ main:
10
+ runs-on: ubuntu-20.04
11
+ steps:
12
+ - name: Validate PR Title
13
+ uses: amannn/action-semantic-pull-request@v4
14
+ env:
15
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16
+ with:
17
+ validateSingleCommit: true
data/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## [1.1.3](https://github.com/scribd/datadog_backup/compare/v1.1.2...v1.1.3) (2022-03-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update concurrent-ruby requirement from = 1.1.9 to = 1.1.10 ([e2eebe6](https://github.com/scribd/datadog_backup/commit/e2eebe6a418b5cd7a8e53e48587f40f4c0b8c90f))
7
+
8
+ ## [1.1.2](https://github.com/scribd/datadog_backup/compare/v1.1.1...v1.1.2) (2022-02-01)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * pin semantic release plugins ([5e92303](https://github.com/scribd/datadog_backup/commit/5e9230362f0b112de190fb1458fc9a3f32423c63))
14
+
15
+ ## [1.1.1](https://github.com/scribd/datadog_backup/compare/v1.1.0...v1.1.1) (2021-10-26)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **deps:** update amazing_print requirement from = 1.3.0 to = 1.4.0 ([b7e0ca6](https://github.com/scribd/datadog_backup/commit/b7e0ca61f0fb5acbeb541d3b173aa526a0edcf3d))
21
+
1
22
  # [1.1.0](https://github.com/scribd/datadog_backup/compare/v1.0.5...v1.1.0) (2021-07-14)
2
23
 
3
24
 
data/Gemfile.lock CHANGED
@@ -2,8 +2,8 @@ PATH
2
2
  remote: .
3
3
  specs:
4
4
  datadog_backup (0.6.0)
5
- amazing_print (= 1.3.0)
6
- concurrent-ruby (= 1.1.9)
5
+ amazing_print (= 1.4.0)
6
+ concurrent-ruby (= 1.1.10)
7
7
  deepsort (= 0.4.5)
8
8
  diffy (= 3.4.0)
9
9
  dogapi (= 1.45.0)
@@ -11,12 +11,12 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- amazing_print (1.3.0)
14
+ amazing_print (1.4.0)
15
15
  ast (2.4.2)
16
16
  coderay (1.1.3)
17
- concurrent-ruby (1.1.9)
17
+ concurrent-ruby (1.1.10)
18
18
  deepsort (0.4.5)
19
- diff-lcs (1.4.4)
19
+ diff-lcs (1.5.0)
20
20
  diffy (3.4.0)
21
21
  dogapi (1.45.0)
22
22
  multi_json
@@ -46,49 +46,48 @@ GEM
46
46
  notiffany (0.1.3)
47
47
  nenv (~> 0.1)
48
48
  shellany (~> 0.0)
49
- parallel (1.20.1)
50
- parser (3.0.2.0)
49
+ parallel (1.22.0)
50
+ parser (3.1.1.0)
51
51
  ast (~> 2.4.1)
52
52
  pry (0.14.1)
53
53
  coderay (~> 1.1)
54
54
  method_source (~> 1.0)
55
- rainbow (3.0.0)
55
+ rainbow (3.1.1)
56
56
  rb-fsevent (0.11.0)
57
57
  rb-inotify (0.10.1)
58
58
  ffi (~> 1.0)
59
- regexp_parser (2.1.1)
59
+ regexp_parser (2.2.1)
60
60
  rexml (3.2.5)
61
- rspec (3.10.0)
62
- rspec-core (~> 3.10.0)
63
- rspec-expectations (~> 3.10.0)
64
- rspec-mocks (~> 3.10.0)
65
- rspec-core (3.10.1)
66
- rspec-support (~> 3.10.0)
67
- rspec-expectations (3.10.1)
61
+ rspec (3.11.0)
62
+ rspec-core (~> 3.11.0)
63
+ rspec-expectations (~> 3.11.0)
64
+ rspec-mocks (~> 3.11.0)
65
+ rspec-core (3.11.0)
66
+ rspec-support (~> 3.11.0)
67
+ rspec-expectations (3.11.0)
68
68
  diff-lcs (>= 1.2.0, < 2.0)
69
- rspec-support (~> 3.10.0)
70
- rspec-mocks (3.10.2)
69
+ rspec-support (~> 3.11.0)
70
+ rspec-mocks (3.11.0)
71
71
  diff-lcs (>= 1.2.0, < 2.0)
72
- rspec-support (~> 3.10.0)
73
- rspec-support (3.10.2)
74
- rubocop (1.18.3)
72
+ rspec-support (~> 3.11.0)
73
+ rspec-support (3.11.0)
74
+ rubocop (1.26.1)
75
75
  parallel (~> 1.10)
76
- parser (>= 3.0.0.0)
76
+ parser (>= 3.1.0.0)
77
77
  rainbow (>= 2.2.2, < 4.0)
78
78
  regexp_parser (>= 1.8, < 3.0)
79
79
  rexml
80
- rubocop-ast (>= 1.7.0, < 2.0)
80
+ rubocop-ast (>= 1.16.0, < 2.0)
81
81
  ruby-progressbar (~> 1.7)
82
82
  unicode-display_width (>= 1.4.0, < 3.0)
83
- rubocop-ast (1.7.0)
84
- parser (>= 3.0.1.1)
85
- rubocop-rspec (2.4.0)
86
- rubocop (~> 1.0)
87
- rubocop-ast (>= 1.1.0)
83
+ rubocop-ast (1.16.0)
84
+ parser (>= 3.1.1.0)
85
+ rubocop-rspec (2.9.0)
86
+ rubocop (~> 1.19)
88
87
  ruby-progressbar (1.11.0)
89
88
  shellany (0.0.1)
90
89
  thor (1.1.0)
91
- unicode-display_width (2.0.0)
90
+ unicode-display_width (2.1.0)
92
91
 
93
92
  PLATFORMS
94
93
  ruby
@@ -21,8 +21,8 @@ Gem::Specification.new do |spec|
21
21
 
22
22
  spec.required_ruby_version = ['>= 2.5']
23
23
 
24
- spec.add_dependency 'amazing_print', '1.3.0'
25
- spec.add_dependency 'concurrent-ruby', '1.1.9'
24
+ spec.add_dependency 'amazing_print', '1.4.0'
25
+ spec.add_dependency 'concurrent-ruby', '1.1.10'
26
26
  spec.add_dependency 'deepsort', '0.4.5'
27
27
  spec.add_dependency 'diffy', '3.4.0'
28
28
  spec.add_dependency 'dogapi', '1.45.0'
@@ -12,7 +12,7 @@ jobs:
12
12
  steps:
13
13
  - uses: actions/checkout@v2
14
14
  - name: Set up Ruby 2.7.1
15
- uses: actions/setup-ruby@v1
15
+ uses: ruby/setup-ruby@v1
16
16
  with:
17
17
  ruby-version: 2.7.1
18
18
  - name: perform backup
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DatadogBackup
4
- VERSION = '1.1.0'
4
+ VERSION = '1.1.3'
5
5
  end
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: 1.1.0
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kamran Farhadi
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-07-14 00:00:00.000000000 Z
12
+ date: 2022-03-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: amazing_print
@@ -17,28 +17,28 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 1.3.0
20
+ version: 1.4.0
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - '='
26
26
  - !ruby/object:Gem::Version
27
- version: 1.3.0
27
+ version: 1.4.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: concurrent-ruby
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
32
  - - '='
33
33
  - !ruby/object:Gem::Version
34
- version: 1.1.9
34
+ version: 1.1.10
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - '='
40
40
  - !ruby/object:Gem::Version
41
- version: 1.1.9
41
+ version: 1.1.10
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: deepsort
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -120,6 +120,7 @@ extra_rdoc_files: []
120
120
  files:
121
121
  - ".github/dependabot.yml"
122
122
  - ".github/workflows/rspec_and_release.yml"
123
+ - ".github/workflows/validate-pr.yml"
123
124
  - ".gitignore"
124
125
  - ".rubocop.yml"
125
126
  - CHANGELOG.md