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 +4 -4
- data/CHANGELOG.md +20 -1
- data/lib/wrapi/configuration.rb +1 -1
- data/lib/wrapi/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e286bb60b10c6964d096b595813d5b464abf5e5d2c62df74345ccaa245ae63e3
|
4
|
+
data.tar.gz: 1397184086158310cd556160f15baa0aac53223199bb9eb15736c8d47eab83af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84629f489398f9f9e1529938d2ccdbda64440b2c3888a3e8a95370100fca09f9f2209fbe185d9e9dee45ddd5a4fbb53f3b0ca624ff97ad564aed576e4f909a0a
|
7
|
+
data.tar.gz: dc242fb476458d3aa411f18df6d4907e9ab1791aa7e430f5ff420f04257a4356b3de0a07ee8e0614d436caf27f5730c96b11c7f6a16160270c0c24bd3fbed246
|
data/CHANGELOG.md
CHANGED
@@ -1,24 +1,31 @@
|
|
1
|
-
|
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!
|
data/lib/wrapi/configuration.rb
CHANGED
data/lib/wrapi/version.rb
CHANGED