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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 795f2cdeba55d85baf94fee834f6b762b0604a791af36544c475dc36904216e2
4
- data.tar.gz: e8ba0c478e30176ca081fbdee4eb4d404bf104f23b4616bae55b8b131bd0025d
3
+ metadata.gz: 4ec95dfcbd69db765eeffd84ea41bab4376726f4d882d7f700ba4045ba264282
4
+ data.tar.gz: 68f847b9bb15e3e396ecf17d2d2486e5bb5ec1db87e094495bf6cef600a6b58a
5
5
  SHA512:
6
- metadata.gz: 1bda530824a27a3feffa74649f70b3b416e5fac2f986f44b9eacaca85d5e705fa0ecbcd199272589e7e1ba79be3a04d18ef9912beee163777e3d393937696711
7
- data.tar.gz: 4aa0ff5d8adfa74442e75f585394443132e662e135fcac865c1324f05bc9e76cf60c9d470ecf35e028afe945186e8757bd997036f75fac7f2e38d6ee5097f52c
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".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
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