filestack 2.9.6 → 2.9.7

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: a6257a989f754721ccea17bb8ba9ec05e3b919e224599239e6c4b07596be95db
4
- data.tar.gz: 203b1b4d9cb0627115e13b2af655edba664ae8743c7e9772fdb5641ceadeb0e6
3
+ metadata.gz: c847c2a9ed6e1078e3c19e969659eb4171450f8eae8e8f8613f197b12bda479b
4
+ data.tar.gz: e34883049cb327b4dedfbeada46a941a5d34bc046dcabdae45e392fa7d6dda82
5
5
  SHA512:
6
- metadata.gz: 796f587b6695c730e884aee7731673b98ac9f9b22d5ba33473d7236ceae4222ad8f8f1fe51b4362f50b137743be308b6096e827cc9ea634fb4352f40aa421cd3
7
- data.tar.gz: 9fe556c481445e41fe51e4d8d1a15bae7bf8f9ffc2753282a91b350221c70705727fe4f67499a887416087eda98c6238959e5c3e3eb34aa3afe97d8215150f52
6
+ metadata.gz: e2f2ee126ae57f1f2222690a5d33c059a84273309e3f91933d2f4a4fcb85769dddcfb0fd4a6629c229218992870d4d0f985c371eb562b591f5b1ee153a4f0989
7
+ data.tar.gz: ed477ccd9f6404f6c23fffa88037dbb8e2e780b34e5264864da52c807419e9170a7c443924b69a57693141ac28eca69d80d513523437fc764ffcf63c1c7ee054
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Filestack-Ruby Changelog
2
2
 
3
+ ## 2.9.7 (Sept 07, 2023)
4
+ - Replace URI encode to ERB
5
+
3
6
  ## 2.9.6 (Oct 29, 2021)
4
7
  - Return response body on upload complete to get workflows jobid
5
8
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.9.6
1
+ 2.9.7
@@ -1,5 +1,5 @@
1
1
  module Filestack
2
2
  module Ruby
3
- VERSION = '2.9.6'.freeze
3
+ VERSION = '2.9.7'.freeze
4
4
  end
5
5
  end
@@ -58,7 +58,7 @@ module UploadUtils
58
58
  FilestackConfig::HEADERS
59
59
  end
60
60
  Typhoeus.public_send(
61
- action, URI.encode(url), params: parameters, headers: headers
61
+ action, URI::Parser.new.escape(url), params: parameters, headers: headers
62
62
  )
63
63
  end
64
64
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: filestack
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.6
4
+ version: 2.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Filestack
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-10-29 00:00:00.000000000 Z
11
+ date: 2023-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -201,7 +201,7 @@ homepage: https://github.com/filestack/filestack-ruby
201
201
  licenses:
202
202
  - MIT
203
203
  metadata: {}
204
- post_install_message:
204
+ post_install_message:
205
205
  rdoc_options: []
206
206
  require_paths:
207
207
  - lib
@@ -216,8 +216,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
216
  - !ruby/object:Gem::Version
217
217
  version: '0'
218
218
  requirements: []
219
- rubygems_version: 3.0.8
220
- signing_key:
219
+ rubygems_version: 3.1.2
220
+ signing_key:
221
221
  specification_version: 4
222
222
  summary: Official Ruby SDK for the Filestack API
223
223
  test_files: []