wrapi 0.4.8 → 0.4.9

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: f311f0c8d5a16deead39d219d0d266202798df6cfb4d0b23cabfabd62d1cd9ec
4
- data.tar.gz: c9a7bba391164cad77f2e976ec24f7b9016e0840857a416886c81987c26015b3
3
+ metadata.gz: e286bb60b10c6964d096b595813d5b464abf5e5d2c62df74345ccaa245ae63e3
4
+ data.tar.gz: 1397184086158310cd556160f15baa0aac53223199bb9eb15736c8d47eab83af
5
5
  SHA512:
6
- metadata.gz: 934bfa4e242147dcad243f8bfd6ce3c3389bea2e55d85f9444aa8c082c20b103da16fd23ff9afcad655832de37c8271ead765433e7b092669247e844a5603ba7
7
- data.tar.gz: 1395f62ad20197b83a1a4f6159de38614131e3d3064229a47b77a3776c0ff251786b27b0c5978d7823ce40c2089e695b1938ca0e50bb7efff4ba4197a47e6100
6
+ metadata.gz: 84629f489398f9f9e1529938d2ccdbda64440b2c3888a3e8a95370100fca09f9f2209fbe185d9e9dee45ddd5a4fbb53f3b0ca624ff97ad564aed576e4f909a0a
7
+ data.tar.gz: dc242fb476458d3aa411f18df6d4907e9ab1791aa7e430f5ff420f04257a4356b3de0a07ee8e0614d436caf27f5730c96b11c7f6a16160270c0c24bd3fbed246
data/CHANGELOG.md CHANGED
@@ -1,24 +1,31 @@
1
- ## Changelog
1
+ # Changelog
2
2
 
3
3
  ## [0.1.0] - 2024-02-2
4
+
4
5
  - Initial release extracted from CloudAlly gem
5
6
 
6
7
  ## [0.1.1] - 2024-02-5
8
+
7
9
  - default endpoint to nil and raise error in connection when not available
8
10
 
9
11
  ## [0.1.2] - 2024-02-5
12
+
10
13
  - default endpoint to nil and raise error in connection when not available
11
14
 
12
15
  ## [0.1.3] - 2024-02-5
16
+
13
17
  - fix entity should return empty array insted of nil
14
18
 
15
19
  ## [0.2.0] - 2024-02-8
20
+
16
21
  - implement json pagination
17
22
 
18
23
  ## [0.2.0] - 2024-02-13
24
+
19
25
  - implement option to manipulate request
20
26
 
21
27
  ## [0.4.0] - 2024-02-13
28
+
22
29
  - testing/code quality
23
30
  authentication tests (mocked)
24
31
  test string/{}/[] entities returned with mock
@@ -27,25 +34,37 @@
27
34
  Request option to return raw response
28
35
 
29
36
  ## [0.4.1] - 2024-02-28
37
+
30
38
  - fix issue with post body only supported as json
31
39
 
32
40
  ## [0.4.2] - 2024-03-03
41
+
33
42
  - fix issue with escaping query parameters included in path
34
43
 
35
44
  ## [0.4.3] - 2024-03-07
45
+
36
46
  - fix issue json generation for updated attributes
37
47
 
38
48
  ## [0.4.4] - 2024-03-12
49
+
39
50
  - fix typo and implement clone for entities
40
51
 
41
52
  ## [0.4.5] - 2024-03-12
53
+
42
54
  - refactorings code readability
43
55
 
44
56
  ## [0.4.6] - 2024-06-17
57
+
45
58
  - fix issue with loading Entity from yaml
46
59
 
47
60
  ## [0.4.7] - 2025-03-18
61
+
48
62
  - fix obsolete escape
49
63
 
50
64
  ## [0.4.8] - 2025-03-20
65
+
51
66
  - scramble passwords in www encoded content
67
+
68
+ ## [0.4.9] - 2025-03-20
69
+
70
+ - freeze causes issue so connection options can't be merged!
@@ -62,7 +62,7 @@ module WrAPI
62
62
  ].freeze
63
63
 
64
64
  # By default, don't set any connection options
65
- DEFAULT_CONNECTION_OPTIONS = {}.freeze
65
+ DEFAULT_CONNECTION_OPTIONS = {}
66
66
 
67
67
  # The response format appended to the path and sent in the 'Accept' header if none is set
68
68
  #
data/lib/wrapi/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WrAPI
4
- VERSION = '0.4.8'
4
+ VERSION = '0.4.9'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wrapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.8
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Janco Tanis