diff --git a/pkgs/applications/version-management/gitlab/data.json b/pkgs/applications/version-management/gitlab/data.json index df9f2255368d..bd07773f0de6 100644 --- a/pkgs/applications/version-management/gitlab/data.json +++ b/pkgs/applications/version-management/gitlab/data.json @@ -1,13 +1,12 @@ { - "version": "13.9.4", - "repo_hash": "0gwxjmph3ac5v0h5zz8664412yq09cka5p4amdbxk7hna24igksz", + "version": "13.10.2", + "repo_hash": "1q3qnfzhikbbsmzzbldwn6xvsyxr1jgv5lj7mgcji11j8qv1a625", "owner": "gitlab-org", "repo": "gitlab", - "rev": "v13.9.4-ee", + "rev": "v13.10.2-ee", "passthru": { - "GITALY_SERVER_VERSION": "13.9.4", - "GITLAB_PAGES_VERSION": "1.35.0", - "GITLAB_SHELL_VERSION": "13.17.0", - "GITLAB_WORKHORSE_VERSION": "8.63.2" + "GITALY_SERVER_VERSION": "13.10.2", + "GITLAB_PAGES_VERSION": "1.36.0", + "GITLAB_SHELL_VERSION": "13.17.0" } } diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index b9c352a4eac4..4cd64dc8ad93 100644 --- a/pkgs/applications/version-management/gitlab/default.nix +++ b/pkgs/applications/version-management/gitlab/default.nix @@ -1,7 +1,7 @@ { stdenv, lib, fetchurl, fetchFromGitLab, bundlerEnv , ruby, tzdata, git, nettools, nixosTests, nodejs, openssl , gitlabEnterprise ? false, callPackage, yarn -, fixup_yarn_lock, replace +, fixup_yarn_lock, replace, file }: let @@ -32,6 +32,10 @@ let openssl = x.openssl // { buildInputs = [ openssl ]; }; + ruby-magic-static = x.ruby-magic-static // { + buildInputs = [ file ]; + buildFlags = [ "--enable-system-libraries" ]; + }; }; groups = [ "default" "unicorn" "ed25519" "metrics" "development" "puma" "test" "kerberos" diff --git a/pkgs/applications/version-management/gitlab/gitaly/Gemfile b/pkgs/applications/version-management/gitlab/gitaly/Gemfile index d2b3d2ea0e11..00215cc55e9e 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/Gemfile +++ b/pkgs/applications/version-management/gitlab/gitaly/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -gem 'rugged', '~> 1.0.1' +gem 'rugged', '~> 1.1' gem 'github-linguist', '~> 7.12', require: 'linguist' gem 'gitlab-markup', '~> 1.7.1' gem 'activesupport', '~> 6.0.3.4' diff --git a/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock b/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock index 83c5f20f73db..32d761f9f3f7 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock @@ -183,7 +183,7 @@ GEM rubocop-ast (0.2.0) parser (>= 2.7.0.1) ruby-progressbar (1.10.1) - rugged (1.0.1) + rugged (1.1.0) sanitize (4.6.6) crass (~> 1.0.2) nokogiri (>= 1.4.4) @@ -233,7 +233,7 @@ DEPENDENCIES rspec rspec-parameterized rubocop (~> 0.69) - rugged (~> 1.0.1) + rugged (~> 1.1) sentry-raven (~> 3.0) timecop diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix index 37e97522fad4..260b3b493999 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/default.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix @@ -4,18 +4,6 @@ , libgit2, openssl, zlib, pcre, http-parser }: let - # libgit2 was updated to 1.1.0 in nixpkgs, but gitlab doesn't support that yet. - # See https://github.com/NixOS/nixpkgs/pull/106909 - libgit = libgit2.overrideAttrs (attrs: rec { - version = "1.0.0"; - src = fetchFromGitHub { - owner = "libgit2"; - repo = "libgit2"; - rev = "v${version}"; - sha256 = "06cwrw93ycpfb5kisnsa5nsy95pm11dbh0vvdjg1jn25h9q5d3vc"; - }; - }); - rubyEnv = bundlerEnv rec { name = "gitaly-env"; inherit ruby; @@ -33,17 +21,17 @@ let }; }; in buildGoModule rec { - version = "13.9.4"; + version = "13.10.2"; pname = "gitaly"; src = fetchFromGitLab { owner = "gitlab-org"; repo = "gitaly"; rev = "v${version}"; - sha256 = "sha256-6ocP4SMafvLI2jfvcB8jk1AemAI/TiBQ1iaVxK7I54A="; + sha256 = "sha256-5CjZs5tpEEsgQGBFa8BeZ7SDhIeGKqAHWwbR8hSoCPs="; }; - vendorSha256 = "10ssx0dvbzg70vr2sgnhzijnjxfw6533wdjxwakj62rpfayklp51"; + vendorSha256 = "sha256-8AopoiLmg6kfvYbZDOfFWBy1o5tbnxsKxSBX20OasIE="; passthru = { inherit rubyEnv; @@ -51,7 +39,7 @@ in buildGoModule rec { buildFlags = [ "-tags=static,system_libgit2" ]; nativeBuildInputs = [ pkg-config ]; - buildInputs = [ rubyEnv.wrappedRuby libgit openssl zlib pcre http-parser ]; + buildInputs = [ rubyEnv.wrappedRuby libgit2 openssl zlib pcre http-parser ]; doCheck = false; postInstall = '' diff --git a/pkgs/applications/version-management/gitlab/gitaly/gemset.nix b/pkgs/applications/version-management/gitlab/gitaly/gemset.nix index 7b4928918f64..90655ef9e93f 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/gemset.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/gemset.nix @@ -829,10 +829,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "056bwiwxvnbkbgsr2wqcsknnc73nqasqdnjcpgj2r61wkm8mzmbn"; + sha256 = "04aq913plcxjw71l5r62qgz3bx3466p0wvgyfqahg5n3nybmcwqy"; type = "gem"; }; - version = "1.0.1"; + version = "1.1.0"; }; sanitize = { dependencies = ["crass" "nokogiri" "nokogumbo"]; @@ -953,4 +953,4 @@ }; version = "2.4.2"; }; -} \ No newline at end of file +} diff --git a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix index 64e1668ba065..ff34a2d35959 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix @@ -1,18 +1,22 @@ { lib, fetchFromGitLab, git, buildGoModule }: - +let + data = (builtins.fromJSON (builtins.readFile ../data.json)); +in buildGoModule rec { pname = "gitlab-workhorse"; - version = "8.63.2"; + version = "13.10.2"; src = fetchFromGitLab { - owner = "gitlab-org"; - repo = "gitlab-workhorse"; - rev = "v${version}"; - sha256 = "1vjk7r7228p2gblx9nmqiz70ckbllg1p3bwkyfd4m49jhp13hryi"; + owner = data.owner; + repo = data.repo; + rev = data.rev; + sha256 = data.repo_hash; }; - vendorSha256 = "0hc02nxw5jp1mhpjcx1f2a2dfaq7ji4qkf5g7lbpd1rzhqwp6zsz"; + sourceRoot = "source/workhorse"; + + vendorSha256 = "sha256-UCkUSv1ZjDHmTFnETU8dz4moYRDCvy6AYTTfjHBGKeE="; buildInputs = [ git ]; buildFlagsArray = "-ldflags=-X main.Version=${version}"; doCheck = false; diff --git a/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile b/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile index ec253c37b3a6..af00e6e7af67 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile +++ b/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile @@ -17,7 +17,7 @@ gem 'default_value_for', '~> 3.4.0' # Supported DBs gem 'pg', '~> 1.1' -gem 'rugged', '~> 1.0.1' +gem 'rugged', '~> 1.1' gem 'grape-path-helpers', '~> 1.6.1' gem 'faraday', '~> 1.0' @@ -25,13 +25,13 @@ gem 'marginalia', '~> 1.10.0' # Authentication libraries gem 'devise', '~> 4.7.2' -# TODO: verify ARM compile issue on 3.1.13+ version (see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/18828) -gem 'bcrypt', '3.1.12' +gem 'bcrypt', '~> 3.1', '>= 3.1.14' gem 'doorkeeper', '~> 5.5.0.rc2' gem 'doorkeeper-openid_connect', '~> 1.7.5' gem 'omniauth', '~> 1.8' gem 'omniauth-auth0', '~> 2.0.0' -gem 'omniauth-azure-oauth2', '~> 0.0.9' +gem 'omniauth-azure-activedirectory-v2', '~> 0.1' +gem 'omniauth-azure-oauth2', '~> 0.0.9' # Deprecated v1 version gem 'omniauth-cas3', '~> 1.1.4' gem 'omniauth-facebook', '~> 4.0.0' gem 'omniauth-github', '~> 1.4' @@ -73,6 +73,9 @@ gem 'acme-client', '~> 2.0', '>= 2.0.6' # Browser detection gem 'browser', '~> 4.2' +# OS detection for usage ping +gem 'ohai', '~> 16.10' + # GPG gem 'gpgme', '~> 2.0.19' @@ -88,7 +91,7 @@ gem 'grape-entity', '~> 0.7.1' gem 'rack-cors', '~> 1.0.6', require: 'rack/cors' # GraphQL API -gem 'graphql', '~> 1.11.4' +gem 'graphql', '~> 1.11.8' # NOTE: graphiql-rails v1.5+ doesn't work: https://gitlab.com/gitlab-org/gitlab/issues/31771 # TODO: remove app/views/graphiql/rails/editors/show.html.erb when https://github.com/rmosolgo/graphiql-rails/pull/71 is released: # https://gitlab.com/gitlab-org/gitlab/issues/31747 @@ -112,16 +115,16 @@ gem 'carrierwave', '~> 1.3' gem 'mini_magick', '~> 4.10.1' # for backups -gem 'fog-aws', '~> 3.8' +gem 'fog-aws', '~> 3.9' # Locked until fog-google resolves https://github.com/fog/fog-google/issues/421. # Also see config/initializers/fog_core_patch.rb. gem 'fog-core', '= 2.1.0' -gem 'fog-google', '~> 1.12' +gem 'gitlab-fog-google', '~> 1.13', require: 'fog/google' gem 'fog-local', '~> 0.6' gem 'fog-openstack', '~> 1.0' gem 'fog-rackspace', '~> 0.1.1' gem 'fog-aliyun', '~> 0.3' -gem 'gitlab-fog-azure-rm', '~> 1.0', require: false +gem 'gitlab-fog-azure-rm', '~> 1.0.1', require: false # for Google storage gem 'google-api-client', '~> 0.33' @@ -195,7 +198,7 @@ gem 'acts-as-taggable-on', '~> 7.0' gem 'sidekiq', '~> 5.2.7' gem 'sidekiq-cron', '~> 1.0' gem 'redis-namespace', '~> 1.7.0' -gem 'gitlab-sidekiq-fetcher', '0.5.2', require: 'sidekiq-reliable-fetch' +gem 'gitlab-sidekiq-fetcher', '0.5.5', require: 'sidekiq-reliable-fetch' # Cron Parser gem 'fugit', '~> 1.2.1' @@ -233,10 +236,7 @@ gem 'connection_pool', '~> 2.0' gem 'redis-rails', '~> 5.0.2' # Discord integration -gem 'discordrb-webhooks-blackst0ne', '~> 3.3', require: false - -# HipChat integration -gem 'hipchat', '~> 1.5.0' +gem 'discordrb-webhooks', '~> 3.4', require: false # Jira integration gem 'jira-ruby', '~> 2.1.4' @@ -274,7 +274,10 @@ gem 'licensee', '~> 9.14.1' gem 'charlock_holmes', '~> 0.7.7' # Detect mime content type from content -gem 'mimemagic', '~> 0.3.2' +gem 'ruby-magic-static', '~> 0.3.4' + +# Fake version of the gem to trick bundler +gem 'mimemagic', '~> 0.3.10' # Faster blank gem 'fast_blank' @@ -309,7 +312,7 @@ gem 'pg_query', '~> 1.3.0' gem 'premailer-rails', '~> 1.10.3' # LabKit: Tracing and Correlation -gem 'gitlab-labkit', '0.14.0' +gem 'gitlab-labkit', '~> 0.16.1' # Thrift is a dependency of gitlab-labkit, we want a version higher than 0.14.0 # because of https://gitlab.com/gitlab-org/gitlab/-/issues/321900 gem 'thrift', '>= 0.14.0' @@ -321,7 +324,7 @@ gem 'gettext_i18n_rails', '~> 1.8.0' gem 'gettext_i18n_rails_js', '~> 1.3' gem 'gettext', '~> 3.3', require: false, group: :development -gem 'batch-loader', '~> 1.4.0' +gem 'batch-loader', '~> 2.0.1' # Perf bar gem 'peek', '~> 1.1' @@ -341,7 +344,6 @@ end group :development do gem 'brakeman', '~> 4.2', require: false - gem 'danger', '~> 8.0.6', require: false gem 'lefthook', '~> 0.7', require: false gem 'letter_opener_web', '~> 1.3.4' @@ -375,9 +377,8 @@ group :development, :test do gem 'spring', '~> 2.1.0' gem 'spring-commands-rspec', '~> 1.0.4' - gem 'gitlab-styles', '~> 6.0.0', require: false + gem 'gitlab-styles', '~> 6.1.0', require: false - gem 'scss_lint', '~> 0.59.0', require: false gem 'haml_lint', '~> 0.36.0', require: false gem 'bundler-audit', '~> 0.7.0.1', require: false @@ -397,6 +398,11 @@ group :development, :test do gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false end +group :development, :test, :danger do + gem 'danger-gitlab', '~> 8.0', require: false + gem 'gitlab-dangerfiles', '~> 0.8.0', require: false +end + group :development, :test, :coverage do gem 'simplecov', '~> 0.18.5', require: false gem 'simplecov-cobertura', '~> 1.3.1', require: false @@ -433,7 +439,7 @@ end gem 'octokit', '~> 4.15' # https://gitlab.com/gitlab-org/gitlab/issues/207207 -gem 'gitlab-mail_room', '~> 0.0.8', require: 'mail_room' +gem 'gitlab-mail_room', '~> 0.0.9', require: 'mail_room' gem 'email_reply_trimmer', '~> 0.1' gem 'html2text' @@ -482,7 +488,7 @@ gem 'flipper', '~> 0.17.1' gem 'flipper-active_record', '~> 0.17.1' gem 'flipper-active_support_cache_store', '~> 0.17.1' gem 'unleash', '~> 0.1.5' -gem 'gitlab-experiment', '~> 0.4.9' +gem 'gitlab-experiment', '~> 0.5.0' # Structured logging gem 'lograge', '~> 0.5' diff --git a/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock b/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock index 1b6701e8e3d2..203d52ddb674 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock @@ -88,7 +88,7 @@ GEM asciidoctor (~> 2.0) asciidoctor-plantuml (0.0.12) asciidoctor (>= 1.5.6, < 3.0.0) - ast (2.4.1) + ast (2.4.2) atlassian-jwt (0.2.0) jwt (~> 2.1.0) attr_encrypted (3.1.0) @@ -127,8 +127,8 @@ GEM nokogiri (~> 1.11.0.rc2) babosa (1.0.2) base32 (0.3.2) - batch-loader (1.4.0) - bcrypt (3.1.12) + batch-loader (2.0.1) + bcrypt (3.1.16) bcrypt_pbkdf (1.0.0) benchmark-ips (2.3.0) benchmark-memory (0.1.2) @@ -172,6 +172,14 @@ GEM cbor (0.5.9.6) character_set (1.4.0) charlock_holmes (0.7.7) + chef-config (16.10.17) + addressable + chef-utils (= 16.10.17) + fuzzyurl + mixlib-config (>= 2.2.12, < 4.0) + mixlib-shellout (>= 2.0, < 4.0) + tomlrb (~> 1.2) + chef-utils (16.10.17) childprocess (3.0.0) chunky_png (1.3.5) citrus (3.0.2) @@ -187,7 +195,7 @@ GEM concord (0.1.5) adamantium (~> 0.2.0) equalizer (~> 0.0.9) - concurrent-ruby (1.1.7) + concurrent-ruby (1.1.8) connection_pool (2.2.2) contracts (0.11.0) cork (0.3.0) @@ -208,7 +216,7 @@ GEM css_parser (1.7.0) addressable daemons (1.3.1) - danger (8.0.6) + danger (8.2.3) claide (~> 1.0) claide-plugins (>= 0.9.2) colored2 (~> 3.1) @@ -220,7 +228,10 @@ GEM kramdown-parser-gfm (~> 1.0) no_proxy_fix octokit (~> 4.7) - terminal-table (~> 1) + terminal-table (>= 1, < 4) + danger-gitlab (8.0.0) + danger + gitlab (~> 4.2, >= 4.2.0) database_cleaner (1.7.0) debugger-ruby_core_source (1.3.8) deckar01-task_list (2.3.1) @@ -257,8 +268,8 @@ GEM diff-lcs (1.4.4) diff_match_patch (0.1.0) diffy (3.3.0) - discordrb-webhooks-blackst0ne (3.3.0) - rest-client (~> 2.0) + discordrb-webhooks (3.4.2) + rest-client (>= 2.0.0) docile (1.3.2) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -348,6 +359,8 @@ GEM ffi-compiler (1.0.1) ffi (>= 1.0.0) rake + ffi-yajl (2.3.4) + libyajl2 (~> 1.2) flipper (0.17.1) flipper-active_record (0.17.1) activerecord (>= 4.2, < 7) @@ -363,7 +376,7 @@ GEM fog-json ipaddress (~> 0.8) xml-simple (~> 1.1) - fog-aws (3.8.0) + fog-aws (3.9.0) fog-core (~> 2.1) fog-json (~> 1.1) fog-xml (~> 0.1) @@ -373,12 +386,6 @@ GEM excon (~> 0.58) formatador (~> 0.2) mime-types - fog-google (1.12.0) - fog-core (<= 2.1.0) - fog-json (~> 1.2) - fog-xml (~> 0.1.0) - google-api-client (>= 0.44.2, < 0.51) - google-cloud-env (~> 1.2) fog-json (1.2.0) fog-core multi_json (~> 1.10) @@ -403,6 +410,7 @@ GEM fuubar (2.2.0) rspec-core (~> 3.0) ruby-progressbar (~> 1.4) + fuzzyurl (0.9.0) gemoji (3.0.1) gemojione (3.3.0) json @@ -423,38 +431,49 @@ GEM gitaly (13.9.0.pre.rc1) grpc (~> 1.0) github-markup (1.7.0) + gitlab (4.16.1) + httparty (~> 0.14, >= 0.14.0) + terminal-table (~> 1.5, >= 1.5.1) gitlab-chronic (0.10.5) numerizer (~> 0.2) - gitlab-experiment (0.4.9) + gitlab-dangerfiles (0.8.0) + danger + gitlab-experiment (0.5.0) activesupport (>= 3.0) scientist (~> 1.5, >= 1.5.0) - gitlab-fog-azure-rm (1.0.0) + gitlab-fog-azure-rm (1.0.1) azure-storage-blob (~> 2.0) azure-storage-common (~> 2.0) fog-core (= 2.1.0) fog-json (~> 1.2.0) mime-types ms_rest_azure (~> 0.12.0) - gitlab-labkit (0.14.0) + gitlab-fog-google (1.13.0) + addressable (>= 2.7.0) + fog-core (<= 2.1.0) + fog-json (~> 1.2) + fog-xml (~> 0.1.0) + google-api-client (>= 0.44.2, < 0.51) + google-cloud-env (~> 1.2) + gitlab-labkit (0.16.1) actionpack (>= 5.0.0, < 7.0.0) activesupport (>= 5.0.0, < 7.0.0) - gitlab-pg_query (~> 1.3) grpc (~> 1.19) jaeger-client (~> 1.1) opentracing (~> 0.4) + pg_query (~> 1.3) redis (> 3.0.0, < 5.0.0) - gitlab-license (1.3.0) - gitlab-mail_room (0.0.8) + gitlab-license (1.3.1) + gitlab-mail_room (0.0.9) gitlab-markup (1.7.1) gitlab-net-dns (0.9.1) - gitlab-pg_query (1.3.1) gitlab-pry-byebug (3.9.0) byebug (~> 11.0) pry (~> 0.13.0) - gitlab-sidekiq-fetcher (0.5.2) + gitlab-sidekiq-fetcher (0.5.5) sidekiq (~> 5) - gitlab-styles (6.0.0) - rubocop (~> 0.91.1) + gitlab-styles (6.1.0) + rubocop (~> 0.91, >= 0.91.1) rubocop-gitlab-security (~> 0.1.1) rubocop-performance (~> 1.9.2) rubocop-rails (~> 2.9) @@ -520,7 +539,7 @@ GEM faraday (>= 1.0) faraday_middleware graphql-client - graphql (1.11.4) + graphql (1.11.8) graphql-client (0.16.0) activesupport (>= 3.0) graphql (~> 1.8) @@ -574,9 +593,6 @@ GEM railties (>= 5.0) heapy (0.2.0) thor - hipchat (1.5.2) - httparty - mimemagic html-pipeline (2.13.2) activesupport (>= 2) nokogiri (>= 1.4) @@ -598,7 +614,7 @@ GEM mime-types (~> 3.0) multi_xml (>= 0.5.2) httpclient (2.8.3) - i18n (1.8.7) + i18n (1.8.9) concurrent-ruby (~> 1.0) i18n_data (0.8.0) icalendar (2.4.1) @@ -668,6 +684,7 @@ GEM actionmailer (>= 3.2) letter_opener (~> 1.0) railties (>= 3.2) + libyajl2 (1.2.0) license_finder (6.0.0) bundler rubyzip (>= 1, < 3) @@ -711,12 +728,20 @@ GEM mime-types (3.3.1) mime-types-data (~> 3.2015) mime-types-data (3.2020.0512) - mimemagic (0.3.5) + mimemagic (0.3.10) + nokogiri (~> 1) + rake mini_histogram (0.3.1) mini_magick (4.10.1) mini_mime (1.0.2) mini_portile2 (2.5.0) minitest (5.11.3) + mixlib-cli (2.1.8) + mixlib-config (3.0.9) + tomlrb + mixlib-log (3.0.9) + mixlib-shellout (3.2.5) + chef-utils ms_rest (0.7.6) concurrent-ruby (~> 1.0) faraday (>= 0.9, < 2.0.0) @@ -737,10 +762,12 @@ GEM mustermann (>= 1.0.0) nap (1.1.0) nenv (0.3.0) - net-http-persistent (4.0.0) + net-http-persistent (4.0.1) connection_pool (~> 2.2) net-ldap (0.16.3) net-ntp (2.1.3) + net-scp (3.0.0) + net-ssh (>= 2.6.5, < 7.0.0) net-ssh (6.0.0) netrc (0.11.0) nio4r (2.5.4) @@ -764,6 +791,19 @@ GEM octokit (4.20.0) faraday (>= 0.9) sawyer (~> 0.8.0, >= 0.5.3) + ohai (16.10.6) + chef-config (>= 12.8, < 17) + chef-utils (>= 16.0, < 17) + ffi (~> 1.9) + ffi-yajl (~> 2.2) + ipaddress + mixlib-cli (>= 1.7.0) + mixlib-config (>= 2.0, < 4.0) + mixlib-log (>= 2.0.1, < 4.0) + mixlib-shellout (>= 2.0, < 4.0) + plist (~> 3.1) + train-core + wmi-lite (~> 1.0) oj (3.10.6) omniauth (1.9.0) hashie (>= 3.4.6, < 3.7.0) @@ -776,6 +816,8 @@ GEM omniauth-authentiq (0.3.3) jwt (>= 1.5) omniauth-oauth2 (>= 1.5) + omniauth-azure-activedirectory-v2 (0.1.1) + omniauth-oauth2 omniauth-azure-oauth2 (0.0.10) jwt (>= 1.0, < 3.0) omniauth (~> 1.0) @@ -855,6 +897,7 @@ GEM railties (>= 4.0.0) pg (1.2.3) pg_query (1.3.0) + plist (3.6.0) png_quantizator (0.2.1) po_to_json (1.0.1) json (>= 1.6.0) @@ -1041,16 +1084,16 @@ GEM pg rails sqlite3 - rubocop (0.91.1) + rubocop (0.93.1) parallel (~> 1.10) - parser (>= 2.7.1.1) + parser (>= 2.7.1.5) rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.7) + regexp_parser (>= 1.8) rexml - rubocop-ast (>= 0.4.0, < 1.0) + rubocop-ast (>= 0.6.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 2.0) - rubocop-ast (0.8.0) + rubocop-ast (1.4.1) parser (>= 2.7.1.5) rubocop-gitlab-security (0.1.1) rubocop (>= 0.51) @@ -1068,6 +1111,8 @@ GEM i18n ruby-fogbugz (0.2.1) crack (~> 0.4) + ruby-magic-static (0.3.5) + mini_portile2 (~> 2.5.0) ruby-prof (1.3.1) ruby-progressbar (1.11.0) ruby-saml (1.7.2) @@ -1079,7 +1124,7 @@ GEM rubyntlm (0.6.2) rubypants (0.2.0) rubyzip (2.0.0) - rugged (1.0.1) + rugged (1.1.0) safe_yaml (1.0.4) safety_net_attestation (0.4.0) jwt (~> 2.0) @@ -1104,9 +1149,7 @@ GEM sawyer (0.8.2) addressable (>= 2.3.5) faraday (> 0.8, < 2.0) - scientist (1.5.0) - scss_lint (0.59.0) - sass (~> 3.5, >= 3.5.5) + scientist (1.6.0) securecompare (1.0.0) seed-fu (2.3.7) activerecord (>= 3.1) @@ -1196,9 +1239,17 @@ GEM parslet (~> 1.8.0) toml-rb (1.0.0) citrus (~> 3.0, > 3.0) + tomlrb (1.3.0) tpm-key_attestation (0.9.0) bindata (~> 2.4) openssl-signature_algorithm (~> 0.4.0) + train-core (3.4.9) + addressable (~> 2.5) + ffi (!= 1.13.0) + json (>= 1.8, < 3.0) + mixlib-shellout (>= 2.0, < 4.0) + net-scp (>= 1.2, < 4.0) + net-ssh (>= 2.9, < 7.0) truncato (0.7.11) htmlentities (~> 4.3.1) nokogiri (>= 1.7.0, <= 2.0) @@ -1235,7 +1286,7 @@ GEM validate_email (0.1.6) activemodel (>= 3.0) mail (>= 2.2.5) - validate_url (1.0.8) + validate_url (1.0.13) activemodel (>= 3.0.0) public_suffix validates_hostname (1.0.11) @@ -1271,6 +1322,7 @@ GEM expression_parser rinku with_env (1.1.0) + wmi-lite (1.0.5) xml-simple (1.1.5) xpath (3.2.0) nokogiri (~> 1.8) @@ -1302,8 +1354,8 @@ DEPENDENCIES aws-sdk-s3 (~> 1) babosa (~> 1.0.2) base32 (~> 0.3.0) - batch-loader (~> 1.4.0) - bcrypt (= 3.1.12) + batch-loader (~> 2.0.1) + bcrypt (~> 3.1, >= 3.1.14) bcrypt_pbkdf (~> 1.0) benchmark-ips (~> 2.3.0) benchmark-memory (~> 0.1) @@ -1324,7 +1376,7 @@ DEPENDENCIES countries (~> 3.0) creole (~> 0.5.0) crystalball (~> 0.7.0) - danger (~> 8.0.6) + danger-gitlab (~> 8.0) database_cleaner (~> 1.7.0) deckar01-task_list (= 2.3.1) default_value_for (~> 3.4.0) @@ -1335,7 +1387,7 @@ DEPENDENCIES devise-two-factor (~> 3.1.0) diff_match_patch (~> 0.1.0) diffy (~> 3.3) - discordrb-webhooks-blackst0ne (~> 3.3) + discordrb-webhooks (~> 3.4) doorkeeper (~> 5.5.0.rc2) doorkeeper-openid_connect (~> 1.7.5) ed25519 (~> 1.2) @@ -1356,9 +1408,8 @@ DEPENDENCIES flipper-active_support_cache_store (~> 0.17.1) flowdock (~> 0.7) fog-aliyun (~> 0.3) - fog-aws (~> 3.8) + fog-aws (~> 3.9) fog-core (= 2.1.0) - fog-google (~> 1.12) fog-local (~> 0.6) fog-openstack (~> 1.0) fog-rackspace (~> 0.1.1) @@ -1371,16 +1422,18 @@ DEPENDENCIES gitaly (~> 13.9.0.pre.rc1) github-markup (~> 1.7.0) gitlab-chronic (~> 0.10.5) - gitlab-experiment (~> 0.4.9) - gitlab-fog-azure-rm (~> 1.0) - gitlab-labkit (= 0.14.0) + gitlab-dangerfiles (~> 0.8.0) + gitlab-experiment (~> 0.5.0) + gitlab-fog-azure-rm (~> 1.0.1) + gitlab-fog-google (~> 1.13) + gitlab-labkit (~> 0.16.1) gitlab-license (~> 1.3) - gitlab-mail_room (~> 0.0.8) + gitlab-mail_room (~> 0.0.9) gitlab-markup (~> 1.7.1) gitlab-net-dns (~> 0.9.1) gitlab-pry-byebug - gitlab-sidekiq-fetcher (= 0.5.2) - gitlab-styles (~> 6.0.0) + gitlab-sidekiq-fetcher (= 0.5.5) + gitlab-styles (~> 6.1.0) gitlab_chronic_duration (~> 0.10.6.2) gitlab_omniauth-ldap (~> 2.1.1) gon (~> 6.2) @@ -1393,7 +1446,7 @@ DEPENDENCIES grape_logging (~> 1.7) graphiql-rails (~> 1.4.10) graphlient (~> 0.4.0) - graphql (~> 1.11.4) + graphql (~> 1.11.8) graphql-docs (~> 1.6.0) grpc (~> 1.30.2) gssapi @@ -1404,7 +1457,6 @@ DEPENDENCIES hashie hashie-forbidden_attributes health_check (~> 3.0) - hipchat (~> 1.5.0) html-pipeline (~> 2.13.2) html2text httparty (~> 0.16.4) @@ -1433,7 +1485,7 @@ DEPENDENCIES marginalia (~> 1.10.0) memory_profiler (~> 0.9) method_source (~> 1.0) - mimemagic (~> 0.3.2) + mimemagic (~> 0.3.10) mini_magick (~> 4.10.1) minitest (~> 5.11.0) multi_json (~> 1.14.1) @@ -1443,11 +1495,13 @@ DEPENDENCIES nokogiri (~> 1.11.1) oauth2 (~> 1.4) octokit (~> 4.15) + ohai (~> 16.10) oj (~> 3.10.6) omniauth (~> 1.8) omniauth-atlassian-oauth2 (~> 0.2.0) omniauth-auth0 (~> 2.0.0) omniauth-authentiq (~> 0.3.3) + omniauth-azure-activedirectory-v2 (~> 0.1) omniauth-azure-oauth2 (~> 0.0.9) omniauth-cas3 (~> 1.1.4) omniauth-facebook (~> 4.0.0) @@ -1505,14 +1559,14 @@ DEPENDENCIES rspec_junit_formatter rspec_profiling (~> 0.0.6) ruby-fogbugz (~> 0.2.1) + ruby-magic-static (~> 0.3.4) ruby-prof (~> 1.3.0) ruby-progressbar (~> 1.10) ruby_parser (~> 3.15) rubyzip (~> 2.0.0) - rugged (~> 1.0.1) + rugged (~> 1.1) sanitize (~> 5.2.1) sassc-rails (~> 2.1.0) - scss_lint (~> 0.59.0) seed-fu (~> 2.3.7) selenium-webdriver (~> 3.142) sentry-raven (~> 3.0) diff --git a/pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix b/pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix index 64d38a9a2747..f6c26777f4f2 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix +++ b/pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix @@ -285,10 +285,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1l3468czzjmxl93ap40hp7z94yxp4nbag0bxqs789bm30md90m2a"; + sha256 = "04nc8x27hlzlrr5c2gn7mar4vdr0apw5xg22wp6m8dx3wqr04a0y"; type = "gem"; }; - version = "2.4.1"; + version = "2.4.2"; }; atlassian-jwt = { dependencies = ["jwt"]; @@ -475,20 +475,20 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "09jaxxddqpgq8ynwd2gpjq5rkhw00zdjnqisk9qbpjgxzk6f8gwi"; + sha256 = "17d8wwj880zar5h8zxdmw878shgmljmmv957802fw5nkg3gi3xwk"; type = "gem"; }; - version = "1.4.0"; + version = "2.0.1"; }; bcrypt = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0ysblqxkclmnhrd0kmb5mr8p38mbar633gdsb14b7dhkhgawgzfy"; + sha256 = "02r1c3isfchs5fxivbq99gc3aq4vfyn8snhcy707dal1p8qz12qb"; type = "gem"; }; - version = "3.1.12"; + version = "3.1.16"; }; bcrypt_pbkdf = { groups = ["ed25519"]; @@ -703,6 +703,27 @@ }; version = "0.7.7"; }; + chef-config = { + dependencies = ["addressable" "chef-utils" "fuzzyurl" "mixlib-config" "mixlib-shellout" "tomlrb"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0z3lashvhqy9v5b3xn8vzzf07gnjw4mgdiiryxsg6kdasvj62j8z"; + type = "gem"; + }; + version = "16.10.17"; + }; + chef-utils = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1cypir7fza7jfqaj1j1jh37d3i6bvrmm6jamjlngk3xbdbd56hm7"; + type = "gem"; + }; + version = "16.10.17"; + }; childprocess = { groups = ["default" "test"]; platforms = []; @@ -805,10 +826,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vnxrbhi7cq3p4y2v9iwd10v1c7l15is4var14hwnb2jip4fyjzz"; + sha256 = "0mr23wq0szj52xnj0zcn1k0c7j4v79wlwbijkpfcscqww3l6jlg3"; type = "gem"; }; - version = "1.1.7"; + version = "1.1.8"; }; connection_pool = { groups = ["default"]; @@ -928,14 +949,25 @@ }; danger = { dependencies = ["claide" "claide-plugins" "colored2" "cork" "faraday" "faraday-http-cache" "git" "kramdown" "kramdown-parser-gfm" "no_proxy_fix" "octokit" "terminal-table"]; - groups = ["development"]; + groups = ["danger" "default" "development" "test"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0lrifb0kbjk9033pzjnp8qqqkg2z212h8dgj71k15c6wb6rycqa7"; + sha256 = "1nv02gq90nngnfa6hgiyyk60a31xfayk67va98k41gy9arhdkz5g"; type = "gem"; }; - version = "8.0.6"; + version = "8.2.3"; + }; + danger-gitlab = { + dependencies = ["danger" "gitlab"]; + groups = ["danger" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1a530kx5s5rbx5yx3jqay56lkksqh0yj468hcpg16faiyv8dfza9"; + type = "gem"; + }; + version = "8.0.0"; }; database_cleaner = { groups = ["development" "test"]; @@ -1087,16 +1119,16 @@ }; version = "3.3.0"; }; - discordrb-webhooks-blackst0ne = { + discordrb-webhooks = { dependencies = ["rest-client"]; groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1f0dw6ci5cbrxrvvqw2kqabpzyjisd4hflbi370rpb4cakkzgw39"; + sha256 = "0viw73jd9vs9f92a9q2vxcd29755h7w8jwz36jmvcdl2najainyg"; type = "gem"; }; - version = "3.3.0"; + version = "3.4.2"; }; docile = { groups = ["default" "development" "test"]; @@ -1563,6 +1595,17 @@ }; version = "1.0.1"; }; + ffi-yajl = { + dependencies = ["libyajl2"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1pfmn0gprc3c15baxa9rx64pqllk64m60f5vg4gp0icpafkp0jx5"; + type = "gem"; + }; + version = "2.3.4"; + }; flipper = { groups = ["default"]; platforms = []; @@ -1623,10 +1666,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1q7n8r03akjbdz3r2bgsl6wcjvdlf0k508z8bsd9zgs43qg14vc9"; + sha256 = "10y32rm3vcfh82p2fdr2zq8ibknx1jslmai5m0r261bdr3brkssm"; type = "gem"; }; - version = "3.8.0"; + version = "3.9.0"; }; fog-core = { dependencies = ["builder" "excon" "formatador" "mime-types"]; @@ -1639,17 +1682,6 @@ }; version = "2.1.0"; }; - fog-google = { - dependencies = ["fog-core" "fog-json" "fog-xml" "google-api-client" "google-cloud-env"]; - groups = ["default"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1cl6rprichdn1i40c2ndri1c53cfb0x2xk58l9arwip9ivkasln4"; - type = "gem"; - }; - version = "1.12.0"; - }; fog-json = { dependencies = ["fog-core" "multi_json"]; groups = ["default"]; @@ -1737,6 +1769,16 @@ }; version = "2.2.0"; }; + fuzzyurl = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "03qchs33vfwbsv5awxg3acfmlcrf5xbhnbrc83fdpamwya0glbjl"; + type = "gem"; + }; + version = "0.9.0"; + }; gemoji = { groups = ["default" "development" "test"]; platforms = []; @@ -1834,6 +1876,17 @@ }; version = "1.7.0"; }; + gitlab = { + dependencies = ["httparty" "terminal-table"]; + groups = ["danger" "default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0kq77304vn733xc8iipq4wpdk5qb0zwjryhm3fia3mfsrdcp1z8k"; + type = "gem"; + }; + version = "4.16.1"; + }; gitlab-chronic = { dependencies = ["numerizer"]; groups = ["default"]; @@ -1845,16 +1898,27 @@ }; version = "0.10.5"; }; + gitlab-dangerfiles = { + dependencies = ["danger"]; + groups = ["danger" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "09ggs890b5gfphnz7ayavs55l6xhw323spfd22dg246g0rw9vliy"; + type = "gem"; + }; + version = "0.8.0"; + }; gitlab-experiment = { dependencies = ["activesupport" "scientist"]; groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0skqg90i6qdpm7dhy8bv99gk8siwgm6mpr675790ngri1ns4f5xk"; + sha256 = "0x4hyva7ypi2mx5jcyxac8w7ffai1pkkjc49fk3avqh4aimlibfr"; type = "gem"; }; - version = "0.4.9"; + version = "0.5.0"; }; gitlab-fog-azure-rm = { dependencies = ["azure-storage-blob" "azure-storage-common" "fog-core" "fog-json" "mime-types" "ms_rest_azure"]; @@ -1862,41 +1926,52 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "04l7ps0vvrqq8i25q7ic2zy2n8f8f1l7sn1shf5wccy1cbyj9pig"; + sha256 = "05yc5fp45v7y6h838zrj4666ar1ddhn8i5bbdxm8j73yrn2kjnal"; type = "gem"; }; - version = "1.0.0"; + version = "1.0.1"; }; - gitlab-labkit = { - dependencies = ["actionpack" "activesupport" "gitlab-pg_query" "grpc" "jaeger-client" "opentracing" "redis"]; + gitlab-fog-google = { + dependencies = ["addressable" "fog-core" "fog-json" "fog-xml" "google-api-client" "google-cloud-env"]; groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0l4sbvlk6qc0x8372rp1gc2ihmx3vp0afrm5cy55xhflq16y7sl1"; + sha256 = "0ybmiclsdpkp1l91z6d4qkhha6cik6kgf4kzs3a2c26mhnnj6gxy"; type = "gem"; }; - version = "0.14.0"; + version = "1.13.0"; + }; + gitlab-labkit = { + dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing" "pg_query" "redis"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "03i8fc1yzm5yzqxb8bxhjkhqpj17fy71vg2z02bcj4mzbj0piflx"; + type = "gem"; + }; + version = "0.16.1"; }; gitlab-license = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "04846kr8pw0fkw4mavakai978raq5d2kjna4rawxpc3dqlr897g4"; + sha256 = "01z5pb6fg1j83p73vys2fhj7qh60zkqbgiyp4nvw013a6hjlv3qk"; type = "gem"; }; - version = "1.3.0"; + version = "1.3.1"; }; gitlab-mail_room = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "05j8rpsbl2l5q4xnfh2cnws9axy1a19asg8nlw6jngba94raw5ir"; + sha256 = "0745kls2bazgk6kbmlq1dmd42z8bgxkyn6ki9snxka8abi5kf037"; type = "gem"; }; - version = "0.0.8"; + version = "0.0.9"; }; gitlab-markup = { groups = ["default"]; @@ -1918,16 +1993,6 @@ }; version = "0.9.1"; }; - gitlab-pg_query = { - groups = ["default"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1rybirjyclavp641qdx27483xx0zpmc577wdzfgdnjd7753bya7g"; - type = "gem"; - }; - version = "1.3.1"; - }; gitlab-pry-byebug = { dependencies = ["byebug" "pry"]; groups = ["development" "test"]; @@ -1949,10 +2014,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0dvx2klf1a1xyf15q34fn59291v6jwx3z315rxb2dmkvcr9873m1"; + sha256 = "055v0cxvxgy12iwhqa2xbsxa9j6ww7p1f5jqwncwsnr7l6f1f4c9"; type = "gem"; }; - version = "0.5.2"; + version = "0.5.5"; }; gitlab-styles = { dependencies = ["rubocop" "rubocop-gitlab-security" "rubocop-performance" "rubocop-rails" "rubocop-rspec"]; @@ -1960,10 +2025,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "17d238cy031gnjmrk6wl3qyk5kqhqjxrb68813n4y9ia817xmwyp"; + sha256 = "0y3livdpkdzp4cy47ycpwqa7nhrf6fb1ff2lwhh4l5n4dpqympwn"; type = "gem"; }; - version = "6.0.0"; + version = "6.1.0"; }; gitlab_chronic_duration = { dependencies = ["numerizer"]; @@ -2145,10 +2210,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "01ldxhn59lfg5ivxc9m11v1qhw29ql95qcvwwcap49n0z7d1i3k5"; + sha256 = "0rm59b6klp97287h01aj8hr12mhsya585as2z1sk8hq2lp51imfn"; type = "gem"; }; - version = "1.11.4"; + version = "1.11.8"; }; graphql-client = { dependencies = ["activesupport" "graphql"]; @@ -2332,17 +2397,6 @@ }; version = "0.2.0"; }; - hipchat = { - dependencies = ["httparty" "mimemagic"]; - groups = ["default"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0hgy5jav479vbzzk53lazhpjj094dcsqw6w1d6zjn52p72bwq60k"; - type = "gem"; - }; - version = "1.5.2"; - }; html-pipeline = { dependencies = ["activesupport" "nokogiri"]; groups = ["default" "development" "test"]; @@ -2455,10 +2509,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1kr0bx9323fv5ys6nlhsy05kmwcbs94h6ac7ka9qqywy0vbdvrrv"; + sha256 = "08p6b13p99j1rrcrw1l3v0kb9mxbsvy6nk31r8h4rnszdgzpga32"; type = "gem"; }; - version = "1.8.7"; + version = "1.8.9"; }; i18n_data = { groups = ["default"]; @@ -2758,6 +2812,16 @@ }; version = "1.3.4"; }; + libyajl2 = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0n5j0p8dxf9xzb9n4bkdr8w0a8gg3jzrn9indri3n0fv90gcs5qi"; + type = "gem"; + }; + version = "1.2.0"; + }; license_finder = { dependencies = ["rubyzip" "thor" "toml" "with_env" "xml-simple"]; groups = ["development" "omnibus" "test"]; @@ -2953,14 +3017,15 @@ version = "3.2020.0512"; }; mimemagic = { + dependencies = ["nokogiri" "rake"]; groups = ["default" "test"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1qfqb9w76kmpb48frbzbyvjc0dfxh5qiw1kxdbv2y2kp6fxpa1kf"; + sha256 = "0cqm9n9122qpksn9v6mp0gn3lrzxhh72lwl7yb6j75gykdan6h41"; type = "gem"; }; - version = "0.3.5"; + version = "0.3.10"; }; mini_histogram = { groups = ["default" "test"]; @@ -3012,6 +3077,48 @@ }; version = "5.11.3"; }; + mixlib-cli = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ydxlfgd7nnj3rp1y70k4yk96xz5cywldjii2zbnw3sq9pippwp6"; + type = "gem"; + }; + version = "2.1.8"; + }; + mixlib-config = { + dependencies = ["tomlrb"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1askip583sfnz25gywd508l3vj5wnvx9vp7gm1sfnixm7amssrwq"; + type = "gem"; + }; + version = "3.0.9"; + }; + mixlib-log = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0n5dm5iz90ijvjn59jfm8gb8hgsvbj0f1kpzbl38b02z0z4a4v7x"; + type = "gem"; + }; + version = "3.0.9"; + }; + mixlib-shellout = { + dependencies = ["chef-utils"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1g99c3s5zvrwvlv3gjw5fvpdimybpfazqyszjim5kdjjbq0586hj"; + type = "gem"; + }; + version = "3.2.5"; + }; ms_rest = { dependencies = ["concurrent-ruby" "faraday" "timeliness"]; groups = ["default"]; @@ -3132,10 +3239,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0sbdvkn7mzl883iykz74hgp14qj041gldf2vdk9g3gyqc843l2vr"; + sha256 = "1yfypmfg1maf20yfd22zzng8k955iylz7iip0mgc9lazw36g8li7"; type = "gem"; }; - version = "4.0.0"; + version = "4.0.1"; }; net-ldap = { groups = ["default"]; @@ -3157,6 +3264,17 @@ }; version = "2.1.3"; }; + net-scp = { + dependencies = ["net-ssh"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0b4h3ip8d1gkrc0znnw54hbxillk73mdnaf5pz330lmrcl1wiilg"; + type = "gem"; + }; + version = "3.0.0"; + }; net-ssh = { groups = ["default"]; platforms = []; @@ -3272,6 +3390,17 @@ }; version = "4.20.0"; }; + ohai = { + dependencies = ["chef-config" "chef-utils" "ffi" "ffi-yajl" "ipaddress" "mixlib-cli" "mixlib-config" "mixlib-log" "mixlib-shellout" "plist" "train-core" "wmi-lite"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "08pc5l9p741g08x7xzbkkyi2kz5m5xr8rdj6hfna9bjzb1p80ddq"; + type = "gem"; + }; + version = "16.10.6"; + }; oj = { groups = ["default"]; platforms = []; @@ -3326,6 +3455,17 @@ }; version = "0.3.3"; }; + omniauth-azure-activedirectory-v2 = { + dependencies = ["omniauth-oauth2"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0bgdyzjh7x9knkzaa6bl9f5fvh05nd0gqxrqassww0vqh5qgyfpy"; + type = "gem"; + }; + version = "0.1.1"; + }; omniauth-azure-oauth2 = { dependencies = ["jwt" "omniauth" "omniauth-oauth2"]; groups = ["default"]; @@ -3667,6 +3807,16 @@ }; version = "1.3.0"; }; + plist = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1whhr897z6z6av85x2cipyjk46bwh6s4wx6nbrcd3iifnzvbqs7l"; + type = "gem"; + }; + version = "3.6.0"; + }; png_quantizator = { groups = ["development" "test"]; platforms = []; @@ -4479,10 +4629,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "19nmdwz6mc5ah0xqlj1j58ylcp9zsckb1xm7p1z51abnqhcq5c06"; + sha256 = "0phrig25dykgi42z6mf1abllh3ws6sv7awa82hzvvvbjx2xlzd3k"; type = "gem"; }; - version = "0.91.1"; + version = "0.93.1"; }; rubocop-ast = { dependencies = ["parser"]; @@ -4490,10 +4640,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "165ws2vwnw33nlqgzvzzjjp1zhkc712a92lbpbjx8j83g44dmdy4"; + sha256 = "0gkf1p8yal38nlvdb39qaiy0gr85fxfr09j5dxh8qvrgpncpnk78"; type = "gem"; }; - version = "0.8.0"; + version = "1.4.1"; }; rubocop-gitlab-security = { dependencies = ["rubocop"]; @@ -4561,6 +4711,17 @@ }; version = "0.2.1"; }; + ruby-magic-static = { + dependencies = ["mini_portile2"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0whs2i868g1bgglrxl6aba47h8n9zqglsipskk6l83rfkm85ik3g"; + type = "gem"; + }; + version = "0.3.5"; + }; ruby-prof = { groups = ["default"]; platforms = []; @@ -4658,10 +4819,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "056bwiwxvnbkbgsr2wqcsknnc73nqasqdnjcpgj2r61wkm8mzmbn"; + sha256 = "04aq913plcxjw71l5r62qgz3bx3466p0wvgyfqahg5n3nybmcwqy"; type = "gem"; }; - version = "1.0.1"; + version = "1.1.0"; }; safe_yaml = { groups = ["default" "test"]; @@ -4755,21 +4916,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "09565ppvd851zxpspn5d5q28wqkfjyfxhvda9w80i16p3y937155"; + sha256 = "0jklwk9aldvlmdv17m77g2f82j383alqd4jjnwn4c564q9wvz3fp"; type = "gem"; }; - version = "1.5.0"; - }; - scss_lint = { - dependencies = ["sass"]; - groups = ["development" "test"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1s6dzk4n9pnmqciliggwpiny43vc3cx3n2d5gqa9aqng77ff7yv7"; - type = "gem"; - }; - version = "0.59.0"; + version = "1.6.0"; }; securecompare = { groups = ["default"]; @@ -5273,6 +5423,16 @@ }; version = "1.0.0"; }; + tomlrb = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "00x5y9h4fbvrv4xrjk4cqlkm4vq8gv73ax4alj3ac2x77zsnnrk8"; + type = "gem"; + }; + version = "1.3.0"; + }; tpm-key_attestation = { dependencies = ["bindata" "openssl-signature_algorithm"]; groups = ["default"]; @@ -5284,6 +5444,17 @@ }; version = "0.9.0"; }; + train-core = { + dependencies = ["addressable" "ffi" "json" "mixlib-shellout" "net-scp" "net-ssh"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1pbfbmi9l5hxr1zly1bc72fk8a6by4d19wdap8q3mi3rlflqzbfp"; + type = "gem"; + }; + version = "3.4.9"; + }; truncato = { dependencies = ["htmlentities" "nokogiri"]; groups = ["default"]; @@ -5459,10 +5630,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1k0bfxzvdcf1nrqhvnyhijc4mwab9wn4qvqb0ynq6p8dj0f866zi"; + sha256 = "1bwj34rz7961rrl545f006m2jdz1nrc0m72gfqmnb41xwsvpagbk"; type = "gem"; }; - version = "1.0.8"; + version = "1.0.13"; }; validates_hostname = { dependencies = ["activerecord" "activesupport"]; @@ -5591,6 +5762,16 @@ }; version = "1.1.0"; }; + wmi-lite = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "110dv4arvwyky6f2pq19f20f1xcjpiz3zfbals0y49ijpq8agvql"; + type = "gem"; + }; + version = "1.0.5"; + }; xml-simple = { groups = ["default" "development" "test"]; platforms = []; @@ -5632,4 +5813,4 @@ }; version = "2.4.2"; }; -} \ No newline at end of file +} diff --git a/pkgs/applications/version-management/gitlab/update.py b/pkgs/applications/version-management/gitlab/update.py index f662bd3097f9..b84846c88abd 100755 --- a/pkgs/applications/version-management/gitlab/update.py +++ b/pkgs/applications/version-management/gitlab/update.py @@ -68,7 +68,7 @@ class GitLabRepo: version = self.rev2version(rev) passthru = {v: self.get_file(v, rev).strip() for v in ['GITALY_SERVER_VERSION', 'GITLAB_PAGES_VERSION', - 'GITLAB_SHELL_VERSION', 'GITLAB_WORKHORSE_VERSION']} + 'GITLAB_SHELL_VERSION']} return dict(version=self.rev2version(rev), repo_hash=self.get_git_hash(rev), owner=self.owner, @@ -181,19 +181,14 @@ def update_gitlab_shell(): gitlab_shell_version = data['passthru']['GITLAB_SHELL_VERSION'] _call_nix_update('gitlab-shell', gitlab_shell_version) - repo = GitLabRepo(repo='gitlab-shell') - gitlab_shell_dir = pathlib.Path(__file__).parent / 'gitlab-shell' - @cli.command('update-gitlab-workhorse') def update_gitlab_workhorse(): """Update gitlab-workhorse""" data = _get_data_json() - gitlab_workhorse_version = data['passthru']['GITLAB_WORKHORSE_VERSION'] + gitlab_workhorse_version = data['version'] _call_nix_update('gitlab-workhorse', gitlab_workhorse_version) - repo = GitLabRepo('gitlab-org', 'gitlab-workhorse') - gitlab_workhorse_dir = pathlib.Path(__file__).parent / 'gitlab-workhorse' @cli.command('update-all') @click.option('--rev', default='latest', help='The rev to use (vX.Y.Z-ee), or \'latest\'') diff --git a/pkgs/applications/version-management/gitlab/yarnPkgs.nix b/pkgs/applications/version-management/gitlab/yarnPkgs.nix index 916f5f602793..8084d2ebb6db 100644 --- a/pkgs/applications/version-management/gitlab/yarnPkgs.nix +++ b/pkgs/applications/version-management/gitlab/yarnPkgs.nix @@ -2,11 +2,19 @@ offline_cache = linkFarm "offline" packages; packages = [ { - name = "_babel_code_frame___code_frame_7.10.4.tgz"; + name = "_babel_code_frame___code_frame_7.12.11.tgz"; path = fetchurl { - name = "_babel_code_frame___code_frame_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz"; - sha1 = "168da1a36e90da68ae8d49c0f1b48c7c6249213a"; + name = "_babel_code_frame___code_frame_7.12.11.tgz"; + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz"; + sha1 = "f4ad435aa263db935b8f10f2c552d23fb716a63f"; + }; + } + { + name = "_babel_code_frame___code_frame_7.12.13.tgz"; + path = fetchurl { + name = "_babel_code_frame___code_frame_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz"; + sha1 = "dcfc826beef65e75c50e21d3837d7d95798dd658"; }; } { @@ -18,19 +26,19 @@ }; } { - name = "_babel_core___core_7.10.2.tgz"; + name = "_babel_core___core_7.12.13.tgz"; path = fetchurl { - name = "_babel_core___core_7.10.2.tgz"; - url = "https://registry.yarnpkg.com/@babel/core/-/core-7.10.2.tgz"; - sha1 = "bd6786046668a925ac2bd2fd95b579b92a23b36a"; + name = "_babel_core___core_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/core/-/core-7.12.13.tgz"; + sha1 = "b73a87a3a3e7d142a66248bf6ad88b9ceb093425"; }; } { - name = "_babel_generator___generator_7.11.6.tgz"; + name = "_babel_generator___generator_7.12.15.tgz"; path = fetchurl { - name = "_babel_generator___generator_7.11.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.6.tgz"; - sha1 = "b868900f81b163b4d464ea24545c61cbac4dc620"; + name = "_babel_generator___generator_7.12.15.tgz"; + url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.15.tgz"; + sha1 = "4617b5d0b25cc572474cc1aafee1edeaf9b5368f"; }; } { @@ -90,19 +98,19 @@ }; } { - name = "_babel_helper_function_name___helper_function_name_7.10.4.tgz"; + name = "_babel_helper_function_name___helper_function_name_7.12.13.tgz"; path = fetchurl { - name = "_babel_helper_function_name___helper_function_name_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz"; - sha1 = "d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"; + name = "_babel_helper_function_name___helper_function_name_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz"; + sha1 = "93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a"; }; } { - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.10.4.tgz"; + name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz"; path = fetchurl { - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz"; - sha1 = "98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"; + name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"; + sha1 = "bc63451d403a3b3082b97e1d8b3fe5bd4091e583"; }; } { @@ -114,35 +122,35 @@ }; } { - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.11.0.tgz"; + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.13.tgz"; path = fetchurl { - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.11.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz"; - sha1 = "ae69c83d84ee82f4b42f96e2a09410935a8f26df"; + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.13.tgz"; + sha1 = "c5715695b4f8bab32660dbdcdc2341dec7e3df40"; }; } { - name = "_babel_helper_module_imports___helper_module_imports_7.10.4.tgz"; + name = "_babel_helper_module_imports___helper_module_imports_7.12.13.tgz"; path = fetchurl { - name = "_babel_helper_module_imports___helper_module_imports_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz"; - sha1 = "4c5c54be04bd31670a7382797d75b9fa2e5b5620"; + name = "_babel_helper_module_imports___helper_module_imports_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz"; + sha1 = "ec67e4404f41750463e455cc3203f6a32e93fcb0"; }; } { - name = "_babel_helper_module_transforms___helper_module_transforms_7.11.0.tgz"; + name = "_babel_helper_module_transforms___helper_module_transforms_7.12.13.tgz"; path = fetchurl { - name = "_babel_helper_module_transforms___helper_module_transforms_7.11.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz"; - sha1 = "b16f250229e47211abdd84b34b64737c2ab2d359"; + name = "_babel_helper_module_transforms___helper_module_transforms_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.13.tgz"; + sha1 = "01afb052dcad2044289b7b20beb3fa8bd0265bea"; }; } { - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.10.4.tgz"; + name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.12.13.tgz"; path = fetchurl { - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz"; - sha1 = "50dc96413d594f995a77905905b05893cd779673"; + name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz"; + sha1 = "5c02d171b4c8615b1e7163f888c1c81c30a2aaea"; }; } { @@ -170,35 +178,35 @@ }; } { - name = "_babel_helper_replace_supers___helper_replace_supers_7.10.4.tgz"; + name = "_babel_helper_replace_supers___helper_replace_supers_7.12.13.tgz"; path = fetchurl { - name = "_babel_helper_replace_supers___helper_replace_supers_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz"; - sha1 = "d585cd9388ea06e6031e4cd44b6713cbead9e6cf"; + name = "_babel_helper_replace_supers___helper_replace_supers_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.13.tgz"; + sha1 = "00ec4fb6862546bd3d0aff9aac56074277173121"; }; } { - name = "_babel_helper_simple_access___helper_simple_access_7.10.4.tgz"; + name = "_babel_helper_simple_access___helper_simple_access_7.12.13.tgz"; path = fetchurl { - name = "_babel_helper_simple_access___helper_simple_access_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz"; - sha1 = "0f5ccda2945277a2a7a2d3a821e15395edcf3461"; + name = "_babel_helper_simple_access___helper_simple_access_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz"; + sha1 = "8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4"; }; } { - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.11.0.tgz"; + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz"; path = fetchurl { - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.11.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz"; - sha1 = "f8a491244acf6a676158ac42072911ba83ad099f"; + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"; + sha1 = "e9430be00baf3e88b0e13e6f9d4eaf2136372b05"; }; } { - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz"; + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz"; path = fetchurl { - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz"; - sha1 = "a78c7a7251e01f616512d31b10adcf52ada5e0d2"; + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"; + sha1 = "c9a1f021917dcb5ccf0d4e453e399022981fc9ed"; }; } { @@ -210,27 +218,27 @@ }; } { - name = "_babel_helpers___helpers_7.10.1.tgz"; + name = "_babel_helpers___helpers_7.12.13.tgz"; path = fetchurl { - name = "_babel_helpers___helpers_7.10.1.tgz"; - url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.1.tgz"; - sha1 = "a6827b7cb975c9d9cef5fd61d919f60d8844a973"; + name = "_babel_helpers___helpers_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.13.tgz"; + sha1 = "3c75e993632e4dadc0274eae219c73eb7645ba47"; }; } { - name = "_babel_highlight___highlight_7.10.4.tgz"; + name = "_babel_highlight___highlight_7.12.13.tgz"; path = fetchurl { - name = "_babel_highlight___highlight_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz"; - sha1 = "7d1bdfd65753538fabe6c38596cdb76d9ac60143"; + name = "_babel_highlight___highlight_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.12.13.tgz"; + sha1 = "8ab538393e00370b26271b01fa08f7f27f2e795c"; }; } { - name = "_babel_parser___parser_7.11.5.tgz"; + name = "_babel_parser___parser_7.12.15.tgz"; path = fetchurl { - name = "_babel_parser___parser_7.11.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz"; - sha1 = "c7ff6303df71080ec7a4f5b8c003c58f1cf51037"; + name = "_babel_parser___parser_7.12.15.tgz"; + url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.15.tgz"; + sha1 = "2b20de7f0b4b332d9b119dd9c33409c538b8aacf"; }; } { @@ -722,27 +730,27 @@ }; } { - name = "_babel_template___template_7.10.4.tgz"; + name = "_babel_template___template_7.12.13.tgz"; path = fetchurl { - name = "_babel_template___template_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz"; - sha1 = "3251996c4200ebc71d1a8fc405fba940f36ba278"; + name = "_babel_template___template_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz"; + sha1 = "530265be8a2589dbb37523844c5bcb55947fb327"; }; } { - name = "_babel_traverse___traverse_7.11.5.tgz"; + name = "_babel_traverse___traverse_7.12.13.tgz"; path = fetchurl { - name = "_babel_traverse___traverse_7.11.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz"; - sha1 = "be777b93b518eb6d76ee2e1ea1d143daa11e61c3"; + name = "_babel_traverse___traverse_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.13.tgz"; + sha1 = "689f0e4b4c08587ad26622832632735fb8c4e0c0"; }; } { - name = "_babel_types___types_7.11.5.tgz"; + name = "_babel_types___types_7.12.13.tgz"; path = fetchurl { - name = "_babel_types___types_7.11.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz"; - sha1 = "d9de577d01252d77c6800cee039ee64faf75662d"; + name = "_babel_types___types_7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.12.13.tgz"; + sha1 = "8be1aa8f2c876da11a9cf650c0ecf656913ad611"; }; } { @@ -770,11 +778,11 @@ }; } { - name = "_eslint_eslintrc___eslintrc_0.3.0.tgz"; + name = "_eslint_eslintrc___eslintrc_0.4.0.tgz"; path = fetchurl { - name = "_eslint_eslintrc___eslintrc_0.3.0.tgz"; - url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz"; - sha1 = "d736d6963d7003b6514e6324bec9c602ac340318"; + name = "_eslint_eslintrc___eslintrc_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"; + sha1 = "99cc0a0584d72f1df38b900fb062ba995f395547"; }; } { @@ -786,11 +794,11 @@ }; } { - name = "_gitlab_eslint_plugin___eslint_plugin_8.0.0.tgz"; + name = "_gitlab_eslint_plugin___eslint_plugin_8.1.0.tgz"; path = fetchurl { - name = "_gitlab_eslint_plugin___eslint_plugin_8.0.0.tgz"; - url = "https://registry.yarnpkg.com/@gitlab/eslint-plugin/-/eslint-plugin-8.0.0.tgz"; - sha1 = "e8d30fd98e2102f417617d0c60ef1810520a8ac6"; + name = "_gitlab_eslint_plugin___eslint_plugin_8.1.0.tgz"; + url = "https://registry.yarnpkg.com/@gitlab/eslint-plugin/-/eslint-plugin-8.1.0.tgz"; + sha1 = "a98ac4219da3316d30ee717ef0603c8fa0c4d5d8"; }; } { @@ -802,11 +810,19 @@ }; } { - name = "_gitlab_svgs___svgs_1.182.0.tgz"; + name = "_gitlab_stylelint_config___stylelint_config_2.3.0.tgz"; path = fetchurl { - name = "_gitlab_svgs___svgs_1.182.0.tgz"; - url = "https://registry.yarnpkg.com/@gitlab/svgs/-/svgs-1.182.0.tgz"; - sha1 = "600cb577c598ff63325c3f6f049e3254abdbb580"; + name = "_gitlab_stylelint_config___stylelint_config_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/@gitlab/stylelint-config/-/stylelint-config-2.3.0.tgz"; + sha1 = "b27e8544ff52a4c5e23ff7a104c7efff1f7078f0"; + }; + } + { + name = "_gitlab_svgs___svgs_1.185.0.tgz"; + path = fetchurl { + name = "_gitlab_svgs___svgs_1.185.0.tgz"; + url = "https://registry.yarnpkg.com/@gitlab/svgs/-/svgs-1.185.0.tgz"; + sha1 = "15b5c6d680b5fcfc2deb2a5decef427939e34ed7"; }; } { @@ -818,11 +834,11 @@ }; } { - name = "_gitlab_ui___ui_27.4.6.tgz"; + name = "_gitlab_ui___ui_28.9.1.tgz"; path = fetchurl { - name = "_gitlab_ui___ui_27.4.6.tgz"; - url = "https://registry.yarnpkg.com/@gitlab/ui/-/ui-27.4.6.tgz"; - sha1 = "2364c2ba981024cdce32b4657c5f0eb2ae781a4d"; + name = "_gitlab_ui___ui_28.9.1.tgz"; + url = "https://registry.yarnpkg.com/@gitlab/ui/-/ui-28.9.1.tgz"; + sha1 = "7d4d4502ff09fca19ab815504f80afbf03dd2fc1"; }; } { @@ -937,14 +953,6 @@ sha1 = "6a0033a1d24316a1c75184d010d864f2c681bef5"; }; } - { - name = "_jest_types___types_25.5.0.tgz"; - path = fetchurl { - name = "_jest_types___types_25.5.0.tgz"; - url = "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz"; - sha1 = "4d6a4793f7b9599fc3680877b856a97dbccf2a9d"; - }; - } { name = "_jest_types___types_26.5.2.tgz"; path = fetchurl { @@ -962,19 +970,27 @@ }; } { - name = "_mrmlnc_readdir_enhanced___readdir_enhanced_2.2.1.tgz"; + name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz"; path = fetchurl { - name = "_mrmlnc_readdir_enhanced___readdir_enhanced_2.2.1.tgz"; - url = "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz"; - sha1 = "524af240d1a360527b730475ecfa1344aa540dde"; + name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz"; + url = "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"; + sha1 = "d4b3549a5db5de2683e0c1071ab4f140904bbf69"; }; } { - name = "_nodelib_fs.stat___fs.stat_1.1.3.tgz"; + name = "_nodelib_fs.stat___fs.stat_2.0.4.tgz"; path = fetchurl { - name = "_nodelib_fs.stat___fs.stat_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz"; - sha1 = "2b5a3ab3f918cca48a8c754c08168e3f03eba61b"; + name = "_nodelib_fs.stat___fs.stat_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"; + sha1 = "a3f2dd61bab43b8db8fa108a121cfffe4c676655"; + }; + } + { + name = "_nodelib_fs.walk___fs.walk_1.2.6.tgz"; + path = fetchurl { + name = "_nodelib_fs.walk___fs.walk_1.2.6.tgz"; + url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"; + sha1 = "cce9396b30aa5afe9e3756608f5831adcb53d063"; }; } { @@ -1009,6 +1025,54 @@ sha1 = "9a48df6511cb2b472c9f596c1f37dc0af022e751"; }; } + { + name = "_sentry_browser___browser_5.30.0.tgz"; + path = fetchurl { + name = "_sentry_browser___browser_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/browser/-/browser-5.30.0.tgz"; + sha1 = "c28f49d551db3172080caef9f18791a7fd39e3b3"; + }; + } + { + name = "_sentry_core___core_5.30.0.tgz"; + path = fetchurl { + name = "_sentry_core___core_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz"; + sha1 = "6b203664f69e75106ee8b5a2fe1d717379b331f3"; + }; + } + { + name = "_sentry_hub___hub_5.30.0.tgz"; + path = fetchurl { + name = "_sentry_hub___hub_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/hub/-/hub-5.30.0.tgz"; + sha1 = "2453be9b9cb903404366e198bd30c7ca74cdc100"; + }; + } + { + name = "_sentry_minimal___minimal_5.30.0.tgz"; + path = fetchurl { + name = "_sentry_minimal___minimal_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-5.30.0.tgz"; + sha1 = "ce3d3a6a273428e0084adcb800bc12e72d34637b"; + }; + } + { + name = "_sentry_types___types_5.30.0.tgz"; + path = fetchurl { + name = "_sentry_types___types_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/types/-/types-5.30.0.tgz"; + sha1 = "19709bbe12a1a0115bc790b8942917da5636f402"; + }; + } + { + name = "_sentry_utils___utils_5.30.0.tgz"; + path = fetchurl { + name = "_sentry_utils___utils_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.30.0.tgz"; + sha1 = "9a5bd7ccff85ccfe7856d493bffa64cabc41e980"; + }; + } { name = "_sindresorhus_is___is_0.14.0.tgz"; path = fetchurl { @@ -1041,6 +1105,22 @@ sha1 = "3668364647b9248a0c43d738f7b046c551311338"; }; } + { + name = "_stylelint_postcss_css_in_js___postcss_css_in_js_0.37.2.tgz"; + path = fetchurl { + name = "_stylelint_postcss_css_in_js___postcss_css_in_js_0.37.2.tgz"; + url = "https://registry.yarnpkg.com/@stylelint/postcss-css-in-js/-/postcss-css-in-js-0.37.2.tgz"; + sha1 = "7e5a84ad181f4234a2480803422a47b8749af3d2"; + }; + } + { + name = "_stylelint_postcss_markdown___postcss_markdown_0.36.2.tgz"; + path = fetchurl { + name = "_stylelint_postcss_markdown___postcss_markdown_0.36.2.tgz"; + url = "https://registry.yarnpkg.com/@stylelint/postcss-markdown/-/postcss-markdown-0.36.2.tgz"; + sha1 = "0a540c4692f8dcdfc13c8e352c17e7bfee2bb391"; + }; + } { name = "_szmarczak_http_timer___http_timer_1.1.2.tgz"; path = fetchurl { @@ -1177,14 +1257,6 @@ sha1 = "e5471e7fa33c61358dd38426189c037a58433b8c"; }; } - { - name = "_types_istanbul_reports___istanbul_reports_1.1.1.tgz"; - path = fetchurl { - name = "_types_istanbul_reports___istanbul_reports_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz"; - sha1 = "7a8cbf6a406f36c8add871625b278eaf0b0d255a"; - }; - } { name = "_types_istanbul_reports___istanbul_reports_3.0.0.tgz"; path = fetchurl { @@ -1193,14 +1265,6 @@ sha1 = "508b13aa344fa4976234e75dddcc34925737d821"; }; } - { - name = "_types_jest___jest_26.0.14.tgz"; - path = fetchurl { - name = "_types_jest___jest_26.0.14.tgz"; - url = "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.14.tgz"; - sha1 = "078695f8f65cb55c5a98450d65083b2b73e5a3f3"; - }; - } { name = "_types_json_schema___json_schema_7.0.7.tgz"; path = fetchurl { @@ -1217,6 +1281,14 @@ sha1 = "ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"; }; } + { + name = "_types_mdast___mdast_3.0.3.tgz"; + path = fetchurl { + name = "_types_mdast___mdast_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz"; + sha1 = "2d7d671b1cd1ea3deb306ea75036c2a0407d2deb"; + }; + } { name = "_types_minimatch___minimatch_3.0.3.tgz"; path = fetchurl { @@ -1225,6 +1297,14 @@ sha1 = "3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"; }; } + { + name = "_types_minimist___minimist_1.2.1.tgz"; + path = fetchurl { + name = "_types_minimist___minimist_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.1.tgz"; + sha1 = "283f669ff76d7b8260df8ab7a4262cc83d988256"; + }; + } { name = "_types_node___node_10.12.9.tgz"; path = fetchurl { @@ -1241,6 +1321,14 @@ sha1 = "e486d0d97396d79beedd0a6e33f4534ff6b4973e"; }; } + { + name = "_types_parse_json___parse_json_4.0.0.tgz"; + path = fetchurl { + name = "_types_parse_json___parse_json_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz"; + sha1 = "2f8bb441434d163b35fb8ffdccd7138927ffb8c0"; + }; + } { name = "_types_parse5___parse5_5.0.0.tgz"; path = fetchurl { @@ -1281,22 +1369,6 @@ sha1 = "9c088679876f374eb5983f150d4787aa6fb32d7e"; }; } - { - name = "_types_vfile_message___vfile_message_1.0.1.tgz"; - path = fetchurl { - name = "_types_vfile_message___vfile_message_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/@types/vfile-message/-/vfile-message-1.0.1.tgz"; - sha1 = "e1e9895cc6b36c462d4244e64e6d0b6eaf65355a"; - }; - } - { - name = "_types_vfile___vfile_3.0.2.tgz"; - path = fetchurl { - name = "_types_vfile___vfile_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/@types/vfile/-/vfile-3.0.2.tgz"; - sha1 = "19c18cd232df11ce6fa6ad80259bc86c366b09b9"; - }; - } { name = "_types_yargs_parser___yargs_parser_15.0.0.tgz"; path = fetchurl { @@ -1825,6 +1897,14 @@ sha1 = "756749dafc732792c8ca0923f9a40564b7c59ecc"; }; } + { + name = "apollo_link_http___apollo_link_http_1.5.17.tgz"; + path = fetchurl { + name = "apollo_link_http___apollo_link_http_1.5.17.tgz"; + url = "https://registry.yarnpkg.com/apollo-link-http/-/apollo-link-http-1.5.17.tgz"; + sha1 = "499e9f1711bf694497f02c51af12d82de5d8d8ba"; + }; + } { name = "apollo_link___apollo_link_1.2.14.tgz"; path = fetchurl { @@ -1961,6 +2041,14 @@ sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; }; } + { + name = "array_union___array_union_2.1.0.tgz"; + path = fetchurl { + name = "array_union___array_union_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz"; + sha1 = "b798420adbeb1de828d84acd8a2e23d3efe85e8d"; + }; + } { name = "array_uniq___array_uniq_1.0.3.tgz"; path = fetchurl { @@ -2041,14 +2129,6 @@ sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; }; } - { - name = "astral_regex___astral_regex_1.0.0.tgz"; - path = fetchurl { - name = "astral_regex___astral_regex_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; - sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; - }; - } { name = "astral_regex___astral_regex_2.0.0.tgz"; path = fetchurl { @@ -2098,11 +2178,11 @@ }; } { - name = "autoprefixer___autoprefixer_9.6.1.tgz"; + name = "autoprefixer___autoprefixer_9.8.6.tgz"; path = fetchurl { - name = "autoprefixer___autoprefixer_9.6.1.tgz"; - url = "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.6.1.tgz"; - sha1 = "51967a02d2d2300bb01866c1611ec8348d355a47"; + name = "autoprefixer___autoprefixer_9.8.6.tgz"; + url = "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz"; + sha1 = "3b73594ca1bf9266320c5acf1588d74dea74210f"; }; } { @@ -2242,11 +2322,11 @@ }; } { - name = "bail___bail_1.0.3.tgz"; + name = "bail___bail_1.0.5.tgz"; path = fetchurl { - name = "bail___bail_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/bail/-/bail-1.0.3.tgz"; - sha1 = "63cfb9ddbac829b02a3128cd53224be78e6c21a3"; + name = "bail___bail_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz"; + sha1 = "b6fa133404a392cbc1f8c4bf63f5953351e7a776"; }; } { @@ -2513,14 +2593,6 @@ sha1 = "bf757a2da376b3447b800a16f0f1c96358138766"; }; } - { - name = "bs_logger___bs_logger_0.2.6.tgz"; - path = fetchurl { - name = "bs_logger___bs_logger_0.2.6.tgz"; - url = "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz"; - sha1 = "eb7d365307a72cf974cc6cda76b68354ad336bd8"; - }; - } { name = "bser___bser_2.1.1.tgz"; path = fetchurl { @@ -2649,22 +2721,6 @@ sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b"; }; } - { - name = "caller_callsite___caller_callsite_2.0.0.tgz"; - path = fetchurl { - name = "caller_callsite___caller_callsite_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz"; - sha1 = "847e0fce0a223750a9a027c54b33731ad3154134"; - }; - } - { - name = "caller_path___caller_path_2.0.0.tgz"; - path = fetchurl { - name = "caller_path___caller_path_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz"; - sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4"; - }; - } { name = "callsite___callsite_1.0.0.tgz"; path = fetchurl { @@ -2673,14 +2729,6 @@ sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20"; }; } - { - name = "callsites___callsites_2.0.0.tgz"; - path = fetchurl { - name = "callsites___callsites_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz"; - sha1 = "06eb84f00eea413da86affefacbffb36093b3c50"; - }; - } { name = "callsites___callsites_3.0.0.tgz"; path = fetchurl { @@ -2706,11 +2754,11 @@ }; } { - name = "camelcase_keys___camelcase_keys_4.2.0.tgz"; + name = "camelcase_keys___camelcase_keys_6.2.2.tgz"; path = fetchurl { - name = "camelcase_keys___camelcase_keys_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz"; - sha1 = "a2aa5fb1af688758259c32c141426d78923b9b77"; + name = "camelcase_keys___camelcase_keys_6.2.2.tgz"; + url = "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz"; + sha1 = "5e755d6ba51aa223ec7d3d52f25778210f9dc3c0"; }; } { @@ -2721,14 +2769,6 @@ sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"; }; } - { - name = "camelcase___camelcase_4.1.0.tgz"; - path = fetchurl { - name = "camelcase___camelcase_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz"; - sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; - }; - } { name = "camelcase___camelcase_5.3.1.tgz"; path = fetchurl { @@ -2746,11 +2786,11 @@ }; } { - name = "caniuse_lite___caniuse_lite_1.0.30001178.tgz"; + name = "caniuse_lite___caniuse_lite_1.0.30001185.tgz"; path = fetchurl { - name = "caniuse_lite___caniuse_lite_1.0.30001178.tgz"; - url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001178.tgz"; - sha1 = "3ad813b2b2c7d585b0be0a2440e1e233c6eabdbc"; + name = "caniuse_lite___caniuse_lite_1.0.30001185.tgz"; + url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001185.tgz"; + sha1 = "3482a407d261da04393e2f0d61eefbc53be43b95"; }; } { @@ -2777,14 +2817,6 @@ sha1 = "98cc890ca652dd2ef0e70b37925310ff9e90fc8b"; }; } - { - name = "ccount___ccount_1.0.3.tgz"; - path = fetchurl { - name = "ccount___ccount_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/ccount/-/ccount-1.0.3.tgz"; - sha1 = "f1cec43f332e2ea5a569fd46f9f5bde4e6102aff"; - }; - } { name = "chalk___chalk_1.1.3.tgz"; path = fetchurl { @@ -2826,35 +2858,27 @@ }; } { - name = "character_entities_html4___character_entities_html4_1.1.2.tgz"; + name = "character_entities_legacy___character_entities_legacy_1.1.4.tgz"; path = fetchurl { - name = "character_entities_html4___character_entities_html4_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.2.tgz"; - sha1 = "c44fdde3ce66b52e8d321d6c1bf46101f0150610"; + name = "character_entities_legacy___character_entities_legacy_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz"; + sha1 = "94bc1845dce70a5bb9d2ecc748725661293d8fc1"; }; } { - name = "character_entities_legacy___character_entities_legacy_1.1.2.tgz"; + name = "character_entities___character_entities_1.2.4.tgz"; path = fetchurl { - name = "character_entities_legacy___character_entities_legacy_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.2.tgz"; - sha1 = "7c6defb81648498222c9855309953d05f4d63a9c"; + name = "character_entities___character_entities_1.2.4.tgz"; + url = "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz"; + sha1 = "e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b"; }; } { - name = "character_entities___character_entities_1.2.2.tgz"; + name = "character_reference_invalid___character_reference_invalid_1.1.4.tgz"; path = fetchurl { - name = "character_entities___character_entities_1.2.2.tgz"; - url = "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.2.tgz"; - sha1 = "58c8f371c0774ef0ba9b2aca5f00d8f100e6e363"; - }; - } - { - name = "character_reference_invalid___character_reference_invalid_1.1.2.tgz"; - path = fetchurl { - name = "character_reference_invalid___character_reference_invalid_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.2.tgz"; - sha1 = "21e421ad3d84055952dab4a43a04e73cd425d3ed"; + name = "character_reference_invalid___character_reference_invalid_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz"; + sha1 = "083329cda0eae272ab3dbbf37e9a382c13af1560"; }; } { @@ -3057,14 +3081,6 @@ sha1 = "b88423a4a7c785175c784c84e87f5950820280e1"; }; } - { - name = "collapse_white_space___collapse_white_space_1.0.5.tgz"; - path = fetchurl { - name = "collapse_white_space___collapse_white_space_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.5.tgz"; - sha1 = "c2495b699ab1ed380d29a1091e01063e75dbbe3a"; - }; - } { name = "collect_v8_coverage___collect_v8_coverage_1.0.1.tgz"; path = fetchurl { @@ -3434,11 +3450,11 @@ }; } { - name = "core_js___core_js_3.8.3.tgz"; + name = "core_js___core_js_3.9.1.tgz"; path = fetchurl { - name = "core_js___core_js_3.8.3.tgz"; - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.8.3.tgz"; - sha1 = "c21906e1f14f3689f93abcc6e26883550dd92dd0"; + name = "core_js___core_js_3.9.1.tgz"; + url = "https://registry.yarnpkg.com/core-js/-/core-js-3.9.1.tgz"; + sha1 = "cec8de593db8eb2a85ffb0dbdeb312cb6e5460ae"; }; } { @@ -3458,11 +3474,11 @@ }; } { - name = "cosmiconfig___cosmiconfig_5.2.1.tgz"; + name = "cosmiconfig___cosmiconfig_7.0.0.tgz"; path = fetchurl { - name = "cosmiconfig___cosmiconfig_5.2.1.tgz"; - url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz"; - sha1 = "040f726809c591e77a17c0a3626ca45b4f168b1a"; + name = "cosmiconfig___cosmiconfig_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz"; + sha1 = "ef9b44d773959cae63ddecd122de23853b60f8d3"; }; } { @@ -3561,6 +3577,14 @@ sha1 = "42005d83204b2b4a5d93b6b1a5644133b5927a02"; }; } + { + name = "css_color_names___css_color_names_0.0.4.tgz"; + path = fetchurl { + name = "css_color_names___css_color_names_0.0.4.tgz"; + url = "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz"; + sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0"; + }; + } { name = "css_loader___css_loader_2.1.1.tgz"; path = fetchurl { @@ -3577,6 +3601,22 @@ sha1 = "5f1ad43e2d8eefbfdc304fcd39a521664943e3eb"; }; } + { + name = "css_shorthand_properties___css_shorthand_properties_1.1.1.tgz"; + path = fetchurl { + name = "css_shorthand_properties___css_shorthand_properties_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/css-shorthand-properties/-/css-shorthand-properties-1.1.1.tgz"; + sha1 = "1c808e63553c283f289f2dd56fcee8f3337bd935"; + }; + } + { + name = "css_values___css_values_0.1.0.tgz"; + path = fetchurl { + name = "css_values___css_values_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/css-values/-/css-values-0.1.0.tgz"; + sha1 = "128b7ce103d4dc027a814a5d5995c54781d7b4c6"; + }; + } { name = "css___css_2.2.4.tgz"; path = fetchurl { @@ -4010,11 +4050,11 @@ }; } { - name = "debug___debug_4.1.1.tgz"; + name = "debug___debug_4.3.1.tgz"; path = fetchurl { - name = "debug___debug_4.1.1.tgz"; - url = "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz"; - sha1 = "3b72260255109c6b589cee050f1d516139664791"; + name = "debug___debug_4.3.1.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz"; + sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"; }; } { @@ -4257,14 +4297,6 @@ sha1 = "806649326ceaa7caa3306d75d985ea2748ba913c"; }; } - { - name = "diff_sequences___diff_sequences_25.2.6.tgz"; - path = fetchurl { - name = "diff_sequences___diff_sequences_25.2.6.tgz"; - url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz"; - sha1 = "5f467c00edd35352b7bca46d7927d60e687a76dd"; - }; - } { name = "diff_sequences___diff_sequences_26.5.0.tgz"; path = fetchurl { @@ -4297,6 +4329,14 @@ sha1 = "fa09f0694153c8918b18ba0deafae94769fc50c4"; }; } + { + name = "dir_glob___dir_glob_3.0.1.tgz"; + path = fetchurl { + name = "dir_glob___dir_glob_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz"; + sha1 = "56dbf73d992a4a93ba1584f4534063fd2e41717f"; + }; + } { name = "dns_equal___dns_equal_1.0.0.tgz"; path = fetchurl { @@ -4402,19 +4442,19 @@ }; } { - name = "domelementtype___domelementtype_1.3.0.tgz"; + name = "domelementtype___domelementtype_1.3.1.tgz"; path = fetchurl { - name = "domelementtype___domelementtype_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz"; - sha1 = "b17aed82e8ab59e52dd9c19b1756e0fc187204c2"; + name = "domelementtype___domelementtype_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz"; + sha1 = "d048c44b37b0d10a7f2a3d5fee3f4333d790481f"; }; } { - name = "domelementtype___domelementtype_2.0.1.tgz"; + name = "domelementtype___domelementtype_2.1.0.tgz"; path = fetchurl { - name = "domelementtype___domelementtype_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz"; - sha1 = "1f8bdfe91f5a78063274e803b4bdcedf6e94f94d"; + name = "domelementtype___domelementtype_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz"; + sha1 = "a851c080a6d1c3d94344aed151d99f669edf585e"; }; } { @@ -4426,35 +4466,27 @@ }; } { - name = "domhandler___domhandler_2.4.1.tgz"; + name = "domhandler___domhandler_2.4.2.tgz"; path = fetchurl { - name = "domhandler___domhandler_2.4.1.tgz"; - url = "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz"; - sha1 = "892e47000a99be55bbf3774ffea0561d8879c259"; + name = "domhandler___domhandler_2.4.2.tgz"; + url = "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz"; + sha1 = "8805097e933d65e85546f726d60f5eb88b44f803"; }; } { - name = "dompurify___dompurify_2.2.6.tgz"; + name = "dompurify___dompurify_2.2.7.tgz"; path = fetchurl { - name = "dompurify___dompurify_2.2.6.tgz"; - url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.2.6.tgz"; - sha1 = "54945dc5c0b45ce5ae228705777e8e59d7b2edc4"; + name = "dompurify___dompurify_2.2.7.tgz"; + url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.2.7.tgz"; + sha1 = "a5f055a2a471638680e779bd08fc334962d11fd8"; }; } { - name = "domutils___domutils_1.6.2.tgz"; + name = "domutils___domutils_1.7.0.tgz"; path = fetchurl { - name = "domutils___domutils_1.6.2.tgz"; - url = "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz"; - sha1 = "1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff"; - }; - } - { - name = "dot_prop___dot_prop_4.2.1.tgz"; - path = fetchurl { - name = "dot_prop___dot_prop_4.2.1.tgz"; - url = "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.1.tgz"; - sha1 = "45884194a71fc2cda71cbb4bceb3a4dd2f433ba4"; + name = "domutils___domutils_1.7.0.tgz"; + url = "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz"; + sha1 = "56ea341e834e06e6748af7a1cb25da67ea9f8c2a"; }; } { @@ -4617,6 +4649,14 @@ sha1 = "ed29634d19baba463b6ce6b80a37213eab71ec43"; }; } + { + name = "ends_with___ends_with_0.2.0.tgz"; + path = fetchurl { + name = "ends_with___ends_with_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/ends-with/-/ends-with-0.2.0.tgz"; + sha1 = "2f9da98d57a50cfda4571ce4339000500f4e6b8a"; + }; + } { name = "engine.io_client___engine.io_client_3.2.1.tgz"; path = fetchurl { @@ -4674,11 +4714,11 @@ }; } { - name = "entities___entities_1.1.1.tgz"; + name = "entities___entities_1.1.2.tgz"; path = fetchurl { - name = "entities___entities_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz"; - sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"; + name = "entities___entities_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz"; + sha1 = "bdfa735299664dfafd34529ed4f8522a275fea56"; }; } { @@ -4962,11 +5002,11 @@ }; } { - name = "eslint___eslint_7.19.0.tgz"; + name = "eslint___eslint_7.21.0.tgz"; path = fetchurl { - name = "eslint___eslint_7.19.0.tgz"; - url = "https://registry.yarnpkg.com/eslint/-/eslint-7.19.0.tgz"; - sha1 = "6719621b196b5fad72e43387981314e5d0dc3f41"; + name = "eslint___eslint_7.21.0.tgz"; + url = "https://registry.yarnpkg.com/eslint/-/eslint-7.21.0.tgz"; + sha1 = "4ecd5b8c5b44f5dedc9b8a110b01bbfeb15d1c83"; }; } { @@ -4994,11 +5034,11 @@ }; } { - name = "esquery___esquery_1.3.1.tgz"; + name = "esquery___esquery_1.4.0.tgz"; path = fetchurl { - name = "esquery___esquery_1.3.1.tgz"; - url = "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz"; - sha1 = "b78b5828aa8e214e29fb74c4d5b752e1c033da57"; + name = "esquery___esquery_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz"; + sha1 = "2148ffc38b82e8c7057dfed48425b3e61f0f24a5"; }; } { @@ -5242,11 +5282,11 @@ }; } { - name = "fast_glob___fast_glob_2.2.6.tgz"; + name = "fast_glob___fast_glob_3.2.5.tgz"; path = fetchurl { - name = "fast_glob___fast_glob_2.2.6.tgz"; - url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.6.tgz"; - sha1 = "a5d5b697ec8deda468d85a74035290a025a95295"; + name = "fast_glob___fast_glob_3.2.5.tgz"; + url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz"; + sha1 = "7939af2a656de79a4f1901903ee8adcaa7cb9661"; }; } { @@ -5274,11 +5314,27 @@ }; } { - name = "fault___fault_1.0.2.tgz"; + name = "fastest_levenshtein___fastest_levenshtein_1.0.12.tgz"; path = fetchurl { - name = "fault___fault_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/fault/-/fault-1.0.2.tgz"; - sha1 = "c3d0fec202f172a3a4d414042ad2bb5e2a3ffbaa"; + name = "fastest_levenshtein___fastest_levenshtein_1.0.12.tgz"; + url = "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz"; + sha1 = "9990f7d3a88cc5a9ffd1f1745745251700d497e2"; + }; + } + { + name = "fastq___fastq_1.10.1.tgz"; + path = fetchurl { + name = "fastq___fastq_1.10.1.tgz"; + url = "https://registry.yarnpkg.com/fastq/-/fastq-1.10.1.tgz"; + sha1 = "8b8f2ac8bf3632d67afcd65dac248d5fdc45385e"; + }; + } + { + name = "fault___fault_1.0.4.tgz"; + path = fetchurl { + name = "fault___fault_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz"; + sha1 = "eafcfc0a6d214fc94601e170df29954a4f842f13"; }; } { @@ -5306,19 +5362,11 @@ }; } { - name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; + name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; path = fetchurl { - name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; - sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c"; - }; - } - { - name = "file_entry_cache___file_entry_cache_6.0.0.tgz"; - path = fetchurl { - name = "file_entry_cache___file_entry_cache_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.0.tgz"; - sha1 = "7921a89c391c6d93efec2169ac6bf300c527ea0a"; + name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; + url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; + sha1 = "211b2dd9659cb0394b073e7323ac3c933d522027"; }; } { @@ -5441,14 +5489,6 @@ sha1 = "17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1"; }; } - { - name = "flat_cache___flat_cache_2.0.1.tgz"; - path = fetchurl { - name = "flat_cache___flat_cache_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz"; - sha1 = "5d296d6f04bda44a4630a301413bdbc2ec085ec0"; - }; - } { name = "flat_cache___flat_cache_3.0.4.tgz"; path = fetchurl { @@ -5690,11 +5730,11 @@ }; } { - name = "get_stdin___get_stdin_7.0.0.tgz"; + name = "get_stdin___get_stdin_8.0.0.tgz"; path = fetchurl { - name = "get_stdin___get_stdin_7.0.0.tgz"; - url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz"; - sha1 = "8d5de98f15171a125c5e516643c7a6d0ea8a96f6"; + name = "get_stdin___get_stdin_8.0.0.tgz"; + url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz"; + sha1 = "cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53"; }; } { @@ -5769,14 +5809,6 @@ sha1 = "b6c1ef417c4e5663ea498f1c45afac6916bbc229"; }; } - { - name = "glob_to_regexp___glob_to_regexp_0.3.0.tgz"; - path = fetchurl { - name = "glob_to_regexp___glob_to_regexp_0.3.0.tgz"; - url = "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz"; - sha1 = "8c5a1494d2066c570cc3bfe4496175acc4d502ab"; - }; - } { name = "glob_to_regexp___glob_to_regexp_0.4.1.tgz"; path = fetchurl { @@ -5857,6 +5889,14 @@ sha1 = "1e564ee5c4dded2ab098b0f88f24702a3c56be13"; }; } + { + name = "globby___globby_11.0.2.tgz"; + path = fetchurl { + name = "globby___globby_11.0.2.tgz"; + url = "https://registry.yarnpkg.com/globby/-/globby-11.0.2.tgz"; + sha1 = "1af538b766a3b540ebfb58a32b2e2d5897321d83"; + }; + } { name = "globby___globby_6.1.0.tgz"; path = fetchurl { @@ -5873,14 +5913,6 @@ sha1 = "fb2ccff9401f8600945dfada97440cca972b8680"; }; } - { - name = "globby___globby_9.2.0.tgz"; - path = fetchurl { - name = "globby___globby_9.2.0.tgz"; - url = "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz"; - sha1 = "fd029a706c703d29bdd170f4b6db3a3f7a7cb63d"; - }; - } { name = "globjoin___globjoin_0.1.4.tgz"; path = fetchurl { @@ -5898,11 +5930,11 @@ }; } { - name = "gonzales_pe___gonzales_pe_4.2.3.tgz"; + name = "gonzales_pe___gonzales_pe_4.3.0.tgz"; path = fetchurl { - name = "gonzales_pe___gonzales_pe_4.2.3.tgz"; - url = "https://registry.yarnpkg.com/gonzales-pe/-/gonzales-pe-4.2.3.tgz"; - sha1 = "41091703625433285e0aee3aa47829fc1fbeb6f2"; + name = "gonzales_pe___gonzales_pe_4.3.0.tgz"; + url = "https://registry.yarnpkg.com/gonzales-pe/-/gonzales-pe-4.3.0.tgz"; + sha1 = "fe9dec5f3c557eead09ff868c65826be54d067b3"; }; } { @@ -6009,6 +6041,14 @@ sha1 = "1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"; }; } + { + name = "hard_rejection___hard_rejection_2.1.0.tgz"; + path = fetchurl { + name = "hard_rejection___hard_rejection_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz"; + sha1 = "1c6eda5c1685c63942766d79bb40ae773cecd883"; + }; + } { name = "has_ansi___has_ansi_2.0.0.tgz"; path = fetchurl { @@ -6154,11 +6194,11 @@ }; } { - name = "highlight.js___highlight.js_9.13.1.tgz"; + name = "highlight.js___highlight.js_10.6.0.tgz"; path = fetchurl { - name = "highlight.js___highlight.js_9.13.1.tgz"; - url = "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.13.1.tgz"; - sha1 = "054586d53a6863311168488a0f58d6c505ce641e"; + name = "highlight.js___highlight.js_10.6.0.tgz"; + url = "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.6.0.tgz"; + sha1 = "0073aa71d566906965ba6e1b7be7b2682f5e18b6"; }; } { @@ -6193,6 +6233,14 @@ sha1 = "7539bd4bc1e0e0a895815a2e0262420b12858488"; }; } + { + name = "hosted_git_info___hosted_git_info_3.0.8.tgz"; + path = fetchurl { + name = "hosted_git_info___hosted_git_info_3.0.8.tgz"; + url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz"; + sha1 = "6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d"; + }; + } { name = "hpack.js___hpack.js_2.1.6.tgz"; path = fetchurl { @@ -6234,19 +6282,19 @@ }; } { - name = "html_tags___html_tags_3.0.0.tgz"; + name = "html_tags___html_tags_3.1.0.tgz"; path = fetchurl { - name = "html_tags___html_tags_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/html-tags/-/html-tags-3.0.0.tgz"; - sha1 = "41f57708c9e6b7b46a00a22317d614c4a2bab166"; + name = "html_tags___html_tags_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz"; + sha1 = "7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140"; }; } { - name = "htmlparser2___htmlparser2_3.10.0.tgz"; + name = "htmlparser2___htmlparser2_3.10.1.tgz"; path = fetchurl { - name = "htmlparser2___htmlparser2_3.10.0.tgz"; - url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.0.tgz"; - sha1 = "5f5e422dcf6119c0d983ed36260ce9ded0bee464"; + name = "htmlparser2___htmlparser2_3.10.1.tgz"; + url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz"; + sha1 = "bd679dc3f59897b6a34bb10749c855bb53a9392f"; }; } { @@ -6433,14 +6481,6 @@ sha1 = "9dfe713d49bf871cc59aedfce59b1992fa37a977"; }; } - { - name = "import_fresh___import_fresh_2.0.0.tgz"; - path = fetchurl { - name = "import_fresh___import_fresh_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz"; - sha1 = "d81355c15612d386c61f9ddd3922d4304822a546"; - }; - } { name = "import_fresh___import_fresh_3.3.0.tgz"; path = fetchurl { @@ -6505,14 +6545,6 @@ sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80"; }; } - { - name = "indent_string___indent_string_3.2.0.tgz"; - path = fetchurl { - name = "indent_string___indent_string_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz"; - sha1 = "4a5fd6d27cc332f37e5419a504dbb837105c9289"; - }; - } { name = "indent_string___indent_string_4.0.0.tgz"; path = fetchurl { @@ -6674,27 +6706,19 @@ }; } { - name = "is_alphabetical___is_alphabetical_1.0.2.tgz"; + name = "is_alphabetical___is_alphabetical_1.0.4.tgz"; path = fetchurl { - name = "is_alphabetical___is_alphabetical_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.2.tgz"; - sha1 = "1fa6e49213cb7885b75d15862fb3f3d96c884f41"; + name = "is_alphabetical___is_alphabetical_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz"; + sha1 = "9e7d6b94916be22153745d184c298cbf986a686d"; }; } { - name = "is_alphanumeric___is_alphanumeric_1.0.0.tgz"; + name = "is_alphanumerical___is_alphanumerical_1.0.4.tgz"; path = fetchurl { - name = "is_alphanumeric___is_alphanumeric_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz"; - sha1 = "4a9cef71daf4c001c1d81d63d140cf53fd6889f4"; - }; - } - { - name = "is_alphanumerical___is_alphanumerical_1.0.2.tgz"; - path = fetchurl { - name = "is_alphanumerical___is_alphanumerical_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.2.tgz"; - sha1 = "1138e9ae5040158dc6ff76b820acd6b7a181fd40"; + name = "is_alphanumerical___is_alphanumerical_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz"; + sha1 = "7eb9a2431f855f6b1ef1a78e326df515696c4dbf"; }; } { @@ -6722,11 +6746,11 @@ }; } { - name = "is_buffer___is_buffer_2.0.3.tgz"; + name = "is_buffer___is_buffer_2.0.5.tgz"; path = fetchurl { - name = "is_buffer___is_buffer_2.0.3.tgz"; - url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz"; - sha1 = "4ecf3fcf749cbd1e472689e109ac66261a25e725"; + name = "is_buffer___is_buffer_2.0.5.tgz"; + url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz"; + sha1 = "ebc252e400d22ff8d77fa09888821a24a658c191"; }; } { @@ -6770,11 +6794,11 @@ }; } { - name = "is_decimal___is_decimal_1.0.2.tgz"; + name = "is_decimal___is_decimal_1.0.4.tgz"; path = fetchurl { - name = "is_decimal___is_decimal_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.2.tgz"; - sha1 = "894662d6a8709d307f3a276ca4339c8fa5dff0ff"; + name = "is_decimal___is_decimal_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz"; + sha1 = "65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"; }; } { @@ -6793,14 +6817,6 @@ sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec"; }; } - { - name = "is_directory___is_directory_0.3.1.tgz"; - path = fetchurl { - name = "is_directory___is_directory_0.3.1.tgz"; - url = "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz"; - sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1"; - }; - } { name = "is_docker___is_docker_2.1.1.tgz"; path = fetchurl { @@ -6890,11 +6906,11 @@ }; } { - name = "is_hexadecimal___is_hexadecimal_1.0.2.tgz"; + name = "is_hexadecimal___is_hexadecimal_1.0.4.tgz"; path = fetchurl { - name = "is_hexadecimal___is_hexadecimal_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.2.tgz"; - sha1 = "b6e710d7d07bb66b98cb8cece5c9b4921deeb835"; + name = "is_hexadecimal___is_hexadecimal_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz"; + sha1 = "cc35c97588da4bd49a8eedd6bc4082d44dcb23a7"; }; } { @@ -6937,14 +6953,6 @@ sha1 = "7535345b896734d5f80c4d06c50955527a14f12b"; }; } - { - name = "is_obj___is_obj_1.0.1.tgz"; - path = fetchurl { - name = "is_obj___is_obj_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz"; - sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; - }; - } { name = "is_obj___is_obj_2.0.0.tgz"; path = fetchurl { @@ -6993,6 +7001,14 @@ sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; }; } + { + name = "is_plain_obj___is_plain_obj_2.1.0.tgz"; + path = fetchurl { + name = "is_plain_obj___is_plain_obj_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz"; + sha1 = "45e42e37fccf1f40da8e5f76ee21515840c09287"; + }; + } { name = "is_plain_object___is_plain_object_2.0.4.tgz"; path = fetchurl { @@ -7073,14 +7089,6 @@ sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; }; } - { - name = "is_whitespace_character___is_whitespace_character_1.0.2.tgz"; - path = fetchurl { - name = "is_whitespace_character___is_whitespace_character_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.2.tgz"; - sha1 = "ede53b4c6f6fb3874533751ec9280d01928d03ed"; - }; - } { name = "is_whitespace___is_whitespace_0.3.0.tgz"; path = fetchurl { @@ -7097,14 +7105,6 @@ sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; }; } - { - name = "is_word_character___is_word_character_1.0.2.tgz"; - path = fetchurl { - name = "is_word_character___is_word_character_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.2.tgz"; - sha1 = "46a5dac3f2a1840898b91e576cd40d493f3ae553"; - }; - } { name = "is_wsl___is_wsl_1.1.0.tgz"; path = fetchurl { @@ -7353,14 +7353,6 @@ sha1 = "6e828e25f10124433dd008fbd83348636de0972a"; }; } - { - name = "jest_diff___jest_diff_25.5.0.tgz"; - path = fetchurl { - name = "jest_diff___jest_diff_25.5.0.tgz"; - url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz"; - sha1 = "1dd26ed64f96667c068cef026b677dfa01afcfa9"; - }; - } { name = "jest_diff___jest_diff_26.5.2.tgz"; path = fetchurl { @@ -7401,14 +7393,6 @@ sha1 = "275a0f01b5e47447056f1541a15ed4da14acca03"; }; } - { - name = "jest_get_type___jest_get_type_25.2.6.tgz"; - path = fetchurl { - name = "jest_get_type___jest_get_type_25.2.6.tgz"; - url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz"; - sha1 = "0b0a32fab8908b44d508be81681487dbabb8d877"; - }; - } { name = "jest_get_type___jest_get_type_26.3.0.tgz"; path = fetchurl { @@ -7793,14 +7777,6 @@ sha1 = "7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"; }; } - { - name = "json5___json5_2.1.3.tgz"; - path = fetchurl { - name = "json5___json5_2.1.3.tgz"; - url = "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz"; - sha1 = "c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"; - }; - } { name = "json5___json5_1.0.1.tgz"; path = fetchurl { @@ -7809,6 +7785,14 @@ sha1 = "779fb0018604fa854eacbf6252180d83543e3dbe"; }; } + { + name = "json5___json5_2.1.3.tgz"; + path = fetchurl { + name = "json5___json5_2.1.3.tgz"; + url = "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz"; + sha1 = "c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"; + }; + } { name = "jsonc_parser___jsonc_parser_2.3.1.tgz"; path = fetchurl { @@ -8002,11 +7986,11 @@ }; } { - name = "known_css_properties___known_css_properties_0.14.0.tgz"; + name = "known_css_properties___known_css_properties_0.20.0.tgz"; path = fetchurl { - name = "known_css_properties___known_css_properties_0.14.0.tgz"; - url = "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.14.0.tgz"; - sha1 = "d7032b4334a32dc22e6e46b081ec789daf18756c"; + name = "known_css_properties___known_css_properties_0.20.0.tgz"; + url = "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.20.0.tgz"; + sha1 = "0570831661b47dd835293218381166090ff60e96"; }; } { @@ -8105,14 +8089,6 @@ sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; }; } - { - name = "load_json_file___load_json_file_4.0.0.tgz"; - path = fetchurl { - name = "load_json_file___load_json_file_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz"; - sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b"; - }; - } { name = "loader_runner___loader_runner_2.4.0.tgz"; path = fetchurl { @@ -8321,14 +8297,6 @@ sha1 = "1bafa5005de9dd6f4f26668c30ca37230cc9689c"; }; } - { - name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; - path = fetchurl { - name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; - sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; - }; - } { name = "lodash.pick___lodash.pick_4.4.0.tgz"; path = fetchurl { @@ -8402,11 +8370,11 @@ }; } { - name = "log_symbols___log_symbols_3.0.0.tgz"; + name = "log_symbols___log_symbols_4.0.0.tgz"; path = fetchurl { - name = "log_symbols___log_symbols_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz"; - sha1 = "f3a08516a5dea893336a7dee14d18a1cfdab77c4"; + name = "log_symbols___log_symbols_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz"; + sha1 = "69b3cc46d20f448eccdb75ea1fa733d9e821c920"; }; } { @@ -8426,11 +8394,11 @@ }; } { - name = "longest_streak___longest_streak_2.0.2.tgz"; + name = "longest_streak___longest_streak_2.0.4.tgz"; path = fetchurl { - name = "longest_streak___longest_streak_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.2.tgz"; - sha1 = "2421b6ba939a443bb9ffebf596585a50b4c38e2e"; + name = "longest_streak___longest_streak_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz"; + sha1 = "b8599957da5b5dab64dee3fe316fa774597d90e4"; }; } { @@ -8474,11 +8442,11 @@ }; } { - name = "lowlight___lowlight_1.11.0.tgz"; + name = "lowlight___lowlight_1.19.0.tgz"; path = fetchurl { - name = "lowlight___lowlight_1.11.0.tgz"; - url = "https://registry.yarnpkg.com/lowlight/-/lowlight-1.11.0.tgz"; - sha1 = "1304d83005126d4e8b1dc0f07981e9b689ec2efc"; + name = "lowlight___lowlight_1.19.0.tgz"; + url = "https://registry.yarnpkg.com/lowlight/-/lowlight-1.19.0.tgz"; + sha1 = "b8544199cafcf10c5731b21c7458c358f79a2a97"; }; } { @@ -8529,14 +8497,6 @@ sha1 = "415e967046b3a7f1d185277d84aa58203726a13f"; }; } - { - name = "make_error___make_error_1.3.6.tgz"; - path = fetchurl { - name = "make_error___make_error_1.3.6.tgz"; - url = "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz"; - sha1 = "2eb2e37ea9b67c4891f684a1394799af484cf7a2"; - }; - } { name = "makeerror___makeerror_1.0.11.tgz"; path = fetchurl { @@ -8562,11 +8522,11 @@ }; } { - name = "map_obj___map_obj_2.0.0.tgz"; + name = "map_obj___map_obj_4.1.0.tgz"; path = fetchurl { - name = "map_obj___map_obj_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz"; - sha1 = "a65cd29087a92598b8791257a523e021222ac1f9"; + name = "map_obj___map_obj_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/map-obj/-/map-obj-4.1.0.tgz"; + sha1 = "b91221b542734b9f14256c0132c897c5d7256fd5"; }; } { @@ -8577,14 +8537,6 @@ sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; }; } - { - name = "markdown_escapes___markdown_escapes_1.0.2.tgz"; - path = fetchurl { - name = "markdown_escapes___markdown_escapes_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.2.tgz"; - sha1 = "e639cbde7b99c841c0bacc8a07982873b46d2122"; - }; - } { name = "markdown_it___markdown_it_11.0.0.tgz"; path = fetchurl { @@ -8594,19 +8546,11 @@ }; } { - name = "markdown_it___markdown_it_8.4.2.tgz"; + name = "markdown_it___markdown_it_10.0.0.tgz"; path = fetchurl { - name = "markdown_it___markdown_it_8.4.2.tgz"; - url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-8.4.2.tgz"; - sha1 = "386f98998dc15a37722aa7722084f4020bdd9b54"; - }; - } - { - name = "markdown_table___markdown_table_1.1.2.tgz"; - path = fetchurl { - name = "markdown_table___markdown_table_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.2.tgz"; - sha1 = "c78db948fa879903a41bce522e3b96f801c63786"; + name = "markdown_it___markdown_it_10.0.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz"; + sha1 = "abfc64f141b1722d663402044e43927f1f50a8dc"; }; } { @@ -8650,11 +8594,11 @@ }; } { - name = "mathml_tag_names___mathml_tag_names_2.1.1.tgz"; + name = "mathml_tag_names___mathml_tag_names_2.1.3.tgz"; path = fetchurl { - name = "mathml_tag_names___mathml_tag_names_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.1.tgz"; - sha1 = "6dff66c99d55ecf739ca53c492e626f1d12a33cc"; + name = "mathml_tag_names___mathml_tag_names_2.1.3.tgz"; + url = "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz"; + sha1 = "4ddadd67308e780cf16a47685878ee27b736a0a3"; }; } { @@ -8674,11 +8618,27 @@ }; } { - name = "mdast_util_compact___mdast_util_compact_1.0.2.tgz"; + name = "mdast_util_from_markdown___mdast_util_from_markdown_0.8.5.tgz"; path = fetchurl { - name = "mdast_util_compact___mdast_util_compact_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-1.0.2.tgz"; - sha1 = "c12ebe16fffc84573d3e19767726de226e95f649"; + name = "mdast_util_from_markdown___mdast_util_from_markdown_0.8.5.tgz"; + url = "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz"; + sha1 = "d1ef2ca42bc377ecb0463a987910dae89bd9a28c"; + }; + } + { + name = "mdast_util_to_markdown___mdast_util_to_markdown_0.6.5.tgz"; + path = fetchurl { + name = "mdast_util_to_markdown___mdast_util_to_markdown_0.6.5.tgz"; + url = "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz"; + sha1 = "b33f67ca820d69e6cc527a93d4039249b504bebe"; + }; + } + { + name = "mdast_util_to_string___mdast_util_to_string_2.0.0.tgz"; + path = fetchurl { + name = "mdast_util_to_string___mdast_util_to_string_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz"; + sha1 = "b8cfe6a713e1091cb5b728fc48885a4767f8b97b"; }; } { @@ -8730,11 +8690,11 @@ }; } { - name = "meow___meow_5.0.0.tgz"; + name = "meow___meow_9.0.0.tgz"; path = fetchurl { - name = "meow___meow_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz"; - sha1 = "dfc73d63a9afc714a5e371760eb5c88b91078aa4"; + name = "meow___meow_9.0.0.tgz"; + url = "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz"; + sha1 = "cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364"; }; } { @@ -8762,11 +8722,11 @@ }; } { - name = "merge2___merge2_1.2.3.tgz"; + name = "merge2___merge2_1.4.1.tgz"; path = fetchurl { - name = "merge2___merge2_1.2.3.tgz"; - url = "https://registry.yarnpkg.com/merge2/-/merge2-1.2.3.tgz"; - sha1 = "7ee99dbd69bb6481689253f018488a1b902b0ed5"; + name = "merge2___merge2_1.4.1.tgz"; + url = "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz"; + sha1 = "4368892f885e907455a6fd7dc55c0c9d404990ae"; }; } { @@ -8785,6 +8745,14 @@ sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; }; } + { + name = "micromark___micromark_2.11.4.tgz"; + path = fetchurl { + name = "micromark___micromark_2.11.4.tgz"; + url = "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz"; + sha1 = "d13436138eea826383e822449c9a5c50ee44665a"; + }; + } { name = "micromatch___micromatch_3.1.10.tgz"; path = fetchurl { @@ -8865,6 +8833,14 @@ sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685"; }; } + { + name = "min_indent___min_indent_1.0.1.tgz"; + path = fetchurl { + name = "min_indent___min_indent_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz"; + sha1 = "a63f681673b30571fbe8bc25686ae746eefa9869"; + }; + } { name = "minify___minify_4.1.2.tgz"; path = fetchurl { @@ -8898,19 +8874,11 @@ }; } { - name = "minimist_options___minimist_options_3.0.2.tgz"; + name = "minimist_options___minimist_options_4.1.0.tgz"; path = fetchurl { - name = "minimist_options___minimist_options_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz"; - sha1 = "fba4c8191339e13ecf4d61beb03f070103f3d954"; - }; - } - { - name = "minimist___minimist_1.1.3.tgz"; - path = fetchurl { - name = "minimist___minimist_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/minimist/-/minimist-1.1.3.tgz"; - sha1 = "3bedfd91a92d39016fcfaa1c681e8faa1a1efda8"; + name = "minimist_options___minimist_options_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz"; + sha1 = "c0655713c53a8a2ebd77ffa247d342c40f010619"; }; } { @@ -8993,14 +8961,6 @@ sha1 = "1120b43dc359a785dce65b55b82e257ccf479566"; }; } - { - name = "mkdirp___mkdirp_1.0.4.tgz"; - path = fetchurl { - name = "mkdirp___mkdirp_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz"; - sha1 = "3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"; - }; - } { name = "mkdirp___mkdirp_0.5.5.tgz"; path = fetchurl { @@ -9009,6 +8969,14 @@ sha1 = "d91cefd62d1436ca0f41620e251288d420099def"; }; } + { + name = "mkdirp___mkdirp_1.0.4.tgz"; + path = fetchurl { + name = "mkdirp___mkdirp_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz"; + sha1 = "3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"; + }; + } { name = "mock_apollo_client___mock_apollo_client_0.5.0.tgz"; path = fetchurl { @@ -9081,6 +9049,14 @@ sha1 = "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"; }; } + { + name = "ms___ms_2.1.2.tgz"; + path = fetchurl { + name = "ms___ms_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz"; + sha1 = "d09d1f357b443f493382a8eb3ccd183872ae6009"; + }; + } { name = "multicast_dns_service_types___multicast_dns_service_types_1.1.0.tgz"; path = fetchurl { @@ -9273,6 +9249,14 @@ sha1 = "e66db1838b200c1dfc233225d12cb36520e234a8"; }; } + { + name = "normalize_package_data___normalize_package_data_3.0.0.tgz"; + path = fetchurl { + name = "normalize_package_data___normalize_package_data_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.0.tgz"; + sha1 = "1f8a7c423b3d2e85eb36985eaf81de381d01301a"; + }; + } { name = "normalize_path___normalize_path_2.1.1.tgz"; path = fetchurl { @@ -9538,11 +9522,11 @@ }; } { - name = "orderedmap___orderedmap_1.0.0.tgz"; + name = "orderedmap___orderedmap_1.1.1.tgz"; path = fetchurl { - name = "orderedmap___orderedmap_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/orderedmap/-/orderedmap-1.0.0.tgz"; - sha1 = "d90fc2ba1ed085190907d601dec6e6a53f8d41ba"; + name = "orderedmap___orderedmap_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/orderedmap/-/orderedmap-1.1.1.tgz"; + sha1 = "c618e77611b3b21d0fe3edc92586265e0059c789"; }; } { @@ -9746,11 +9730,11 @@ }; } { - name = "parse_entities___parse_entities_1.2.0.tgz"; + name = "parse_entities___parse_entities_2.0.0.tgz"; path = fetchurl { - name = "parse_entities___parse_entities_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.0.tgz"; - sha1 = "9deac087661b2e36814153cb78d7e54a4c5fd6f4"; + name = "parse_entities___parse_entities_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz"; + sha1 = "53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8"; }; } { @@ -9761,14 +9745,6 @@ sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; }; } - { - name = "parse_json___parse_json_4.0.0.tgz"; - path = fetchurl { - name = "parse_json___parse_json_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz"; - sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0"; - }; - } { name = "parse_json___parse_json_5.1.0.tgz"; path = fetchurl { @@ -9937,6 +9913,14 @@ sha1 = "cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"; }; } + { + name = "path_type___path_type_4.0.0.tgz"; + path = fetchurl { + name = "path_type___path_type_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz"; + sha1 = "84ed01c0a7ba380afe09d90a8c180dcd9d03043b"; + }; + } { name = "pbkdf2___pbkdf2_3.0.14.tgz"; path = fetchurl { @@ -10097,14 +10081,6 @@ sha1 = "b40913f94eaacc2453fd30a1327ad6ee1f88b204"; }; } - { - name = "postcss_jsx___postcss_jsx_0.36.2.tgz"; - path = fetchurl { - name = "postcss_jsx___postcss_jsx_0.36.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-jsx/-/postcss-jsx-0.36.2.tgz"; - sha1 = "34bcd6752426a60b8df73f069e7595383060a794"; - }; - } { name = "postcss_less___postcss_less_3.1.4.tgz"; path = fetchurl { @@ -10113,14 +10089,6 @@ sha1 = "369f58642b5928ef898ffbc1a6e93c958304c5ad"; }; } - { - name = "postcss_markdown___postcss_markdown_0.36.0.tgz"; - path = fetchurl { - name = "postcss_markdown___postcss_markdown_0.36.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-markdown/-/postcss-markdown-0.36.0.tgz"; - sha1 = "7f22849ae0e3db18820b7b0d5e7833f13a447560"; - }; - } { name = "postcss_media_query_parser___postcss_media_query_parser_0.2.3.tgz"; path = fetchurl { @@ -10161,14 +10129,6 @@ sha1 = "479b46dc0c5ca3dc7fa5270851836b9ec7152f64"; }; } - { - name = "postcss_reporter___postcss_reporter_6.0.1.tgz"; - path = fetchurl { - name = "postcss_reporter___postcss_reporter_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-6.0.1.tgz"; - sha1 = "7c055120060a97c8837b4e48215661aafb74245f"; - }; - } { name = "postcss_resolve_nested_selector___postcss_resolve_nested_selector_0.1.1.tgz"; path = fetchurl { @@ -10178,43 +10138,35 @@ }; } { - name = "postcss_safe_parser___postcss_safe_parser_4.0.1.tgz"; + name = "postcss_safe_parser___postcss_safe_parser_4.0.2.tgz"; path = fetchurl { - name = "postcss_safe_parser___postcss_safe_parser_4.0.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.1.tgz"; - sha1 = "8756d9e4c36fdce2c72b091bbc8ca176ab1fcdea"; + name = "postcss_safe_parser___postcss_safe_parser_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz"; + sha1 = "a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96"; }; } { - name = "postcss_sass___postcss_sass_0.3.5.tgz"; + name = "postcss_sass___postcss_sass_0.4.4.tgz"; path = fetchurl { - name = "postcss_sass___postcss_sass_0.3.5.tgz"; - url = "https://registry.yarnpkg.com/postcss-sass/-/postcss-sass-0.3.5.tgz"; - sha1 = "6d3e39f101a53d2efa091f953493116d32beb68c"; + name = "postcss_sass___postcss_sass_0.4.4.tgz"; + url = "https://registry.yarnpkg.com/postcss-sass/-/postcss-sass-0.4.4.tgz"; + sha1 = "91f0f3447b45ce373227a98b61f8d8f0785285a3"; }; } { - name = "postcss_scss___postcss_scss_2.0.0.tgz"; + name = "postcss_scss___postcss_scss_2.1.1.tgz"; path = fetchurl { - name = "postcss_scss___postcss_scss_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-2.0.0.tgz"; - sha1 = "248b0a28af77ea7b32b1011aba0f738bda27dea1"; + name = "postcss_scss___postcss_scss_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-2.1.1.tgz"; + sha1 = "ec3a75fa29a55e016b90bf3269026c53c1d2b383"; }; } { - name = "postcss_selector_parser___postcss_selector_parser_3.1.1.tgz"; + name = "postcss_selector_parser___postcss_selector_parser_6.0.4.tgz"; path = fetchurl { - name = "postcss_selector_parser___postcss_selector_parser_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz"; - sha1 = "4f875f4afb0c96573d5cf4d74011aee250a7e865"; - }; - } - { - name = "postcss_selector_parser___postcss_selector_parser_6.0.2.tgz"; - path = fetchurl { - name = "postcss_selector_parser___postcss_selector_parser_6.0.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz"; - sha1 = "934cf799d016c83411859e09dcecade01286ec5c"; + name = "postcss_selector_parser___postcss_selector_parser_6.0.4.tgz"; + url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz"; + sha1 = "56075a1380a04604c38b063ea7767a129af5c2b3"; }; } { @@ -10234,19 +10186,19 @@ }; } { - name = "postcss_value_parser___postcss_value_parser_4.0.0.tgz"; + name = "postcss_value_parser___postcss_value_parser_4.1.0.tgz"; path = fetchurl { - name = "postcss_value_parser___postcss_value_parser_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.0.tgz"; - sha1 = "99a983d365f7b2ad8d0f9b8c3094926eab4b936d"; + name = "postcss_value_parser___postcss_value_parser_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz"; + sha1 = "443f6a20ced6481a2bda4fa8532a6e55d789a2cb"; }; } { - name = "postcss___postcss_7.0.30.tgz"; + name = "postcss___postcss_7.0.35.tgz"; path = fetchurl { - name = "postcss___postcss_7.0.30.tgz"; - url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.30.tgz"; - sha1 = "cc9378beffe46a02cbc4506a0477d05fcea9a8e2"; + name = "postcss___postcss_7.0.35.tgz"; + url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz"; + sha1 = "d2be00b998f7f211d8a276974079f2e92b970e24"; }; } { @@ -10305,14 +10257,6 @@ sha1 = "6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea"; }; } - { - name = "pretty_format___pretty_format_25.5.0.tgz"; - path = fetchurl { - name = "pretty_format___pretty_format_25.5.0.tgz"; - url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz"; - sha1 = "7873c1d774f682c34b8d48b6743a2bf2ac55791a"; - }; - } { name = "pretty_format___pretty_format_26.5.2.tgz"; path = fetchurl { @@ -10394,115 +10338,115 @@ }; } { - name = "prosemirror_commands___prosemirror_commands_1.0.7.tgz"; + name = "prosemirror_collab___prosemirror_collab_1.2.2.tgz"; path = fetchurl { - name = "prosemirror_commands___prosemirror_commands_1.0.7.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.0.7.tgz"; - sha1 = "e5a2ba821e29ea7065c88277fe2c3d7f6b0b9d37"; + name = "prosemirror_collab___prosemirror_collab_1.2.2.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-collab/-/prosemirror-collab-1.2.2.tgz"; + sha1 = "8d2c0e82779cfef5d051154bd0836428bd6d9c4a"; }; } { - name = "prosemirror_dropcursor___prosemirror_dropcursor_1.1.1.tgz"; + name = "prosemirror_commands___prosemirror_commands_1.1.7.tgz"; path = fetchurl { - name = "prosemirror_dropcursor___prosemirror_dropcursor_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.1.1.tgz"; - sha1 = "c60ed1ed6c58804a06a75db06a0d993b087b7622"; + name = "prosemirror_commands___prosemirror_commands_1.1.7.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.1.7.tgz"; + sha1 = "5b31ae0fe82835d36d22c780641c0b651f27dd03"; }; } { - name = "prosemirror_gapcursor___prosemirror_gapcursor_1.0.3.tgz"; + name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.3.tgz"; path = fetchurl { - name = "prosemirror_gapcursor___prosemirror_gapcursor_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.0.3.tgz"; - sha1 = "acc6537fc5a35e9b38966f91a199a382dfc715c4"; + name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.3.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.3.3.tgz"; + sha1 = "583d6a82b4960d468132c07c40803cc1d697fda4"; }; } { - name = "prosemirror_history___prosemirror_history_1.0.3.tgz"; + name = "prosemirror_gapcursor___prosemirror_gapcursor_1.1.5.tgz"; path = fetchurl { - name = "prosemirror_history___prosemirror_history_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.0.3.tgz"; - sha1 = "5fb8591adfc272afaaf0b41bec64ee7d9522a118"; + name = "prosemirror_gapcursor___prosemirror_gapcursor_1.1.5.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.1.5.tgz"; + sha1 = "0c37fd6cbb1d7c46358c2e7397f8da9a8b5c6246"; }; } { - name = "prosemirror_inputrules___prosemirror_inputrules_1.0.1.tgz"; + name = "prosemirror_history___prosemirror_history_1.1.3.tgz"; path = fetchurl { - name = "prosemirror_inputrules___prosemirror_inputrules_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.0.1.tgz"; - sha1 = "f63305fd966379f218e82ca76a2a9b328b66dc7b"; + name = "prosemirror_history___prosemirror_history_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.1.3.tgz"; + sha1 = "4f76a1e71db4ef7cdf0e13dec6d8da2aeaecd489"; }; } { - name = "prosemirror_keymap___prosemirror_keymap_1.0.1.tgz"; + name = "prosemirror_inputrules___prosemirror_inputrules_1.1.3.tgz"; path = fetchurl { - name = "prosemirror_keymap___prosemirror_keymap_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.0.1.tgz"; - sha1 = "03ef32b828e3a859dfb570eb84928bf2e5330bc2"; + name = "prosemirror_inputrules___prosemirror_inputrules_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.1.3.tgz"; + sha1 = "93f9199ca02473259c30d7e352e4c14022d54638"; }; } { - name = "prosemirror_markdown___prosemirror_markdown_1.3.0.tgz"; + name = "prosemirror_keymap___prosemirror_keymap_1.1.4.tgz"; path = fetchurl { - name = "prosemirror_markdown___prosemirror_markdown_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-markdown/-/prosemirror-markdown-1.3.0.tgz"; - sha1 = "a100d14c27da7d8fb70818230d786898eeadb7fa"; + name = "prosemirror_keymap___prosemirror_keymap_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.4.tgz"; + sha1 = "8b481bf8389a5ac40d38dbd67ec3da2c7eac6a6d"; }; } { - name = "prosemirror_model___prosemirror_model_1.6.4.tgz"; + name = "prosemirror_markdown___prosemirror_markdown_1.5.1.tgz"; path = fetchurl { - name = "prosemirror_model___prosemirror_model_1.6.4.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.6.4.tgz"; - sha1 = "2ac37a629448a7dbfd1635450e2fdd63c3450d7d"; + name = "prosemirror_markdown___prosemirror_markdown_1.5.1.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-markdown/-/prosemirror-markdown-1.5.1.tgz"; + sha1 = "877c7faea2225d3c52e988599bbe4457bcb3190f"; }; } { - name = "prosemirror_schema_list___prosemirror_schema_list_1.0.1.tgz"; + name = "prosemirror_model___prosemirror_model_1.13.3.tgz"; path = fetchurl { - name = "prosemirror_schema_list___prosemirror_schema_list_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.0.1.tgz"; - sha1 = "f216e0cf4809b6074aa27912449ac89897f1ae94"; + name = "prosemirror_model___prosemirror_model_1.13.3.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.13.3.tgz"; + sha1 = "3ccfde73b9c9e706933c72bdf7462906509ff1c9"; }; } { - name = "prosemirror_state___prosemirror_state_1.2.2.tgz"; + name = "prosemirror_schema_list___prosemirror_schema_list_1.1.4.tgz"; path = fetchurl { - name = "prosemirror_state___prosemirror_state_1.2.2.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.2.2.tgz"; - sha1 = "8df26d95fd6fd327c0f9984a760e84d863204154"; + name = "prosemirror_schema_list___prosemirror_schema_list_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.1.4.tgz"; + sha1 = "471f9caf2d2bed93641d2e490434c0d2d4330df1"; }; } { - name = "prosemirror_tables___prosemirror_tables_0.7.10.tgz"; + name = "prosemirror_state___prosemirror_state_1.3.4.tgz"; path = fetchurl { - name = "prosemirror_tables___prosemirror_tables_0.7.10.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-0.7.10.tgz"; - sha1 = "4b0f623422b4b8f84cdc9c559f8a87579846b3ba"; + name = "prosemirror_state___prosemirror_state_1.3.4.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.4.tgz"; + sha1 = "4c6b52628216e753fc901c6d2bfd84ce109e8952"; }; } { - name = "prosemirror_transform___prosemirror_transform_1.1.3.tgz"; + name = "prosemirror_tables___prosemirror_tables_1.1.1.tgz"; path = fetchurl { - name = "prosemirror_transform___prosemirror_transform_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.1.3.tgz"; - sha1 = "28cfdf1f9ee514edc40466be7b7db39eed545fdf"; + name = "prosemirror_tables___prosemirror_tables_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.1.1.tgz"; + sha1 = "ad66300cc49500455cf1243bb129c9e7d883321e"; }; } { - name = "prosemirror_utils___prosemirror_utils_0.7.5.tgz"; + name = "prosemirror_transform___prosemirror_transform_1.2.12.tgz"; path = fetchurl { - name = "prosemirror_utils___prosemirror_utils_0.7.5.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-utils/-/prosemirror-utils-0.7.5.tgz"; - sha1 = "11b477647b672ec8f10679ab298a5823dad6457a"; + name = "prosemirror_transform___prosemirror_transform_1.2.12.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.2.12.tgz"; + sha1 = "4398b568faf75a1540fbf5c659ca436a8657ed6f"; }; } { - name = "prosemirror_view___prosemirror_view_1.6.8.tgz"; + name = "prosemirror_view___prosemirror_view_1.18.0.tgz"; path = fetchurl { - name = "prosemirror_view___prosemirror_view_1.6.8.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.6.8.tgz"; - sha1 = "33fc1a6e2731633e5d6dc1af1967378f15810b74"; + name = "prosemirror_view___prosemirror_view_1.18.0.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.18.0.tgz"; + sha1 = "92d27b2583877938c529e173e6e3a0f3f6aa0e1c"; }; } { @@ -10658,11 +10602,11 @@ }; } { - name = "quick_lru___quick_lru_1.1.0.tgz"; + name = "quick_lru___quick_lru_4.0.1.tgz"; path = fetchurl { - name = "quick_lru___quick_lru_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz"; - sha1 = "4360b17c61136ad38078397ff11416e186dcfbb8"; + name = "quick_lru___quick_lru_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz"; + sha1 = "5b8878f113a58217848c6482026c73e1ba57727f"; }; } { @@ -10745,14 +10689,6 @@ sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; }; } - { - name = "read_pkg_up___read_pkg_up_3.0.0.tgz"; - path = fetchurl { - name = "read_pkg_up___read_pkg_up_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz"; - sha1 = "3ed496685dba0f8fe118d0691dc51f4a1ff96f07"; - }; - } { name = "read_pkg_up___read_pkg_up_7.0.1.tgz"; path = fetchurl { @@ -10777,14 +10713,6 @@ sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; }; } - { - name = "read_pkg___read_pkg_3.0.0.tgz"; - path = fetchurl { - name = "read_pkg___read_pkg_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz"; - sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389"; - }; - } { name = "read_pkg___read_pkg_5.2.0.tgz"; path = fetchurl { @@ -10802,11 +10730,11 @@ }; } { - name = "readable_stream___readable_stream_3.0.6.tgz"; + name = "readable_stream___readable_stream_3.6.0.tgz"; path = fetchurl { - name = "readable_stream___readable_stream_3.0.6.tgz"; - url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.0.6.tgz"; - sha1 = "351302e4c68b5abd6a2ed55376a7f9a25be3057a"; + name = "readable_stream___readable_stream_3.6.0.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz"; + sha1 = "337bbda3adc0706bd3e024426a286d4b4b2c9198"; }; } { @@ -10842,11 +10770,11 @@ }; } { - name = "redent___redent_2.0.0.tgz"; + name = "redent___redent_3.0.0.tgz"; path = fetchurl { - name = "redent___redent_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz"; - sha1 = "c1b2007b42d57eb1389079b3c8333639d5e1ccaa"; + name = "redent___redent_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz"; + sha1 = "e557b7998316bb53c9f1f56fa626352c6963059f"; }; } { @@ -10946,27 +10874,27 @@ }; } { - name = "remark_parse___remark_parse_6.0.3.tgz"; + name = "remark_parse___remark_parse_9.0.0.tgz"; path = fetchurl { - name = "remark_parse___remark_parse_6.0.3.tgz"; - url = "https://registry.yarnpkg.com/remark-parse/-/remark-parse-6.0.3.tgz"; - sha1 = "c99131052809da482108413f87b0ee7f52180a3a"; + name = "remark_parse___remark_parse_9.0.0.tgz"; + url = "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz"; + sha1 = "4d20a299665880e4f4af5d90b7c7b8a935853640"; }; } { - name = "remark_stringify___remark_stringify_6.0.4.tgz"; + name = "remark_stringify___remark_stringify_9.0.1.tgz"; path = fetchurl { - name = "remark_stringify___remark_stringify_6.0.4.tgz"; - url = "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-6.0.4.tgz"; - sha1 = "16ac229d4d1593249018663c7bddf28aafc4e088"; + name = "remark_stringify___remark_stringify_9.0.1.tgz"; + url = "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-9.0.1.tgz"; + sha1 = "576d06e910548b0a7191a71f27b33f1218862894"; }; } { - name = "remark___remark_10.0.1.tgz"; + name = "remark___remark_13.0.0.tgz"; path = fetchurl { - name = "remark___remark_10.0.1.tgz"; - url = "https://registry.yarnpkg.com/remark/-/remark-10.0.1.tgz"; - sha1 = "3058076dc41781bf505d8978c291485fe47667df"; + name = "remark___remark_13.0.0.tgz"; + url = "https://registry.yarnpkg.com/remark/-/remark-13.0.0.tgz"; + sha1 = "d15d9bf71a402f40287ebe36067b66d54868e425"; }; } { @@ -11001,14 +10929,6 @@ sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; }; } - { - name = "replace_ext___replace_ext_1.0.0.tgz"; - path = fetchurl { - name = "replace_ext___replace_ext_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz"; - sha1 = "de63128373fcbf7c3ccfa4de5a480c45a67958eb"; - }; - } { name = "request_light___request_light_0.2.5.tgz"; path = fetchurl { @@ -11185,6 +11105,14 @@ sha1 = "1b42a6266a21f07421d1b0b54b7dc167b01c013b"; }; } + { + name = "reusify___reusify_1.0.4.tgz"; + path = fetchurl { + name = "reusify___reusify_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz"; + sha1 = "90da382b1e126efc02146e90845a88db12925d76"; + }; + } { name = "rfdc___rfdc_1.1.4.tgz"; path = fetchurl { @@ -11218,11 +11146,11 @@ }; } { - name = "rope_sequence___rope_sequence_1.2.2.tgz"; + name = "rope_sequence___rope_sequence_1.3.2.tgz"; path = fetchurl { - name = "rope_sequence___rope_sequence_1.2.2.tgz"; - url = "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.2.2.tgz"; - sha1 = "49c4e5c2f54a48e990b050926771e2871bcb31ce"; + name = "rope_sequence___rope_sequence_1.3.2.tgz"; + url = "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.2.tgz"; + sha1 = "a19e02d72991ca71feb6b5f8a91154e48e3c098b"; }; } { @@ -11241,6 +11169,14 @@ sha1 = "b50e6b34583f3dd89329a2f23a8a2be072845911"; }; } + { + name = "run_parallel___run_parallel_1.1.10.tgz"; + path = fetchurl { + name = "run_parallel___run_parallel_1.1.10.tgz"; + url = "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz"; + sha1 = "60a51b2ae836636c81377df16cb107351bcd13ef"; + }; + } { name = "run_queue___run_queue_1.0.3.tgz"; path = fetchurl { @@ -11409,14 +11345,6 @@ sha1 = "5f3ca35761e47e05b206c6daff2cf814f0316b8e"; }; } - { - name = "semver___semver_7.3.4.tgz"; - path = fetchurl { - name = "semver___semver_7.3.4.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz"; - sha1 = "27aaa7d2e4ca76452f98d3add093a72c943edc97"; - }; - } { name = "semver___semver_6.3.0.tgz"; path = fetchurl { @@ -11425,6 +11353,14 @@ sha1 = "ee0a64c8af5e8ceea67687b133761e1becbd1d3d"; }; } + { + name = "semver___semver_7.3.4.tgz"; + path = fetchurl { + name = "semver___semver_7.3.4.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz"; + sha1 = "27aaa7d2e4ca76452f98d3add093a72c943edc97"; + }; + } { name = "semver___semver_5.3.0.tgz"; path = fetchurl { @@ -11569,6 +11505,14 @@ sha1 = "d6b9181c1a48d397324c84871efbcfc73fc0654b"; }; } + { + name = "shortcss___shortcss_0.1.3.tgz"; + path = fetchurl { + name = "shortcss___shortcss_0.1.3.tgz"; + url = "https://registry.yarnpkg.com/shortcss/-/shortcss-0.1.3.tgz"; + sha1 = "ee2a7904d80b7f5502c98408f4a2f313faadfb48"; + }; + } { name = "sigmund___sigmund_1.0.1.tgz"; path = fetchurl { @@ -11601,14 +11545,6 @@ sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; }; } - { - name = "slash___slash_2.0.0.tgz"; - path = fetchurl { - name = "slash___slash_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz"; - sha1 = "de552851a1759df3a8f206535442f5ec4ddeab44"; - }; - } { name = "slash___slash_3.0.0.tgz"; path = fetchurl { @@ -11617,14 +11553,6 @@ sha1 = "6539be870c165adbd5240220dbe361f1bc4d4634"; }; } - { - name = "slice_ansi___slice_ansi_2.1.0.tgz"; - path = fetchurl { - name = "slice_ansi___slice_ansi_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz"; - sha1 = "cacd7693461a637a5788d92a7dd4fba068e81636"; - }; - } { name = "slice_ansi___slice_ansi_4.0.0.tgz"; path = fetchurl { @@ -11905,14 +11833,6 @@ sha1 = "5cf48b4557becb4638d0bc4f21d23f5d19586593"; }; } - { - name = "state_toggle___state_toggle_1.0.1.tgz"; - path = fetchurl { - name = "state_toggle___state_toggle_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.1.tgz"; - sha1 = "c3cb0974f40a6a0f8e905b96789eb41afa1cde3a"; - }; - } { name = "static_extend___static_extend_0.1.2.tgz"; path = fetchurl { @@ -12065,14 +11985,6 @@ sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; }; } - { - name = "stringify_entities___stringify_entities_1.3.2.tgz"; - path = fetchurl { - name = "stringify_entities___stringify_entities_1.3.2.tgz"; - url = "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.2.tgz"; - sha1 = "a98417e5471fd227b3e45d3db1861c11caf668f7"; - }; - } { name = "strip_ansi___strip_ansi_3.0.1.tgz"; path = fetchurl { @@ -12154,11 +12066,11 @@ }; } { - name = "strip_indent___strip_indent_2.0.0.tgz"; + name = "strip_indent___strip_indent_3.0.0.tgz"; path = fetchurl { - name = "strip_indent___strip_indent_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz"; - sha1 = "5ef8db295d01e6ed6cbf7aab96998d7822527b68"; + name = "strip_indent___strip_indent_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz"; + sha1 = "c32e1cee940b6b3432c771bc2c54bcce73cd3001"; }; } { @@ -12194,27 +12106,27 @@ }; } { - name = "stylelint_config_recommended___stylelint_config_recommended_2.2.0.tgz"; + name = "stylelint_declaration_strict_value___stylelint_declaration_strict_value_1.7.7.tgz"; path = fetchurl { - name = "stylelint_config_recommended___stylelint_config_recommended_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-2.2.0.tgz"; - sha1 = "46ab139db4a0e7151fd5f94af155512886c96d3f"; + name = "stylelint_declaration_strict_value___stylelint_declaration_strict_value_1.7.7.tgz"; + url = "https://registry.yarnpkg.com/stylelint-declaration-strict-value/-/stylelint-declaration-strict-value-1.7.7.tgz"; + sha1 = "d2f0aabc7f3e701a8988207f27d9696bd1d1ed0d"; }; } { - name = "stylelint_scss___stylelint_scss_3.9.2.tgz"; + name = "stylelint_scss___stylelint_scss_3.18.0.tgz"; path = fetchurl { - name = "stylelint_scss___stylelint_scss_3.9.2.tgz"; - url = "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-3.9.2.tgz"; - sha1 = "5435174a57696ee52eae40146778a4e62f7ed3a3"; + name = "stylelint_scss___stylelint_scss_3.18.0.tgz"; + url = "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-3.18.0.tgz"; + sha1 = "8f06371c223909bf3f62e839548af1badeed31e9"; }; } { - name = "stylelint___stylelint_10.1.0.tgz"; + name = "stylelint___stylelint_13.9.0.tgz"; path = fetchurl { - name = "stylelint___stylelint_10.1.0.tgz"; - url = "https://registry.yarnpkg.com/stylelint/-/stylelint-10.1.0.tgz"; - sha1 = "1bc4c4ce878107e7c396b19226d91ba28268911a"; + name = "stylelint___stylelint_13.9.0.tgz"; + url = "https://registry.yarnpkg.com/stylelint/-/stylelint-13.9.0.tgz"; + sha1 = "93921ee6e11d4556b9f31131f485dc813b68e32a"; }; } { @@ -12282,11 +12194,11 @@ }; } { - name = "swagger_ui_dist___swagger_ui_dist_3.43.0.tgz"; + name = "swagger_ui_dist___swagger_ui_dist_3.44.1.tgz"; path = fetchurl { - name = "swagger_ui_dist___swagger_ui_dist_3.43.0.tgz"; - url = "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-3.43.0.tgz"; - sha1 = "b064a2cec1d27776f9a124bc70423cfa0bbc0d3f"; + name = "swagger_ui_dist___swagger_ui_dist_3.44.1.tgz"; + url = "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-3.44.1.tgz"; + sha1 = "757385a79698b8ef7045287be585671db4e4a252"; }; } { @@ -12305,14 +12217,6 @@ sha1 = "430637d248ba77e078883951fb9aa0eed7c63fa2"; }; } - { - name = "table___table_5.4.4.tgz"; - path = fetchurl { - name = "table___table_5.4.4.tgz"; - url = "https://registry.yarnpkg.com/table/-/table-5.4.4.tgz"; - sha1 = "6e0f88fdae3692793d1077fd172a4667afe986a6"; - }; - } { name = "table___table_6.0.7.tgz"; path = fetchurl { @@ -12506,35 +12410,35 @@ }; } { - name = "tiptap_commands___tiptap_commands_1.4.0.tgz"; + name = "tiptap_commands___tiptap_commands_1.17.1.tgz"; path = fetchurl { - name = "tiptap_commands___tiptap_commands_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/tiptap-commands/-/tiptap-commands-1.4.0.tgz"; - sha1 = "0cfb3ac138ee3099de56114cb119abd841fbcbe7"; + name = "tiptap_commands___tiptap_commands_1.17.1.tgz"; + url = "https://registry.yarnpkg.com/tiptap-commands/-/tiptap-commands-1.17.1.tgz"; + sha1 = "a8974a26d87db57b2fd4fc56a552520c69e43a4a"; }; } { - name = "tiptap_extensions___tiptap_extensions_1.8.0.tgz"; + name = "tiptap_extensions___tiptap_extensions_1.35.1.tgz"; path = fetchurl { - name = "tiptap_extensions___tiptap_extensions_1.8.0.tgz"; - url = "https://registry.yarnpkg.com/tiptap-extensions/-/tiptap-extensions-1.8.0.tgz"; - sha1 = "3067620a024f1a9e5fae4450790b143d7ebe4394"; + name = "tiptap_extensions___tiptap_extensions_1.35.1.tgz"; + url = "https://registry.yarnpkg.com/tiptap-extensions/-/tiptap-extensions-1.35.1.tgz"; + sha1 = "6227362b08dbad8d0ab0141b508876deca276c55"; }; } { - name = "tiptap_utils___tiptap_utils_1.1.1.tgz"; + name = "tiptap_utils___tiptap_utils_1.13.1.tgz"; path = fetchurl { - name = "tiptap_utils___tiptap_utils_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/tiptap-utils/-/tiptap-utils-1.1.1.tgz"; - sha1 = "e7aad3e84eb35f7abed704d15da0420029789d0d"; + name = "tiptap_utils___tiptap_utils_1.13.1.tgz"; + url = "https://registry.yarnpkg.com/tiptap-utils/-/tiptap-utils-1.13.1.tgz"; + sha1 = "f2150ded432465d66aa03a5ab333803415cddd20"; }; } { - name = "tiptap___tiptap_1.8.0.tgz"; + name = "tiptap___tiptap_1.32.1.tgz"; path = fetchurl { - name = "tiptap___tiptap_1.8.0.tgz"; - url = "https://registry.yarnpkg.com/tiptap/-/tiptap-1.8.0.tgz"; - sha1 = "c671188075ffa5ee4f86470f95818fd9ce6f1040"; + name = "tiptap___tiptap_1.32.1.tgz"; + url = "https://registry.yarnpkg.com/tiptap/-/tiptap-1.32.1.tgz"; + sha1 = "92b47008d163e31d25d44dc18809a7e928fe1daf"; }; } { @@ -12674,35 +12578,19 @@ }; } { - name = "trim_newlines___trim_newlines_2.0.0.tgz"; + name = "trim_newlines___trim_newlines_3.0.0.tgz"; path = fetchurl { - name = "trim_newlines___trim_newlines_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz"; - sha1 = "b403d0b91be50c331dfc4b82eeceb22c3de16d20"; + name = "trim_newlines___trim_newlines_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.0.tgz"; + sha1 = "79726304a6a898aa8373427298d54c2ee8b1cb30"; }; } { - name = "trim_trailing_lines___trim_trailing_lines_1.1.1.tgz"; + name = "trough___trough_1.0.5.tgz"; path = fetchurl { - name = "trim_trailing_lines___trim_trailing_lines_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.1.tgz"; - sha1 = "e0ec0810fd3c3f1730516b45f49083caaf2774d9"; - }; - } - { - name = "trim___trim_0.0.1.tgz"; - path = fetchurl { - name = "trim___trim_0.0.1.tgz"; - url = "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz"; - sha1 = "5858547f6b290757ee95cccc666fb50084c460dd"; - }; - } - { - name = "trough___trough_1.0.3.tgz"; - path = fetchurl { - name = "trough___trough_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/trough/-/trough-1.0.3.tgz"; - sha1 = "e29bd1614c6458d44869fc28b255ab7857ef7c24"; + name = "trough___trough_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz"; + sha1 = "b8b639cefad7d0bb2abd37d433ff8293efa5f406"; }; } { @@ -12745,14 +12633,6 @@ sha1 = "97a523518688f93aafad01b0e80eb803eb2abd86"; }; } - { - name = "ts_jest___ts_jest_26.4.1.tgz"; - path = fetchurl { - name = "ts_jest___ts_jest_26.4.1.tgz"; - url = "https://registry.yarnpkg.com/ts-jest/-/ts-jest-26.4.1.tgz"; - sha1 = "08ec0d3fc2c3a39e4a46eae5610b69fafa6babd0"; - }; - } { name = "tsconfig_paths___tsconfig_paths_3.9.0.tgz"; path = fetchurl { @@ -12825,6 +12705,14 @@ sha1 = "7646fb5f18871cfbb7749e69bd39a6388eb7450c"; }; } + { + name = "type_fest___type_fest_0.18.1.tgz"; + path = fetchurl { + name = "type_fest___type_fest_0.18.1.tgz"; + url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz"; + sha1 = "db4bc151a4a2cf4eebf9add5db75508db6cc841f"; + }; + } { name = "type_fest___type_fest_0.6.0.tgz"; path = fetchurl { @@ -12929,14 +12817,6 @@ sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; }; } - { - name = "unherit___unherit_1.1.1.tgz"; - path = fetchurl { - name = "unherit___unherit_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/unherit/-/unherit-1.1.1.tgz"; - sha1 = "132748da3e88eab767e08fabfbb89c5e9d28628c"; - }; - } { name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz"; path = fetchurl { @@ -12970,11 +12850,11 @@ }; } { - name = "unified___unified_7.1.0.tgz"; + name = "unified___unified_9.2.0.tgz"; path = fetchurl { - name = "unified___unified_7.1.0.tgz"; - url = "https://registry.yarnpkg.com/unified/-/unified-7.1.0.tgz"; - sha1 = "5032f1c1ee3364bd09da12e27fdd4a7553c7be13"; + name = "unified___unified_9.2.0.tgz"; + url = "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz"; + sha1 = "67a62c627c40589edebbf60f53edfd4d822027f8"; }; } { @@ -13018,51 +12898,27 @@ }; } { - name = "unist_util_find_all_after___unist_util_find_all_after_1.0.2.tgz"; + name = "unist_util_find_all_after___unist_util_find_all_after_3.0.2.tgz"; path = fetchurl { - name = "unist_util_find_all_after___unist_util_find_all_after_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/unist-util-find-all-after/-/unist-util-find-all-after-1.0.2.tgz"; - sha1 = "9be49cfbae5ca1566b27536670a92836bf2f8d6d"; + name = "unist_util_find_all_after___unist_util_find_all_after_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/unist-util-find-all-after/-/unist-util-find-all-after-3.0.2.tgz"; + sha1 = "fdfecd14c5b7aea5e9ef38d5e0d5f774eeb561f6"; }; } { - name = "unist_util_is___unist_util_is_2.1.2.tgz"; + name = "unist_util_is___unist_util_is_4.0.4.tgz"; path = fetchurl { - name = "unist_util_is___unist_util_is_2.1.2.tgz"; - url = "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-2.1.2.tgz"; - sha1 = "1193fa8f2bfbbb82150633f3a8d2eb9a1c1d55db"; + name = "unist_util_is___unist_util_is_4.0.4.tgz"; + url = "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.4.tgz"; + sha1 = "3e9e8de6af2eb0039a59f50c9b3e99698a924f50"; }; } { - name = "unist_util_remove_position___unist_util_remove_position_1.1.2.tgz"; + name = "unist_util_stringify_position___unist_util_stringify_position_2.0.3.tgz"; path = fetchurl { - name = "unist_util_remove_position___unist_util_remove_position_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.2.tgz"; - sha1 = "86b5dad104d0bbfbeb1db5f5c92f3570575c12cb"; - }; - } - { - name = "unist_util_stringify_position___unist_util_stringify_position_1.1.2.tgz"; - path = fetchurl { - name = "unist_util_stringify_position___unist_util_stringify_position_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz"; - sha1 = "3f37fcf351279dcbca7480ab5889bb8a832ee1c6"; - }; - } - { - name = "unist_util_visit_parents___unist_util_visit_parents_2.0.1.tgz"; - path = fetchurl { - name = "unist_util_visit_parents___unist_util_visit_parents_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-2.0.1.tgz"; - sha1 = "63fffc8929027bee04bfef7d2cce474f71cb6217"; - }; - } - { - name = "unist_util_visit___unist_util_visit_1.4.1.tgz"; - path = fetchurl { - name = "unist_util_visit___unist_util_visit_1.4.1.tgz"; - url = "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.4.1.tgz"; - sha1 = "4724aaa8486e6ee6e26d7ff3c8685960d560b1e3"; + name = "unist_util_stringify_position___unist_util_stringify_position_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz"; + sha1 = "cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da"; }; } { @@ -13290,27 +13146,19 @@ }; } { - name = "vfile_location___vfile_location_2.0.4.tgz"; + name = "vfile_message___vfile_message_2.0.4.tgz"; path = fetchurl { - name = "vfile_location___vfile_location_2.0.4.tgz"; - url = "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.4.tgz"; - sha1 = "2a5e7297dd0d9e2da4381464d04acc6b834d3e55"; + name = "vfile_message___vfile_message_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz"; + sha1 = "5b43b88171d409eae58477d13f23dd41d52c371a"; }; } { - name = "vfile_message___vfile_message_1.1.1.tgz"; + name = "vfile___vfile_4.2.1.tgz"; path = fetchurl { - name = "vfile_message___vfile_message_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/vfile-message/-/vfile-message-1.1.1.tgz"; - sha1 = "5833ae078a1dfa2d96e9647886cd32993ab313e1"; - }; - } - { - name = "vfile___vfile_3.0.1.tgz"; - path = fetchurl { - name = "vfile___vfile_3.0.1.tgz"; - url = "https://registry.yarnpkg.com/vfile/-/vfile-3.0.1.tgz"; - sha1 = "47331d2abe3282424f4a4bb6acd20a44c4121803"; + name = "vfile___vfile_4.2.1.tgz"; + url = "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz"; + sha1 = "03f1dce28fc625c625bc6514350fbdb00fa9e624"; }; } { @@ -13466,11 +13314,11 @@ }; } { - name = "vue_jest___vue_jest_4.0.0_rc.0.tgz"; + name = "vue_jest___vue_jest_4.0.1.tgz"; path = fetchurl { - name = "vue_jest___vue_jest_4.0.0_rc.0.tgz"; - url = "https://registry.yarnpkg.com/vue-jest/-/vue-jest-4.0.0-rc.0.tgz"; - sha1 = "0ce263c7f923441d0eeb99841620e8e9470336f4"; + name = "vue_jest___vue_jest_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/vue-jest/-/vue-jest-4.0.1.tgz"; + sha1 = "683efc351c24456865b1356bae69d5bb663dafb5"; }; } { @@ -13562,11 +13410,11 @@ }; } { - name = "w3c_keyname___w3c_keyname_1.1.8.tgz"; + name = "w3c_keyname___w3c_keyname_2.2.4.tgz"; path = fetchurl { - name = "w3c_keyname___w3c_keyname_1.1.8.tgz"; - url = "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-1.1.8.tgz"; - sha1 = "4e2219663760fd6535b7a1550f1552d71fc9372c"; + name = "w3c_keyname___w3c_keyname_2.2.4.tgz"; + url = "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.4.tgz"; + sha1 = "4ade6916f6290224cdbd1db8ac49eab03d0eef6b"; }; } { @@ -13841,14 +13689,6 @@ sha1 = "56bd5c5a5c70481cd19c571bd39ab965a5de56e8"; }; } - { - name = "write___write_1.0.3.tgz"; - path = fetchurl { - name = "write___write_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz"; - sha1 = "0800e14523b923a387e415123c865616aae0f5c3"; - }; - } { name = "ws___ws_6.2.1.tgz"; path = fetchurl { @@ -13873,14 +13713,6 @@ sha1 = "f1cf84fe2d5e901ebce94efaece785f187a228f2"; }; } - { - name = "x_is_string___x_is_string_0.1.0.tgz"; - path = fetchurl { - name = "x_is_string___x_is_string_0.1.0.tgz"; - url = "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz"; - sha1 = "474b50865af3a49a9c4657f05acd145458f77d82"; - }; - } { name = "xdg_basedir___xdg_basedir_4.0.0.tgz"; path = fetchurl { @@ -14026,19 +13858,11 @@ }; } { - name = "yargs_parser___yargs_parser_20.2.1.tgz"; + name = "yaml___yaml_1.10.0.tgz"; path = fetchurl { - name = "yargs_parser___yargs_parser_20.2.1.tgz"; - url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.1.tgz"; - sha1 = "28f3773c546cdd8a69ddae68116b48a5da328e77"; - }; - } - { - name = "yargs_parser___yargs_parser_10.1.0.tgz"; - path = fetchurl { - name = "yargs_parser___yargs_parser_10.1.0.tgz"; - url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz"; - sha1 = "7202265b89f7e9e9f2e5765e0fe735a905edbaa8"; + name = "yaml___yaml_1.10.0.tgz"; + url = "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz"; + sha1 = "3b593add944876077d4d683fee01081bd9fff31e"; }; } { @@ -14057,6 +13881,14 @@ sha1 = "be68c4975c6b2abf469236b0c870362fab09a7b0"; }; } + { + name = "yargs_parser___yargs_parser_20.2.4.tgz"; + path = fetchurl { + name = "yargs_parser___yargs_parser_20.2.4.tgz"; + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz"; + sha1 = "b42890f14566796f85ae8e3a25290d205f154a54"; + }; + } { name = "yargs___yargs_13.3.2.tgz"; path = fetchurl { @@ -14121,5 +13953,13 @@ sha1 = "ec7432f9415c82c73584b6b7b8c47e1b016209c6"; }; } + { + name = "zwitch___zwitch_1.0.5.tgz"; + path = fetchurl { + name = "zwitch___zwitch_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz"; + sha1 = "d11d7381ffed16b742f6af7b3f223d5cd9fe9920"; + }; + } ]; } diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index 3f1c2190a3c2..5ca2612cc6f0 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -25,7 +25,7 @@ , cairo, re2, rake, gobject-introspection, gdk-pixbuf, zeromq, czmq, graphicsmagick, libcxx , file, libvirt, glib, vips, taglib, libopus, linux-pam, libidn, protobuf, fribidi, harfbuzz , bison, flex, pango, python3, patchelf, binutils, freetds, wrapGAppsHook, atk -, bundler, libsass, libselinux ? null, libsepol ? null +, bundler, libsass, libselinux ? null, libsepol ? null, shared-mime-info }@args: let @@ -164,6 +164,10 @@ in ''; }; + mimemagic = attrs: { + FREEDESKTOP_MIME_TYPES_PATH = "${shared-mime-info}/share/mime/packages/freedesktop.org.xml"; + }; + mini_magick = attrs: { postInstall = '' installPath=$(cat $out/nix-support/gem-meta/install-path)