bisu 3.0.0 → 3.0.1

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: 2ea2a5c13b7955fc0c03217a486ff2fc85113f0d24e0a17e384f50e2b58f56d7
4
- data.tar.gz: c739da6cdcf198784ec160c106e68182b84f4827b2dd0930716150afdbda847d
3
+ metadata.gz: a68d1076ed50c0054f7ae7c301eb0722d54062027c5246b8065a73afe495b91a
4
+ data.tar.gz: 7b60f8ab4ce91a6a4b2a46339b3cc753d7a6ec22d6a7cb87ace851dd3ea18487
5
5
  SHA512:
6
- metadata.gz: abed861d2a9023e00b59dac55b4b3c4dd3cea0d14c1bb630a0d8be21b69ecbd515c5dc278332beb7c62b8023a3fb496b14376ee643b9b6c002d96b9dd871265e
7
- data.tar.gz: 74dafa6722b5e12fc0b0d9d92aee0e87018ed264be41927251256ba594c705676efaf32ad0c2b951427f27283d1585b5215f55797f135336d57024cefdaa77b8
6
+ metadata.gz: 4d49f5ecdc90851f79feecc6eafd089f4af9fa404f943d066102f62a389bf7217faa3e25fa75c130361d4327baf14eaf7b53191a6fdb91ad427efea4f81ee427
7
+ data.tar.gz: e2687094301355755ad7bd980661c0c55924eb2cb1f8ab5fbc026f45d8cf1a7b836becc840446538de777756c196bdaa240b600696f2158bb852fadbe57b7ec5
data/CHANGELOG.md CHANGED
@@ -4,11 +4,17 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## Unreleased
6
6
 
7
- ## [3.0.0](https://github.com/hole19/bisu/releases/tag/v2.5.0)(2025-10-13)
7
+ ## [3.0.1](https://github.com/hole19/bisu/releases/tag/v3.0.1)(2025-10-13)
8
+
9
+ - Fix SSL verification in Tolgee source
10
+
11
+ ## [3.0.0](https://github.com/hole19/bisu/releases/tag/v3.0.0)(2025-10-13)
8
12
 
9
13
  - Add support for ruby 3.4
10
14
  - Add Github test workflow
11
- - (Breaking) Set ruby 3.0 as minimum supported version
15
+
16
+ ### Breaking Changes
17
+ - Set ruby 3.0 as minimum supported version
12
18
 
13
19
  ## [2.4.0](https://github.com/hole19/bisu/releases/tag/v2.4.0)
14
20
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bisu (3.0.0)
4
+ bisu (3.0.1)
5
5
  colorize
6
6
  csv
7
7
  rubyzip (>= 2.0.0)
@@ -31,7 +31,7 @@ module Bisu
31
31
  request = Net::HTTP::Get.new(uri)
32
32
  request['X-API-Key'] = @api_key
33
33
 
34
- response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|
34
+ response = Net::HTTP.start(uri.host, uri.port, use_ssl: true, verify_mode: OpenSSL::SSL::VERIFY_NONE) do |http|
35
35
  http.request(request)
36
36
  end
37
37
 
data/lib/bisu/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Bisu
2
- VERSION = '3.0.0'
2
+ VERSION = '3.0.1'
3
3
  VERSION_UPDATED_AT = '2025-10-13'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bisu
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - joaoffcosta