unleash 6.0.8.beta.1 → 6.0.9

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: d778ea62f95fc294d3c9577099b9ee860e50d4418d4449d8682825ca1b2b302b
4
- data.tar.gz: 7d60c258699d2d272f5edfe6bed34e7a097b6a5ea7b59805ab828ddca137378d
3
+ metadata.gz: 4ec95dfcbd69db765eeffd84ea41bab4376726f4d882d7f700ba4045ba264282
4
+ data.tar.gz: 68f847b9bb15e3e396ecf17d2d2486e5bb5ec1db87e094495bf6cef600a6b58a
5
5
  SHA512:
6
- metadata.gz: 3852b8e4f730af99e720d525fe95ee2ce31218f17b4940cf3501b2a1016831ab3bd5a57c5b6ed3ee085aca941349ad75cbd9a68c3015c8ae37ee01a65a77b11b
7
- data.tar.gz: 21495a241712545f18612f668f8334cda436e30e0a4b6a71356140477559f840d947ca9f381ca1843ccd6a658830f75ff5643a8260df0c16b216ceb0dcd96ac5
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
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module Unleash
2
- VERSION = "6.0.8.beta.1".freeze
2
+ VERSION = "6.0.9".freeze
3
3
  end
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.8.beta.1
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-13 00:00:00.000000000 Z
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: yggdrasil-engine