brick_ftp 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/lib/brick_ftp/restful_api/update_user.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: 96e1dc7450ed459157341a4f98a354fc3e11f284b8f369074121a39b325eb273
|
4
|
+
data.tar.gz: 8767ddfafc2935647b1fee4df01777bd2b6e7f29dbacfc8f6ad70994fb77318c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 221abadce34fd474a3719889f5771f53269740efe469ca39bf349e8132b73761fba543dff5cb7c8fc00f1ba295ce236a134d9265fe5d87d5fa49d8a378b5a538
|
7
|
+
data.tar.gz: 86e766d25b7aefdf346b4755412e6e2bd4def47e5f4136eab984851e11de9899e9d4f5d646d00fc4fe581bb5623c3534f94d3d5cba3e165173ec4ae4dcdb4c85
|
data/CHANGELOG.md
CHANGED
@@ -18,6 +18,23 @@ 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.1](https://github.com/koshigoe/brick_ftp/compare/v2.1.0...v2.1.1)
|
22
|
+
----
|
23
|
+
|
24
|
+
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v2.1.0...v2.1.1)
|
25
|
+
|
26
|
+
### Enhancements:
|
27
|
+
|
28
|
+
- [#136](https://github.com/koshigoe/brick_ftp/pull/136) Use `PATCH` instead of `PUT` to update User.
|
29
|
+
- see https://developers.files.com/#update-user
|
30
|
+
|
31
|
+
### Fixed Bugs:
|
32
|
+
|
33
|
+
### Deprecate
|
34
|
+
|
35
|
+
### Breaking Changes:
|
36
|
+
|
37
|
+
|
21
38
|
[v2.1.0](https://github.com/koshigoe/brick_ftp/compare/v2.0.3...v2.1.0)
|
22
39
|
----
|
23
40
|
|
@@ -92,7 +92,7 @@ module BrickFTP
|
|
92
92
|
# @return [BrickFTP::Types::User] updated User
|
93
93
|
#
|
94
94
|
def call(id, params)
|
95
|
-
res = client.
|
95
|
+
res = client.patch("/api/rest/v1/users/#{id}.json", params.to_h.compact)
|
96
96
|
|
97
97
|
BrickFTP::Types::User.new(**res.symbolize_keys)
|
98
98
|
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- koshigoe
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|