From d3063f844d695ff1c3c1639848c3dc065a73275c Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Sat, 10 Dec 2022 15:52:12 +1030 Subject: [PATCH 01/62] Remove facebook auth. They wanted to dictate the behaviour of an application they didn't own, so I told them to get stuffed a few years ago --- Gemfile | 1 - Gemfile.lock | 13 ------------- app/controllers/members_controller.rb | 1 - app/controllers/omniauth_callbacks_controller.rb | 6 +----- app/controllers/registrations_controller.rb | 1 - app/views/devise/registrations/_edit_apps.html.haml | 13 ------------- app/views/members/_contact.html.haml | 7 +------ app/views/members/show.html.haml | 3 +-- 8 files changed, 3 insertions(+), 42 deletions(-) diff --git a/Gemfile b/Gemfile index 03576d364..c612af7e6 100644 --- a/Gemfile +++ b/Gemfile @@ -94,7 +94,6 @@ gem "bootstrap_form", ">= 4.5.0" # For connecting to other services (eg Twitter) gem 'omniauth', '~> 1.3' -gem 'omniauth-facebook' gem 'omniauth-flickr', '>= 0.0.15' gem 'omniauth-twitter' diff --git a/Gemfile.lock b/Gemfile.lock index bddcd7ac4..31b80d4ca 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -338,7 +338,6 @@ GEM concurrent-ruby railties (>= 4.1) jsonapi-swagger (0.8.1) - jwt (2.3.0) kgio (2.11.4) kramdown (2.4.0) rexml @@ -397,27 +396,16 @@ GEM mini_portile2 (~> 2.8.0) racc (~> 1.4) oauth (0.5.6) - oauth2 (1.4.9) - faraday (>= 0.17.3, < 3.0) - jwt (>= 1.0, < 3.0) - multi_json (~> 1.3) - multi_xml (~> 0.5) - rack (>= 1.2, < 3) oj (3.13.23) omniauth (1.9.2) hashie (>= 3.4.6) rack (>= 1.6.2, < 3) - omniauth-facebook (9.0.0) - omniauth-oauth2 (~> 1.2) omniauth-flickr (0.0.20) multi_json (~> 1.12) omniauth-oauth (~> 1.0) omniauth-oauth (1.1.0) oauth omniauth (~> 1.0) - omniauth-oauth2 (1.7.2) - oauth2 (~> 1.4) - omniauth (>= 1.9, < 3) omniauth-twitter (1.4.0) omniauth-oauth (~> 1.1) rack @@ -713,7 +701,6 @@ DEPENDENCIES memcachier oj omniauth (~> 1.3) - omniauth-facebook omniauth-flickr (>= 0.0.15) omniauth-twitter percy-capybara (~> 5.0.0) diff --git a/app/controllers/members_controller.rb b/app/controllers/members_controller.rb index 021460c99..1211e870e 100644 --- a/app/controllers/members_controller.rb +++ b/app/controllers/members_controller.rb @@ -18,7 +18,6 @@ class MembersController < ApplicationController @member = Member.confirmed.kept.find_by!(slug: params[:slug]) @twitter_auth = @member.auth('twitter') @flickr_auth = @member.auth('flickr') - @facebook_auth = @member.auth('facebook') @posts = @member.posts @activity = TimelineService.member_query(@member).limit(30) diff --git a/app/controllers/omniauth_callbacks_controller.rb b/app/controllers/omniauth_callbacks_controller.rb index c9243c89b..f01ad3d71 100644 --- a/app/controllers/omniauth_callbacks_controller.rb +++ b/app/controllers/omniauth_callbacks_controller.rb @@ -9,10 +9,6 @@ require './lib/actions/oauth_signup_action' # Heavily overlaps with Authentications controller # class OmniauthCallbacksController < Devise::OmniauthCallbacksController - def facebook - create - end - def failure flash[:alert] = "Authentication failed." redirect_to request.env['omniauth.origin'] || "/" @@ -32,7 +28,7 @@ class OmniauthCallbacksController < Devise::OmniauthCallbacksController @authentication = action.establish_authentication(auth, member) if action.member_created? - raise "Invalid provider" unless %w(facebook twitter flickr).index(auth['provider'].to_s) + raise "Invalid provider" unless %w(twitter flickr).index(auth['provider'].to_s) session["devise.#{auth['provider']}_data"] = request.env["omniauth.auth"] sign_in member diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb index 530321233..29cc5e1b1 100644 --- a/app/controllers/registrations_controller.rb +++ b/app/controllers/registrations_controller.rb @@ -6,7 +6,6 @@ class RegistrationsController < Devise::RegistrationsController def edit @twitter_auth = current_member.auth('twitter') @flickr_auth = current_member.auth('flickr') - @facebook_auth = current_member.auth('facebook') render "edit" end diff --git a/app/views/devise/registrations/_edit_apps.html.haml b/app/views/devise/registrations/_edit_apps.html.haml index da6e88470..f47316b6f 100644 --- a/app/views/devise/registrations/_edit_apps.html.haml +++ b/app/views/devise/registrations/_edit_apps.html.haml @@ -29,16 +29,3 @@ - else = link_to 'Connect to Flickr', '/members/auth/flickr', class: 'btn' - .row - .col-md-12 - %p - = image_tag "facebook_32.png", size: "32x32", alt: 'Facebook logo' - - if @facebook_auth - You are connected to Facebook as - = succeed "." do - = link_to @facebook_auth.name, "https://facebook.com/profile/#{@facebook_auth.uid}" - = link_to "Disconnect", @facebook_auth, - confirm: "Are you sure you want to remove this connection?", - method: :delete, class: "remove btn btn-danger" - - else - = link_to 'Connect to Facebook', '/members/auth/facebook', class: 'btn' diff --git a/app/views/members/_contact.html.haml b/app/views/members/_contact.html.haml index 69e1f60b0..d6bdb7cb9 100644 --- a/app/views/members/_contact.html.haml +++ b/app/views/members/_contact.html.haml @@ -1,4 +1,4 @@ -- if twitter_auth || flickr_auth || facebook_auth || member.show_email +- if twitter_auth || flickr_auth || member.show_email %h4 Contact - if twitter_auth @@ -11,11 +11,6 @@ = image_tag "flickr_32.png", size: "32x32", alt: 'Flickr logo' = link_to flickr_auth.name, "https://flickr.com/photos/#{flickr_auth.uid}" - - if facebook_auth - %p - = image_tag "facebook_32.png", size: "32x32", alt: 'Facebook logo' - = link_to facebook_auth.name, "https://facebook.com/profile/#{facebook_auth.uid}" - - if member.show_email %p Email: diff --git a/app/views/members/show.html.haml b/app/views/members/show.html.haml index 3f56bb4ef..2a62abac9 100644 --- a/app/views/members/show.html.haml +++ b/app/views/members/show.html.haml @@ -57,8 +57,7 @@ = render "stats", member: @member .card-footer = render "contact", member: @member, twitter_auth: @twitter_auth, - flickr_auth: @flickr_auth, - facebook_auth: @facebook_auth + flickr_auth: @flickr_auth .col-md-10 %section= render "map", member: @member From 07feb1cd8540075ca8d6394df382987d45aeb847 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Sat, 10 Dec 2022 15:54:58 +1030 Subject: [PATCH 02/62] Drop tests --- config/environments/test.rb | 13 ------------ env-example | 4 ---- lib/actions/oauth_signup_action.rb | 2 +- spec/features/signup_spec.rb | 33 ------------------------------ 4 files changed, 1 insertion(+), 51 deletions(-) diff --git a/config/environments/test.rb b/config/environments/test.rb index 1cfd2c15a..14276a429 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -104,16 +104,3 @@ Capybara.configure do |config| end OmniAuth.config.test_mode = true -# Fake the omniauth -OmniAuth.config.mock_auth[:facebook] = OmniAuth::AuthHash.new(provider: 'facebook', - uid: '123545', - info: { - name: "John Testerson", - nickname: 'JohnnyT', - email: 'example.oauth.facebook@example.com', - image: 'http://findicons.com/files/icons/1072/face_avatars/300/i04.png' - }, - credentials: { - token: "token", - secret: "donttell" - }) diff --git a/env-example b/env-example index a7d3ef65e..951611496 100644 --- a/env-example +++ b/env-example @@ -50,10 +50,6 @@ GROWSTUFF_TWITTER_SECRET="" GROWSTUFF_FLICKR_KEY="" GROWSTUFF_FLICKR_SECRET="" -# https://developers.facebook.com/ -GROWSTUFF_FACEBOOK_KEY="" -GROWSTUFF_FACEBOOK_SECRET="" - # Elasticsearch is used for flexible search and it requires another component # to be installed. To make it easy for people who don't need to test this feature # it's been turned off for test and development environment as a default. diff --git a/lib/actions/oauth_signup_action.rb b/lib/actions/oauth_signup_action.rb index a20741fb1..fe00fb305 100644 --- a/lib/actions/oauth_signup_action.rb +++ b/lib/actions/oauth_signup_action.rb @@ -63,7 +63,7 @@ class Growstuff::OauthSignupAction case auth['provider'] when 'twitter' auth['info']['nickname'] - when 'flickr', 'facebook' + when 'flickr' auth['info']['name'] else auth['info']['name'] diff --git a/spec/features/signup_spec.rb b/spec/features/signup_spec.rb index 687253a85..5dabbb02d 100644 --- a/spec/features/signup_spec.rb +++ b/spec/features/signup_spec.rb @@ -45,37 +45,4 @@ describe "signup", js: true do click_button 'Sign up' expect(page).to have_current_path members_path, ignore_query: true end - - context "with facebook" do - it "sign up" do - # Ordinarily done by database_cleaner - Member.where(login_name: 'tdawg').delete_all - Member.where(email: 'tdawg@hotmail.com').delete_all - Member.where(email: 'example.oauth.facebook@example.com').delete_all - Authentication.where(provider: 'facebook', uid: '123545').delete_all - - # Start the test - visit root_path - first('.signup a').click - - # Click the signup with facebook link - - first('a[href="/members/auth/facebook"]').click - # Magic happens! - # See config/environments/test.rb for the fake user - # that we pretended to auth as - - # Confirm page - expect(page).to have_current_path '/members/johnnyt/finish_signup' - - fill_in 'Login name', with: 'tdawg' - fill_in 'Email', with: 'tdawg@hotmail.com' - check 'member_tos_agreement' - click_button 'Continue' - - # Signed up and logged in - expect(page).to have_current_path root_path, ignore_query: true - expect(page.text).to include("Welcome to #{ENV['GROWSTUFF_SITE_NAME']}, tdawg") - end - end end From 28d550d67f5fb0d088ed1e39398f06009c4d7aa4 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Sat, 10 Dec 2022 15:55:57 +1030 Subject: [PATCH 03/62] Drop test --- config/initializers/devise.rb | 4 ---- spec/features/signin_spec.rb | 24 ------------------------ 2 files changed, 28 deletions(-) diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb index 9e5b06c66..4990573d1 100644 --- a/config/initializers/devise.rb +++ b/config/initializers/devise.rb @@ -233,8 +233,4 @@ Devise.setup do |config| # When using omniauth, Devise cannot automatically set Omniauth path, # so you need to do it manually. For the users scope, it would be: # config.omniauth_path_prefix = "/my_engine/users/auth" - - # Later we may wish to ask for user_photos,user_location, however this means we need to be reviewed by facebook - config.omniauth :facebook, ENV['GROWSTUFF_FACEBOOK_KEY'], ENV['GROWSTUFF_FACEBOOK_SECRET'], scope: 'email,public_profile', -display: 'page', info_fields: 'email,name,first_name,last_name,id' end diff --git a/spec/features/signin_spec.rb b/spec/features/signin_spec.rb index 6ea441989..aa9082bd3 100644 --- a/spec/features/signin_spec.rb +++ b/spec/features/signin_spec.rb @@ -82,28 +82,4 @@ describe "signin", js: true do click_button 'Sign in' expect(page).to have_content("There are crops waiting to be wrangled.") end - - context "with facebook" do - it "sign in" do - # Ordinarily done by database_cleaner - Member.where(login_name: 'tdawg').delete_all - - create(:member, login_name: 'tdawg', email: 'example.oauth.facebook@example.com') - - # Start the test - visit root_path - first('.signup a').click - - # Click the signup with facebook link - - first('a[href="/members/auth/facebook"]').click - # Magic happens! - # See config/environments/test.rb for the fake user - # that we pretended to auth as - - # Signed up and logged in - expect(page).to have_current_path root_path, ignore_query: true - expect(page.text).to include("Welcome to #{ENV['GROWSTUFF_SITE_NAME']}, tdawg") - end - end end From dd7c51ea8834624a66bd5273d224d9358c1af09a Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Sat, 10 Dec 2022 16:13:11 +1030 Subject: [PATCH 04/62] Update _edit_apps.html.haml --- app/views/devise/registrations/_edit_apps.html.haml | 1 - 1 file changed, 1 deletion(-) diff --git a/app/views/devise/registrations/_edit_apps.html.haml b/app/views/devise/registrations/_edit_apps.html.haml index f47316b6f..e4bcf487e 100644 --- a/app/views/devise/registrations/_edit_apps.html.haml +++ b/app/views/devise/registrations/_edit_apps.html.haml @@ -28,4 +28,3 @@ method: :delete, class: "remove btn btn-danger" - else = link_to 'Connect to Flickr', '/members/auth/flickr', class: 'btn' - From 74f2ffe86e1eb4749bf87aff16667deba818b63e Mon Sep 17 00:00:00 2001 From: Italo Pires Date: Sat, 10 Dec 2022 18:38:11 -0300 Subject: [PATCH 05/62] Fix test warning about assert link with capybara --- spec/views/scientific_names/edit.html.haml_spec.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spec/views/scientific_names/edit.html.haml_spec.rb b/spec/views/scientific_names/edit.html.haml_spec.rb index 15c904e07..29ce06940 100644 --- a/spec/views/scientific_names/edit.html.haml_spec.rb +++ b/spec/views/scientific_names/edit.html.haml_spec.rb @@ -18,7 +18,9 @@ describe "scientific_names/edit" do expect(rendered).to have_content "Added by #{member} less than a minute ago." end - xit { expect(rendered).to have_link member_path(member) } + it "shows member link" do + expect(rendered).to have_link member.login_name, href: member_path(member) + end it "renders the edit scientific_name form" do assert_select "form", action: scientific_names_path(scientific_name), method: "post" do From 24ac3fc9be8b044893056251734c3304dd99739e Mon Sep 17 00:00:00 2001 From: Italo Pires Date: Sat, 10 Dec 2022 18:42:13 -0300 Subject: [PATCH 06/62] Rename it from shows to render --- spec/views/scientific_names/edit.html.haml_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/views/scientific_names/edit.html.haml_spec.rb b/spec/views/scientific_names/edit.html.haml_spec.rb index 29ce06940..2e31efb0a 100644 --- a/spec/views/scientific_names/edit.html.haml_spec.rb +++ b/spec/views/scientific_names/edit.html.haml_spec.rb @@ -18,7 +18,7 @@ describe "scientific_names/edit" do expect(rendered).to have_content "Added by #{member} less than a minute ago." end - it "shows member link" do + it "render member link" do expect(rendered).to have_link member.login_name, href: member_path(member) end From 5faf99016794130cf5b3c59aed516e04e3376335 Mon Sep 17 00:00:00 2001 From: Italo Pires Date: Sat, 10 Dec 2022 18:50:17 -0300 Subject: [PATCH 07/62] Removed white space --- spec/views/scientific_names/edit.html.haml_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/views/scientific_names/edit.html.haml_spec.rb b/spec/views/scientific_names/edit.html.haml_spec.rb index 2e31efb0a..0b148032b 100644 --- a/spec/views/scientific_names/edit.html.haml_spec.rb +++ b/spec/views/scientific_names/edit.html.haml_spec.rb @@ -18,7 +18,7 @@ describe "scientific_names/edit" do expect(rendered).to have_content "Added by #{member} less than a minute ago." end - it "render member link" do + it "render member link" do expect(rendered).to have_link member.login_name, href: member_path(member) end From 8951ae471999927ee7c5fe1eb03456e8c7e4206b Mon Sep 17 00:00:00 2001 From: Italo Pires Date: Mon, 12 Dec 2022 15:30:41 -0300 Subject: [PATCH 08/62] Added myself to CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index cdd60ca49..5362e2f72 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -92,6 +92,7 @@ submit the change with your pull request. - André Aubin / [lambda2](https://github.com/lambda2) - Martina Simicic / [simicic](https://github.com/simicic) - Rowan Crawford / [wombleton](https://github.com/wombleton) +- Ítalo Pires / [italopires](https://github.com/italopires) ## Bots From f677500d2e862f947df5690a8e98333d5301f0a6 Mon Sep 17 00:00:00 2001 From: Cesy Avon Date: Thu, 15 Jun 2017 17:17:11 +0000 Subject: [PATCH 09/62] Empty fails on nil, better to use present instead --- app/views/members/_stats.html.haml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/views/members/_stats.html.haml b/app/views/members/_stats.html.haml index 7b7d667f6..86f08adc1 100644 --- a/app/views/members/_stats.html.haml +++ b/app/views/members/_stats.html.haml @@ -2,39 +2,39 @@ %h3 Activity %ul.list-group.list-group-flush %li.list-group-item - - if !member.gardens.empty? + - if member.gardens.present? = link_to localize_plural(member.gardens, Garden), member_gardens_path(member) - else 0 gardens %li.list-group-item - - if !member.plantings.empty? + - if member.plantings.present? = link_to localize_plural(member.plantings, Planting), member_plantings_path(member) - else 0 plantings %li.list-group-item - - if !member.harvests.empty? + - if member.harvests.present? = link_to localize_plural(member.harvests, Harvest), member_harvests_path(member) - else 0 harvests %li.list-group-item - - if !member.seeds.empty? + - if member.seeds.present? = link_to localize_plural(member.seeds, Seed), member_seeds_path(member) - else 0 seeds %li.list-group-item - - if !member.posts.empty? + - if member.posts.present? = link_to localize_plural(member.posts, Post), member_posts_path(member) - else 0 posts %li.list-group-item - - if !member.followed.empty? + - if member.followed.present? = link_to localize_plural(member.followed, Follow), member_follows_path(member) - else 0 following %li.list-group-item - - if !member.followers.empty? + - if member.followers.present? = link_to pluralize(member.followers.size, "follower"), member_followers_path(member) - else 0 followers From 0a9afe03d99986855927348f3e7bfba275fe6b2d Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Thu, 15 Dec 2022 22:28:38 +1030 Subject: [PATCH 10/62] Fix #2743 Remove doubled crops entry --- swagger/v1/swagger.json | 7 ------- 1 file changed, 7 deletions(-) diff --git a/swagger/v1/swagger.json b/swagger/v1/swagger.json index 11d215f1d..575c5423a 100644 --- a/swagger/v1/swagger.json +++ b/swagger/v1/swagger.json @@ -92,13 +92,6 @@ "type": "string", "description": "Display field", "required": false - }, - { - "name": "fields[crops]", - "in": "query", - "type": "string", - "description": "Display field", - "required": false } ], "responses": { From 0938e6b7a9e50a88f41cb3fa3a99ce9123aa37b3 Mon Sep 17 00:00:00 2001 From: Cesy Date: Thu, 15 Dec 2022 13:34:35 +0000 Subject: [PATCH 11/62] Revert "Revert "Update ruby version to 3.1.3"" This reverts commit d479c0d90614806e741151b88957be99b1a2cedb. --- .ruby-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ruby-version b/.ruby-version index 6ebad1488..ff365e06b 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.1.2 \ No newline at end of file +3.1.3 From 5025f6c3f0eb925643b0ed01db33803ab18353c1 Mon Sep 17 00:00:00 2001 From: Cesy Date: Thu, 15 Dec 2022 13:35:49 +0000 Subject: [PATCH 12/62] Revert "Revert "Finishing updating ruby"" This reverts commit 2eaf9ca4006704454190c700cd39f225e48ec636. --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index ffd37321b..9cb3ba360 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -759,7 +759,7 @@ DEPENDENCIES xmlrpc RUBY VERSION - ruby 3.1.2p20 + ruby 3.1.3p185 BUNDLED WITH - 2.3.11 + 2.3.26 From d5ecdb98386e4b20b328c2319c0c926c2845cee3 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Sun, 18 Dec 2022 13:55:39 +1030 Subject: [PATCH 13/62] Update swagger.json --- swagger/v1/swagger.json | 155 +++++++++++++++++++--------------------- 1 file changed, 74 insertions(+), 81 deletions(-) diff --git a/swagger/v1/swagger.json b/swagger/v1/swagger.json index 575c5423a..9ac938a56 100644 --- a/swagger/v1/swagger.json +++ b/swagger/v1/swagger.json @@ -125,32 +125,32 @@ "name": { "type": "string", "x-nullable": false, - "description": null + "description": "Name" }, "en_wikipedia_url": { "type": "string", "x-nullable": true, - "description": null + "description": "Wikipedia URL (English)" }, "perennial": { "type": "boolean", "x-nullable": true, - "description": null + "description": "Is the item perennial? (A plant that lives more than two years)" }, "median_lifespan": { "type": "integer", "x-nullable": true, - "description": null + "description": "Median lifespan" }, "median_days_to_first_harvest": { "type": "integer", "x-nullable": true, - "description": null + "description": "Median days to first harvest" }, "median_days_to_last_harvest": { "type": "integer", "x-nullable": true, - "description": null + "description": "Median days to last harvest" } }, "description": "Attributes" @@ -364,13 +364,6 @@ "type": "string", "description": "Display field", "required": false - }, - { - "name": "fields[crops]", - "in": "query", - "type": "string", - "description": "Display field", - "required": false } ], "responses": { @@ -406,32 +399,32 @@ "name": { "type": "string", "x-nullable": false, - "description": null + "description": "Name" }, "en_wikipedia_url": { "type": "string", "x-nullable": true, - "description": null + "description": "Wikipedia URL (English)" }, "perennial": { "type": "boolean", "x-nullable": true, - "description": null + "description": "Is the item perennial? (A plant that lives more than two years)" }, "median_lifespan": { "type": "integer", "x-nullable": true, - "description": null + "description": "Median lifespan" }, "median_days_to_first_harvest": { "type": "integer", "x-nullable": true, - "description": null + "description": "Median days to first harvest" }, "median_days_to_last_harvest": { "type": "integer", "x-nullable": true, - "description": null + "description": "Median days to last harvest" } }, "description": "Attributes" @@ -659,7 +652,7 @@ "name": { "type": "string", "x-nullable": false, - "description": null + "description": "Name" } }, "description": "Attributes" @@ -861,7 +854,7 @@ "name": { "type": "string", "x-nullable": false, - "description": null + "description": "Name" } }, "description": "Attributes" @@ -1077,12 +1070,12 @@ "login_name": { "type": "string", "x-nullable": true, - "description": null + "description": "Login name" }, "slug": { "type": "string", "x-nullable": true, - "description": null + "description": "Slug" } }, "description": "Attributes" @@ -1338,12 +1331,12 @@ "login_name": { "type": "string", "x-nullable": true, - "description": null + "description": "Login name" }, "slug": { "type": "string", "x-nullable": true, - "description": null + "description": "Slug" } }, "description": "Attributes" @@ -1578,32 +1571,32 @@ "harvested_at": { "type": "string", "x-nullable": true, - "description": null + "description": "Harvested date time" }, "description": { "type": "string", "x-nullable": true, - "description": null + "description": "Description" }, "unit": { "type": "string", "x-nullable": true, - "description": null + "description": "Unit" }, "weight_quantity": { "type": "string", "x-nullable": true, - "description": null + "description": "Weight/Quanitity" }, "weight_unit": { "type": "string", "x-nullable": true, - "description": null + "description": "Weight Unit" }, "si_weight": { "type": "string", "x-nullable": true, - "description": null + "description": "SI Weight" } }, "description": "Attributes" @@ -1832,32 +1825,32 @@ "harvested_at": { "type": "string", "x-nullable": true, - "description": null + "description": "Harvested datetime" }, "description": { "type": "string", "x-nullable": true, - "description": null + "description": "Description" }, "unit": { "type": "string", "x-nullable": true, - "description": null + "description": "Unit" }, "weight_quantity": { "type": "string", "x-nullable": true, - "description": null + "description": "Weight/Quantity" }, "weight_unit": { "type": "string", "x-nullable": true, - "description": null + "description": "Weight Unit" }, "si_weight": { "type": "string", "x-nullable": true, - "description": null + "description": "SI Weight" } }, "description": "Attributes" @@ -2058,47 +2051,47 @@ "description": { "type": "string", "x-nullable": true, - "description": null + "description": "Description" }, "quantity": { "type": "integer", "x-nullable": true, - "description": null + "description": "Quanitity" }, "plant_before": { "type": "string", "x-nullable": true, - "description": null + "description": "Plant before" }, "tradable_to": { "type": "string", "x-nullable": true, - "description": null + "description": "Tradeable to" }, "days_until_maturity_min": { "type": "integer", "x-nullable": true, - "description": null + "description": "Days until maturity (min)" }, "days_until_maturity_max": { "type": "integer", "x-nullable": true, - "description": null + "description": "Days until maturity (max)" }, "organic": { "type": "string", "x-nullable": true, - "description": null + "description": "Organic" }, "gmo": { "type": "string", "x-nullable": true, - "description": null + "description": "GMO" }, "heirloom": { "type": "string", "x-nullable": true, - "description": null + "description": "Heirloom" } }, "description": "Attributes" @@ -2273,47 +2266,47 @@ "description": { "type": "string", "x-nullable": true, - "description": null + "description": "Description" }, "quantity": { "type": "integer", "x-nullable": true, - "description": null + "description": "Quanity" }, "plant_before": { "type": "string", "x-nullable": true, - "description": null + "description": "Plant before" }, "tradable_to": { "type": "string", "x-nullable": true, - "description": null + "description": "Tradable to" }, "days_until_maturity_min": { "type": "integer", "x-nullable": true, - "description": null + "description": "Days until maturity (min)" }, "days_until_maturity_max": { "type": "integer", "x-nullable": true, - "description": null + "description": "Days until maturity (max)" }, "organic": { "type": "string", "x-nullable": true, - "description": null + "description": "Organic" }, "gmo": { "type": "string", "x-nullable": true, - "description": null + "description": "GMO" }, "heirloom": { "type": "string", "x-nullable": true, - "description": null + "description": "Heirloom" } }, "description": "Attributes" @@ -2530,42 +2523,42 @@ "slug": { "type": "string", "x-nullable": true, - "description": null + "description": "Slug" }, "planted_at": { "type": "string", "x-nullable": true, - "description": null + "description": "Planted at" }, "finished": { "type": "boolean", "x-nullable": false, - "description": null + "description": "Finished?" }, "finished_at": { "type": "string", "x-nullable": true, - "description": null + "description": "Finished at" }, "quantity": { "type": "integer", "x-nullable": true, - "description": null + "description": "Quanity" }, "description": { "type": "string", "x-nullable": true, - "description": null + "description": "Description" }, "sunniness": { "type": "string", "x-nullable": true, - "description": null + "description": "Sunniness" }, "planted_from": { "type": "string", "x-nullable": true, - "description": null + "description": "Planted from" } }, "description": "Attributes" @@ -2794,42 +2787,42 @@ "slug": { "type": "string", "x-nullable": true, - "description": null + "description": "Slug" }, "planted_at": { "type": "string", "x-nullable": true, - "description": null + "description": "Planted at" }, "finished": { "type": "boolean", "x-nullable": false, - "description": null + "description": "Finished?" }, "finished_at": { "type": "string", "x-nullable": true, - "description": null + "description": "Finished at" }, "quantity": { "type": "integer", "x-nullable": true, - "description": null + "description": "Quantity" }, "description": { "type": "string", "x-nullable": true, - "description": null + "description": "Description" }, "sunniness": { "type": "string", "x-nullable": true, - "description": null + "description": "Sunniness" }, "planted_from": { "type": "string", "x-nullable": true, - "description": null + "description": "Planted from" } }, "description": "Attributes" @@ -3044,27 +3037,27 @@ "thumbnail_url": { "type": "string", "x-nullable": false, - "description": null + "description": "Thumbnail URL" }, "fullsize_url": { "type": "string", "x-nullable": false, - "description": null + "description": "Full-size URL" }, "license_name": { "type": "string", "x-nullable": false, - "description": null + "description": "License name" }, "link_url": { "type": "string", "x-nullable": false, - "description": null + "description": "Link URL" }, "title": { "type": "string", "x-nullable": false, - "description": null + "description": "Title" } }, "description": "Attributes" @@ -3293,27 +3286,27 @@ "thumbnail_url": { "type": "string", "x-nullable": false, - "description": null + "description": "Thumbnail URL" }, "fullsize_url": { "type": "string", "x-nullable": false, - "description": null + "description": "Full-size URL" }, "license_name": { "type": "string", "x-nullable": false, - "description": null + "description": "License name" }, "link_url": { "type": "string", "x-nullable": false, - "description": null + "description": "Link URL" }, "title": { "type": "string", "x-nullable": false, - "description": null + "description": "Title" } }, "description": "Attributes" From 4830228436d5abf24549fc57b1fc03a8ba7ff0b1 Mon Sep 17 00:00:00 2001 From: Cesy Date: Sun, 18 Dec 2022 10:09:00 +0000 Subject: [PATCH 14/62] Revert "Reupgrade ruby" --- .ruby-version | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ruby-version b/.ruby-version index ff365e06b..6ebad1488 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.1.3 +3.1.2 \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index a689ea755..ad5bce015 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -746,7 +746,7 @@ DEPENDENCIES xmlrpc RUBY VERSION - ruby 3.1.3p185 + ruby 3.1.2p20 BUNDLED WITH - 2.3.26 + 2.3.11 From 145ae184acce683bd5dc81ad76ec0747353ddff0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Dec 2022 07:01:22 +0000 Subject: [PATCH 15/62] Bump rack-protection from 3.0.4 to 3.0.5 Bumps [rack-protection](https://github.com/sinatra/sinatra) from 3.0.4 to 3.0.5. - [Release notes](https://github.com/sinatra/sinatra/releases) - [Changelog](https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md) - [Commits](https://github.com/sinatra/sinatra/compare/v3.0.4...v3.0.5) --- updated-dependencies: - dependency-name: rack-protection dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index ad5bce015..06d8347b7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -431,7 +431,7 @@ GEM rack (2.2.4) rack-cors (1.1.1) rack (>= 2.0.0) - rack-protection (3.0.4) + rack-protection (3.0.5) rack rack-test (2.0.2) rack (>= 1.3) From c4dfa09e49913fcf6ce54a9dbf2c0e8e747ec276 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Dec 2022 07:02:10 +0000 Subject: [PATCH 16/62] Bump puma from 6.0.0 to 6.0.1 Bumps [puma](https://github.com/puma/puma) from 6.0.0 to 6.0.1. - [Release notes](https://github.com/puma/puma/releases) - [Changelog](https://github.com/puma/puma/blob/master/History.md) - [Commits](https://github.com/puma/puma/compare/v6.0.0...v6.0.1) --- updated-dependencies: - dependency-name: puma dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 06d8347b7..870633c1d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -424,7 +424,7 @@ GEM rate_throttle_client (~> 0.1.0) popper_js (1.16.1) public_suffix (5.0.0) - puma (6.0.0) + puma (6.0.1) nio4r (~> 2.0) query_diet (0.7.1) racc (1.6.1) From f0667cdbf555451762ac37915480d9353440482b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Dec 2022 02:43:35 +0000 Subject: [PATCH 17/62] Bump rubocop from 1.40.0 to 1.41.1 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.40.0 to 1.41.1. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.40.0...v1.41.1) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 870633c1d..3fc3095f5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -527,7 +527,7 @@ GEM rswag-ui (2.8.0) actionpack (>= 3.1, < 7.1) railties (>= 3.1, < 7.1) - rubocop (1.40.0) + rubocop (1.41.1) json (~> 2.3) parallel (~> 1.10) parser (>= 3.1.2.1) From 05cbed55d1072f176cb203ede246c6c914b3f8a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Dec 2022 07:00:44 +0000 Subject: [PATCH 18/62] Bump faker from 3.0.0 to 3.1.0 Bumps [faker](https://github.com/faker-ruby/faker) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/faker-ruby/faker/releases) - [Changelog](https://github.com/faker-ruby/faker/blob/main/CHANGELOG.md) - [Commits](https://github.com/faker-ruby/faker/compare/v3.0.0...v3.1.0) --- updated-dependencies: - dependency-name: faker dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 3fc3095f5..e947fe892 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -232,7 +232,7 @@ GEM factory_bot_rails (6.2.0) factory_bot (~> 6.2.0) railties (>= 5.0.0) - faker (3.0.0) + faker (3.1.0) i18n (>= 1.8.11, < 2) faraday (1.10.2) faraday-em_http (~> 1.0) From 913cb48be895dd6186a01b6e9d0055ad5dc9e198 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Dec 2022 10:40:36 +0000 Subject: [PATCH 19/62] Bump rubocop-rails from 2.17.3 to 2.17.4 Bumps [rubocop-rails](https://github.com/rubocop/rubocop-rails) from 2.17.3 to 2.17.4. - [Release notes](https://github.com/rubocop/rubocop-rails/releases) - [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-rails/compare/v2.17.3...v2.17.4) --- updated-dependencies: - dependency-name: rubocop-rails dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index e947fe892..8c03310e0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -539,7 +539,7 @@ GEM unicode-display_width (>= 1.4.0, < 3.0) rubocop-ast (1.24.0) parser (>= 3.1.1.0) - rubocop-rails (2.17.3) + rubocop-rails (2.17.4) activesupport (>= 4.2.0) rack (>= 1.1) rubocop (>= 1.33.0, < 2.0) From eeb62c488a408a61e2e45c9d730183ebf7a446de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Jan 2023 07:02:55 +0000 Subject: [PATCH 20/62] Bump puma from 6.0.1 to 6.0.2 Bumps [puma](https://github.com/puma/puma) from 6.0.1 to 6.0.2. - [Release notes](https://github.com/puma/puma/releases) - [Changelog](https://github.com/puma/puma/blob/master/History.md) - [Commits](https://github.com/puma/puma/compare/v6.0.1...v6.0.2) --- updated-dependencies: - dependency-name: puma dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 8c03310e0..76a17c761 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -424,7 +424,7 @@ GEM rate_throttle_client (~> 0.1.0) popper_js (1.16.1) public_suffix (5.0.0) - puma (6.0.1) + puma (6.0.2) nio4r (~> 2.0) query_diet (0.7.1) racc (1.6.1) From 9ba879a458ac789fa5cf921a6db30f5e66dacf18 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Jan 2023 00:36:17 +0000 Subject: [PATCH 21/62] Bump rubocop from 1.41.1 to 1.42.0 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.41.1 to 1.42.0. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.41.1...v1.42.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 76a17c761..29f5cc923 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -527,17 +527,17 @@ GEM rswag-ui (2.8.0) actionpack (>= 3.1, < 7.1) railties (>= 3.1, < 7.1) - rubocop (1.41.1) + rubocop (1.42.0) json (~> 2.3) parallel (~> 1.10) parser (>= 3.1.2.1) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.23.0, < 2.0) + rubocop-ast (>= 1.24.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.24.0) + rubocop-ast (1.24.1) parser (>= 3.1.1.0) rubocop-rails (2.17.4) activesupport (>= 4.2.0) From 3823981b5a3ac4ae129df59f57401f4ef135abc1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Jan 2023 00:53:18 +0000 Subject: [PATCH 22/62] Bump bullet from 7.0.4 to 7.0.5 Bumps [bullet](https://github.com/flyerhzm/bullet) from 7.0.4 to 7.0.5. - [Release notes](https://github.com/flyerhzm/bullet/releases) - [Changelog](https://github.com/flyerhzm/bullet/blob/main/CHANGELOG.md) - [Commits](https://github.com/flyerhzm/bullet/compare/7.0.4...7.0.5) --- updated-dependencies: - dependency-name: bullet dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 29f5cc923..24fc0f07b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -139,7 +139,7 @@ GEM actionpack (>= 5.2) activemodel (>= 5.2) builder (3.2.4) - bullet (7.0.4) + bullet (7.0.5) activesupport (>= 3.0.0) uniform_notifier (~> 1.11) byebug (11.1.3) @@ -378,7 +378,7 @@ GEM mini_magick (4.11.0) mini_mime (1.1.2) mini_portile2 (2.8.0) - minitest (5.16.3) + minitest (5.17.0) moneta (1.0.0) multi_json (1.15.0) multi_xml (0.6.0) From 7827cda1f7fc634b8d80f082827b1eb873221bfe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Jan 2023 15:34:08 +0000 Subject: [PATCH 23/62] Bump httparty from 0.18.1 to 0.21.0 Bumps [httparty](https://github.com/jnunemaker/httparty) from 0.18.1 to 0.21.0. - [Release notes](https://github.com/jnunemaker/httparty/releases) - [Changelog](https://github.com/jnunemaker/httparty/blob/master/Changelog.md) - [Commits](https://github.com/jnunemaker/httparty/compare/v0.18.1...v0.21.0) --- updated-dependencies: - dependency-name: httparty dependency-type: indirect ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 24fc0f07b..82e8e6c55 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -302,8 +302,8 @@ GEM multi_json (>= 1.9.2) webrick highline (2.0.3) - httparty (0.18.1) - mime-types (~> 3.0) + httparty (0.21.0) + mini_mime (>= 1.0.0) multi_xml (>= 0.5.2) i18n (1.12.0) concurrent-ruby (~> 1.0) @@ -369,9 +369,6 @@ GEM memoizable (0.4.2) thread_safe (~> 0.3, >= 0.3.1) method_source (1.0.0) - mime-types (3.3.1) - mime-types-data (~> 3.2015) - mime-types-data (3.2020.0512) mimemagic (0.4.3) nokogiri (~> 1) rake From 28c84e4b9d79c71811f760150c7ab816d7330a7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Jan 2023 20:16:03 +0000 Subject: [PATCH 24/62] Bump bullet from 7.0.5 to 7.0.7 Bumps [bullet](https://github.com/flyerhzm/bullet) from 7.0.5 to 7.0.7. - [Release notes](https://github.com/flyerhzm/bullet/releases) - [Changelog](https://github.com/flyerhzm/bullet/blob/main/CHANGELOG.md) - [Commits](https://github.com/flyerhzm/bullet/compare/7.0.5...7.0.7) --- updated-dependencies: - dependency-name: bullet dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 82e8e6c55..b69a4c682 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -139,7 +139,7 @@ GEM actionpack (>= 5.2) activemodel (>= 5.2) builder (3.2.4) - bullet (7.0.5) + bullet (7.0.7) activesupport (>= 3.0.0) uniform_notifier (~> 1.11) byebug (11.1.3) From 50d1ab2d9a0d2662a21a7c9900780e75775733de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Jan 2023 00:47:23 +0000 Subject: [PATCH 25/62] Bump rack from 2.2.4 to 2.2.6.2 Bumps [rack](https://github.com/rack/rack) from 2.2.4 to 2.2.6.2. - [Release notes](https://github.com/rack/rack/releases) - [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md) - [Commits](https://github.com/rack/rack/compare/2.2.4...v2.2.6.2) --- updated-dependencies: - dependency-name: rack dependency-type: indirect ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index b69a4c682..8131ff50e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -425,7 +425,7 @@ GEM nio4r (~> 2.0) query_diet (0.7.1) racc (1.6.1) - rack (2.2.4) + rack (2.2.6.2) rack-cors (1.1.1) rack (>= 2.0.0) rack-protection (3.0.5) From 609a67c180725e70948099f1554a802a0e46e73b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Jan 2023 10:29:49 +0000 Subject: [PATCH 26/62] Bump rails from 7.0.4 to 7.0.4.1 Bumps [rails](https://github.com/rails/rails) from 7.0.4 to 7.0.4.1. - [Release notes](https://github.com/rails/rails/releases) - [Commits](https://github.com/rails/rails/compare/v7.0.4...v7.0.4.1) --- updated-dependencies: - dependency-name: rails dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 131 ++++++++++++++++++++++++++------------------------- 1 file changed, 68 insertions(+), 63 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 8131ff50e..e12112569 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -26,47 +26,47 @@ GEM remote: https://rubygems.org/ specs: abstract_type (0.0.7) - actioncable (7.0.4) - actionpack (= 7.0.4) - activesupport (= 7.0.4) + actioncable (7.0.4.1) + actionpack (= 7.0.4.1) + activesupport (= 7.0.4.1) nio4r (~> 2.0) websocket-driver (>= 0.6.1) - actionmailbox (7.0.4) - actionpack (= 7.0.4) - activejob (= 7.0.4) - activerecord (= 7.0.4) - activestorage (= 7.0.4) - activesupport (= 7.0.4) + actionmailbox (7.0.4.1) + actionpack (= 7.0.4.1) + activejob (= 7.0.4.1) + activerecord (= 7.0.4.1) + activestorage (= 7.0.4.1) + activesupport (= 7.0.4.1) mail (>= 2.7.1) net-imap net-pop net-smtp - actionmailer (7.0.4) - actionpack (= 7.0.4) - actionview (= 7.0.4) - activejob (= 7.0.4) - activesupport (= 7.0.4) + actionmailer (7.0.4.1) + actionpack (= 7.0.4.1) + actionview (= 7.0.4.1) + activejob (= 7.0.4.1) + activesupport (= 7.0.4.1) mail (~> 2.5, >= 2.5.4) net-imap net-pop net-smtp rails-dom-testing (~> 2.0) - actionpack (7.0.4) - actionview (= 7.0.4) - activesupport (= 7.0.4) + actionpack (7.0.4.1) + actionview (= 7.0.4.1) + activesupport (= 7.0.4.1) rack (~> 2.0, >= 2.2.0) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actiontext (7.0.4) - actionpack (= 7.0.4) - activerecord (= 7.0.4) - activestorage (= 7.0.4) - activesupport (= 7.0.4) + actiontext (7.0.4.1) + actionpack (= 7.0.4.1) + activerecord (= 7.0.4.1) + activestorage (= 7.0.4.1) + activesupport (= 7.0.4.1) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.0.4) - activesupport (= 7.0.4) + actionview (7.0.4.1) + activesupport (= 7.0.4.1) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) @@ -81,22 +81,22 @@ GEM active_utils (3.3.19) activesupport (>= 4.2) i18n - activejob (7.0.4) - activesupport (= 7.0.4) + activejob (7.0.4.1) + activesupport (= 7.0.4.1) globalid (>= 0.3.6) - activemodel (7.0.4) - activesupport (= 7.0.4) - activerecord (7.0.4) - activemodel (= 7.0.4) - activesupport (= 7.0.4) - activestorage (7.0.4) - actionpack (= 7.0.4) - activejob (= 7.0.4) - activerecord (= 7.0.4) - activesupport (= 7.0.4) + activemodel (7.0.4.1) + activesupport (= 7.0.4.1) + activerecord (7.0.4.1) + activemodel (= 7.0.4.1) + activesupport (= 7.0.4.1) + activestorage (7.0.4.1) + actionpack (= 7.0.4.1) + activejob (= 7.0.4.1) + activerecord (= 7.0.4.1) + activesupport (= 7.0.4.1) marcel (~> 1.0) mini_mime (>= 1.1.0) - activesupport (7.0.4) + activesupport (7.0.4.1) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -195,6 +195,7 @@ GEM activerecord (>= 5.a) database_cleaner-core (~> 2.0.0) database_cleaner-core (2.0.1) + date (3.3.3) devise (4.8.1) bcrypt (~> 3.0) orm_adapter (~> 0.1) @@ -223,7 +224,7 @@ GEM faraday (~> 1) multi_json equalizer (0.0.11) - erubi (1.11.0) + erubi (1.12.0) erubis (2.7.0) excon (0.93.1) execjs (2.8.1) @@ -269,7 +270,7 @@ GEM gibbon (1.2.1) httparty multi_json (>= 1.9.0) - globalid (1.0.0) + globalid (1.0.1) activesupport (>= 5.0) gravatar-ultimate (2.0.0) activesupport (>= 2.3.14) @@ -353,8 +354,11 @@ GEM loofah (2.19.1) crass (~> 1.0.2) nokogiri (>= 1.5.9) - mail (2.7.1) + mail (2.8.0.1) mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp mailboxer (0.15.1) carrierwave (>= 0.5.8) rails (>= 5.0.0) @@ -374,25 +378,26 @@ GEM rake mini_magick (4.11.0) mini_mime (1.1.2) - mini_portile2 (2.8.0) + mini_portile2 (2.8.1) minitest (5.17.0) moneta (1.0.0) multi_json (1.15.0) multi_xml (0.6.0) multipart-post (2.2.3) - net-imap (0.3.1) + net-imap (0.3.4) + date net-protocol net-pop (0.1.2) net-protocol - net-protocol (0.1.3) + net-protocol (0.2.1) timeout net-smtp (0.3.3) net-protocol nio4r (2.5.8) - nokogiri (1.13.10) + nokogiri (1.14.0) mini_portile2 (~> 2.8.0) racc (~> 1.4) - nokogiri (1.13.10-x86_64-linux) + nokogiri (1.14.0-x86_64-linux) racc (~> 1.4) oauth (0.5.6) oj (3.13.23) @@ -424,7 +429,7 @@ GEM puma (6.0.2) nio4r (~> 2.0) query_diet (0.7.1) - racc (1.6.1) + racc (1.6.2) rack (2.2.6.2) rack-cors (1.1.1) rack (>= 2.0.0) @@ -432,20 +437,20 @@ GEM rack rack-test (2.0.2) rack (>= 1.3) - rails (7.0.4) - actioncable (= 7.0.4) - actionmailbox (= 7.0.4) - actionmailer (= 7.0.4) - actionpack (= 7.0.4) - actiontext (= 7.0.4) - actionview (= 7.0.4) - activejob (= 7.0.4) - activemodel (= 7.0.4) - activerecord (= 7.0.4) - activestorage (= 7.0.4) - activesupport (= 7.0.4) + rails (7.0.4.1) + actioncable (= 7.0.4.1) + actionmailbox (= 7.0.4.1) + actionmailer (= 7.0.4.1) + actionpack (= 7.0.4.1) + actiontext (= 7.0.4.1) + actionview (= 7.0.4.1) + activejob (= 7.0.4.1) + activemodel (= 7.0.4.1) + activerecord (= 7.0.4.1) + activestorage (= 7.0.4.1) + activesupport (= 7.0.4.1) bundler (>= 1.15.0) - railties (= 7.0.4) + railties (= 7.0.4.1) rails-controller-testing (1.0.5) actionpack (>= 5.0.1.rc1) actionview (>= 5.0.1.rc1) @@ -463,9 +468,9 @@ GEM rails_stdout_logging rails_serve_static_assets (0.0.5) rails_stdout_logging (0.0.5) - railties (7.0.4) - actionpack (= 7.0.4) - activesupport (= 7.0.4) + railties (7.0.4.1) + actionpack (= 7.0.4.1) + activesupport (= 7.0.4.1) method_source rake (>= 12.2) thor (~> 1.0) @@ -600,7 +605,7 @@ GEM thread_safe (0.3.6) tilt (2.0.11) timecop (0.9.6) - timeout (0.3.0) + timeout (0.3.1) trollop (1.16.2) tzinfo (2.0.5) concurrent-ruby (~> 1.0) From 5f8ef59606799cde343e0505f0c813c1fb02e89d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Jan 2023 10:48:24 +0000 Subject: [PATCH 27/62] Bump sidekiq from 7.0.2 to 7.0.3 Bumps [sidekiq](https://github.com/mperham/sidekiq) from 7.0.2 to 7.0.3. - [Release notes](https://github.com/mperham/sidekiq/releases) - [Changelog](https://github.com/mperham/sidekiq/blob/main/Changes.md) - [Commits](https://github.com/mperham/sidekiq/compare/v7.0.2...v7.0.3) --- updated-dependencies: - dependency-name: sidekiq dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e12112569..0d5781239 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -482,7 +482,7 @@ GEM rb-fsevent (0.11.1) rb-inotify (0.10.1) ffi (~> 1.0) - redis-client (0.11.2) + redis-client (0.12.1) connection_pool regexp_parser (2.6.1) responders (3.0.1) @@ -578,7 +578,7 @@ GEM rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) - sidekiq (7.0.2) + sidekiq (7.0.3) concurrent-ruby (< 2) connection_pool (>= 2.3.0) rack (>= 2.2.4) From 218da856c2d29f6b1e0d4f536f10f553de50f0c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Jan 2023 11:08:09 +0000 Subject: [PATCH 28/62] Bump rubocop from 1.42.0 to 1.43.0 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.42.0 to 1.43.0. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.42.0...v1.43.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0d5781239..ef921c293 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -415,7 +415,7 @@ GEM rack orm_adapter (0.5.0) parallel (1.22.1) - parser (3.1.3.0) + parser (3.2.0.0) ast (~> 2.4.1) percy-capybara (5.0.0) capybara (>= 3) @@ -529,16 +529,16 @@ GEM rswag-ui (2.8.0) actionpack (>= 3.1, < 7.1) railties (>= 3.1, < 7.1) - rubocop (1.42.0) + rubocop (1.43.0) json (~> 2.3) parallel (~> 1.10) - parser (>= 3.1.2.1) + parser (>= 3.2.0.0) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) rubocop-ast (>= 1.24.1, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) + unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.24.1) parser (>= 3.1.1.0) rubocop-rails (2.17.4) @@ -611,7 +611,7 @@ GEM concurrent-ruby (~> 1.0) uglifier (4.2.0) execjs (>= 0.3.0, < 3) - unicode-display_width (2.3.0) + unicode-display_width (2.4.2) unicorn (6.1.0) kgio (~> 2.6) raindrops (~> 0.7) From c7551b5856e3fff62353fb24794bad321688ee4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Jan 2023 11:25:24 +0000 Subject: [PATCH 29/62] Bump faraday from 1.10.2 to 1.10.3 Bumps [faraday](https://github.com/lostisland/faraday) from 1.10.2 to 1.10.3. - [Release notes](https://github.com/lostisland/faraday/releases) - [Changelog](https://github.com/lostisland/faraday/blob/main/CHANGELOG.md) - [Commits](https://github.com/lostisland/faraday/compare/v1.10.2...v1.10.3) --- updated-dependencies: - dependency-name: faraday dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index ef921c293..2699be919 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -235,7 +235,7 @@ GEM railties (>= 5.0.0) faker (3.1.0) i18n (>= 1.8.11, < 2) - faraday (1.10.2) + faraday (1.10.3) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) From 103d7f2235639cd719c8ad36377fab6cb3d0e665 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Jan 2023 11:45:34 +0000 Subject: [PATCH 30/62] Bump listen from 3.7.1 to 3.8.0 Bumps [listen](https://github.com/guard/listen) from 3.7.1 to 3.8.0. - [Release notes](https://github.com/guard/listen/releases) - [Commits](https://github.com/guard/listen/compare/v3.7.1...v3.8.0) --- updated-dependencies: - dependency-name: listen dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2699be919..04a571194 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -348,7 +348,7 @@ GEM rails (>= 4.2.0) letter_opener (1.8.1) launchy (>= 2.2, < 3) - listen (3.7.1) + listen (3.8.0) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) loofah (2.19.1) @@ -479,7 +479,7 @@ GEM raindrops (0.20.0) rake (13.0.6) rate_throttle_client (0.1.2) - rb-fsevent (0.11.1) + rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) redis-client (0.12.1) From 58beba9dd9c7174551126864790131c851433583 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Jan 2023 14:26:34 +0000 Subject: [PATCH 31/62] Bump rubocop-rspec from 2.16.0 to 2.18.1 Bumps [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) from 2.16.0 to 2.18.1. - [Release notes](https://github.com/rubocop/rubocop-rspec/releases) - [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-rspec/compare/v2.16.0...v2.18.1) --- updated-dependencies: - dependency-name: rubocop-rspec dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 04a571194..588e694ca 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -484,7 +484,7 @@ GEM ffi (~> 1.0) redis-client (0.12.1) connection_pool - regexp_parser (2.6.1) + regexp_parser (2.6.2) responders (3.0.1) actionpack (>= 5.0) railties (>= 5.0) @@ -541,12 +541,15 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.24.1) parser (>= 3.1.1.0) + rubocop-capybara (2.17.0) + rubocop (~> 1.41) rubocop-rails (2.17.4) activesupport (>= 4.2.0) rack (>= 1.1) rubocop (>= 1.33.0, < 2.0) - rubocop-rspec (2.16.0) + rubocop-rspec (2.18.1) rubocop (~> 1.33) + rubocop-capybara (~> 2.17) ruby-progressbar (1.11.0) ruby-units (3.0.0) ruby-vips (2.1.4) From 4c0f5fed1001907e73370eec40a7e65f7f21904b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Jan 2023 07:02:00 +0000 Subject: [PATCH 32/62] Bump rubocop from 1.43.0 to 1.44.0 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.43.0 to 1.44.0. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.43.0...v1.44.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 588e694ca..c741f376c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -529,7 +529,7 @@ GEM rswag-ui (2.8.0) actionpack (>= 3.1, < 7.1) railties (>= 3.1, < 7.1) - rubocop (1.43.0) + rubocop (1.44.0) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) From 086f32e4730cbb312cfc086363c47cdd141670aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Jan 2023 08:35:10 +0000 Subject: [PATCH 33/62] Bump selenium-webdriver from 4.7.1 to 4.8.0 Bumps [selenium-webdriver](https://github.com/SeleniumHQ/selenium) from 4.7.1 to 4.8.0. - [Release notes](https://github.com/SeleniumHQ/selenium/releases) - [Changelog](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES) - [Commits](https://github.com/SeleniumHQ/selenium/commits/selenium-4.8.0) --- updated-dependencies: - dependency-name: selenium-webdriver dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index c741f376c..ef2b99b67 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -577,7 +577,7 @@ GEM activemodel (>= 5) elasticsearch (>= 6, < 7.14) hashie - selenium-webdriver (4.7.1) + selenium-webdriver (4.8.0) rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) From 8a6c661ff11115c8d473af977ba8487d588988c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Jan 2023 08:52:26 +0000 Subject: [PATCH 34/62] Bump chartkick from 4.2.1 to 5.0.1 Bumps [chartkick](https://github.com/ankane/chartkick) from 4.2.1 to 5.0.1. - [Release notes](https://github.com/ankane/chartkick/releases) - [Changelog](https://github.com/ankane/chartkick/blob/master/CHANGELOG.md) - [Commits](https://github.com/ankane/chartkick/compare/v4.2.1...v5.0.1) --- updated-dependencies: - dependency-name: chartkick dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index ef2b99b67..5d8ec1795 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -167,7 +167,7 @@ GEM mimemagic (>= 0.3.0) mini_mime (>= 0.1.3) ssrf_filter (~> 1.0) - chartkick (4.2.1) + chartkick (5.0.1) codeclimate-test-reporter (1.0.9) simplecov (<= 0.13) coderay (1.1.3) From 8059f6c3a5148e83f73ec9659d78ce231df86d77 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 07:00:55 +0000 Subject: [PATCH 35/62] Bump rubocop from 1.44.0 to 1.44.1 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.44.0 to 1.44.1. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.44.0...v1.44.1) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 5d8ec1795..581e54a2b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -529,7 +529,7 @@ GEM rswag-ui (2.8.0) actionpack (>= 3.1, < 7.1) railties (>= 3.1, < 7.1) - rubocop (1.44.0) + rubocop (1.44.1) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) From cec57689347a52bc24e5febf793348fc0b97afdb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 08:18:51 +0000 Subject: [PATCH 36/62] Bump rails from 7.0.4.1 to 7.0.4.2 Bumps [rails](https://github.com/rails/rails) from 7.0.4.1 to 7.0.4.2. - [Release notes](https://github.com/rails/rails/releases) - [Commits](https://github.com/rails/rails/compare/v7.0.4.1...v7.0.4.2) --- updated-dependencies: - dependency-name: rails dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 112 +++++++++++++++++++++++++-------------------------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 581e54a2b..2dec6ba30 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -26,47 +26,47 @@ GEM remote: https://rubygems.org/ specs: abstract_type (0.0.7) - actioncable (7.0.4.1) - actionpack (= 7.0.4.1) - activesupport (= 7.0.4.1) + actioncable (7.0.4.2) + actionpack (= 7.0.4.2) + activesupport (= 7.0.4.2) nio4r (~> 2.0) websocket-driver (>= 0.6.1) - actionmailbox (7.0.4.1) - actionpack (= 7.0.4.1) - activejob (= 7.0.4.1) - activerecord (= 7.0.4.1) - activestorage (= 7.0.4.1) - activesupport (= 7.0.4.1) + actionmailbox (7.0.4.2) + actionpack (= 7.0.4.2) + activejob (= 7.0.4.2) + activerecord (= 7.0.4.2) + activestorage (= 7.0.4.2) + activesupport (= 7.0.4.2) mail (>= 2.7.1) net-imap net-pop net-smtp - actionmailer (7.0.4.1) - actionpack (= 7.0.4.1) - actionview (= 7.0.4.1) - activejob (= 7.0.4.1) - activesupport (= 7.0.4.1) + actionmailer (7.0.4.2) + actionpack (= 7.0.4.2) + actionview (= 7.0.4.2) + activejob (= 7.0.4.2) + activesupport (= 7.0.4.2) mail (~> 2.5, >= 2.5.4) net-imap net-pop net-smtp rails-dom-testing (~> 2.0) - actionpack (7.0.4.1) - actionview (= 7.0.4.1) - activesupport (= 7.0.4.1) + actionpack (7.0.4.2) + actionview (= 7.0.4.2) + activesupport (= 7.0.4.2) rack (~> 2.0, >= 2.2.0) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actiontext (7.0.4.1) - actionpack (= 7.0.4.1) - activerecord (= 7.0.4.1) - activestorage (= 7.0.4.1) - activesupport (= 7.0.4.1) + actiontext (7.0.4.2) + actionpack (= 7.0.4.2) + activerecord (= 7.0.4.2) + activestorage (= 7.0.4.2) + activesupport (= 7.0.4.2) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.0.4.1) - activesupport (= 7.0.4.1) + actionview (7.0.4.2) + activesupport (= 7.0.4.2) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) @@ -81,22 +81,22 @@ GEM active_utils (3.3.19) activesupport (>= 4.2) i18n - activejob (7.0.4.1) - activesupport (= 7.0.4.1) + activejob (7.0.4.2) + activesupport (= 7.0.4.2) globalid (>= 0.3.6) - activemodel (7.0.4.1) - activesupport (= 7.0.4.1) - activerecord (7.0.4.1) - activemodel (= 7.0.4.1) - activesupport (= 7.0.4.1) - activestorage (7.0.4.1) - actionpack (= 7.0.4.1) - activejob (= 7.0.4.1) - activerecord (= 7.0.4.1) - activesupport (= 7.0.4.1) + activemodel (7.0.4.2) + activesupport (= 7.0.4.2) + activerecord (7.0.4.2) + activemodel (= 7.0.4.2) + activesupport (= 7.0.4.2) + activestorage (7.0.4.2) + actionpack (= 7.0.4.2) + activejob (= 7.0.4.2) + activerecord (= 7.0.4.2) + activesupport (= 7.0.4.2) marcel (~> 1.0) mini_mime (>= 1.1.0) - activesupport (7.0.4.1) + activesupport (7.0.4.2) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -183,7 +183,7 @@ GEM concord (0.1.6) adamantium (~> 0.2.0) equalizer (~> 0.0.9) - concurrent-ruby (1.1.10) + concurrent-ruby (1.2.0) connection_pool (2.3.0) crass (1.0.6) csv_shaper (1.3.2) @@ -270,7 +270,7 @@ GEM gibbon (1.2.1) httparty multi_json (>= 1.9.0) - globalid (1.0.1) + globalid (1.1.0) activesupport (>= 5.0) gravatar-ultimate (2.0.0) activesupport (>= 2.3.14) @@ -437,20 +437,20 @@ GEM rack rack-test (2.0.2) rack (>= 1.3) - rails (7.0.4.1) - actioncable (= 7.0.4.1) - actionmailbox (= 7.0.4.1) - actionmailer (= 7.0.4.1) - actionpack (= 7.0.4.1) - actiontext (= 7.0.4.1) - actionview (= 7.0.4.1) - activejob (= 7.0.4.1) - activemodel (= 7.0.4.1) - activerecord (= 7.0.4.1) - activestorage (= 7.0.4.1) - activesupport (= 7.0.4.1) + rails (7.0.4.2) + actioncable (= 7.0.4.2) + actionmailbox (= 7.0.4.2) + actionmailer (= 7.0.4.2) + actionpack (= 7.0.4.2) + actiontext (= 7.0.4.2) + actionview (= 7.0.4.2) + activejob (= 7.0.4.2) + activemodel (= 7.0.4.2) + activerecord (= 7.0.4.2) + activestorage (= 7.0.4.2) + activesupport (= 7.0.4.2) bundler (>= 1.15.0) - railties (= 7.0.4.1) + railties (= 7.0.4.2) rails-controller-testing (1.0.5) actionpack (>= 5.0.1.rc1) actionview (>= 5.0.1.rc1) @@ -458,7 +458,7 @@ GEM rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) - rails-html-sanitizer (1.4.4) + rails-html-sanitizer (1.5.0) loofah (~> 2.19, >= 2.19.1) rails-i18n (7.0.5) i18n (>= 0.7, < 2) @@ -468,9 +468,9 @@ GEM rails_stdout_logging rails_serve_static_assets (0.0.5) rails_stdout_logging (0.0.5) - railties (7.0.4.1) - actionpack (= 7.0.4.1) - activesupport (= 7.0.4.1) + railties (7.0.4.2) + actionpack (= 7.0.4.2) + activesupport (= 7.0.4.2) method_source rake (>= 12.2) thor (~> 1.0) From 7a79beb8425eedc9b48e58b0dc6bad59a751753e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 07:03:45 +0000 Subject: [PATCH 37/62] Bump haml_lint from 0.43.0 to 0.45.0 Bumps [haml_lint](https://github.com/sds/haml-lint) from 0.43.0 to 0.45.0. - [Release notes](https://github.com/sds/haml-lint/releases) - [Changelog](https://github.com/sds/haml-lint/blob/main/CHANGELOG.md) - [Commits](https://github.com/sds/haml-lint/compare/v0.43.0...v0.45.0) --- updated-dependencies: - dependency-name: haml_lint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2dec6ba30..451ab2022 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -289,7 +289,7 @@ GEM activesupport (>= 5.1) haml (>= 4.0.6) railties (>= 5.1) - haml_lint (0.43.0) + haml_lint (0.45.0) haml (>= 4.0, < 6.2) parallel (~> 1.10) rainbow @@ -601,7 +601,7 @@ GEM sprockets (>= 3.0.0) ssrf_filter (1.0.7) sysexits (1.2.0) - temple (0.9.1) + temple (0.10.0) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3) thor (1.2.1) From 055408a3efdfee51e55a7d0ced8e63cda6d38b65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Jan 2023 07:01:45 +0000 Subject: [PATCH 38/62] Bump oj from 3.13.23 to 3.14.0 Bumps [oj](https://github.com/ohler55/oj) from 3.13.23 to 3.14.0. - [Release notes](https://github.com/ohler55/oj/releases) - [Changelog](https://github.com/ohler55/oj/blob/develop/CHANGELOG.md) - [Commits](https://github.com/ohler55/oj/compare/v3.13.23...v3.14.0) --- updated-dependencies: - dependency-name: oj dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 451ab2022..45be91bc7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -400,7 +400,7 @@ GEM nokogiri (1.14.0-x86_64-linux) racc (~> 1.4) oauth (0.5.6) - oj (3.13.23) + oj (3.14.0) omniauth (1.9.2) hashie (>= 3.4.6) rack (>= 1.6.2, < 3) From 2c4d8ec56b6e4d24f7764d770a57533edba9e243 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Feb 2023 07:01:45 +0000 Subject: [PATCH 39/62] Bump oj from 3.14.0 to 3.14.1 Bumps [oj](https://github.com/ohler55/oj) from 3.14.0 to 3.14.1. - [Release notes](https://github.com/ohler55/oj/releases) - [Changelog](https://github.com/ohler55/oj/blob/develop/CHANGELOG.md) - [Commits](https://github.com/ohler55/oj/compare/v3.14.0...v3.14.1) --- updated-dependencies: - dependency-name: oj dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 45be91bc7..d1aa7454f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -400,7 +400,7 @@ GEM nokogiri (1.14.0-x86_64-linux) racc (~> 1.4) oauth (0.5.6) - oj (3.14.0) + oj (3.14.1) omniauth (1.9.2) hashie (>= 3.4.6) rack (>= 1.6.2, < 3) From 1a6095fdc802af0d70387547d251f63822fa1d6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Feb 2023 07:01:56 +0000 Subject: [PATCH 40/62] Bump responders from 3.0.1 to 3.1.0 Bumps [responders](https://github.com/heartcombo/responders) from 3.0.1 to 3.1.0. - [Release notes](https://github.com/heartcombo/responders/releases) - [Changelog](https://github.com/heartcombo/responders/blob/main/CHANGELOG.md) - [Commits](https://github.com/heartcombo/responders/compare/v3.0.1...v3.1.0) --- updated-dependencies: - dependency-name: responders dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index d1aa7454f..94dfad341 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -394,10 +394,10 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.8) - nokogiri (1.14.0) + nokogiri (1.14.1) mini_portile2 (~> 2.8.0) racc (~> 1.4) - nokogiri (1.14.0-x86_64-linux) + nokogiri (1.14.1-x86_64-linux) racc (~> 1.4) oauth (0.5.6) oj (3.14.1) @@ -485,9 +485,9 @@ GEM redis-client (0.12.1) connection_pool regexp_parser (2.6.2) - responders (3.0.1) - actionpack (>= 5.0) - railties (>= 5.0) + responders (3.1.0) + actionpack (>= 5.2) + railties (>= 5.2) rexml (3.2.5) rspec (3.11.0) rspec-core (~> 3.11.0) @@ -610,7 +610,7 @@ GEM timecop (0.9.6) timeout (0.3.1) trollop (1.16.2) - tzinfo (2.0.5) + tzinfo (2.0.6) concurrent-ruby (~> 1.0) uglifier (4.2.0) execjs (>= 0.3.0, < 3) From 09663c163e389c2dc60470976901f68215499508 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Feb 2023 10:09:26 +0000 Subject: [PATCH 41/62] Bump faker from 3.1.0 to 3.1.1 Bumps [faker](https://github.com/faker-ruby/faker) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/faker-ruby/faker/releases) - [Changelog](https://github.com/faker-ruby/faker/blob/main/CHANGELOG.md) - [Commits](https://github.com/faker-ruby/faker/compare/v3.1.0...v3.1.1) --- updated-dependencies: - dependency-name: faker dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 94dfad341..a862fe157 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -233,7 +233,7 @@ GEM factory_bot_rails (6.2.0) factory_bot (~> 6.2.0) railties (>= 5.0.0) - faker (3.1.0) + faker (3.1.1) i18n (>= 1.8.11, < 2) faraday (1.10.3) faraday-em_http (~> 1.0) From 371dfffcbd9ea5b0a3a1b22beb854379e7eb2104 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Feb 2023 07:01:56 +0000 Subject: [PATCH 42/62] Bump leaflet-rails from 1.9.2 to 1.9.3 Bumps [leaflet-rails](https://github.com/axyjo/leaflet-rails) from 1.9.2 to 1.9.3. - [Release notes](https://github.com/axyjo/leaflet-rails/releases) - [Commits](https://github.com/axyjo/leaflet-rails/compare/v1.9.2...v1.9.3) --- updated-dependencies: - dependency-name: leaflet-rails dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index a862fe157..fac1c6c58 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -344,7 +344,7 @@ GEM rexml launchy (2.5.0) addressable (~> 2.7) - leaflet-rails (1.9.2) + leaflet-rails (1.9.3) rails (>= 4.2.0) letter_opener (1.8.1) launchy (>= 2.2, < 3) @@ -354,7 +354,7 @@ GEM loofah (2.19.1) crass (~> 1.0.2) nokogiri (>= 1.5.9) - mail (2.8.0.1) + mail (2.8.1) mini_mime (>= 0.1.1) net-imap net-pop From 9bd054f1daad87fa0d900239ec3e28a8a8a1b684 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Feb 2023 07:02:06 +0000 Subject: [PATCH 43/62] Bump rubocop from 1.44.1 to 1.45.1 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.44.1 to 1.45.1. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.44.1...v1.45.1) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index fac1c6c58..542b1bc91 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -484,7 +484,7 @@ GEM ffi (~> 1.0) redis-client (0.12.1) connection_pool - regexp_parser (2.6.2) + regexp_parser (2.7.0) responders (3.1.0) actionpack (>= 5.2) railties (>= 5.2) @@ -529,7 +529,7 @@ GEM rswag-ui (2.8.0) actionpack (>= 3.1, < 7.1) railties (>= 3.1, < 7.1) - rubocop (1.44.1) + rubocop (1.45.1) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) From 0d619aed029a309f53c9f2688f84794da3fbd6a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 07:58:51 +0000 Subject: [PATCH 44/62] Bump puma from 6.0.2 to 6.1.0 Bumps [puma](https://github.com/puma/puma) from 6.0.2 to 6.1.0. - [Release notes](https://github.com/puma/puma/releases) - [Changelog](https://github.com/puma/puma/blob/master/History.md) - [Commits](https://github.com/puma/puma/compare/v6.0.2...v6.1.0) --- updated-dependencies: - dependency-name: puma dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 542b1bc91..17d504c33 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -426,7 +426,7 @@ GEM rate_throttle_client (~> 0.1.0) popper_js (1.16.1) public_suffix (5.0.0) - puma (6.0.2) + puma (6.1.0) nio4r (~> 2.0) query_diet (0.7.1) racc (1.6.2) From 7500138704c99d34dc3fa35ead8ed6fbefd6cc78 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 10:34:56 +0000 Subject: [PATCH 45/62] Bump oj from 3.14.1 to 3.14.2 Bumps [oj](https://github.com/ohler55/oj) from 3.14.1 to 3.14.2. - [Release notes](https://github.com/ohler55/oj/releases) - [Changelog](https://github.com/ohler55/oj/blob/develop/CHANGELOG.md) - [Commits](https://github.com/ohler55/oj/compare/v3.14.1...v3.14.2) --- updated-dependencies: - dependency-name: oj dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 17d504c33..e401c705f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -400,7 +400,7 @@ GEM nokogiri (1.14.1-x86_64-linux) racc (~> 1.4) oauth (0.5.6) - oj (3.14.1) + oj (3.14.2) omniauth (1.9.2) hashie (>= 3.4.6) rack (>= 1.6.2, < 3) From ff780971d322e1c71c1e7d748b3284067c021482 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Feb 2023 07:58:08 +0000 Subject: [PATCH 46/62] Bump sidekiq from 7.0.3 to 7.0.4 Bumps [sidekiq](https://github.com/sidekiq/sidekiq) from 7.0.3 to 7.0.4. - [Release notes](https://github.com/sidekiq/sidekiq/releases) - [Changelog](https://github.com/sidekiq/sidekiq/blob/main/Changes.md) - [Commits](https://github.com/sidekiq/sidekiq/compare/v7.0.3...v7.0.4) --- updated-dependencies: - dependency-name: sidekiq dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index e401c705f..057b305d5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -581,7 +581,7 @@ GEM rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) - sidekiq (7.0.3) + sidekiq (7.0.4) concurrent-ruby (< 2) connection_pool (>= 2.3.0) rack (>= 2.2.4) From 63681bd59535dae61d030063e1c98e5a03802e64 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Feb 2023 07:57:04 +0000 Subject: [PATCH 47/62] Bump rack-cors from 1.1.1 to 2.0.0 Bumps [rack-cors](https://github.com/cyu/rack-cors) from 1.1.1 to 2.0.0. - [Release notes](https://github.com/cyu/rack-cors/releases) - [Changelog](https://github.com/cyu/rack-cors/blob/master/CHANGELOG.md) - [Commits](https://github.com/cyu/rack-cors/compare/v1.1.1...2.0.0) --- updated-dependencies: - dependency-name: rack-cors dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 057b305d5..c64d1bdba 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -431,7 +431,7 @@ GEM query_diet (0.7.1) racc (1.6.2) rack (2.2.6.2) - rack-cors (1.1.1) + rack-cors (2.0.0) rack (>= 2.0.0) rack-protection (3.0.5) rack From 55a133a043b30f07e6e9a630c6e2bc607b28af08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Feb 2023 07:57:08 +0000 Subject: [PATCH 48/62] Bump sidekiq from 7.0.4 to 7.0.5 Bumps [sidekiq](https://github.com/sidekiq/sidekiq) from 7.0.4 to 7.0.5. - [Release notes](https://github.com/sidekiq/sidekiq/releases) - [Changelog](https://github.com/sidekiq/sidekiq/blob/main/Changes.md) - [Commits](https://github.com/sidekiq/sidekiq/compare/v7.0.4...v7.0.5) --- updated-dependencies: - dependency-name: sidekiq dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index c64d1bdba..8ae18851e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -581,7 +581,7 @@ GEM rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) - sidekiq (7.0.4) + sidekiq (7.0.5) concurrent-ruby (< 2) connection_pool (>= 2.3.0) rack (>= 2.2.4) From c07f0370aec3a89c222de72fd4a7b80fc0a990a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Feb 2023 08:01:34 +0000 Subject: [PATCH 49/62] Bump selenium-webdriver from 4.8.0 to 4.8.1 Bumps [selenium-webdriver](https://github.com/SeleniumHQ/selenium) from 4.8.0 to 4.8.1. - [Release notes](https://github.com/SeleniumHQ/selenium/releases) - [Changelog](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES) - [Commits](https://github.com/SeleniumHQ/selenium/compare/selenium-4.8.0...selenium-4.8.1) --- updated-dependencies: - dependency-name: selenium-webdriver dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 8ae18851e..73c264822 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -577,7 +577,7 @@ GEM activemodel (>= 5) elasticsearch (>= 6, < 7.14) hashie - selenium-webdriver (4.8.0) + selenium-webdriver (4.8.1) rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) From debc0b10a62cb4651876239214809edfe050858a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Feb 2023 10:45:45 +0000 Subject: [PATCH 50/62] Bump devise from 4.8.1 to 4.9.0 Bumps [devise](https://github.com/heartcombo/devise) from 4.8.1 to 4.9.0. - [Release notes](https://github.com/heartcombo/devise/releases) - [Changelog](https://github.com/heartcombo/devise/blob/main/CHANGELOG.md) - [Commits](https://github.com/heartcombo/devise/compare/v4.8.1...v4.9.0) --- updated-dependencies: - dependency-name: devise dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 73c264822..37b23c567 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -113,7 +113,7 @@ GEM ast (2.4.2) autoprefixer-rails (10.4.7.0) execjs (~> 2) - bcrypt (3.1.17) + bcrypt (3.1.18) better_errors (2.9.1) coderay (>= 1.0.0) erubi (>= 1.0.0) @@ -196,7 +196,7 @@ GEM database_cleaner-core (~> 2.0.0) database_cleaner-core (2.0.1) date (3.3.3) - devise (4.8.1) + devise (4.9.0) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 4.1.0) @@ -394,10 +394,10 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.8) - nokogiri (1.14.1) + nokogiri (1.14.2) mini_portile2 (~> 2.8.0) racc (~> 1.4) - nokogiri (1.14.1-x86_64-linux) + nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) oauth (0.5.6) oj (3.14.2) @@ -644,7 +644,7 @@ GEM webrick xpath (3.2.0) nokogiri (~> 1.8) - zeitwerk (2.6.6) + zeitwerk (2.6.7) PLATFORMS ruby From 0d8722af46676154f6cde5a63d325bf3051e706d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Feb 2023 07:15:31 +0000 Subject: [PATCH 51/62] Bump sidekiq from 7.0.5 to 7.0.6 Bumps [sidekiq](https://github.com/sidekiq/sidekiq) from 7.0.5 to 7.0.6. - [Release notes](https://github.com/sidekiq/sidekiq/releases) - [Changelog](https://github.com/sidekiq/sidekiq/blob/main/Changes.md) - [Commits](https://github.com/sidekiq/sidekiq/compare/v7.0.5...v7.0.6) --- updated-dependencies: - dependency-name: sidekiq dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 37b23c567..83ba1d466 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -482,7 +482,7 @@ GEM rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) - redis-client (0.12.1) + redis-client (0.12.2) connection_pool regexp_parser (2.7.0) responders (3.1.0) @@ -581,7 +581,7 @@ GEM rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) - sidekiq (7.0.5) + sidekiq (7.0.6) concurrent-ruby (< 2) connection_pool (>= 2.3.0) rack (>= 2.2.4) From d240b32c7d00193cd0513e8a4116afc71c0e0d7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Feb 2023 09:39:13 +0000 Subject: [PATCH 52/62] Bump dalli from 3.2.3 to 3.2.4 Bumps [dalli](https://github.com/petergoldstein/dalli) from 3.2.3 to 3.2.4. - [Release notes](https://github.com/petergoldstein/dalli/releases) - [Changelog](https://github.com/petergoldstein/dalli/blob/main/CHANGELOG.md) - [Commits](https://github.com/petergoldstein/dalli/compare/v3.2.3...v3.2.4) --- updated-dependencies: - dependency-name: dalli dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 83ba1d466..5aab606bd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -188,7 +188,7 @@ GEM crass (1.0.6) csv_shaper (1.3.2) activesupport (>= 3.0.0) - dalli (3.2.3) + dalli (3.2.4) database_cleaner (2.0.1) database_cleaner-active_record (~> 2.0.0) database_cleaner-active_record (2.0.0) From 7d71baf46e833d31a436efd3afdd42b17322d6f3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Feb 2023 07:16:07 +0000 Subject: [PATCH 53/62] Bump active_utils from 3.3.19 to 3.4.0 Bumps [active_utils](https://github.com/shopify/active_utils) from 3.3.19 to 3.4.0. - [Release notes](https://github.com/shopify/active_utils/releases) - [Changelog](https://github.com/Shopify/active_utils/blob/master/CHANGELOG.md) - [Commits](https://github.com/shopify/active_utils/compare/v3.3.19...v3.4.0) --- updated-dependencies: - dependency-name: active_utils dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 5aab606bd..abe833c05 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -78,7 +78,7 @@ GEM activerecord (>= 4.2) active_record_union (1.3.0) activerecord (>= 4.0) - active_utils (3.3.19) + active_utils (3.4.0) activesupport (>= 4.2) i18n activejob (7.0.4.2) From 4d6381028036a6a1fc1af096e792b54ab3e916ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Feb 2023 07:48:47 +0000 Subject: [PATCH 54/62] Bump rubocop from 1.45.1 to 1.46.0 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.45.1 to 1.46.0. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.45.1...v1.46.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index abe833c05..cdddc640c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -415,7 +415,7 @@ GEM rack orm_adapter (0.5.0) parallel (1.22.1) - parser (3.2.0.0) + parser (3.2.1.0) ast (~> 2.4.1) percy-capybara (5.0.0) capybara (>= 3) @@ -529,18 +529,18 @@ GEM rswag-ui (2.8.0) actionpack (>= 3.1, < 7.1) railties (>= 3.1, < 7.1) - rubocop (1.45.1) + rubocop (1.46.0) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.24.1, < 2.0) + rubocop-ast (>= 1.26.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.24.1) - parser (>= 3.1.1.0) + rubocop-ast (1.26.0) + parser (>= 3.2.1.0) rubocop-capybara (2.17.0) rubocop (~> 1.41) rubocop-rails (2.17.4) From 05e83e4906ee983fcd44c699e757954474ed0a77 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 07:57:38 +0000 Subject: [PATCH 55/62] Bump pg from 1.4.5 to 1.4.6 Bumps [pg](https://github.com/ged/ruby-pg) from 1.4.5 to 1.4.6. - [Release notes](https://github.com/ged/ruby-pg/releases) - [Changelog](https://github.com/ged/ruby-pg/blob/master/History.md) - [Commits](https://github.com/ged/ruby-pg/compare/v1.4.5...v1.4.6) --- updated-dependencies: - dependency-name: pg dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index cdddc640c..093a52848 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -419,7 +419,7 @@ GEM ast (~> 2.4.1) percy-capybara (5.0.0) capybara (>= 3) - pg (1.4.5) + pg (1.4.6) platform-api (3.5.0) heroics (~> 0.1.1) moneta (~> 1.0.0) From f0b34801ff45c1d303bb8295e4c66256407c45e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 09:30:12 +0000 Subject: [PATCH 56/62] Bump rubocop-rails from 2.17.4 to 2.18.0 Bumps [rubocop-rails](https://github.com/rubocop/rubocop-rails) from 2.17.4 to 2.18.0. - [Release notes](https://github.com/rubocop/rubocop-rails/releases) - [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-rails/compare/v2.17.4...v2.18.0) --- updated-dependencies: - dependency-name: rubocop-rails dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 093a52848..3142c329f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -183,7 +183,7 @@ GEM concord (0.1.6) adamantium (~> 0.2.0) equalizer (~> 0.0.9) - concurrent-ruby (1.2.0) + concurrent-ruby (1.2.2) connection_pool (2.3.0) crass (1.0.6) csv_shaper (1.3.2) @@ -543,7 +543,7 @@ GEM parser (>= 3.2.1.0) rubocop-capybara (2.17.0) rubocop (~> 1.41) - rubocop-rails (2.17.4) + rubocop-rails (2.18.0) activesupport (>= 4.2.0) rack (>= 1.1) rubocop (>= 1.33.0, < 2.0) From ad95f81d313bfeaa4e8f8de076fe55a7a582abb0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Mar 2023 07:57:41 +0000 Subject: [PATCH 57/62] Bump puma from 6.1.0 to 6.1.1 Bumps [puma](https://github.com/puma/puma) from 6.1.0 to 6.1.1. - [Release notes](https://github.com/puma/puma/releases) - [Changelog](https://github.com/puma/puma/blob/master/History.md) - [Commits](https://github.com/puma/puma/compare/v6.1.0...v6.1.1) --- updated-dependencies: - dependency-name: puma dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 3142c329f..35a561ae6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -426,7 +426,7 @@ GEM rate_throttle_client (~> 0.1.0) popper_js (1.16.1) public_suffix (5.0.0) - puma (6.1.0) + puma (6.1.1) nio4r (~> 2.0) query_diet (0.7.1) racc (1.6.2) From eef23ca9af2042d4110bd058f1fd46ae284f65f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Mar 2023 09:26:56 +0000 Subject: [PATCH 58/62] Bump rubocop from 1.46.0 to 1.47.0 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.46.0 to 1.47.0. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.46.0...v1.47.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 35a561ae6..e8b8f271b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -529,7 +529,7 @@ GEM rswag-ui (2.8.0) actionpack (>= 3.1, < 7.1) railties (>= 3.1, < 7.1) - rubocop (1.46.0) + rubocop (1.47.0) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) @@ -539,7 +539,7 @@ GEM rubocop-ast (>= 1.26.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.26.0) + rubocop-ast (1.27.0) parser (>= 3.2.1.0) rubocop-capybara (2.17.0) rubocop (~> 1.41) @@ -550,7 +550,7 @@ GEM rubocop-rspec (2.18.1) rubocop (~> 1.33) rubocop-capybara (~> 2.17) - ruby-progressbar (1.11.0) + ruby-progressbar (1.13.0) ruby-units (3.0.0) ruby-vips (2.1.4) ffi (~> 1.12) From a374312773b5cc85911da4ea1f3c78b580b7f236 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Mar 2023 09:55:42 +0000 Subject: [PATCH 59/62] Bump comfortable_mexican_sofa from `456fb85` to `ccf9415` Bumps [comfortable_mexican_sofa](https://github.com/restarone/comfortable-mexican-sofa) from `456fb85` to `ccf9415`. - [Release notes](https://github.com/restarone/comfortable-mexican-sofa/releases) - [Commits](https://github.com/restarone/comfortable-mexican-sofa/compare/456fb8507e9668128529c0302fa2e77e029c1f88...ccf9415ae220453a199759b8ecbb8e9436c75c85) --- updated-dependencies: - dependency-name: comfortable_mexican_sofa dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e8b8f271b..114e9d608 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,6 +1,6 @@ GIT remote: https://github.com/restarone/comfortable-mexican-sofa.git - revision: 456fb8507e9668128529c0302fa2e77e029c1f88 + revision: ccf9415ae220453a199759b8ecbb8e9436c75c85 specs: comfortable_mexican_sofa (2.0.19) active_link_to (>= 1.0.0) @@ -376,7 +376,7 @@ GEM mimemagic (0.4.3) nokogiri (~> 1) rake - mini_magick (4.11.0) + mini_magick (4.12.0) mini_mime (1.1.2) mini_portile2 (2.8.1) minitest (5.17.0) @@ -425,12 +425,12 @@ GEM moneta (~> 1.0.0) rate_throttle_client (~> 0.1.0) popper_js (1.16.1) - public_suffix (5.0.0) + public_suffix (5.0.1) puma (6.1.1) nio4r (~> 2.0) query_diet (0.7.1) racc (1.6.2) - rack (2.2.6.2) + rack (2.2.6.3) rack-cors (2.0.0) rack (>= 2.0.0) rack-protection (3.0.5) @@ -460,7 +460,7 @@ GEM nokogiri (>= 1.6) rails-html-sanitizer (1.5.0) loofah (~> 2.19, >= 2.19.1) - rails-i18n (7.0.5) + rails-i18n (7.0.6) i18n (>= 0.7, < 2) railties (>= 6.0.0, < 8) rails_12factor (0.0.3) @@ -606,9 +606,9 @@ GEM unicode-display_width (>= 1.1.1, < 3) thor (1.2.1) thread_safe (0.3.6) - tilt (2.0.11) + tilt (2.1.0) timecop (0.9.6) - timeout (0.3.1) + timeout (0.3.2) trollop (1.16.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) From 0813beb146c807907f6afca7f846ec3e46c0c90d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Mar 2023 07:57:00 +0000 Subject: [PATCH 60/62] Bump rubocop from 1.47.0 to 1.48.0 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.47.0 to 1.48.0. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.47.0...v1.48.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 114e9d608..160eb4b30 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -529,7 +529,7 @@ GEM rswag-ui (2.8.0) actionpack (>= 3.1, < 7.1) railties (>= 3.1, < 7.1) - rubocop (1.47.0) + rubocop (1.48.0) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) From c353b8d32eafcbe0cea0bb4846763a3f966b66a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Mar 2023 10:42:17 +0000 Subject: [PATCH 61/62] Bump cancancan from 3.4.0 to 3.5.0 Bumps [cancancan](https://github.com/CanCanCommunity/cancancan) from 3.4.0 to 3.5.0. - [Release notes](https://github.com/CanCanCommunity/cancancan/releases) - [Changelog](https://github.com/CanCanCommunity/cancancan/blob/develop/CHANGELOG.md) - [Commits](https://github.com/CanCanCommunity/cancancan/compare/3.4.0...3.5.0) --- updated-dependencies: - dependency-name: cancancan dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 160eb4b30..0274c6b70 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -143,7 +143,7 @@ GEM activesupport (>= 3.0.0) uniform_notifier (~> 1.11) byebug (11.1.3) - cancancan (3.4.0) + cancancan (3.5.0) capybara (3.38.0) addressable matrix From 43c501f2453e6a8083508dac22f1ebc787f39130 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Mar 2023 11:02:48 +0000 Subject: [PATCH 62/62] Bump rubocop-rspec from 2.18.1 to 2.19.0 Bumps [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) from 2.18.1 to 2.19.0. - [Release notes](https://github.com/rubocop/rubocop-rspec/releases) - [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-rspec/compare/v2.18.1...v2.19.0) --- updated-dependencies: - dependency-name: rubocop-rspec dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0274c6b70..1bdcda7fe 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -415,7 +415,7 @@ GEM rack orm_adapter (0.5.0) parallel (1.22.1) - parser (3.2.1.0) + parser (3.2.1.1) ast (~> 2.4.1) percy-capybara (5.0.0) capybara (>= 3) @@ -541,13 +541,13 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.27.0) parser (>= 3.2.1.0) - rubocop-capybara (2.17.0) + rubocop-capybara (2.17.1) rubocop (~> 1.41) rubocop-rails (2.18.0) activesupport (>= 4.2.0) rack (>= 1.1) rubocop (>= 1.33.0, < 2.0) - rubocop-rspec (2.18.1) + rubocop-rspec (2.19.0) rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0)