brick_ftp 2.1.2 → 2.1.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/brick_ftp/restful_api/client.rb +1 -1
- data/lib/brick_ftp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4eb818a5b945f3862cfe4420ef282e3baf66ab5be31703b02a7f63986720ce31
|
|
4
|
+
data.tar.gz: 193f8f93d4357a98fd175c90808fe17b47e69410de92602d725d3b16d3fc9301
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ff126f83d1795a8fabfdf5dbc88b282bed1404d82c737c1bebed2d4f37328925daa4a0233bd0e64ad0915f04742724ac1dd04477d90200590a5c58d9a0f69db
|
|
7
|
+
data.tar.gz: 6ce0fed621455fdfba00dba89a72c6bea67c57eb25ec1ecfb7a23526d35030f5c1e2fae2934d96e8891d6bccf2619332acb6c8ba10b6f319c4a102bbc7453661
|
data/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,22 @@ Files::User.new(params, api_key: 'YOUR_API_KEY')
|
|
|
18
18
|
I will archive this repository after found official SDK.
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
[v2.1.3](https://github.com/koshigoe/brick_ftp/compare/v2.1.2...v2.1.3)
|
|
22
|
+
----
|
|
23
|
+
|
|
24
|
+
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v2.1.2...v2.1.3)
|
|
25
|
+
|
|
26
|
+
### Enhancements:
|
|
27
|
+
|
|
28
|
+
### Fixed Bugs:
|
|
29
|
+
|
|
30
|
+
- [#138](https://github.com/koshigoe/brick_ftp/pull/138) Filter unsupported keys included in error response
|
|
31
|
+
|
|
32
|
+
### Deprecate
|
|
33
|
+
|
|
34
|
+
### Breaking Changes:
|
|
35
|
+
|
|
36
|
+
|
|
21
37
|
[v2.1.2](https://github.com/koshigoe/brick_ftp/compare/v2.1.1...v2.1.2)
|
|
22
38
|
----
|
|
23
39
|
|
|
@@ -187,7 +187,7 @@ module BrickFTP
|
|
|
187
187
|
end
|
|
188
188
|
parsed = {} unless parsed.is_a?(Hash)
|
|
189
189
|
|
|
190
|
-
ErrorResponse.new(parsed.symbolize_keys).tap do |e|
|
|
190
|
+
ErrorResponse.new(parsed.symbolize_keys.slice(*ErrorResponse.members)).tap do |e|
|
|
191
191
|
e['http-code'] ||= response.code
|
|
192
192
|
e['error'] ||= response.body
|
|
193
193
|
end
|
data/lib/brick_ftp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: brick_ftp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- koshigoe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-06-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby2_keywords
|