pricehubble 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9721bb7bde0466664e06c6669668eb4bfe18afbcd922b3e9780cbccf7fab38c4
4
- data.tar.gz: 96cbc3748db0776ad37c56d0cae090d4c7f181ba5357dc94fdcc05cd138f7fd1
3
+ metadata.gz: fdab94d0db6b8d52953fec4af77bc72a063eb384a08f8d0f9c94a2cbc495887a
4
+ data.tar.gz: 2e3e154a4a4fcbc49cbc1f17b3b738f2c808ff200a82377884eef7463499b9ec
5
5
  SHA512:
6
- metadata.gz: ed6ada92ef2cb5a3ff5a1d715fe1aad5bc68adc9482cf5b383b6497d253552f02c42b908c48e326337886227dc616dcd3210a59e70da3591d5bbb18242a7174c
7
- data.tar.gz: 17461520b2a3631e0706da2c6b5355ee5fe6c9f0d2228eee4497f6ac068780431f9c5da0585f1862227c4cd86e6b562f19a7e4a1bbcd3a4d9db9c14d878e23c1
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,17 +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
+
9
+ ### 1.5.1 (17 January 2025)
10
+
11
+ * Added the logger dependency ([#13](https://github.com/hausgold/pricehubble/pull/13))
12
+
5
13
  ### 1.5.0 (12 January 2025)
6
14
 
7
- * Switched to Zeitwerk as autoloader (#12)
15
+ * Switched to Zeitwerk as autoloader ([#12](https://github.com/hausgold/pricehubble/pull/12))
8
16
 
9
17
  ### 1.4.0 (3 January 2025)
10
18
 
11
- * 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))
12
20
 
13
21
  ### 1.3.0 (4 October 2024)
14
22
 
15
- * 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))
16
24
 
17
25
  ### 1.2.5 (15 August 2024)
18
26
 
@@ -32,12 +40,12 @@
32
40
 
33
41
  ### 1.2.1 (9 August 2024)
34
42
 
35
- * Added API docs building to continuous integration (#9)
43
+ * Added API docs building to continuous integration ([#9](https://github.com/hausgold/pricehubble/pull/9))
36
44
 
37
45
  ### 1.2.0 (8 July 2024)
38
46
 
39
- * Moved the development dependencies from the gemspec to the Gemfile (#7)
40
- * 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))
41
49
 
42
50
  ### 1.1.0 (24 February 2023)
43
51
 
@@ -45,14 +53,14 @@
45
53
 
46
54
  ### 1.0.0 (18 January 2023)
47
55
 
48
- * Bundler >= 2.3 is from now on required as minimal version (#5)
49
- * Dropped support for Ruby < 2.5 (#5)
50
- * 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))
51
59
  * Updated all development/runtime gems to their latest
52
- Ruby 2.5 compatible version (#5)
60
+ Ruby 2.5 compatible version ([#5](https://github.com/hausgold/pricehubble/pull/5))
53
61
  * [Breaking Change] The `sanitize` argument of the
54
62
  `PriceHubble::BaseEntity#attributes(sanitize = false)` method has changed to
55
- 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))
56
64
 
57
65
  ### 0.4.2 (15 October 2021)
58
66
 
@@ -66,13 +74,13 @@
66
74
 
67
75
  ### 0.4.0 (11 December 2020)
68
76
 
69
- * 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))
70
78
 
71
79
  ### 0.3.0 (9 September 2020)
72
80
 
73
- * Dropped support for Rails <5.2 (#2)
74
- * Dropped support for Ruby <2.5 (#2)
75
- * 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))
76
84
 
77
85
  ### 0.2.0 (22 October 2019)
78
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.0'
6
+ VERSION = '1.6.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/lib/price_hubble.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'zeitwerk'
4
+ require 'logger'
4
5
  require 'active_support'
5
6
  require 'active_support/concern'
6
7
  require 'active_support/configurable'
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.0
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-12 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