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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0963dd222588305e1338d88de6cbbc880994cc1c6d6285d1db7611f0d211745d'
4
- data.tar.gz: 9677a3209ae374ce09cc879a057b742c9cb59773417a040302658cb1a23b0e34
3
+ metadata.gz: 96e1dc7450ed459157341a4f98a354fc3e11f284b8f369074121a39b325eb273
4
+ data.tar.gz: 8767ddfafc2935647b1fee4df01777bd2b6e7f29dbacfc8f6ad70994fb77318c
5
5
  SHA512:
6
- metadata.gz: 1c29f0e5dd4a68a7252d5c5c6559056c821ba9a865efbed6fd50c406f0126106f7fc8c7dba23e0a3941d82f17df428d373e7112a3a1449b36b7f09cb1a97bbc7
7
- data.tar.gz: c9652d9b29f3886cfd3b81b5b0441d661b93d178e0f823816dd409058e3082f9c5589c277a87647649b152fffbe8504f041240e0d1ec66ccd4f4c965ac0f4a02
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.put("/api/rest/v1/users/#{id}.json", params.to_h.compact)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BrickFTP
4
- VERSION = '2.1.0'
4
+ VERSION = '2.1.1'
5
5
  end
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.0
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-08-27 00:00:00.000000000 Z
11
+ date: 2021-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler