Update Ruby gems and Yarn packages.

This commit is contained in:
evazion
2022-01-10 11:12:03 -06:00
parent 104234126f
commit fd2db2ff23
9 changed files with 782 additions and 670 deletions

View File

@@ -97,8 +97,8 @@ GEM
ansi (1.5.0)
ast (2.4.2)
aws-eventstream (1.2.0)
aws-partitions (1.543.0)
aws-sdk-core (3.125.0)
aws-partitions (1.547.0)
aws-sdk-core (3.125.1)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.525.0)
aws-sigv4 (~> 1.1)
@@ -143,7 +143,7 @@ GEM
crass (1.0.6)
daemons (1.4.1)
dante (0.2.0)
dead_end (3.1.0)
dead_end (3.1.1)
debug_inspector (1.1.0)
declarative (0.0.20)
derailed_benchmarks (2.1.1)
@@ -176,27 +176,31 @@ GEM
tzinfo
factory_bot (6.2.0)
activesupport (>= 5.0.0)
faraday (1.8.0)
faraday (1.9.3)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
faraday-httpclient (~> 1.0.1)
faraday-httpclient (~> 1.0)
faraday-multipart (~> 1.0)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.1)
faraday-net_http_persistent (~> 1.0)
faraday-patron (~> 1.0)
faraday-rack (~> 1.0)
multipart-post (>= 1.2, < 3)
faraday-retry (~> 1.0)
ruby2_keywords (>= 0.0.4)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-excon (1.1.0)
faraday-httpclient (1.0.1)
faraday-multipart (1.0.3)
multipart-post (>= 1.2, < 3)
faraday-net_http (1.0.1)
faraday-net_http_persistent (1.2.0)
faraday-patron (1.0.0)
faraday-rack (1.0.0)
faraday-retry (1.0.3)
ffaker (2.20.0)
ffi (1.15.4)
ffi (1.15.5)
ffi-compiler (1.0.1)
ffi (>= 1.0.0)
rake
@@ -208,7 +212,7 @@ GEM
ffi (~> 1.0)
globalid (1.0.0)
activesupport (>= 5.0)
good_job (2.8.0)
good_job (2.9.0)
activejob (>= 5.2.0)
activerecord (>= 5.2.0)
concurrent-ruby (>= 1.0.2)
@@ -217,7 +221,7 @@ GEM
thor (>= 0.14.1)
webrick (>= 1.3)
zeitwerk (>= 2.0)
google-apis-bigquery_v2 (0.22.0)
google-apis-bigquery_v2 (0.23.0)
google-apis-core (>= 0.4, < 2.a)
google-apis-core (0.4.1)
addressable (~> 2.5, >= 2.5.1)
@@ -228,9 +232,9 @@ GEM
retriable (>= 2.0, < 4.a)
rexml
webrick
google-apis-iamcredentials_v1 (0.9.0)
google-apis-iamcredentials_v1 (0.10.0)
google-apis-core (>= 0.4, < 2.a)
google-apis-storage_v1 (0.10.0)
google-apis-storage_v1 (0.11.0)
google-apis-core (>= 0.4, < 2.a)
google-cloud-bigquery (1.38.0)
concurrent-ruby (~> 1.0)
@@ -343,7 +347,7 @@ GEM
optimist (3.0.1)
os (1.1.4)
parallel (1.21.0)
parser (3.0.3.2)
parser (3.1.0.0)
ast (~> 2.4.1)
pg (1.2.3)
prometheus-client (2.1.0)
@@ -371,7 +375,7 @@ GEM
rack (2.2.3)
rack-mini-profiler (2.3.3)
rack (>= 1.2.0)
rack-proxy (0.7.0)
rack-proxy (0.7.2)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
@@ -427,18 +431,18 @@ GEM
reverse_markdown (2.1.1)
nokogiri
rexml (3.2.5)
rubocop (1.24.0)
rubocop (1.24.1)
parallel (~> 1.10)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.15.0, < 2.0)
rubocop-ast (>= 1.15.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.15.1)
parser (>= 3.0.1.1)
rubocop-rails (2.13.0)
rubocop-rails (2.13.1)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.7.0, < 2.0)

View File

@@ -1,2 +1,2 @@
import "../../../node_modules/ruffle-mirror/ruffle.js";
import "../../../node_modules/ruffle-mirror/438e4928f2dc89e79994.wasm";
import "../../../node_modules/ruffle-mirror/88fc5bf74ae9135144e7.wasm";

View File

@@ -0,0 +1,14 @@
# frozen_string_literal: true
class AddCronAtToGoodJobs < ActiveRecord::Migration[7.0]
def change
reversible do |dir|
dir.up do
# Ensure this incremental update migration is idempotent
# with monolithic install migration.
return if connection.column_exists?(:good_jobs, :cron_at)
end
end
add_column :good_jobs, :cron_at, :timestamp
end
end

View File

@@ -0,0 +1,20 @@
# frozen_string_literal: true
class AddCronKeyCronAtIndexToGoodJobs < ActiveRecord::Migration[7.0]
disable_ddl_transaction!
def change
reversible do |dir|
dir.up do
# Ensure this incremental update migration is idempotent
# with monolithic install migration.
return if connection.index_name_exists?(:good_jobs, :index_good_jobs_on_cron_key_and_cron_at)
end
end
add_index :good_jobs,
[:cron_key, :cron_at],
algorithm: :concurrently,
name: :index_good_jobs_on_cron_key_and_cron_at,
unique: true
end
end

View File

@@ -0,0 +1,17 @@
# frozen_string_literal: true
class CreateGoodJobProcesses < ActiveRecord::Migration[7.0]
def change
reversible do |dir|
dir.up do
# Ensure this incremental update migration is idempotent
# with monolithic install migration.
return if connection.table_exists?(:good_job_processes)
end
end
create_table :good_job_processes, id: :uuid do |t|
t.timestamps
t.jsonb :state
end
end
end

View File

@@ -0,0 +1,25 @@
# frozen_string_literal: true
class IndexGoodJobJobsOnFinishedAt < ActiveRecord::Migration[7.0]
disable_ddl_transaction!
def change
reversible do |dir|
dir.up do
# Ensure this incremental update migration is idempotent
# with monolithic install migration.
return if connection.index_name_exists?(:good_jobs, :index_good_jobs_on_active_job_id)
end
end
add_index :good_jobs,
[:active_job_id],
name: :index_good_jobs_on_active_job_id,
algorithm: :concurrently
add_index :good_jobs,
[:finished_at],
where: "retried_good_job_id IS NULL AND finished_at IS NOT NULL",
name: :index_good_jobs_jobs_on_finished_at,
algorithm: :concurrently
end
end

View File

@@ -3553,6 +3553,20 @@ CREATE INDEX index_forum_topics_on_title_tsvector ON public.forum_topics USING g
CREATE INDEX index_forum_topics_on_updated_at ON public.forum_topics USING btree (updated_at);
--
-- Name: index_good_jobs_jobs_on_finished_at; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_good_jobs_jobs_on_finished_at ON public.good_jobs USING btree (finished_at) WHERE ((retried_good_job_id IS NULL) AND (finished_at IS NOT NULL));
--
-- Name: index_good_jobs_on_active_job_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_good_jobs_on_active_job_id ON public.good_jobs USING btree (active_job_id);
--
-- Name: index_good_jobs_on_active_job_id_and_created_at; Type: INDEX; Schema: public; Owner: -
--
@@ -5670,6 +5684,10 @@ INSERT INTO "schema_migrations" (version) VALUES
('20220106172910'),
('20220107014433'),
('20220109032042'),
('20220109163815');
('20220109163815'),
('20220110171021'),
('20220110171022'),
('20220110171023'),
('20220110171024');

View File

@@ -25,7 +25,7 @@
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"ruffle-mirror": "2021.12.28",
"ruffle-mirror": "2022.1.10",
"sass": "^1.38.2",
"sass-loader": "^12.1.0",
"spark-md5": "^3.0.2",
@@ -48,7 +48,7 @@
},
"resolutions": {
"webpack": "5.26.3",
"ruffle-mirror": "2021.12.28"
"ruffle-mirror": "2022.1.10"
},
"scripts": {
"eslint-all": "yarn run eslint --plugin eslint-plugin-ignore-erb --ext .js,.js.erb app/javascript/src/javascripts",

1312
yarn.lock

File diff suppressed because it is too large Load Diff