unleash 6.0.8 → 6.0.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 +8 -0
- data/lib/unleash/util/http.rb +1 -0
- data/lib/unleash/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: 4ec95dfcbd69db765eeffd84ea41bab4376726f4d882d7f700ba4045ba264282
|
4
|
+
data.tar.gz: 68f847b9bb15e3e396ecf17d2d2486e5bb5ec1db87e094495bf6cef600a6b58a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15ff22dc3211ac161f568031d53b0b51a24b159938319b98ba51892c252641b2076ded1899c401b41823c07ebd6a96e8919948379a12cc3c1f9872d75ab14982
|
7
|
+
data.tar.gz: fd708746986658bf90bc8678152ae99b51c644c3d464aeb0b6097e95bcc0a6880d7bdb09008465e2cf5898b7dfe0e2c35f7ea335abd18ba211853fe0b1bba608
|
data/CHANGELOG.md
CHANGED
@@ -13,6 +13,14 @@ Note: These changes are not considered notable:
|
|
13
13
|
|
14
14
|
## [Unreleased]
|
15
15
|
|
16
|
+
## [6.0.9] - 2024-11-21
|
17
|
+
### Fixed
|
18
|
+
- Fixed an issue where the server not sending the encoding would break file saving (#215)
|
19
|
+
|
20
|
+
## [6.0.8] - 2024-11-13
|
21
|
+
### Fixed
|
22
|
+
- Fixed an issue where the SDK running on aarch64 wouldn't load the binary correctly
|
23
|
+
|
16
24
|
## [6.0.7] - 2024-10-24
|
17
25
|
#### Fixed
|
18
26
|
- Context object correctly dumps to JSON
|
data/lib/unleash/util/http.rb
CHANGED
@@ -24,6 +24,7 @@ module Unleash
|
|
24
24
|
def self.http_connection(uri)
|
25
25
|
http = Net::HTTP.new(uri.host, uri.port)
|
26
26
|
http.use_ssl = true if uri.scheme == 'https'
|
27
|
+
http.response_body_encoding = 'UTF-8' if http.respond_to?(:response_body_encoding=)
|
27
28
|
http.open_timeout = Unleash.configuration.timeout # in seconds
|
28
29
|
http.read_timeout = Unleash.configuration.timeout # in seconds
|
29
30
|
|
data/lib/unleash/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unleash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Renato Arruda
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: yggdrasil-engine
|