unwrappr 0.8.1 → 0.8.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: 29736d84feb95b8cd5173861ac11989d11c94ecaca4a47c39dea8827edf03525
4
- data.tar.gz: 16b06856873438227e78b980b762f03c5aaaad621e6b552337d5efb934aadca7
3
+ metadata.gz: 014d8cae7eb89f4109bbf72f105e8c707b77b956ae813073902f9e65c3d16ddb
4
+ data.tar.gz: 8710978d82fee88f60314b7aafac85be8e74852b917e9ba41c093d31829cd301
5
5
  SHA512:
6
- metadata.gz: 987fbf80fd949d1a4f609d7d52f9d73dc0c49611ee65c26f8fcaa912c9f9e6affb7a45dce0db5ff5b96d54e19ce4ea889c7e3b71883ee22f5e9edb867e5cb1be
7
- data.tar.gz: 9d721aa36e61b47b38a9165db52351b99ba4f4449484d100aa8518789af3bed4733c8887730cb677fd14490ef0cd752789658f52ea483a247f77254c86754afa
6
+ metadata.gz: ef4f1fbfec42dcab1f48a5946fc4ba1b64edb74ad9db24ee815489e8ff218f53b0b0c08db889f4ef4139bc52cd143e0f7914e9aedd044f2729067b917a865951
7
+ data.tar.gz: e741f628f477c78ca8f90038f9939f77e7eb56283ef6c1c81a5a1b1ea8f0608daf7f214146b6da461542287187ce707a8770031d4ff285b1b45074ebbe46e852
data/CHANGELOG.md CHANGED
@@ -6,7 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
- [Unreleased]: https://github.com/envato/unwrappr/compare/v0.8.1...HEAD
9
+ [Unreleased]: https://github.com/envato/unwrappr/compare/v0.8.3...HEAD
10
+
11
+ ## [0.8.3] 2025-12-29
12
+
13
+ ### Add
14
+ - Loosen Bundler dependency constraint to allow major version 4 ([#99]).
15
+ - Add Ruby 4.0 to the CI test matrix ([#99]).
16
+
17
+ [0.8.3]: https://github.com/envato/unwrappr/compare/v0.8.2...v0.8.3
18
+ [#99]: https://github.com/envato/unwrappr/pull/99
19
+
20
+ ## [0.8.2] 2024-12-28
21
+
22
+ ### Add
23
+ - Add Ruby 3.4 to the CI test matrix ([#95]).
24
+ - Add `base64` as a runtime dependency to support Ruby 3.4+ ([#95]).
25
+
26
+ [0.8.2]: https://github.com/envato/unwrappr/compare/v0.8.1...v0.8.2
27
+ [#95]: https://github.com/envato/unwrappr/pull/95
10
28
 
11
29
  ## [0.8.1] 2023-02-07
12
30
 
data/README.md CHANGED
@@ -79,11 +79,6 @@ See https://github.com/settings/tokens to set up personal access tokens.
79
79
  - [GitHub project](https://github.com/envato/unwrappr)
80
80
  - Bug reports and feature requests are welcome via [GitHub Issues](https://github.com/envato/unwrappr/issues)
81
81
 
82
- ## Maintainers
83
-
84
- - [Pete Johns](https://github.com/johnsyweb)
85
- - [Joe Sustaric](https://github.com/joesustaric)
86
-
87
82
  ## Authors
88
83
 
89
84
  - [Pete Johns](https://github.com/johnsyweb)
@@ -118,17 +113,13 @@ For larger new features: Do everything as above, but first also make contact wit
118
113
 
119
114
  ## About [![code with heart by Envato](https://img.shields.io/badge/%3C%2F%3E%20with%20%E2%99%A5%20by-Envato-ff69b4.svg?style=flat-square)](https://github.com/envato/unwrappr)
120
115
 
121
- This project is maintained by the [Envato engineering team][webuild] and funded by [Envato][envato].
122
-
123
- [<img src="http://opensource.envato.com/images/envato-oss-readme-logo.png" alt="Envato logo">][envato]
116
+ This project is maintained by the Envato engineering team and funded by [Envato][envato].
124
117
 
125
118
  Encouraging the use and creation of open source software is one of the ways we
126
- serve our community. See [our other projects][oss] or [come work with
127
- us][careers] where you'll find an incredibly diverse, intelligent and capable
128
- group of people who help make our company succeed and make our workplace fun,
129
- friendly and happy.
119
+ serve our community. Perhaps [come work with us][careers]
120
+ where you'll find an incredibly diverse, intelligent and capable group of people
121
+ who help make our company succeed and make our workplace fun, friendly and
122
+ happy.
130
123
 
131
- [webuild]: https://webuild.envato.com?utm_source=github
132
124
  [envato]: https://envato.com?utm_source=github
133
- [oss]: https://opensource.envato.com/?utm_source=github
134
125
  [careers]: https://envato.com/careers/?utm_source=github
@@ -22,11 +22,11 @@ module Unwrappr
22
22
  def_delegators :@lock_file_diff, :filename, :sha
23
23
 
24
24
  def added?
25
- (head_version && base_version.nil?)
25
+ head_version && base_version.nil?
26
26
  end
27
27
 
28
28
  def removed?
29
- (base_version && head_version.nil?)
29
+ base_version && head_version.nil?
30
30
  end
31
31
 
32
32
  def major?
@@ -65,7 +65,7 @@ module Unwrappr
65
65
  # '+ websocket-extensions (>= 0.1.0)'
66
66
  pattern = /^(?<change_type>[+-]) (?<gem_name>\S+) \(\d/
67
67
  match = pattern.match(line)
68
- return match[:gem_name], match[:change_type] unless match.nil?
68
+ [match[:gem_name], match[:change_type]] unless match.nil?
69
69
  end
70
70
  end
71
71
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Unwrappr
4
- VERSION = '0.8.1'
4
+ VERSION = '0.8.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unwrappr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Emilyn Escabarte
@@ -9,25 +9,44 @@ authors:
9
9
  - Orien Madgwick
10
10
  - Pete Johns
11
11
  - Vladimir Chervanev
12
- autorequire:
13
12
  bindir: exe
14
13
  cert_chain: []
15
- date: 2023-02-07 00:00:00.000000000 Z
14
+ date: 1980-01-02 00:00:00.000000000 Z
16
15
  dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: base64
18
+ requirement: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
17
30
  - !ruby/object:Gem::Dependency
18
31
  name: bundler
19
32
  requirement: !ruby/object:Gem::Requirement
20
33
  requirements:
34
+ - - ">"
35
+ - !ruby/object:Gem::Version
36
+ version: '2'
21
37
  - - "<"
22
38
  - !ruby/object:Gem::Version
23
- version: '3'
39
+ version: '5'
24
40
  type: :runtime
25
41
  prerelease: false
26
42
  version_requirements: !ruby/object:Gem::Requirement
27
43
  requirements:
44
+ - - ">"
45
+ - !ruby/object:Gem::Version
46
+ version: '2'
28
47
  - - "<"
29
48
  - !ruby/object:Gem::Version
30
- version: '3'
49
+ version: '5'
31
50
  - !ruby/object:Gem::Dependency
32
51
  name: bundler-audit
33
52
  requirement: !ruby/object:Gem::Requirement
@@ -112,110 +131,12 @@ dependencies:
112
131
  - - "~>"
113
132
  - !ruby/object:Gem::Version
114
133
  version: '1'
115
- - !ruby/object:Gem::Dependency
116
- name: guard
117
- requirement: !ruby/object:Gem::Requirement
118
- requirements:
119
- - - "~>"
120
- - !ruby/object:Gem::Version
121
- version: '2'
122
- type: :development
123
- prerelease: false
124
- version_requirements: !ruby/object:Gem::Requirement
125
- requirements:
126
- - - "~>"
127
- - !ruby/object:Gem::Version
128
- version: '2'
129
- - !ruby/object:Gem::Dependency
130
- name: guard-rspec
131
- requirement: !ruby/object:Gem::Requirement
132
- requirements:
133
- - - "~>"
134
- - !ruby/object:Gem::Version
135
- version: '4'
136
- type: :development
137
- prerelease: false
138
- version_requirements: !ruby/object:Gem::Requirement
139
- requirements:
140
- - - "~>"
141
- - !ruby/object:Gem::Version
142
- version: '4'
143
- - !ruby/object:Gem::Dependency
144
- name: pry
145
- requirement: !ruby/object:Gem::Requirement
146
- requirements:
147
- - - "~>"
148
- - !ruby/object:Gem::Version
149
- version: '0'
150
- type: :development
151
- prerelease: false
152
- version_requirements: !ruby/object:Gem::Requirement
153
- requirements:
154
- - - "~>"
155
- - !ruby/object:Gem::Version
156
- version: '0'
157
- - !ruby/object:Gem::Dependency
158
- name: rake
159
- requirement: !ruby/object:Gem::Requirement
160
- requirements:
161
- - - ">="
162
- - !ruby/object:Gem::Version
163
- version: 12.3.3
164
- type: :development
165
- prerelease: false
166
- version_requirements: !ruby/object:Gem::Requirement
167
- requirements:
168
- - - ">="
169
- - !ruby/object:Gem::Version
170
- version: 12.3.3
171
- - !ruby/object:Gem::Dependency
172
- name: rspec
173
- requirement: !ruby/object:Gem::Requirement
174
- requirements:
175
- - - "~>"
176
- - !ruby/object:Gem::Version
177
- version: '3.0'
178
- type: :development
179
- prerelease: false
180
- version_requirements: !ruby/object:Gem::Requirement
181
- requirements:
182
- - - "~>"
183
- - !ruby/object:Gem::Version
184
- version: '3.0'
185
- - !ruby/object:Gem::Dependency
186
- name: rspec-its
187
- requirement: !ruby/object:Gem::Requirement
188
- requirements:
189
- - - "~>"
190
- - !ruby/object:Gem::Version
191
- version: '1'
192
- type: :development
193
- prerelease: false
194
- version_requirements: !ruby/object:Gem::Requirement
195
- requirements:
196
- - - "~>"
197
- - !ruby/object:Gem::Version
198
- version: '1'
199
- - !ruby/object:Gem::Dependency
200
- name: rubocop
201
- requirement: !ruby/object:Gem::Requirement
202
- requirements:
203
- - - ">="
204
- - !ruby/object:Gem::Version
205
- version: 0.49.0
206
- type: :development
207
- prerelease: false
208
- version_requirements: !ruby/object:Gem::Requirement
209
- requirements:
210
- - - ">="
211
- - !ruby/object:Gem::Version
212
- version: 0.49.0
213
134
  description: 'bundle update PRs: Automated. Annotated.'
214
135
  email:
215
136
  - emilyn.escabarte@envato.com
216
137
  - joe.sustaric@envato.com
217
138
  - orien.madgwick@envato.com
218
- - pete.johns@envato.com
139
+ - paj+rubygems@johnsy.com
219
140
  - vladimir.chervanev@envato.com
220
141
  executables:
221
142
  - unwrappr
@@ -253,17 +174,16 @@ files:
253
174
  - lib/unwrappr/writers/security_vulnerabilities.rb
254
175
  - lib/unwrappr/writers/title.rb
255
176
  - lib/unwrappr/writers/version_change.rb
256
- homepage: https://opensource.envato.com/projects/unwrappr.html
177
+ homepage: https://github.com/envato/unwrappr
257
178
  licenses:
258
179
  - MIT
259
180
  metadata:
260
181
  bug_tracker_uri: https://github.com/envato/unwrappr/issues
261
182
  changelog_uri: https://github.com/envato/unwrappr/blob/HEAD/CHANGELOG.md
262
183
  documentation_uri: https://github.com/envato/unwrappr/blob/HEAD/README.md
263
- homepage_uri: https://opensource.envato.com/projects/unwrappr.html
184
+ homepage_uri: https://github.com/envato/unwrappr
264
185
  rubygems_mfa_required: 'true'
265
186
  source_code_uri: https://github.com/envato/unwrappr
266
- post_install_message:
267
187
  rdoc_options: []
268
188
  require_paths:
269
189
  - lib
@@ -278,8 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
278
198
  - !ruby/object:Gem::Version
279
199
  version: '2.7'
280
200
  requirements: []
281
- rubygems_version: 3.4.6
282
- signing_key:
201
+ rubygems_version: 4.0.3
283
202
  specification_version: 4
284
203
  summary: A tool to unwrap your gems and see what's changed easily
285
204
  test_files: []