From 71ed53250c2b347042688e4d3c180c47eba4767c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 May 2025 11:19:17 +0000 Subject: [PATCH 1/3] chore(deps): bump the rubygems group with 2 updates Bumps the rubygems group with 2 updates: [html2rss](https://github.com/html2rss/html2rss) and [base64](https://github.com/ruby/base64). Updates `html2rss` from `70540c7` to `6d9dcee` - [Release notes](https://github.com/html2rss/html2rss/releases) - [Commits](https://github.com/html2rss/html2rss/compare/70540c7d2accdfab85fb52d3839b31a615ffe3b3...6d9dcee4c786c27cd668ffd27045c5e874d07d57) Updates `base64` from 0.2.0 to 0.3.0 - [Release notes](https://github.com/ruby/base64/releases) - [Commits](https://github.com/ruby/base64/compare/v0.2.0...v0.3.0) --- updated-dependencies: - dependency-name: html2rss dependency-version: 6d9dcee4c786c27cd668ffd27045c5e874d07d57 dependency-type: direct:production dependency-group: rubygems - dependency-name: base64 dependency-version: 0.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rubygems ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 5df59a51..43551239 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,6 +1,6 @@ GIT remote: https://github.com/html2rss/html2rss - revision: 70540c7d2accdfab85fb52d3839b31a615ffe3b3 + revision: f4e080c7de7e54ec83453192c434e6e40b5db7ea specs: html2rss (0.17.0) addressable (~> 2.7) @@ -33,8 +33,8 @@ GEM addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) ast (2.4.3) - base64 (0.2.0) - bigdecimal (3.1.9) + base64 (0.3.0) + bigdecimal (3.2.0) byebug (12.0.0) climate_control (1.2.0) concurrent-ruby (1.3.5) @@ -267,8 +267,8 @@ DEPENDENCIES CHECKSUMS addressable (2.8.7) sha256=462986537cf3735ab5f3c0f557f14155d778f4b43ea4f485a9deb9c8f7c58232 ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383 - base64 (0.2.0) sha256=0f25e9b21a02a0cc0cea8ef92b2041035d39350946e8789c562b2d1a3da01507 - bigdecimal (3.1.9) sha256=2ffc742031521ad69c2dfc815a98e426a230a3d22aeac1995826a75dabfad8cc + base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b + bigdecimal (3.2.0) sha256=f220c34e07d98b04e02eb23193bee436fab9afcd551f43dce8837a1b4aa80762 byebug (12.0.0) sha256=d4a150d291cca40b66ec9ca31f754e93fed8aa266a17335f71bb0afa7fca1a1e climate_control (1.2.0) sha256=36b21896193fa8c8536fa1cd843a07cf8ddbd03aaba43665e26c53ec1bd70aa5 concurrent-ruby (1.3.5) sha256=813b3e37aca6df2a21a3b9f1d497f8cbab24a2b94cab325bffe65ee0f6cbebc6 From 0068c285f8c0f7087147fd6a6063d41bc5b41751 Mon Sep 17 00:00:00 2001 From: Gil Desmarais Date: Fri, 30 May 2025 13:40:22 +0200 Subject: [PATCH 2/3] spec: change expected error --- spec/routes/auto_source_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/routes/auto_source_spec.rb b/spec/routes/auto_source_spec.rb index 0dd2b737..17a35d4f 100644 --- a/spec/routes/auto_source_spec.rb +++ b/spec/routes/auto_source_spec.rb @@ -94,7 +94,7 @@ def app = described_class it 'responds with Error', :aggregate_failures do expect(response.status).to eq 422 - expect(response.body).to match(/Html2rss::Config::InvalidConfig/) + expect(response.body).to match(/Html2rss::RequestService::UnknownStrategy/) end end end From a99a68b68ba03f8cc9f738d3a03ac9ff381b6560 Mon Sep 17 00:00:00 2001 From: Gil Desmarais Date: Fri, 30 May 2025 13:47:15 +0200 Subject: [PATCH 3/3] use different config for docker-test --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 7ec7bddc..5e686ae0 100644 --- a/Rakefile +++ b/Rakefile @@ -52,7 +52,7 @@ task :test do sh 'docker ps -a --filter name=html2rss-web-test' Output.describe 'Generating feed from a html2rss-configs config' - sh 'curl -f http://127.0.0.1:3000/dfs.de/pressemitteilungen.rss || exit 1' + sh 'curl -f "http://127.0.0.1:3000/github.com/releases.rss?username=html2rss&repository=html2rss-web" || exit 1' Output.describe 'Generating example feed from feeds.yml' sh 'curl -f http://127.0.0.1:3000/example.rss || exit 1'