pricehubble 1.5.1 → 1.6.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: ca74576289a2d5c061f6b2dac3ddb4d6fa077934e95ea9b8bcf94eb1b9a54d9a
4
- data.tar.gz: d33c524b50b308f86e8205363fc3f9ab30c775b5ac9795edf8c7aa706403f96d
3
+ metadata.gz: fdab94d0db6b8d52953fec4af77bc72a063eb384a08f8d0f9c94a2cbc495887a
4
+ data.tar.gz: 2e3e154a4a4fcbc49cbc1f17b3b738f2c808ff200a82377884eef7463499b9ec
5
5
  SHA512:
6
- metadata.gz: 961026ab2f5102b5066e1351da519788e0d23b6d29fb232b691345f1cf9561ac589e65469c424e0ed1d19c36a2be741cf75fbdf83ec26f78a384468305a8eff0
7
- data.tar.gz: a610548c3064c6c98a711dcb5b3763bef901dc8be8b45ec6aa3e345e2d839018aeb1d2156bc7548078eecd34457947a32a2b5ddfd02daa6eb31d503ab951ab0d
6
+ metadata.gz: de8cce6ca9891a70b60afdc7621c848c1d9cdce76a895276f5986df113cc5c0c5a4edd0ddabcc150f4ca1ff8e8d8f74947da5fa89008a8a84dcb67c8bb08e765
7
+ data.tar.gz: eb755dc661fa163d417f6be206561e9accf27a435e15fbbec128d30e26aa8c8fb475ae86a86d0fcb0425ff50047f2dcb1b6acc9ef2d4afdffea0934e98490fe5
@@ -18,7 +18,7 @@ jobs:
18
18
  strategy:
19
19
  fail-fast: false
20
20
  matrix:
21
- ruby: ['2.7', '3.0']
21
+ ruby: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
22
22
  rails: ['6.1', '7.1']
23
23
  env:
24
24
  BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
data/CHANGELOG.md CHANGED
@@ -2,21 +2,25 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 1.6.0 (30 January 2025)
6
+
7
+ * Added all versions up to Ruby 3.4 to the CI matrix ([#14](https://github.com/hausgold/pricehubble/pull/14))
8
+
5
9
  ### 1.5.1 (17 January 2025)
6
10
 
7
- * Added the logger dependency (#13)
11
+ * Added the logger dependency ([#13](https://github.com/hausgold/pricehubble/pull/13))
8
12
 
9
13
  ### 1.5.0 (12 January 2025)
10
14
 
11
- * Switched to Zeitwerk as autoloader (#12)
15
+ * Switched to Zeitwerk as autoloader ([#12](https://github.com/hausgold/pricehubble/pull/12))
12
16
 
13
17
  ### 1.4.0 (3 January 2025)
14
18
 
15
- * Raised minimum supported Ruby/Rails version to 2.7/6.1 (#11)
19
+ * Raised minimum supported Ruby/Rails version to 2.7/6.1 ([#11](https://github.com/hausgold/pricehubble/pull/11))
16
20
 
17
21
  ### 1.3.0 (4 October 2024)
18
22
 
19
- * Upgraded the `recursive-open-struct` gem to `~> 2.0` (#10)
23
+ * Upgraded the `recursive-open-struct` gem to `~> 2.0` ([#10](https://github.com/hausgold/pricehubble/pull/10))
20
24
 
21
25
  ### 1.2.5 (15 August 2024)
22
26
 
@@ -36,12 +40,12 @@
36
40
 
37
41
  ### 1.2.1 (9 August 2024)
38
42
 
39
- * Added API docs building to continuous integration (#9)
43
+ * Added API docs building to continuous integration ([#9](https://github.com/hausgold/pricehubble/pull/9))
40
44
 
41
45
  ### 1.2.0 (8 July 2024)
42
46
 
43
- * Moved the development dependencies from the gemspec to the Gemfile (#7)
44
- * Dropped support for Ruby <2.7 (#8)
47
+ * Moved the development dependencies from the gemspec to the Gemfile ([#7](https://github.com/hausgold/pricehubble/pull/7))
48
+ * Dropped support for Ruby <2.7 ([#8](https://github.com/hausgold/pricehubble/pull/8))
45
49
 
46
50
  ### 1.1.0 (24 February 2023)
47
51
 
@@ -49,14 +53,14 @@
49
53
 
50
54
  ### 1.0.0 (18 January 2023)
51
55
 
52
- * Bundler >= 2.3 is from now on required as minimal version (#5)
53
- * Dropped support for Ruby < 2.5 (#5)
54
- * Dropped support for Rails < 5.2 (#5)
56
+ * Bundler >= 2.3 is from now on required as minimal version ([#5](https://github.com/hausgold/pricehubble/pull/5))
57
+ * Dropped support for Ruby < 2.5 ([#5](https://github.com/hausgold/pricehubble/pull/5))
58
+ * Dropped support for Rails < 5.2 ([#5](https://github.com/hausgold/pricehubble/pull/5))
55
59
  * Updated all development/runtime gems to their latest
56
- Ruby 2.5 compatible version (#5)
60
+ Ruby 2.5 compatible version ([#5](https://github.com/hausgold/pricehubble/pull/5))
57
61
  * [Breaking Change] The `sanitize` argument of the
58
62
  `PriceHubble::BaseEntity#attributes(sanitize = false)` method has changed to
59
- a keyword argument `PriceHubble::BaseEntity#attributes(sanitize: false)` (#5)
63
+ a keyword argument `PriceHubble::BaseEntity#attributes(sanitize: false)` ([#5](https://github.com/hausgold/pricehubble/pull/5))
60
64
 
61
65
  ### 0.4.2 (15 October 2021)
62
66
 
@@ -70,13 +74,13 @@
70
74
 
71
75
  ### 0.4.0 (11 December 2020)
72
76
 
73
- * Added initial dossier handling (create, delete, sharing link) (#3)
77
+ * Added initial dossier handling (create, delete, sharing link) ([#3](https://github.com/hausgold/pricehubble/pull/3))
74
78
 
75
79
  ### 0.3.0 (9 September 2020)
76
80
 
77
- * Dropped support for Rails <5.2 (#2)
78
- * Dropped support for Ruby <2.5 (#2)
79
- * Updated the faraday gem spec to `~> 1.0` (#2)
81
+ * Dropped support for Rails <5.2 ([#2](https://github.com/hausgold/pricehubble/pull/2))
82
+ * Dropped support for Ruby <2.5 ([#2](https://github.com/hausgold/pricehubble/pull/2))
83
+ * Updated the faraday gem spec to `~> 1.0` ([#2](https://github.com/hausgold/pricehubble/pull/2))
80
84
 
81
85
  ### 0.2.0 (22 October 2019)
82
86
 
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module PriceHubble
5
5
  # The version of the +price-hubble+ gem
6
- VERSION = '1.5.1'
6
+ VERSION = '1.6.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/pricehubble.gemspec CHANGED
@@ -37,6 +37,7 @@ Gem::Specification.new do |spec|
37
37
  spec.add_dependency 'activesupport', '>= 6.1'
38
38
  spec.add_dependency 'faraday', '~> 1.0'
39
39
  spec.add_dependency 'faraday_middleware', '~> 1.0'
40
+ spec.add_dependency 'mutex_m', '~> 0.3.0'
40
41
  spec.add_dependency 'recursive-open-struct', '~> 2.0'
41
42
  spec.add_dependency 'zeitwerk', '~> 2.6'
42
43
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pricehubble
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-17 00:00:00.000000000 Z
11
+ date: 2025-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '1.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: mutex_m
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.3.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.3.0
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: recursive-open-struct
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -209,7 +223,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
223
  - !ruby/object:Gem::Version
210
224
  version: '0'
211
225
  requirements: []
212
- rubygems_version: 3.3.26
226
+ rubygems_version: 3.4.22
213
227
  signing_key:
214
228
  specification_version: 4
215
229
  summary: Ruby client for the PriceHubble REST API