From fdddb8c8c8832e288ab998061dc3a1dd32e33ed0 Mon Sep 17 00:00:00 2001 From: Andrejs Cunskis Date: Sun, 9 Jun 2024 09:38:55 +0300 Subject: [PATCH 1/3] deps: bump httparty from 0.21.0 to 0.22.0 --- Gemfile.lock | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 044da27b..49c400d3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -63,6 +63,7 @@ GEM climate_control (1.2.0) concurrent-ruby (1.3.1) connection_pool (2.4.1) + csv (3.3.0) debug (1.9.2) irb (~> 1.10) reline (>= 0.3.8) @@ -117,7 +118,8 @@ GEM multi_json (~> 1.11) os (>= 0.9, < 2.0) signet (>= 0.16, < 2.a) - httparty (0.21.0) + httparty (0.22.0) + csv mini_mime (>= 1.0.0) multi_xml (>= 0.5.2) httpclient (2.8.3) @@ -146,7 +148,8 @@ GEM mini_portile2 (2.8.6) minitest (5.23.1) multi_json (1.15.0) - multi_xml (0.6.0) + multi_xml (0.7.1) + bigdecimal (~> 3.1) mutex_m (0.2.0) net-http (0.4.1) uri From 9c0d7dad555d4171347d55dc08b2c8b286302b01 Mon Sep 17 00:00:00 2001 From: Andrejs Cunskis Date: Sun, 9 Jun 2024 09:43:40 +0300 Subject: [PATCH 2/3] [BREAKING] Drop ruby 3.0 support --- .github/workflows/test.yml | 2 +- .rubocop.yml | 2 +- allure-report-publisher.gemspec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9268cb7..deb3e5de 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.0", "3.1", "3.2", "3.3"] + ruby: ["3.1", "3.2", "3.3"] steps: - name: Checkout uses: actions/checkout@v4.1.6 diff --git a/.rubocop.yml b/.rubocop.yml index 803286ff..ca13ed9b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -4,7 +4,7 @@ require: - rubocop-performance AllCops: - TargetRubyVersion: 3.0 + TargetRubyVersion: 3.1 NewCops: enable Exclude: - vendor/**/* diff --git a/allure-report-publisher.gemspec b/allure-report-publisher.gemspec index 35a7dc4e..efc4b299 100644 --- a/allure-report-publisher.gemspec +++ b/allure-report-publisher.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |spec| spec.homepage = "https://github.com/andrcuns/allure-report-uploader" spec.license = "MIT" - spec.required_ruby_version = Gem::Requirement.new(">= 3.0") + spec.required_ruby_version = Gem::Requirement.new(">= 3.1") spec.metadata = { "source_code_uri" => "https://github.com/andrcuns/allure-report-uploader", From 9b53a6251a5675889c08902bec4827ad5771d11c Mon Sep 17 00:00:00 2001 From: Andrejs Cunskis Date: Sun, 9 Jun 2024 09:47:10 +0300 Subject: [PATCH 3/3] Disable hash rule --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index ca13ed9b..e85d29f5 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -44,6 +44,9 @@ Style/StringLiterals: Style/FetchEnvVar: Enabled: false +Style/HashSyntax: + Enabled: false + RSpec/MultipleExpectations: Max: 4