gitlab: 17.11.2 -> 18.0.0

https://gitlab.com/gitlab-org/gitlab/-/blob/v18.0.0-ee/CHANGELOG.md

Yaya 816aa29c b5bd640a

+716 -372
+8 -8
pkgs/applications/version-management/gitlab/data.json
··· 1 1 { 2 - "version": "17.11.2", 3 - "repo_hash": "1jaxqchqag6q0c4vmrpwnmflv72b2xpskba9b0m4y6w6sy7hqx7q", 4 - "yarn_hash": "0z06jaxqbg2wnq7yhpkba0cpxp4w4iy2cxla8nhc6kgx49xk179v", 2 + "version": "18.0.0", 3 + "repo_hash": "03x2ypyn7kkald6pzvzh19cmlr6km9fdssw823565rd1kikywb87", 4 + "yarn_hash": "0vv09y1pjcm2723jh842pgnmnrf4yqk7558v57dp08rxrqnsni5x", 5 5 "owner": "gitlab-org", 6 6 "repo": "gitlab", 7 - "rev": "v17.11.2-ee", 7 + "rev": "v18.0.0-ee", 8 8 "passthru": { 9 - "GITALY_SERVER_VERSION": "17.11.2", 10 - "GITLAB_PAGES_VERSION": "17.11.2", 9 + "GITALY_SERVER_VERSION": "18.0.0", 10 + "GITLAB_PAGES_VERSION": "18.0.0", 11 11 "GITLAB_SHELL_VERSION": "14.41.0", 12 - "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.5.0", 13 - "GITLAB_WORKHORSE_VERSION": "17.11.2" 12 + "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.5.1", 13 + "GITLAB_WORKHORSE_VERSION": "18.0.0" 14 14 } 15 15 }
+1 -1
pkgs/applications/version-management/gitlab/default.nix
··· 82 82 cp Cargo.lock $out 83 83 ''; 84 84 }; 85 - hash = "sha256-Jr3lS3gQI/jojWIUxEBp7a950mcOvnbjlRIFXvfGays="; 85 + hash = "sha256-73uliXjZNT8Ok98ai2rY+b0jYqxoQH3qW5YS+Ap6KK0="; 86 86 }; 87 87 88 88 dontBuild = false;
+2 -2
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 10 10 buildGoModule rec { 11 11 pname = "gitlab-workhorse"; 12 12 13 - version = "17.11.2"; 13 + version = "18.0.0"; 14 14 15 15 # nixpkgs-update: no auto update 16 16 src = fetchFromGitLab { ··· 22 22 23 23 sourceRoot = "${src.name}/workhorse"; 24 24 25 - vendorHash = "sha256-76JO/oayqhv36WM7zC/a85l8CK1orsMuMksBYbmDN1o="; 25 + vendorHash = "sha256-tLlxsUCoSGvUpJnS0GsNobk2IuSEgs3R4UDUmNf+HrA="; 26 26 buildInputs = [ git ]; 27 27 ldflags = [ "-X main.Version=${version}" ]; 28 28 doCheck = false;
+30 -31
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile
··· 1 1 # frozen_string_literal: true 2 2 3 - def next? 4 - File.basename(__FILE__) == "Gemfile.next" 5 - end 6 - 7 3 source 'https://rubygems.org' 8 4 9 5 if ENV.fetch('BUNDLER_CHECKSUM_VERIFICATION_OPT_IN', 'false') != 'false' # this verification is still experimental ··· 29 25 # 30 26 # See https://docs.gitlab.com/ee/development/gemfile.html#upgrade-rails for guidelines when upgrading Rails 31 27 32 - if next? 33 - gem 'rails', '~> 7.1.5.1', feature_category: :shared 34 - else 35 - gem 'rails', '~> 7.0.8.7', feature_category: :shared 36 - end 28 + gem 'rails', '~> 7.1.5.1', feature_category: :shared 37 29 38 30 gem 'activerecord-gitlab', path: 'gems/activerecord-gitlab', feature_category: :shared 39 31 # This can be dropped after upgrading to Rails 7.2: https://github.com/rails/rails/pull/49674 ··· 88 80 gem 'declarative_policy', '~> 1.1.0', feature_category: :shared 89 81 90 82 # For source code paths mapping 91 - gem 'coverband', '6.1.4', require: false, feature_category: :shared 83 + gem 'coverband', '6.1.5', require: false, feature_category: :shared 92 84 93 85 # Authentication libraries 94 86 gem 'devise', '~> 4.9.3', feature_category: :system_access ··· 196 188 # Files attachments 197 189 gem 'carrierwave', '~> 1.3', feature_category: :shared 198 190 gem 'mini_magick', '~> 4.12', feature_category: :shared 191 + 192 + # PDF generation 193 + gem 'prawn', feature_category: :vulnerability_management 194 + gem 'prawn-svg', feature_category: :vulnerability_management 199 195 200 196 # for backups 201 197 gem 'fog-aws', '~> 3.26', feature_category: :shared ··· 242 238 gem 'elasticsearch-model', '~> 7.2', feature_category: :global_search 243 239 gem 'elasticsearch-rails', '~> 7.2', require: 'elasticsearch/rails/instrumentation', feature_category: :global_search 244 240 gem 'elasticsearch-api', '7.17.11', feature_category: :global_search 245 - gem 'aws-sdk-core', '~> 3.215.0', feature_category: :global_search 241 + gem 'aws-sdk-core', '~> 3.223.0', feature_category: :global_search 246 242 gem 'aws-sdk-cloudformation', '~> 1', feature_category: :global_search 247 - gem 'aws-sdk-s3', '~> 1.177.0', feature_category: :global_search 243 + gem 'aws-sdk-s3', '~> 1.185.0', feature_category: :global_search 248 244 gem 'faraday-typhoeus', '~> 1.1', feature_category: :global_search 249 245 gem 'faraday_middleware-aws-sigv4', '~> 1.0.1', feature_category: :global_search 250 246 # Used with Elasticsearch to support http keep-alive connections ··· 270 266 gem 'rouge', '~> 4.5.0', feature_category: :shared 271 267 gem 'truncato', '~> 0.7.13', feature_category: :team_planning 272 268 gem 'nokogiri', '~> 1.18', feature_category: :shared 273 - gem 'gitlab-glfm-markdown', '~> 0.0.29', feature_category: :markdown 269 + gem 'gitlab-glfm-markdown', '~> 0.0.30', feature_category: :markdown 274 270 gem 'tanuki_emoji', '~> 0.13', feature_category: :markdown 275 271 gem 'unicode-emoji', '~> 4.0', feature_category: :markdown 276 272 ··· 319 315 320 316 # Misc 321 317 322 - gem 'semver_dialects', '~> 3.6', feature_category: :software_composition_analysis 318 + gem 'semver_dialects', '~> 3.7', feature_category: :software_composition_analysis 323 319 gem 'version_sorter', '~> 2.3', feature_category: :shared 324 320 gem 'csv_builder', path: 'gems/csv_builder', feature_category: :shared 325 321 ··· 395 391 gem 'rack-attack', '~> 6.7.0', feature_category: :shared 396 392 397 393 # Sentry integration 398 - gem 'sentry-ruby', '~> 5.22.0', feature_category: :observability 399 - gem 'sentry-rails', '~> 5.22.0', feature_category: :observability 400 - gem 'sentry-sidekiq', '~> 5.22.0', feature_category: :observability 394 + gem 'sentry-ruby', '~> 5.23.0', feature_category: :observability 395 + gem 'sentry-rails', '~> 5.23.0', feature_category: :observability 396 + gem 'sentry-sidekiq', '~> 5.23.0', feature_category: :observability 401 397 402 398 # PostgreSQL query parsing 403 399 # ··· 433 429 gem 'snowplow-tracker', '~> 0.8.0', feature_category: :product_analytics 434 430 435 431 # Metrics 436 - gem 'webrick', '~> 1.8.1', require: false, feature_category: :shared 432 + gem 'webrick', '~> 1.9.0', require: false, feature_category: :shared 437 433 gem 'prometheus-client-mmap', '~> 1.2.9', require: 'prometheus/client', feature_category: :shared 438 434 439 435 # Event-driven reactor for Ruby ··· 478 474 group :development do 479 475 gem 'lefthook', '~> 1.11.0', require: false, feature_category: :tooling 480 476 gem 'rubocop', feature_category: :tooling 481 - gem 'solargraph', '~> 0.47.2', require: false, feature_category: :shared 477 + 478 + gem 'solargraph', '~> 0.54.0', require: false, feature_category: :shared 479 + gem 'solargraph-rspec', '~> 0.5.1', require: false, feature_category: :shared 482 480 483 481 gem 'letter_opener_web', '~> 3.0.0', feature_category: :shared 484 482 gem 'lookbook', '~> 2.3', feature_category: :shared ··· 505 503 end 506 504 507 505 group :development, :test do 508 - gem 'deprecation_toolkit', '~> 1.5.1', require: false, feature_category: :shared 506 + gem 'deprecation_toolkit', '~> 2.2.3', require: false, feature_category: :shared 509 507 gem 'bullet', '~> 7.2.0', feature_category: :shared 510 - gem 'parser', '= 3.3.7.1', feature_category: :shared 508 + gem 'parser', '= 3.3.8.0', feature_category: :shared 511 509 gem 'pry-byebug', feature_category: :shared 512 510 gem 'pry-rails', '~> 0.3.9', feature_category: :shared 513 511 gem 'pry-shell', '~> 0.6.4', feature_category: :shared ··· 535 533 gem 'influxdb-client', '~> 3.1', require: false, feature_category: :tooling 536 534 537 535 gem 'knapsack', '~> 4.0.0', feature_category: :tooling 538 - gem 'crystalball', '~> 0.7.0', require: false, feature_category: :tooling 536 + gem 'gitlab-crystalball', '~> 0.7.2', require: false, feature_category: :tooling 539 537 gem 'test_file_finder', '~> 0.3.1', feature_category: :tooling 540 538 541 539 gem 'simple_po_parser', '~> 1.1.6', require: false, feature_category: :shared ··· 559 557 end 560 558 561 559 group :development, :test, :danger do 562 - gem 'gitlab-dangerfiles', '~> 4.8.0', require: false, feature_category: :tooling 560 + gem 'gitlab-dangerfiles', '~> 4.9.0', require: false, feature_category: :tooling 563 561 end 564 562 565 563 group :development, :test, :coverage do ··· 602 600 gem 'rspec_junit_formatter', feature_category: :shared 603 601 gem 'guard-rspec', feature_category: :shared 604 602 gem 'axe-core-rspec', '~> 4.10.0', feature_category: :tooling 603 + gem 'state_machines-rspec', '~> 0.6', feature_category: :shared 605 604 606 605 # Moved in `test` because https://gitlab.com/gitlab-org/gitlab/-/issues/217527 607 606 gem 'derailed_benchmarks', require: false, feature_category: :shared 608 607 609 - gem 'gitlab_quality-test_tooling', '~> 2.8.0', require: false, feature_category: :tooling 608 + gem 'gitlab_quality-test_tooling', '~> 2.10.0', require: false, feature_category: :tooling 610 609 end 611 610 612 611 gem 'octokit', '~> 9.0', feature_category: :importers ··· 646 645 gem 'gitaly', '~> 17.8.0', feature_category: :gitaly 647 646 648 647 # KAS GRPC protocol definitions 649 - gem 'gitlab-kas-grpc', '~> 17.9.0.pre.rc2', feature_category: :deployment_management 648 + gem 'gitlab-kas-grpc', '~> 17.11.0', feature_category: :deployment_management 650 649 651 650 # Lock the version before issues below are resolved: 652 651 # https://gitlab.com/gitlab-org/gitlab/-/issues/473169#note_2028352939 ··· 670 669 gem 'grape_logging', '~> 1.8', '>= 1.8.4', feature_category: :api 671 670 672 671 # DNS Lookup 673 - gem 'gitlab-net-dns', '~> 0.10.0', feature_category: :shared 672 + gem 'gitlab-net-dns', '~> 0.12.0', feature_category: :shared 674 673 675 674 # Countries list 676 675 gem 'countries', '~> 4.0.0', feature_category: :shared ··· 700 699 701 700 # JSON 702 701 gem 'jsonb_accessor', '~> 1.4', feature_category: :shared 703 - gem 'json', '~> 2.10.0', feature_category: :shared 702 + gem 'json', '~> 2.11.0', feature_category: :shared 704 703 gem 'json_schemer', '~> 2.3.0', feature_category: :shared 705 704 gem 'oj', '~> 3.16.0', '>=3.16.10', feature_category: :shared 706 705 gem 'oj-introspect', '~> 0.8', feature_category: :shared ··· 716 715 717 716 gem 'ipynbdiff', path: 'gems/ipynbdiff', require: 'ipynb_diff', feature_category: :shared 718 717 719 - gem 'ed25519', '~> 1.3.0', feature_category: :shared 718 + gem 'ed25519', '~> 1.4.0', feature_category: :shared 720 719 721 720 # Error Tracking OpenAPI client 722 721 # See https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/development/rake_tasks.md#update-openapi-client-for-error-tracking-feature ··· 729 728 gem 'arr-pm', '~> 0.0.12', feature_category: :package_registry 730 729 731 730 # Remote Development 732 - gem 'devfile', '~> 0.4.3', feature_category: :workspaces 731 + gem 'devfile', '~> 0.4.4', feature_category: :workspaces 733 732 734 733 # Apple plist parsing 735 734 gem 'CFPropertyList', '~> 3.0.0', feature_category: :mobile_devops ··· 756 755 757 756 gem 'gitlab-sdk', '~> 0.3.0', feature_category: :application_instrumentation 758 757 759 - gem 'paper_trail', '~> 15.0', feature_category: :shared 758 + gem 'paper_trail', '~> 16.0', feature_category: :shared 760 759 761 760 gem "i18n_data", "~> 0.13.1", feature_category: :system_access 762 761 763 - gem "gitlab-cloud-connector", "~> 1.5", require: 'gitlab/cloud_connector', feature_category: :cloud_connector 762 + gem "gitlab-cloud-connector", "~> 1.11", require: 'gitlab/cloud_connector', feature_category: :cloud_connector
+221 -152
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock
··· 42 42 activerecord (>= 7) 43 43 activesupport (>= 7) 44 44 addressable (~> 2.8) 45 + bigdecimal (~> 3.1) 45 46 concurrent-ruby (~> 1.1) 46 47 faraday (~> 2) 47 48 google-cloud-storage_transfer (~> 1.2.0) ··· 52 53 jwt (~> 2.5) 53 54 logger (~> 1.5) 54 55 minitest (~> 5.11.0) 56 + mutex_m (~> 0.3) 55 57 parallel (~> 1.19) 56 58 pg (~> 1.5.6) 57 59 rack (~> 2.2.9) ··· 225 227 base64 (~> 0.2.0) 226 228 faraday (>= 1.0, < 3.0.0) 227 229 faraday-retry (>= 1.0, < 3.0.0) 228 - actioncable (7.0.8.7) 229 - actionpack (= 7.0.8.7) 230 - activesupport (= 7.0.8.7) 230 + actioncable (7.1.5.1) 231 + actionpack (= 7.1.5.1) 232 + activesupport (= 7.1.5.1) 231 233 nio4r (~> 2.0) 232 234 websocket-driver (>= 0.6.1) 233 - actionmailbox (7.0.8.7) 234 - actionpack (= 7.0.8.7) 235 - activejob (= 7.0.8.7) 236 - activerecord (= 7.0.8.7) 237 - activestorage (= 7.0.8.7) 238 - activesupport (= 7.0.8.7) 235 + zeitwerk (~> 2.6) 236 + actionmailbox (7.1.5.1) 237 + actionpack (= 7.1.5.1) 238 + activejob (= 7.1.5.1) 239 + activerecord (= 7.1.5.1) 240 + activestorage (= 7.1.5.1) 241 + activesupport (= 7.1.5.1) 239 242 mail (>= 2.7.1) 240 243 net-imap 241 244 net-pop 242 245 net-smtp 243 - actionmailer (7.0.8.7) 244 - actionpack (= 7.0.8.7) 245 - actionview (= 7.0.8.7) 246 - activejob (= 7.0.8.7) 247 - activesupport (= 7.0.8.7) 246 + actionmailer (7.1.5.1) 247 + actionpack (= 7.1.5.1) 248 + actionview (= 7.1.5.1) 249 + activejob (= 7.1.5.1) 250 + activesupport (= 7.1.5.1) 248 251 mail (~> 2.5, >= 2.5.4) 249 252 net-imap 250 253 net-pop 251 254 net-smtp 252 - rails-dom-testing (~> 2.0) 253 - actionpack (7.0.8.7) 254 - actionview (= 7.0.8.7) 255 - activesupport (= 7.0.8.7) 256 - rack (~> 2.0, >= 2.2.4) 255 + rails-dom-testing (~> 2.2) 256 + actionpack (7.1.5.1) 257 + actionview (= 7.1.5.1) 258 + activesupport (= 7.1.5.1) 259 + nokogiri (>= 1.8.5) 260 + racc 261 + rack (>= 2.2.4) 262 + rack-session (>= 1.0.1) 257 263 rack-test (>= 0.6.3) 258 - rails-dom-testing (~> 2.0) 259 - rails-html-sanitizer (~> 1.0, >= 1.2.0) 260 - actiontext (7.0.8.7) 261 - actionpack (= 7.0.8.7) 262 - activerecord (= 7.0.8.7) 263 - activestorage (= 7.0.8.7) 264 - activesupport (= 7.0.8.7) 264 + rails-dom-testing (~> 2.2) 265 + rails-html-sanitizer (~> 1.6) 266 + actiontext (7.1.5.1) 267 + actionpack (= 7.1.5.1) 268 + activerecord (= 7.1.5.1) 269 + activestorage (= 7.1.5.1) 270 + activesupport (= 7.1.5.1) 265 271 globalid (>= 0.6.0) 266 272 nokogiri (>= 1.8.5) 267 - actionview (7.0.8.7) 268 - activesupport (= 7.0.8.7) 273 + actionview (7.1.5.1) 274 + activesupport (= 7.1.5.1) 269 275 builder (~> 3.1) 270 - erubi (~> 1.4) 271 - rails-dom-testing (~> 2.0) 272 - rails-html-sanitizer (~> 1.1, >= 1.2.0) 273 - activejob (7.0.8.7) 274 - activesupport (= 7.0.8.7) 276 + erubi (~> 1.11) 277 + rails-dom-testing (~> 2.2) 278 + rails-html-sanitizer (~> 1.6) 279 + activejob (7.1.5.1) 280 + activesupport (= 7.1.5.1) 275 281 globalid (>= 0.3.6) 276 - activemodel (7.0.8.7) 277 - activesupport (= 7.0.8.7) 278 - activerecord (7.0.8.7) 279 - activemodel (= 7.0.8.7) 280 - activesupport (= 7.0.8.7) 282 + activemodel (7.1.5.1) 283 + activesupport (= 7.1.5.1) 284 + activerecord (7.1.5.1) 285 + activemodel (= 7.1.5.1) 286 + activesupport (= 7.1.5.1) 287 + timeout (>= 0.4.0) 281 288 activerecord-explain-analyze (0.1.0) 282 289 activerecord (>= 4) 283 290 pg 284 - activestorage (7.0.8.7) 285 - actionpack (= 7.0.8.7) 286 - activejob (= 7.0.8.7) 287 - activerecord (= 7.0.8.7) 288 - activesupport (= 7.0.8.7) 291 + activestorage (7.1.5.1) 292 + actionpack (= 7.1.5.1) 293 + activejob (= 7.1.5.1) 294 + activerecord (= 7.1.5.1) 295 + activesupport (= 7.1.5.1) 289 296 marcel (~> 1.0) 290 - mini_mime (>= 1.1.0) 291 - activesupport (7.0.8.7) 297 + activesupport (7.1.5.1) 298 + base64 299 + benchmark (>= 0.3) 300 + bigdecimal 292 301 concurrent-ruby (~> 1.0, >= 1.0.2) 302 + connection_pool (>= 2.2.5) 303 + drb 293 304 i18n (>= 1.6, < 2) 305 + logger (>= 1.4.2) 294 306 minitest (>= 5.1) 307 + mutex_m 308 + securerandom (>= 0.3) 295 309 tzinfo (~> 2.0) 296 310 addressable (2.8.7) 297 311 public_suffix (>= 2.0.2, < 7.0) ··· 336 350 aws-sdk-cloudformation (1.41.0) 337 351 aws-sdk-core (~> 3, >= 3.99.0) 338 352 aws-sigv4 (~> 1.1) 339 - aws-sdk-core (3.215.0) 353 + aws-sdk-core (3.223.0) 340 354 aws-eventstream (~> 1, >= 1.3.0) 341 355 aws-partitions (~> 1, >= 1.992.0) 342 356 aws-sigv4 (~> 1.9) 357 + base64 343 358 jmespath (~> 1, >= 1.6.1) 359 + logger 344 360 aws-sdk-kms (1.76.0) 345 361 aws-sdk-core (~> 3, >= 3.188.0) 346 362 aws-sigv4 (~> 1.1) 347 - aws-sdk-s3 (1.177.0) 348 - aws-sdk-core (~> 3, >= 3.210.0) 363 + aws-sdk-s3 (1.185.0) 364 + aws-sdk-core (~> 3, >= 3.216.0) 349 365 aws-sdk-kms (~> 1) 350 366 aws-sigv4 (~> 1.5) 351 367 aws-sigv4 (1.9.1) 352 368 aws-eventstream (~> 1, >= 1.0.2) 353 - axe-core-api (4.10.2) 369 + axe-core-api (4.10.3) 354 370 dumb_delegator 355 371 ostruct 356 372 virtus 357 - axe-core-rspec (4.10.2) 358 - axe-core-api (= 4.10.2) 373 + axe-core-rspec (4.10.3) 374 + axe-core-api (= 4.10.3) 359 375 dumb_delegator 360 376 ostruct 361 377 virtus ··· 369 385 base64 (0.2.0) 370 386 batch-loader (2.0.5) 371 387 bcrypt (3.1.20) 372 - benchmark (0.2.0) 388 + benchmark (0.4.0) 373 389 benchmark-ips (2.14.0) 374 390 benchmark-malloc (0.2.0) 375 391 benchmark-memory (0.2.0) ··· 391 407 bullet (7.2.0) 392 408 activesupport (>= 3.0.0) 393 409 uniform_notifier (~> 1.11) 394 - byebug (11.1.3) 410 + byebug (12.0.0) 395 411 capybara (3.40.0) 396 412 addressable 397 413 matrix ··· 435 451 colored2 (3.1.2) 436 452 commonmarker (0.23.11) 437 453 concurrent-ruby (1.2.3) 438 - connection_pool (2.5.0) 454 + connection_pool (2.5.3) 439 455 console (1.29.2) 440 456 fiber-annotation 441 457 fiber-local (~> 1.1) ··· 448 464 countries (4.0.1) 449 465 i18n_data (~> 0.13.0) 450 466 sixarm_ruby_unaccent (~> 1.1) 451 - coverband (6.1.4) 467 + coverband (6.1.5) 468 + base64 452 469 redis (>= 3.0) 453 470 crack (0.4.3) 454 471 safe_yaml (~> 1.0.0) 455 472 crass (1.0.6) 456 473 creole (0.5.0) 457 - crystalball (0.7.0) 458 - git 459 474 css_parser (1.14.0) 460 475 addressable 461 476 cssbundling-rails (1.4.3) ··· 489 504 html-pipeline (~> 2.0) 490 505 declarative (0.0.20) 491 506 declarative_policy (1.1.0) 492 - deprecation_toolkit (1.5.1) 493 - activesupport (>= 4.2) 507 + deprecation_toolkit (2.2.3) 508 + activesupport (>= 6.1) 494 509 derailed_benchmarks (2.2.1) 495 510 base64 496 511 benchmark-ips (~> 2) ··· 511 526 thor (>= 0.19, < 2) 512 527 descendants_tracker (0.0.4) 513 528 thread_safe (~> 0.3, >= 0.3.1) 514 - devfile (0.4.3) 529 + devfile (0.4.4) 515 530 device_detector (1.0.0) 516 531 devise (4.9.4) 517 532 bcrypt (~> 3.0) ··· 534 549 docile (1.4.0) 535 550 domain_name (0.5.20190701) 536 551 unf (>= 0.0.5, < 1.0.0) 537 - doorkeeper (5.8.1) 552 + doorkeeper (5.8.2) 538 553 railties (>= 5) 539 554 doorkeeper-device_authorization_grant (1.0.3) 540 555 doorkeeper (~> 5.5) ··· 561 576 zeitwerk (~> 2.6) 562 577 dumb_delegator (1.0.0) 563 578 duo_api (1.4.0) 564 - e2mmap (0.1.0) 565 - ed25519 (1.3.0) 579 + ed25519 (1.4.0) 566 580 elasticsearch (7.17.11) 567 581 elasticsearch-api (= 7.17.11) 568 582 elasticsearch-transport (= 7.17.11) ··· 627 641 aws-sigv4 (~> 1.0) 628 642 faraday (>= 2.0, < 3) 629 643 fast_blank (1.0.1) 630 - fast_gettext (2.3.0) 644 + fast_gettext (4.1.0) 645 + prime 646 + racc 631 647 ffaker (2.24.0) 632 - ffi (1.17.1) 648 + ffi (1.17.2) 633 649 ffi-compiler (1.0.1) 634 650 ffi (>= 1.0.0) 635 651 rake ··· 683 699 multi_json (~> 1.10) 684 700 fog-local (0.8.0) 685 701 fog-core (>= 1.27, < 3.0) 686 - fog-xml (0.1.3) 702 + fog-xml (0.1.5) 687 703 fog-core 688 704 nokogiri (>= 1.5.11, < 2.0.0) 689 705 formatador (0.2.5) ··· 724 740 terminal-table (>= 1.5.1) 725 741 gitlab-chronic (0.10.6) 726 742 numerizer (~> 0.2) 727 - gitlab-cloud-connector (1.6.0) 743 + gitlab-cloud-connector (1.12.0) 728 744 activesupport (~> 7.0) 729 745 jwt (~> 2.9.3) 730 - gitlab-dangerfiles (4.8.1) 746 + gitlab-crystalball (0.7.2) 747 + git (< 4) 748 + gitlab-dangerfiles (4.9.1) 731 749 danger (>= 9.3.0) 732 750 danger-gitlab (>= 8.0.0) 733 751 rake (~> 13.0) ··· 743 761 mime-types 744 762 net-http-persistent (~> 4.0) 745 763 nokogiri (~> 1, >= 1.10.8) 746 - gitlab-glfm-markdown (0.0.29) 764 + gitlab-glfm-markdown (0.0.30) 747 765 rb_sys (~> 0.9.109) 748 - gitlab-kas-grpc (17.9.1) 766 + gitlab-kas-grpc (17.11.2) 749 767 grpc (~> 1.0) 750 768 gitlab-labkit (0.37.0) 751 769 actionpack (>= 5.0.0, < 8.1.0) ··· 763 781 redis (>= 5, < 6) 764 782 redis-namespace (>= 1.8.2) 765 783 gitlab-markup (2.0.0) 766 - gitlab-net-dns (0.10.0) 784 + gitlab-net-dns (0.12.0) 785 + logger 767 786 gitlab-sdk (0.3.1) 768 787 activesupport (>= 5.2.0) 769 788 rake (~> 13.0) 770 789 snowplow-tracker (~> 0.8.0) 771 - gitlab-secret_detection (0.23.0) 790 + gitlab-secret_detection (0.26.1) 772 791 grpc (~> 1.63.0) 773 - grpc-tools (~> 1.63) 774 792 grpc_reflection (~> 0.1) 775 793 parallel (~> 1) 776 794 re2 (~> 2.7) ··· 796 814 omniauth (>= 1.3, < 3) 797 815 pyu-ruby-sasl (>= 0.0.3.3, < 0.1) 798 816 rubyntlm (~> 0.5) 799 - gitlab_quality-test_tooling (2.8.0) 800 - activesupport (>= 7.0, < 7.2) 817 + gitlab_quality-test_tooling (2.10.0) 818 + activesupport (>= 7.0, < 7.3) 801 819 amatch (~> 0.4.1) 802 820 fog-google (~> 1.24, >= 1.24.1) 803 821 gitlab (>= 4.19, < 6.0) ··· 891 909 google-cloud-storage_transfer-v1 (0.8.0) 892 910 gapic-common (>= 0.20.0, < 2.a) 893 911 google-cloud-errors (~> 1.0) 894 - google-protobuf (3.25.6) 912 + google-protobuf (3.25.7) 895 913 googleapis-common-protos (1.4.0) 896 914 google-protobuf (~> 3.14) 897 915 googleapis-common-protos-types (~> 1.2) 898 916 grpc (~> 1.27) 899 - googleapis-common-protos-types (1.18.0) 917 + googleapis-common-protos-types (1.19.0) 900 918 google-protobuf (>= 3.18, < 5.a) 901 919 googleauth (1.8.1) 902 920 faraday (>= 0.17.3, < 3.a) ··· 950 968 google-protobuf (~> 3.18) 951 969 googleapis-common-protos (~> 1.4) 952 970 grpc (~> 1.41) 953 - grpc-tools (1.69.0) 954 971 grpc_reflection (0.1.1) 955 972 grpc 956 973 gssapi (1.3.1) ··· 972 989 haml (5.2.2) 973 990 temple (>= 0.8.0) 974 991 tilt 975 - haml_lint (0.61.0) 992 + haml_lint (0.62.0) 976 993 haml (>= 5.0) 977 994 parallel (~> 1.10) 978 995 rainbow ··· 1024 1041 csv 1025 1042 invisible_captcha (2.1.0) 1026 1043 rails (>= 5.2) 1044 + io-console (0.8.0) 1027 1045 io-event (1.9.0) 1028 1046 ipaddress (0.8.3) 1047 + irb (1.15.1) 1048 + pp (>= 0.6.0) 1049 + rdoc (>= 4.0.0) 1050 + reline (>= 0.4.2) 1029 1051 jaeger-client (1.1.0) 1030 1052 opentracing (~> 0.3) 1031 1053 thrift 1032 - jaro_winkler (1.5.6) 1054 + jaro_winkler (1.6.0) 1033 1055 jira-ruby (2.3.0) 1034 1056 activesupport 1035 1057 atlassian-jwt ··· 1040 1062 character_set (~> 1.4) 1041 1063 regexp_parser (~> 2.5) 1042 1064 regexp_property_values (~> 1.0) 1043 - json (2.10.2) 1065 + json (2.11.3) 1044 1066 json-jwt (1.16.6) 1045 1067 activesupport (>= 4.2) 1046 1068 aes_key_wrap ··· 1087 1109 language_server-protocol (3.17.0.3) 1088 1110 launchy (2.5.2) 1089 1111 addressable (~> 2.8) 1090 - lefthook (1.11.2) 1112 + lefthook (1.11.5) 1091 1113 letter_opener (1.10.0) 1092 1114 launchy (>= 2.2, < 4) 1093 1115 letter_opener_web (3.0.0) ··· 1104 1126 tomlrb (>= 1.3, < 2.1) 1105 1127 with_env (= 1.1.0) 1106 1128 xml-simple (~> 1.1.9) 1107 - licensee (9.17.1) 1129 + licensee (9.18.0) 1108 1130 dotenv (>= 2, < 4) 1109 1131 octokit (>= 4.20, < 10.0) 1110 - reverse_markdown (>= 1, < 3) 1132 + reverse_markdown (>= 1, < 4) 1111 1133 rugged (>= 0.24, < 2.0) 1112 1134 thor (>= 0.19, < 2.0) 1113 1135 listen (3.7.1) ··· 1165 1187 mixlib-cli (2.1.8) 1166 1188 mixlib-config (3.0.27) 1167 1189 tomlrb 1168 - mixlib-log (3.0.9) 1190 + mixlib-log (3.2.3) 1191 + ffi (>= 1.15.5) 1169 1192 mixlib-shellout (3.2.7) 1170 1193 chef-utils 1171 1194 mize (0.6.1) ··· 1203 1226 nio4r (2.7.0) 1204 1227 nkf (0.2.0) 1205 1228 no_proxy_fix (0.1.2) 1206 - nokogiri (1.18.7) 1229 + nokogiri (1.18.8) 1207 1230 mini_portile2 (~> 2.8.2) 1208 1231 racc (~> 1.4) 1209 1232 notiffany (0.1.3) ··· 1218 1241 rack (>= 1.2, < 4) 1219 1242 snaky_hash (~> 2.0) 1220 1243 version_gem (~> 1.1) 1244 + observer (0.1.2) 1221 1245 octokit (9.2.0) 1222 1246 faraday (>= 1, < 3) 1223 1247 sawyer (~> 0.9) ··· 1424 1448 diff-lcs (~> 1.5) 1425 1449 expgen (~> 0.1) 1426 1450 rainbow (~> 3.1.1) 1427 - paper_trail (15.1.0) 1451 + paper_trail (16.0.0) 1428 1452 activerecord (>= 6.1) 1429 1453 request_store (~> 1.4) 1430 1454 parallel (1.26.3) 1431 - parser (3.3.7.1) 1455 + parser (3.3.8.0) 1432 1456 ast (~> 2.4.1) 1433 1457 racc 1434 1458 parslet (1.8.2) 1435 1459 pastel (0.8.0) 1436 1460 tty-color (~> 0.5) 1461 + pdf-core (0.10.0) 1437 1462 peek (1.1.0) 1438 1463 railties (>= 4.0.0) 1439 1464 pg (1.5.9) ··· 1441 1466 google-protobuf (>= 3.25.3) 1442 1467 plist (3.7.0) 1443 1468 png_quantizator (0.2.1) 1469 + pp (0.6.2) 1470 + prettyprint 1471 + prawn (2.5.0) 1472 + matrix (~> 0.4) 1473 + pdf-core (~> 0.10.0) 1474 + ttfunk (~> 1.8) 1475 + prawn-svg (0.37.0) 1476 + css_parser (~> 1.6) 1477 + matrix (~> 0.4.2) 1478 + prawn (>= 0.11.1, < 3) 1479 + rexml (>= 3.3.9, < 4) 1444 1480 premailer (1.23.0) 1445 1481 addressable 1446 1482 css_parser (>= 1.12.0) ··· 1449 1485 actionmailer (>= 3) 1450 1486 net-smtp 1451 1487 premailer (~> 1.7, >= 1.7.9) 1488 + prettyprint (0.2.0) 1452 1489 prime (0.1.3) 1453 1490 forwardable 1454 1491 singleton ··· 1465 1502 pry (0.14.2) 1466 1503 coderay (~> 1.1) 1467 1504 method_source (~> 1.0) 1468 - pry-byebug (3.10.1) 1469 - byebug (~> 11.0) 1470 - pry (>= 0.13, < 0.15) 1505 + pry-byebug (3.11.0) 1506 + byebug (~> 12.0) 1507 + pry (>= 0.13, < 0.16) 1471 1508 pry-rails (0.3.11) 1472 1509 pry (>= 0.13.0) 1473 1510 pry-shell (0.6.4) 1474 1511 pry (>= 0.13.0) 1475 1512 tty-markdown 1476 1513 tty-prompt 1514 + psych (5.2.3) 1515 + date 1516 + stringio 1477 1517 public_suffix (6.0.1) 1478 1518 puma (6.5.0) 1479 1519 nio4r (~> 2.0) ··· 1503 1543 rack-test (2.1.0) 1504 1544 rack (>= 1.3) 1505 1545 rack-timeout (0.7.0) 1506 - rails (7.0.8.7) 1507 - actioncable (= 7.0.8.7) 1508 - actionmailbox (= 7.0.8.7) 1509 - actionmailer (= 7.0.8.7) 1510 - actionpack (= 7.0.8.7) 1511 - actiontext (= 7.0.8.7) 1512 - actionview (= 7.0.8.7) 1513 - activejob (= 7.0.8.7) 1514 - activemodel (= 7.0.8.7) 1515 - activerecord (= 7.0.8.7) 1516 - activestorage (= 7.0.8.7) 1517 - activesupport (= 7.0.8.7) 1546 + rackup (1.0.1) 1547 + rack (< 3) 1548 + webrick 1549 + rails (7.1.5.1) 1550 + actioncable (= 7.1.5.1) 1551 + actionmailbox (= 7.1.5.1) 1552 + actionmailer (= 7.1.5.1) 1553 + actionpack (= 7.1.5.1) 1554 + actiontext (= 7.1.5.1) 1555 + actionview (= 7.1.5.1) 1556 + activejob (= 7.1.5.1) 1557 + activemodel (= 7.1.5.1) 1558 + activerecord (= 7.1.5.1) 1559 + activestorage (= 7.1.5.1) 1560 + activesupport (= 7.1.5.1) 1518 1561 bundler (>= 1.15.0) 1519 - railties (= 7.0.8.7) 1562 + railties (= 7.1.5.1) 1520 1563 rails-controller-testing (1.0.5) 1521 1564 actionpack (>= 5.0.1.rc1) 1522 1565 actionview (>= 5.0.1.rc1) 1523 1566 activesupport (>= 5.0.1.rc1) 1524 - rails-dom-testing (2.0.3) 1525 - activesupport (>= 4.2.0) 1567 + rails-dom-testing (2.2.0) 1568 + activesupport (>= 5.0.0) 1569 + minitest 1526 1570 nokogiri (>= 1.6) 1527 1571 rails-html-sanitizer (1.6.1) 1528 1572 loofah (~> 2.21) ··· 1530 1574 rails-i18n (7.0.10) 1531 1575 i18n (>= 0.7, < 2) 1532 1576 railties (>= 6.0.0, < 8) 1533 - railties (7.0.8.7) 1534 - actionpack (= 7.0.8.7) 1535 - activesupport (= 7.0.8.7) 1536 - method_source 1577 + railties (7.1.5.1) 1578 + actionpack (= 7.1.5.1) 1579 + activesupport (= 7.1.5.1) 1580 + irb 1581 + rackup (>= 1.0.0) 1537 1582 rake (>= 12.2) 1538 - thor (~> 1.0) 1539 - zeitwerk (~> 2.5) 1583 + thor (~> 1.0, >= 1.2.2) 1584 + zeitwerk (~> 2.6) 1540 1585 rainbow (3.1.1) 1541 1586 rake (13.0.6) 1542 1587 rake-compiler-dock (1.9.1) ··· 1552 1597 msgpack (>= 0.4.3) 1553 1598 optimist (>= 3.0.0) 1554 1599 rchardet (1.8.0) 1600 + rdoc (6.13.0) 1601 + psych (>= 4.0.0) 1555 1602 re2 (2.15.0) 1556 1603 mini_portile2 (~> 2.8.7) 1557 1604 recaptcha (5.12.3) ··· 1580 1627 redis (>= 4, < 6) 1581 1628 regexp_parser (2.10.0) 1582 1629 regexp_property_values (1.0.0) 1630 + reline (0.6.0) 1631 + io-console (~> 0.5) 1583 1632 representable (3.2.0) 1584 1633 declarative (< 0.1.0) 1585 1634 trailblazer-option (>= 0.1.1, < 0.2.0) ··· 1595 1644 mime-types (>= 1.16, < 4.0) 1596 1645 netrc (~> 0.8) 1597 1646 retriable (3.1.2) 1598 - reverse_markdown (1.4.0) 1647 + reverse_markdown (3.0.0) 1599 1648 nokogiri 1600 1649 rexml (3.4.1) 1601 1650 rinku (2.0.0) ··· 1684 1733 ruby-fogbugz (0.3.0) 1685 1734 crack (~> 0.4) 1686 1735 multipart-post (~> 2.0) 1687 - ruby-lsp (0.23.13) 1736 + ruby-lsp (0.23.15) 1688 1737 language_server-protocol (~> 3.17.0) 1689 1738 prism (>= 1.2, < 2.0) 1690 1739 rbs (>= 3, < 4) ··· 1718 1767 addressable (>= 2.3.5) 1719 1768 faraday (>= 0.17.3, < 3) 1720 1769 sd_notify (0.1.1) 1770 + securerandom (0.4.1) 1721 1771 seed-fu (2.3.9) 1722 1772 activerecord (>= 3.1) 1723 1773 activesupport (>= 3.1) ··· 1727 1777 rexml (~> 3.2, >= 3.2.5) 1728 1778 rubyzip (>= 1.2.2, < 3.0) 1729 1779 websocket (~> 1.0) 1730 - semver_dialects (3.6.0) 1780 + semver_dialects (3.7.0) 1731 1781 deb_version (~> 1.0.1) 1732 1782 pastel (~> 0.8.0) 1733 1783 thor (~> 1.3) 1734 1784 tty-command (~> 0.10.1) 1735 - sentry-rails (5.22.1) 1785 + sentry-rails (5.23.0) 1736 1786 railties (>= 5.0) 1737 - sentry-ruby (~> 5.22.1) 1738 - sentry-ruby (5.22.1) 1787 + sentry-ruby (~> 5.23.0) 1788 + sentry-ruby (5.23.0) 1739 1789 bigdecimal 1740 1790 concurrent-ruby (~> 1.0, >= 1.0.2) 1741 - sentry-sidekiq (5.22.1) 1742 - sentry-ruby (~> 5.22.1) 1791 + sentry-sidekiq (5.23.0) 1792 + sentry-ruby (~> 5.23.0) 1743 1793 sidekiq (>= 3.0) 1744 1794 shellany (0.0.1) 1745 1795 shoulda-matchers (6.4.0) ··· 1780 1830 hashie 1781 1831 version_gem (~> 1.1) 1782 1832 snowplow-tracker (0.8.0) 1783 - solargraph (0.47.2) 1833 + solargraph (0.54.2) 1784 1834 backport (~> 1.2) 1785 - benchmark 1786 - bundler (>= 1.17.2) 1835 + benchmark (~> 0.4) 1836 + bundler (~> 2.0) 1787 1837 diff-lcs (~> 1.4) 1788 - e2mmap 1789 - jaro_winkler (~> 1.5) 1838 + jaro_winkler (~> 1.6) 1790 1839 kramdown (~> 2.3) 1791 1840 kramdown-parser-gfm (~> 1.1) 1841 + logger (~> 1.6) 1842 + observer (~> 0.1) 1843 + ostruct (~> 0.6) 1792 1844 parser (~> 3.0) 1793 - reverse_markdown (>= 1.0.5, < 3) 1794 - rubocop (>= 0.52) 1845 + rbs (~> 3.3) 1846 + reverse_markdown (~> 3.0) 1847 + rubocop (~> 1.38) 1795 1848 thor (~> 1.0) 1796 1849 tilt (~> 2.0) 1797 1850 yard (~> 0.9, >= 0.9.24) 1851 + yard-solargraph (~> 0.1) 1852 + solargraph-rspec (0.5.1) 1853 + solargraph (~> 0.52, >= 0.52.0) 1798 1854 sorbet-runtime (0.5.11647) 1799 1855 spamcheck (1.3.3) 1800 1856 grpc (~> 1.63) ··· 1819 1875 state_machines-activerecord (0.8.0) 1820 1876 activerecord (>= 5.1) 1821 1877 state_machines-activemodel (>= 0.8.0) 1878 + state_machines-rspec (0.6.0) 1879 + activesupport 1880 + rspec (~> 3.3) 1881 + state_machines 1882 + stringio (3.1.7) 1822 1883 strings (0.2.1) 1823 1884 strings-ansi (~> 0.2) 1824 1885 unicode-display_width (>= 1.5, < 3.0) ··· 1878 1939 truncato (0.7.13) 1879 1940 htmlentities (~> 4.3.1) 1880 1941 nokogiri (>= 1.7.0, <= 2.0) 1942 + ttfunk (1.8.0) 1943 + bigdecimal (~> 3.1) 1881 1944 tty-color (0.6.0) 1882 1945 tty-command (0.10.1) 1883 1946 pastel (~> 0.8) ··· 1943 2006 vite_rails (3.0.19) 1944 2007 railties (>= 5.1, < 9) 1945 2008 vite_ruby (~> 3.0, >= 3.2.2) 1946 - vite_ruby (3.9.1) 2009 + vite_ruby (3.9.2) 1947 2010 dry-cli (>= 0.7, < 2) 1948 2011 logger (~> 1.6) 1949 2012 mutex_m ··· 1970 2033 addressable (>= 2.8.0) 1971 2034 crack (>= 0.3.2) 1972 2035 hashdiff (>= 0.4.0, < 2.0.0) 1973 - webrick (1.8.2) 2036 + webrick (1.9.1) 1974 2037 websocket (1.2.10) 1975 2038 websocket-driver (0.7.6) 1976 2039 websocket-extensions (>= 0.1.0) ··· 1988 2051 nokogiri (~> 1.8) 1989 2052 yajl-ruby (1.4.3) 1990 2053 yard (0.9.37) 2054 + yard-solargraph (0.1.0) 2055 + yard (~> 0.9) 1991 2056 zeitwerk (2.6.7) 1992 2057 1993 2058 PLATFORMS ··· 2013 2078 attr_encrypted (~> 3.2.4)! 2014 2079 awesome_print 2015 2080 aws-sdk-cloudformation (~> 1) 2016 - aws-sdk-core (~> 3.215.0) 2017 - aws-sdk-s3 (~> 1.177.0) 2081 + aws-sdk-core (~> 3.223.0) 2082 + aws-sdk-s3 (~> 1.185.0) 2018 2083 axe-core-rspec (~> 4.10.0) 2019 2084 babosa (~> 2.0) 2020 2085 base32 (~> 0.3.0) ··· 2038 2103 concurrent-ruby (~> 1.1) 2039 2104 connection_pool (~> 2.4) 2040 2105 countries (~> 4.0.0) 2041 - coverband (= 6.1.4) 2106 + coverband (= 6.1.5) 2042 2107 creole (~> 0.5.0) 2043 - crystalball (~> 0.7.0) 2044 2108 cssbundling-rails (= 1.4.3) 2045 2109 csv_builder! 2046 2110 cvss-suite (~> 3.3.0) 2047 2111 database_cleaner-active_record (~> 2.2.0) 2048 2112 deckar01-task_list (= 2.3.4) 2049 2113 declarative_policy (~> 1.1.0) 2050 - deprecation_toolkit (~> 1.5.1) 2114 + deprecation_toolkit (~> 2.2.3) 2051 2115 derailed_benchmarks 2052 - devfile (~> 0.4.3) 2116 + devfile (~> 0.4.4) 2053 2117 device_detector 2054 2118 devise (~> 4.9.3) 2055 2119 devise-pbkdf2-encryptable (~> 0.0.0)! ··· 2062 2126 doorkeeper-openid_connect (~> 1.8.10) 2063 2127 drb (~> 2.2) 2064 2128 duo_api (~> 1.3) 2065 - ed25519 (~> 1.3.0) 2129 + ed25519 (~> 1.4.0) 2066 2130 elasticsearch-api (= 7.17.11) 2067 2131 elasticsearch-model (~> 7.2) 2068 2132 elasticsearch-rails (~> 7.2) ··· 2095 2159 gitlab-active-context! 2096 2160 gitlab-backup-cli! 2097 2161 gitlab-chronic (~> 0.10.5) 2098 - gitlab-cloud-connector (~> 1.5) 2099 - gitlab-dangerfiles (~> 4.8.0) 2162 + gitlab-cloud-connector (~> 1.11) 2163 + gitlab-crystalball (~> 0.7.2) 2164 + gitlab-dangerfiles (~> 4.9.0) 2100 2165 gitlab-duo-workflow-service-client (~> 0.1)! 2101 2166 gitlab-experiment (~> 0.9.1) 2102 2167 gitlab-fog-azure-rm (~> 2.2.0) 2103 - gitlab-glfm-markdown (~> 0.0.29) 2168 + gitlab-glfm-markdown (~> 0.0.30) 2104 2169 gitlab-housekeeper! 2105 2170 gitlab-http! 2106 - gitlab-kas-grpc (~> 17.9.0.pre.rc2) 2171 + gitlab-kas-grpc (~> 17.11.0) 2107 2172 gitlab-labkit (~> 0.37.0) 2108 2173 gitlab-license (~> 2.6) 2109 2174 gitlab-mail_room (~> 0.0.24) 2110 2175 gitlab-markup (~> 2.0.0) 2111 - gitlab-net-dns (~> 0.10.0) 2176 + gitlab-net-dns (~> 0.12.0) 2112 2177 gitlab-rspec! 2113 2178 gitlab-rspec_flaky! 2114 2179 gitlab-safe_request_store! ··· 2122 2187 gitlab-utils! 2123 2188 gitlab_chronic_duration (~> 0.12) 2124 2189 gitlab_omniauth-ldap (~> 2.2.0) 2125 - gitlab_quality-test_tooling (~> 2.8.0) 2190 + gitlab_quality-test_tooling (~> 2.10.0) 2126 2191 gon (~> 6.4.0) 2127 2192 google-apis-androidpublisher_v3 (~> 0.34.0) 2128 2193 google-apis-cloudbilling_v1 (~> 0.22.0) ··· 2168 2233 ipynbdiff! 2169 2234 jira-ruby (~> 2.3.0) 2170 2235 js_regex (~> 3.8) 2171 - json (~> 2.10.0) 2236 + json (~> 2.11.0) 2172 2237 json_schemer (~> 2.3.0) 2173 2238 jsonb_accessor (~> 1.4) 2174 2239 jwt (~> 2.9.3) ··· 2249 2314 org-ruby (~> 0.9.12) 2250 2315 os (~> 1.1, >= 1.1.4) 2251 2316 pact (~> 1.64) 2252 - paper_trail (~> 15.0) 2317 + paper_trail (~> 16.0) 2253 2318 parallel (~> 1.19) 2254 - parser (= 3.3.7.1) 2319 + parser (= 3.3.8.0) 2255 2320 parslet (~> 1.8) 2256 2321 peek (~> 1.1) 2257 2322 pg (~> 1.5.6) 2258 2323 pg_query (~> 6.1.0) 2259 2324 png_quantizator (~> 0.2.1) 2325 + prawn 2326 + prawn-svg 2260 2327 premailer-rails (~> 1.12.0) 2261 2328 prometheus-client-mmap (~> 1.2.9) 2262 2329 pry-byebug ··· 2269 2336 rack-oauth2 (~> 2.2.1) 2270 2337 rack-proxy (~> 0.7.7) 2271 2338 rack-timeout (~> 0.7.0) 2272 - rails (~> 7.0.8.7) 2339 + rails (~> 7.1.5.1) 2273 2340 rails-controller-testing 2274 2341 rails-i18n (~> 7.0, >= 7.0.9) 2275 2342 rainbow (~> 3.0) ··· 2305 2372 sd_notify (~> 0.1.0) 2306 2373 seed-fu (~> 2.3.7) 2307 2374 selenium-webdriver (~> 4.21, >= 4.21.1) 2308 - semver_dialects (~> 3.6) 2309 - sentry-rails (~> 5.22.0) 2310 - sentry-ruby (~> 5.22.0) 2311 - sentry-sidekiq (~> 5.22.0) 2375 + semver_dialects (~> 3.7) 2376 + sentry-rails (~> 5.23.0) 2377 + sentry-ruby (~> 5.23.0) 2378 + sentry-sidekiq (~> 5.23.0) 2312 2379 shoulda-matchers (~> 6.4.0) 2313 2380 sidekiq (~> 7.3.9) 2314 2381 sidekiq-cron (~> 1.12.0) ··· 2319 2386 simplecov-lcov (~> 0.8.0) 2320 2387 slack-messenger (~> 2.3.5) 2321 2388 snowplow-tracker (~> 0.8.0) 2322 - solargraph (~> 0.47.2) 2389 + solargraph (~> 0.54.0) 2390 + solargraph-rspec (~> 0.5.1) 2323 2391 spamcheck (~> 1.3.0) 2324 2392 spring (~> 4.3.0) 2325 2393 spring-commands-rspec (~> 1.0.4) ··· 2329 2397 ssh_data (~> 1.3) 2330 2398 stackprof (~> 0.2.26) 2331 2399 state_machines-activerecord (~> 0.8.0) 2400 + state_machines-rspec (~> 0.6) 2332 2401 sys-filesystem (~> 1.4.3) 2333 2402 tanuki_emoji (~> 0.13) 2334 2403 telesignenterprise (~> 2.2) ··· 2355 2424 warning (~> 1.5.0) 2356 2425 webauthn (~> 3.0) 2357 2426 webmock (~> 3.25.0) 2358 - webrick (~> 1.8.1) 2427 + webrick (~> 1.9.0) 2359 2428 wikicloth (= 0.8.1) 2360 2429 yajl-ruby (~> 1.4.3) 2361 2430 yard (~> 0.9)
+443 -167
pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix
··· 20 20 "activesupport" 21 21 "nio4r" 22 22 "websocket-driver" 23 + "zeitwerk" 23 24 ]; 24 25 groups = [ 25 26 "default" ··· 29 30 platforms = [ ]; 30 31 source = { 31 32 remotes = [ "https://rubygems.org" ]; 32 - sha256 = "0qpiw9n8sswisvji91ra290wiihgl30kg3zkpffx0byz84w52d20"; 33 + sha256 = "03dai8z2dxb2cf29hp6md7bhysyipxvw2qnm2bj98yyrnaskfikn"; 33 34 type = "gem"; 34 35 }; 35 - version = "7.0.8.7"; 36 + version = "7.1.5.1"; 36 37 }; 37 38 actionmailbox = { 38 39 dependencies = [ ··· 54 55 platforms = [ ]; 55 56 source = { 56 57 remotes = [ "https://rubygems.org" ]; 57 - sha256 = "1hn1d8fshkfijsmwflnvn2ys9i8k3rbkk7h6qsgwspg8v2iyl3ll"; 58 + sha256 = "02inlpsmjz8rz159ljhzac1dvzq5k1pnmmx2pf4gmrj3zs4hbhn3"; 58 59 type = "gem"; 59 60 }; 60 - version = "7.0.8.7"; 61 + version = "7.1.5.1"; 61 62 }; 62 63 actionmailer = { 63 64 dependencies = [ ··· 79 80 platforms = [ ]; 80 81 source = { 81 82 remotes = [ "https://rubygems.org" ]; 82 - sha256 = "054dv081ysp86im4hxcwwlmkl2zidnmy34mw4acghjkpz2igks4b"; 83 + sha256 = "0ncplhcrxldj6jvbaw9g8ik4cznjlf3lyfzgrwy0jfxjh3cdc4xj"; 83 84 type = "gem"; 84 85 }; 85 - version = "7.0.8.7"; 86 + version = "7.1.5.1"; 86 87 }; 87 88 actionpack = { 88 89 dependencies = [ 89 90 "actionview" 90 91 "activesupport" 92 + "nokogiri" 93 + "racc" 91 94 "rack" 95 + "rack-session" 92 96 "rack-test" 93 97 "rails-dom-testing" 94 98 "rails-html-sanitizer" ··· 101 105 platforms = [ ]; 102 106 source = { 103 107 remotes = [ "https://rubygems.org" ]; 104 - sha256 = "0b2y7wy6gx59zb88v1fqiyxdkafrsfma67sx5394yjlhhzbb3rj0"; 108 + sha256 = "066p70mngqk8m7qp3wq2frbl1w8imdcrdxb06cxwq5izykcn7hib"; 105 109 type = "gem"; 106 110 }; 107 - version = "7.0.8.7"; 111 + version = "7.1.5.1"; 108 112 }; 109 113 actiontext = { 110 114 dependencies = [ ··· 123 127 platforms = [ ]; 124 128 source = { 125 129 remotes = [ "https://rubygems.org" ]; 126 - sha256 = "1818spc73y96n94jssh77z2w4dnz84sn83ywrk5cicnmjzdx4xfb"; 130 + sha256 = "1v7psa946frm79x04vywnd0h069jgxy5xghm7y5sgijvmp7n3qmq"; 127 131 type = "gem"; 128 132 }; 129 - version = "7.0.8.7"; 133 + version = "7.1.5.1"; 130 134 }; 131 135 actionview = { 132 136 dependencies = [ ··· 145 149 platforms = [ ]; 146 150 source = { 147 151 remotes = [ "https://rubygems.org" ]; 148 - sha256 = "1vbziywvidi7gy69hqxsrcxh6n8i4x2w75qam1fzw0qrqv4mp5xy"; 152 + sha256 = "1apnqjfwbvyhf7svlamal1pvy2x78fk42lqbnllqwy816lhrlmcc"; 149 153 type = "gem"; 150 154 }; 151 - version = "7.0.8.7"; 155 + version = "7.1.5.1"; 152 156 }; 153 157 activejob = { 154 158 dependencies = [ ··· 163 167 platforms = [ ]; 164 168 source = { 165 169 remotes = [ "https://rubygems.org" ]; 166 - sha256 = "081a32z17976kgf7a51blh7fsxsm3p8qj02p8wx8cd7fx8xdpx7g"; 170 + sha256 = "0rspwfvhxs5by6im90rrjp2sy1wzdpcgb9xm0qfljk3zhmn3fcvn"; 167 171 type = "gem"; 168 172 }; 169 - version = "7.0.8.7"; 173 + version = "7.1.5.1"; 170 174 }; 171 175 activemodel = { 172 176 dependencies = [ "activesupport" ]; ··· 179 183 platforms = [ ]; 180 184 source = { 181 185 remotes = [ "https://rubygems.org" ]; 182 - sha256 = "10qaykhcs15wgyy9fd886mwdkf3iwsib0h6fcnwqa7jw0nxh8fzi"; 186 + sha256 = "1wci45aas8g909zby9j91m87ff5j28qwl0i7izzbszsahmk78wkl"; 183 187 type = "gem"; 184 188 }; 185 - version = "7.0.8.7"; 189 + version = "7.1.5.1"; 186 190 }; 187 191 activerecord = { 188 192 dependencies = [ 189 193 "activemodel" 190 194 "activesupport" 195 + "timeout" 191 196 ]; 192 197 groups = [ 193 198 "default" ··· 198 203 platforms = [ ]; 199 204 source = { 200 205 remotes = [ "https://rubygems.org" ]; 201 - sha256 = "0nm4y9fy19l65c18v3k8s3x2npp7kcn8ds2y5i38x8aq1r8whkzr"; 206 + sha256 = "1qzij5xmsqqxsc9v9kil68aif5bvly06vqf4pnjrnfzkkdhd22pl"; 202 207 type = "gem"; 203 208 }; 204 - version = "7.0.8.7"; 209 + version = "7.1.5.1"; 205 210 }; 206 211 activerecord-explain-analyze = { 207 212 dependencies = [ ··· 234 239 "activerecord" 235 240 "activesupport" 236 241 "marcel" 237 - "mini_mime" 238 242 ]; 239 243 groups = [ 240 244 "default" ··· 244 248 platforms = [ ]; 245 249 source = { 246 250 remotes = [ "https://rubygems.org" ]; 247 - sha256 = "1xcy76cwskwfm39lr4cg7bmknc8j0vymp55h8hzrhl1sfdriwhfa"; 251 + sha256 = "0qzz8dxwj70zys1lmqk1x0sl4rb7ddw6v2bgmpm6dijqd03qnsxf"; 248 252 type = "gem"; 249 253 }; 250 - version = "7.0.8.7"; 254 + version = "7.1.5.1"; 251 255 }; 252 256 activesupport = { 253 257 dependencies = [ 258 + "base64" 259 + "benchmark" 260 + "bigdecimal" 254 261 "concurrent-ruby" 262 + "connection_pool" 263 + "drb" 255 264 "i18n" 265 + "logger" 256 266 "minitest" 267 + "mutex_m" 268 + "securerandom" 257 269 "tzinfo" 258 270 ]; 259 271 groups = [ ··· 265 277 platforms = [ ]; 266 278 source = { 267 279 remotes = [ "https://rubygems.org" ]; 268 - sha256 = "1zq4f834my1z6yh05rfr1dzl3i8padh33j092zlal979blvh4iyz"; 280 + sha256 = "1f6gqyl49hdabid5jkrfq0127gd396srsgpy7p5ni61v8wp4h34z"; 269 281 type = "gem"; 270 282 }; 271 - version = "7.0.8.7"; 283 + version = "7.1.5.1"; 272 284 }; 273 285 addressable = { 274 286 dependencies = [ "public_suffix" ]; ··· 554 566 "aws-eventstream" 555 567 "aws-partitions" 556 568 "aws-sigv4" 569 + "base64" 557 570 "jmespath" 571 + "logger" 558 572 ]; 559 573 groups = [ "default" ]; 560 574 platforms = [ ]; 561 575 source = { 562 576 remotes = [ "https://rubygems.org" ]; 563 - sha256 = "0jafdv62q1cd8yvn6cl876bnz5vp6b4x2gnggsl0j4lyfkxnhh91"; 577 + sha256 = "0xwcimg5i93ansmmww7ap8k6xxyijkxa8p896bxj9kc7cw8hkhyq"; 564 578 type = "gem"; 565 579 }; 566 - version = "3.215.0"; 580 + version = "3.223.0"; 567 581 }; 568 582 aws-sdk-kms = { 569 583 dependencies = [ ··· 589 603 platforms = [ ]; 590 604 source = { 591 605 remotes = [ "https://rubygems.org" ]; 592 - sha256 = "10ziy8zslfjs0ihls7wiq6zvsncq89azh36rshmlylry1hhxjbxz"; 606 + sha256 = "1ix5g1qnp7m0f8jk0bx0b5csx8p7zrxhnvkqc7jsyp9a3c4vnpky"; 593 607 type = "gem"; 594 608 }; 595 - version = "1.177.0"; 609 + version = "1.185.0"; 596 610 }; 597 611 aws-sigv4 = { 598 612 dependencies = [ "aws-eventstream" ]; ··· 618 632 platforms = [ ]; 619 633 source = { 620 634 remotes = [ "https://rubygems.org" ]; 621 - sha256 = "12djmxdbmbwk3r3ni8r73945plsr6wmw7yzw72gk42iq86ha0kn8"; 635 + sha256 = "0j017xf6dzi5w5hfikjh138n91b5vkaxjm41dvqh86033knz643f"; 622 636 type = "gem"; 623 637 }; 624 - version = "4.10.2"; 638 + version = "4.10.3"; 625 639 }; 626 640 axe-core-rspec = { 627 641 dependencies = [ ··· 634 648 platforms = [ ]; 635 649 source = { 636 650 remotes = [ "https://rubygems.org" ]; 637 - sha256 = "0xgp28gk45v25l6l1d4clm1gq7brcwh9nma51wbsl3p40xcbw0p3"; 651 + sha256 = "0zjj06kwk57d3g18sfkam8r6fcrp2c3wj8m93l7ws3rd3q8x08fa"; 638 652 type = "gem"; 639 653 }; 640 - version = "4.10.2"; 654 + version = "4.10.3"; 641 655 }; 642 656 axiom-types = { 643 657 dependencies = [ ··· 727 741 groups = [ 728 742 "default" 729 743 "development" 744 + "monorepo" 745 + "test" 730 746 ]; 731 747 platforms = [ ]; 732 748 source = { 733 749 remotes = [ "https://rubygems.org" ]; 734 - sha256 = "0xwcnbwnbqq8jp92mvawn6y69cb53wsz84wwmk9vsfk1jjvqfw2z"; 750 + sha256 = "0jl71qcgamm96dzyqk695j24qszhcc7liw74qc83fpjljp2gh4hg"; 735 751 type = "gem"; 736 752 }; 737 - version = "0.2.0"; 753 + version = "0.4.0"; 738 754 }; 739 755 benchmark-ips = { 740 756 groups = [ ··· 919 935 "development" 920 936 "test" 921 937 ]; 922 - platforms = [ 923 - { 924 - engine = "maglev"; 925 - } 926 - { 927 - engine = "ruby"; 928 - } 929 - ]; 938 + platforms = [ ]; 930 939 source = { 931 940 remotes = [ "https://rubygems.org" ]; 932 - sha256 = "0nx3yjf4xzdgb8jkmk2344081gqr22pgjqnmjg2q64mj5d6r9194"; 941 + sha256 = "07hsr9zzl2mvf5gk65va4smdizlk9rsiz8wwxik0p96cj79518fl"; 933 942 type = "gem"; 934 943 }; 935 - version = "11.1.3"; 944 + version = "12.0.0"; 936 945 }; 937 946 capybara = { 938 947 dependencies = [ ··· 1228 1237 version = "1.2.3"; 1229 1238 }; 1230 1239 connection_pool = { 1231 - groups = [ "default" ]; 1240 + groups = [ 1241 + "default" 1242 + "development" 1243 + "monorepo" 1244 + "test" 1245 + ]; 1232 1246 platforms = [ ]; 1233 1247 source = { 1234 1248 remotes = [ "https://rubygems.org" ]; 1235 - sha256 = "1z7bag6zb2vwi7wp2bkdkmk7swkj6zfnbsnc949qq0wfsgw94fr3"; 1249 + sha256 = "0nrhsk7b3sjqbyl1cah6ibf1kvi3v93a7wf4637d355hp614mmyg"; 1236 1250 type = "gem"; 1237 1251 }; 1238 - version = "2.5.0"; 1252 + version = "2.5.3"; 1239 1253 }; 1240 1254 console = { 1241 1255 dependencies = [ ··· 1295 1309 version = "4.0.1"; 1296 1310 }; 1297 1311 coverband = { 1298 - dependencies = [ "redis" ]; 1312 + dependencies = [ 1313 + "base64" 1314 + "redis" 1315 + ]; 1299 1316 groups = [ "default" ]; 1300 1317 platforms = [ ]; 1301 1318 source = { 1302 1319 remotes = [ "https://rubygems.org" ]; 1303 - sha256 = "1j0p1qsnnx0xhx43y7xskxwpcsv3yw5wj79qf7naf3nhdn73kkv5"; 1320 + sha256 = "09c21zxv7lsq5ih5rp214y38hcjm3pg5n3as1mqc2w0gn3lkn5s5"; 1304 1321 type = "gem"; 1305 1322 }; 1306 - version = "6.1.4"; 1323 + version = "6.1.5"; 1307 1324 }; 1308 1325 crack = { 1309 1326 dependencies = [ "safe_yaml" ]; ··· 1343 1360 }; 1344 1361 version = "0.5.0"; 1345 1362 }; 1346 - crystalball = { 1347 - dependencies = [ "git" ]; 1348 - groups = [ 1349 - "development" 1350 - "test" 1351 - ]; 1352 - platforms = [ ]; 1353 - source = { 1354 - remotes = [ "https://rubygems.org" ]; 1355 - sha256 = "1why2py76hv2m7i3a1im3zi5zcjcvz2l1nvshzndlwah58vrywkf"; 1356 - type = "gem"; 1357 - }; 1358 - version = "0.7.0"; 1359 - }; 1360 1363 css_parser = { 1361 1364 dependencies = [ "addressable" ]; 1362 1365 groups = [ ··· 1570 1573 platforms = [ ]; 1571 1574 source = { 1572 1575 remotes = [ "https://rubygems.org" ]; 1573 - sha256 = "1fh4d98irhph3ri7c2rrvvmmjd4z14702r8baq9flh5f34dap8d8"; 1576 + sha256 = "0k8j50avgs2pgv20wvrzr77g9yvhi5sa9yh93n72nyd4hhbd28cb"; 1574 1577 type = "gem"; 1575 1578 }; 1576 - version = "1.5.1"; 1579 + version = "2.2.3"; 1577 1580 }; 1578 1581 derailed_benchmarks = { 1579 1582 dependencies = [ ··· 1623 1626 platforms = [ ]; 1624 1627 source = { 1625 1628 remotes = [ "https://rubygems.org" ]; 1626 - sha256 = "1zblvpxzb8qp17dn7sjnfqs6iw3yyzv2cwvnhzrzgxj8k0d0ddjs"; 1629 + sha256 = "1dcj3r8gh4y4cks1qk5qhj89ggk6z8kmk3hq9nlvnm9pnb7m9fbs"; 1627 1630 type = "gem"; 1628 1631 }; 1629 - version = "0.4.3"; 1632 + version = "0.4.4"; 1630 1633 }; 1631 1634 device_detector = { 1632 1635 groups = [ "default" ]; ··· 1772 1775 platforms = [ ]; 1773 1776 source = { 1774 1777 remotes = [ "https://rubygems.org" ]; 1775 - sha256 = "0v6jjb1259y8dq97ibchc20jqjgk3z7zn12ggv5wzn2mcz1z6m3d"; 1778 + sha256 = "1lsh9lzrglqlwm9icmn0ggrwjc9iy9308f9m59z1w2srmyp0fgd7"; 1776 1779 type = "gem"; 1777 1780 }; 1778 - version = "5.8.1"; 1781 + version = "5.8.2"; 1779 1782 }; 1780 1783 doorkeeper-device_authorization_grant = { 1781 1784 dependencies = [ "doorkeeper" ]; ··· 1931 1934 }; 1932 1935 version = "1.4.0"; 1933 1936 }; 1934 - e2mmap = { 1935 - groups = [ 1936 - "default" 1937 - "development" 1938 - ]; 1939 - platforms = [ ]; 1940 - source = { 1941 - remotes = [ "https://rubygems.org" ]; 1942 - sha256 = "0n8gxjb63dck3vrmsdcqqll7xs7f3wk78mw8w0gdk9wp5nx6pvj5"; 1943 - type = "gem"; 1944 - }; 1945 - version = "0.1.0"; 1946 - }; 1947 1937 ed25519 = { 1948 1938 groups = [ "default" ]; 1949 1939 platforms = [ ]; 1950 1940 source = { 1951 1941 remotes = [ "https://rubygems.org" ]; 1952 - sha256 = "0zb2dr2ihb1qiknn5iaj1ha1w9p7lj9yq5waasndlfadz225ajji"; 1942 + sha256 = "01n5rbyws1ijwc5dw7s88xx3zzacxx9k97qn8x11b6k8k18pzs8n"; 1953 1943 type = "gem"; 1954 1944 }; 1955 - version = "1.3.0"; 1945 + version = "1.4.0"; 1956 1946 }; 1957 1947 elasticsearch = { 1958 1948 dependencies = [ ··· 2355 2345 version = "1.0.1"; 2356 2346 }; 2357 2347 fast_gettext = { 2348 + dependencies = [ 2349 + "prime" 2350 + "racc" 2351 + ]; 2358 2352 groups = [ "default" ]; 2359 2353 platforms = [ ]; 2360 2354 source = { 2361 2355 remotes = [ "https://rubygems.org" ]; 2362 - sha256 = "112gsrqah2w03kgi9mjsn6hl74mrwckphf223h36iayc4djf4lq2"; 2356 + sha256 = "0qr73k69pk5sjgkysrfar0sghrx0shz7kkfjcab200fnfqk62swf"; 2363 2357 type = "gem"; 2364 2358 }; 2365 - version = "2.3.0"; 2359 + version = "4.1.0"; 2366 2360 }; 2367 2361 ffaker = { 2368 2362 groups = [ "default" ]; ··· 2384 2378 platforms = [ ]; 2385 2379 source = { 2386 2380 remotes = [ "https://rubygems.org" ]; 2387 - sha256 = "0fgwn1grxf4zxmyqmb9i4z2hr111585n9jnk17y6y7hhs7dv1xi6"; 2381 + sha256 = "19kdyjg3kv7x0ad4xsd4swy5izsbb1vl1rpb6qqcqisr5s23awi9"; 2388 2382 type = "gem"; 2389 2383 }; 2390 - version = "1.17.1"; 2384 + version = "1.17.2"; 2391 2385 }; 2392 2386 ffi-compiler = { 2393 2387 dependencies = [ ··· 2602 2596 "fog-core" 2603 2597 "nokogiri" 2604 2598 ]; 2605 - groups = [ "default" ]; 2599 + groups = [ 2600 + "default" 2601 + "test" 2602 + ]; 2606 2603 platforms = [ ]; 2607 2604 source = { 2608 2605 remotes = [ "https://rubygems.org" ]; 2609 - sha256 = "043lwdw2wsi6d55ifk0w3izi5l1d1h0alwyr3fixic7b94kc812n"; 2606 + sha256 = "1miv6zgglx4vddw2c17mpf6l36qn0abq7ngrxb9isih10yhzxfaj"; 2610 2607 type = "gem"; 2611 2608 }; 2612 - version = "0.1.3"; 2609 + version = "0.1.5"; 2613 2610 }; 2614 2611 formatador = { 2615 2612 groups = [ "default" ]; ··· 2823 2820 "activerecord" 2824 2821 "activesupport" 2825 2822 "addressable" 2823 + "bigdecimal" 2826 2824 "concurrent-ruby" 2827 2825 "faraday" 2828 2826 "google-cloud-storage_transfer" ··· 2833 2831 "jwt" 2834 2832 "logger" 2835 2833 "minitest" 2834 + "mutex_m" 2836 2835 "parallel" 2837 2836 "pg" 2838 2837 "rack" ··· 2868 2867 platforms = [ ]; 2869 2868 source = { 2870 2869 remotes = [ "https://rubygems.org" ]; 2871 - sha256 = "0karz59rpw7vz4ckxc37gjs7lgb6zsa1pvsr57wzqfbpppgx5swa"; 2870 + sha256 = "1bshayyh9pb2rgb9qc82dc9fr1xkf4kxj10rd0lkjqxnbh7ppsxi"; 2872 2871 type = "gem"; 2873 2872 }; 2874 - version = "1.6.0"; 2873 + version = "1.12.0"; 2874 + }; 2875 + gitlab-crystalball = { 2876 + dependencies = [ "git" ]; 2877 + groups = [ 2878 + "development" 2879 + "test" 2880 + ]; 2881 + platforms = [ ]; 2882 + source = { 2883 + remotes = [ "https://rubygems.org" ]; 2884 + sha256 = "16mlrsd4lyvp9faqrnd7nmrl485wzrj2vp6y72x7f8wmsmqpivf4"; 2885 + type = "gem"; 2886 + }; 2887 + version = "0.7.2"; 2875 2888 }; 2876 2889 gitlab-dangerfiles = { 2877 2890 dependencies = [ ··· 2887 2900 platforms = [ ]; 2888 2901 source = { 2889 2902 remotes = [ "https://rubygems.org" ]; 2890 - sha256 = "007kxhbfi5kv7m4w9pvbrkfqwb8yp8shp8i77mj2l59qjqf35bdv"; 2903 + sha256 = "1cpiznkzlvsbanfcvnqdf0lxrzjd3i592d0j766xmr55mkc1jsr9"; 2891 2904 type = "gem"; 2892 2905 }; 2893 - version = "4.8.1"; 2906 + version = "4.9.1"; 2894 2907 }; 2895 2908 gitlab-duo-workflow-service-client = { 2896 2909 dependencies = [ "grpc" ]; ··· 2942 2955 platforms = [ ]; 2943 2956 source = { 2944 2957 remotes = [ "https://rubygems.org" ]; 2945 - sha256 = "09mjdrgjyad1l2lcaiy62486hnajpv9mgyxcv6vrhga0dncqm6m1"; 2958 + sha256 = "0rh0bij1nk0c6agqg39p5qwhc93fdgriwqwnshgrkn66kwzs7ppk"; 2946 2959 type = "gem"; 2947 2960 }; 2948 - version = "0.0.29"; 2961 + version = "0.0.30"; 2949 2962 }; 2950 2963 gitlab-housekeeper = { 2951 2964 dependencies = [ ··· 2988 3001 platforms = [ ]; 2989 3002 source = { 2990 3003 remotes = [ "https://rubygems.org" ]; 2991 - sha256 = "0n59m8jy9nl2adr27dgqbbrg8w9bwgjvg1jzinmwwhf7d4b0qj7x"; 3004 + sha256 = "075fasc3mv2l87l34cw5pw1vyf2ad254gsa9jpl4cqv3rx6hbfgj"; 2992 3005 type = "gem"; 2993 3006 }; 2994 - version = "17.9.1"; 3007 + version = "17.11.2"; 2995 3008 }; 2996 3009 gitlab-labkit = { 2997 3010 dependencies = [ ··· 3050 3063 version = "2.0.0"; 3051 3064 }; 3052 3065 gitlab-net-dns = { 3066 + dependencies = [ "logger" ]; 3053 3067 groups = [ "default" ]; 3054 3068 platforms = [ ]; 3055 3069 source = { 3056 3070 remotes = [ "https://rubygems.org" ]; 3057 - sha256 = "0vkw1537wh37n57cygh7p2vb9fz4phbz2cg6njvq0545ihyn3d3k"; 3071 + sha256 = "19xmqvmv34gydymqv5m6aiync1xmycisqg4k0rrsglfllnqgnjmn"; 3058 3072 type = "gem"; 3059 3073 }; 3060 - version = "0.10.0"; 3074 + version = "0.12.0"; 3061 3075 }; 3062 3076 gitlab-rspec = { 3063 3077 dependencies = [ ··· 3138 3152 gitlab-secret_detection = { 3139 3153 dependencies = [ 3140 3154 "grpc" 3141 - "grpc-tools" 3142 3155 "grpc_reflection" 3143 3156 "parallel" 3144 3157 "re2" ··· 3150 3163 platforms = [ ]; 3151 3164 source = { 3152 3165 remotes = [ "https://rubygems.org" ]; 3153 - sha256 = "1rv3r1wj5pnwjbkw3333y7kxj1hzzq0vnf6xdjj95n8m5b9krpck"; 3166 + sha256 = "1gip6bgsh6b284sjlz24ljydshsa9p5ikizwrmb82gnsc46dcsmk"; 3154 3167 type = "gem"; 3155 3168 }; 3156 - version = "0.23.0"; 3169 + version = "0.26.1"; 3157 3170 }; 3158 3171 gitlab-security_report_schemas = { 3159 3172 dependencies = [ ··· 3279 3292 platforms = [ ]; 3280 3293 source = { 3281 3294 remotes = [ "https://rubygems.org" ]; 3282 - sha256 = "1c9wdinaf1z4qdynighcxxpkfarkizzh9slg2y77240mdsrgkyr9"; 3295 + sha256 = "05shhi6g3y8fp6h1accxzfi58py8d4rvv3bd17f1p6453pviirb8"; 3283 3296 type = "gem"; 3284 3297 }; 3285 - version = "2.8.0"; 3298 + version = "2.10.0"; 3286 3299 }; 3287 3300 globalid = { 3288 3301 dependencies = [ "activesupport" ]; ··· 3654 3667 platforms = [ ]; 3655 3668 source = { 3656 3669 remotes = [ "https://rubygems.org" ]; 3657 - sha256 = "0g0h7rwiivx93jddfws5pdkcpnhma3694k2jfv2i1k80qkrqnrmv"; 3670 + sha256 = "1afriizkvwwcyh0s0j1x9d9045pn4f767gpj5q49hicsqz8flq58"; 3658 3671 type = "gem"; 3659 3672 }; 3660 - version = "3.25.6"; 3673 + version = "3.25.7"; 3661 3674 }; 3662 3675 googleapis-common-protos = { 3663 3676 dependencies = [ ··· 3683 3696 platforms = [ ]; 3684 3697 source = { 3685 3698 remotes = [ "https://rubygems.org" ]; 3686 - sha256 = "17smfrcmklx2f3ld6ai8l3vz9i8m96cj72zdyygnpy1iykf1j398"; 3699 + sha256 = "152nfvcnj1i1gsphhs7mhxzd0wa9pjdjb0xhgb2bry16ag57djxf"; 3687 3700 type = "gem"; 3688 3701 }; 3689 - version = "1.18.0"; 3702 + version = "1.19.0"; 3690 3703 }; 3691 3704 googleauth = { 3692 3705 dependencies = [ ··· 3900 3913 }; 3901 3914 version = "1.5.0"; 3902 3915 }; 3903 - grpc-tools = { 3904 - groups = [ "default" ]; 3905 - platforms = [ ]; 3906 - source = { 3907 - remotes = [ "https://rubygems.org" ]; 3908 - sha256 = "19r3ky3l593prhmk8ixdc4w1rbiyqzfw4dd0gk9ds1f38vhgrhyx"; 3909 - type = "gem"; 3910 - }; 3911 - version = "1.69.0"; 3912 - }; 3913 3916 grpc_reflection = { 3914 3917 dependencies = [ "grpc" ]; 3915 3918 groups = [ "default" ]; ··· 4016 4019 platforms = [ ]; 4017 4020 source = { 4018 4021 remotes = [ "https://rubygems.org" ]; 4019 - sha256 = "08yn3z438hgh186iyvkqrhcy0fzzaky8j4h1hlbzzlfam49ckmx8"; 4022 + sha256 = "0qggmfrqx1f90xkkxn9afqk33bzx1vmj0gfdi6yvjj18d3p2w9p5"; 4020 4023 type = "gem"; 4021 4024 }; 4022 - version = "0.61.0"; 4025 + version = "0.62.0"; 4023 4026 }; 4024 4027 hamlit = { 4025 4028 dependencies = [ ··· 4330 4333 }; 4331 4334 version = "2.1.0"; 4332 4335 }; 4336 + io-console = { 4337 + groups = [ 4338 + "default" 4339 + "development" 4340 + "test" 4341 + ]; 4342 + platforms = [ ]; 4343 + source = { 4344 + remotes = [ "https://rubygems.org" ]; 4345 + sha256 = "18pgvl7lfjpichdfh1g50rpz0zpaqrpr52ybn9liv1v9pjn9ysnd"; 4346 + type = "gem"; 4347 + }; 4348 + version = "0.8.0"; 4349 + }; 4333 4350 io-event = { 4334 4351 groups = [ "default" ]; 4335 4352 platforms = [ ]; ··· 4363 4380 }; 4364 4381 version = "0.4.8"; 4365 4382 }; 4383 + irb = { 4384 + dependencies = [ 4385 + "pp" 4386 + "rdoc" 4387 + "reline" 4388 + ]; 4389 + groups = [ 4390 + "default" 4391 + "development" 4392 + "test" 4393 + ]; 4394 + platforms = [ ]; 4395 + source = { 4396 + remotes = [ "https://rubygems.org" ]; 4397 + sha256 = "1478m97wiy6nwg6lnl0szy39p46acsvrhax552vsh1s2mi2sgg6r"; 4398 + type = "gem"; 4399 + }; 4400 + version = "1.15.1"; 4401 + }; 4366 4402 jaeger-client = { 4367 4403 dependencies = [ 4368 4404 "opentracing" ··· 4385 4421 platforms = [ ]; 4386 4422 source = { 4387 4423 remotes = [ "https://rubygems.org" ]; 4388 - sha256 = "10fd3i92897blalxfkgc0jjv0qqx31v7cm7j2b6a3b97an0bfz80"; 4424 + sha256 = "09645h5an19zc1i7wlmixszj8xxqb2zc8qlf8dmx39bxpas1l24b"; 4389 4425 type = "gem"; 4390 4426 }; 4391 - version = "1.5.6"; 4427 + version = "1.6.0"; 4392 4428 }; 4393 4429 jira-ruby = { 4394 4430 dependencies = [ ··· 4441 4477 platforms = [ ]; 4442 4478 source = { 4443 4479 remotes = [ "https://rubygems.org" ]; 4444 - sha256 = "01lbdaizhkxmrw4y8j3wpvsryvnvzmg0pfs56c52laq2jgdfmq1l"; 4480 + sha256 = "1hfcz73wszgqprg2pr83qjbyfb0k93frbdvyhgmw0ryyl9cgc44s"; 4445 4481 type = "gem"; 4446 4482 }; 4447 - version = "2.10.2"; 4483 + version = "2.11.3"; 4448 4484 }; 4449 4485 json-jwt = { 4450 4486 dependencies = [ ··· 4668 4704 platforms = [ ]; 4669 4705 source = { 4670 4706 remotes = [ "https://rubygems.org" ]; 4671 - sha256 = "1hnx5s38myd0dgs7frm75ikvyl0g14pg1z7zjryp55j9p9dkrkab"; 4707 + sha256 = "09m8m65iyk8d1y0g52srl7994c80f8ai33z8flbzhsjqr2wy17rh"; 4672 4708 type = "gem"; 4673 4709 }; 4674 - version = "1.11.2"; 4710 + version = "1.11.5"; 4675 4711 }; 4676 4712 letter_opener = { 4677 4713 dependencies = [ "launchy" ]; ··· 4747 4783 platforms = [ ]; 4748 4784 source = { 4749 4785 remotes = [ "https://rubygems.org" ]; 4750 - sha256 = "16h8yhk4z2wk2lc0l0m7z2pbbk6mfljhy6hp11dx6lw8dp325q0b"; 4786 + sha256 = "0xyzk7gzi91l6xlwfvf2z0963jwd2csf987yk0ffbr5p9ycdp0ry"; 4751 4787 type = "gem"; 4752 4788 }; 4753 - version = "9.17.1"; 4789 + version = "9.18.0"; 4754 4790 }; 4755 4791 listen = { 4756 4792 dependencies = [ ··· 5144 5180 version = "3.0.27"; 5145 5181 }; 5146 5182 mixlib-log = { 5183 + dependencies = [ "ffi" ]; 5147 5184 groups = [ "default" ]; 5148 5185 platforms = [ ]; 5149 5186 source = { 5150 5187 remotes = [ "https://rubygems.org" ]; 5151 - sha256 = "0n5dm5iz90ijvjn59jfm8gb8hgsvbj0f1kpzbl38b02z0z4a4v7x"; 5188 + sha256 = "0s57cq8qx3823pcfzizshp8vagvp3f87r0lksknj18r26nl3y79a"; 5152 5189 type = "gem"; 5153 5190 }; 5154 - version = "3.0.9"; 5191 + version = "3.2.3"; 5155 5192 }; 5156 5193 mixlib-shellout = { 5157 5194 dependencies = [ "chef-utils" ]; ··· 5489 5526 platforms = [ ]; 5490 5527 source = { 5491 5528 remotes = [ "https://rubygems.org" ]; 5492 - sha256 = "0cgv8vzp7kl20ip8qdzmrbr1vaaw4mjjy4mksg8k13z4xxfzyqvb"; 5529 + sha256 = "0rb306hbky6cxfyc8vrwpvl40fdapjvhsk62h08gg9wwbn3n8x4c"; 5493 5530 type = "gem"; 5494 5531 }; 5495 - version = "1.18.7"; 5532 + version = "1.18.8"; 5496 5533 }; 5497 5534 notiffany = { 5498 5535 dependencies = [ ··· 5549 5586 }; 5550 5587 version = "2.0.9"; 5551 5588 }; 5589 + observer = { 5590 + groups = [ 5591 + "default" 5592 + "development" 5593 + ]; 5594 + platforms = [ ]; 5595 + source = { 5596 + remotes = [ "https://rubygems.org" ]; 5597 + sha256 = "1b2h1642jy1xrgyakyzz6bkq43gwp8yvxrs8sww12rms65qi18yq"; 5598 + type = "gem"; 5599 + }; 5600 + version = "0.1.2"; 5601 + }; 5552 5602 octokit = { 5553 5603 dependencies = [ 5554 5604 "faraday" ··· 6471 6521 platforms = [ ]; 6472 6522 source = { 6473 6523 remotes = [ "https://rubygems.org" ]; 6474 - sha256 = "1yd9kdyyg1wisxi9mx01ar9s6h50x9k2av95xam58v6jx6bwvg0d"; 6524 + sha256 = "1781qpj1mip1llq3jfbf0q7gk4mshar33afg6610qncb3gxz1fg9"; 6475 6525 type = "gem"; 6476 6526 }; 6477 - version = "15.1.0"; 6527 + version = "16.0.0"; 6478 6528 }; 6479 6529 parallel = { 6480 6530 groups = [ ··· 6503 6553 platforms = [ ]; 6504 6554 source = { 6505 6555 remotes = [ "https://rubygems.org" ]; 6506 - sha256 = "18dcwrcnddvi8gl3hmbsb2cj1l7afxk2lh3jmhj90l95h1hn3gkx"; 6556 + sha256 = "0i9w8msil4snx5w11ix9b0wf52vjc3r49khy3ddgl1xk890kcxi4"; 6507 6557 type = "gem"; 6508 6558 }; 6509 - version = "3.3.7.1"; 6559 + version = "3.3.8.0"; 6510 6560 }; 6511 6561 parslet = { 6512 6562 groups = [ ··· 6536 6586 type = "gem"; 6537 6587 }; 6538 6588 version = "0.8.0"; 6589 + }; 6590 + pdf-core = { 6591 + groups = [ "default" ]; 6592 + platforms = [ ]; 6593 + source = { 6594 + remotes = [ "https://rubygems.org" ]; 6595 + sha256 = "14ffyc016pznyir87dcm2gyavwcppdyf87hyjhzixh3340g10p8a"; 6596 + type = "gem"; 6597 + }; 6598 + version = "0.10.0"; 6539 6599 }; 6540 6600 peek = { 6541 6601 dependencies = [ "railties" ]; ··· 6592 6652 }; 6593 6653 version = "0.2.1"; 6594 6654 }; 6655 + pp = { 6656 + dependencies = [ "prettyprint" ]; 6657 + groups = [ 6658 + "default" 6659 + "development" 6660 + "test" 6661 + ]; 6662 + platforms = [ ]; 6663 + source = { 6664 + remotes = [ "https://rubygems.org" ]; 6665 + sha256 = "1zxnfxjni0r9l2x42fyq0sqpnaf5nakjbap8irgik4kg1h9c6zll"; 6666 + type = "gem"; 6667 + }; 6668 + version = "0.6.2"; 6669 + }; 6670 + prawn = { 6671 + dependencies = [ 6672 + "matrix" 6673 + "pdf-core" 6674 + "ttfunk" 6675 + ]; 6676 + groups = [ "default" ]; 6677 + platforms = [ ]; 6678 + source = { 6679 + remotes = [ "https://rubygems.org" ]; 6680 + sha256 = "1diwqjchmymhj4ihp4xaad2mjc8q8bmibbbxwfd5pgrh9wxhxqpl"; 6681 + type = "gem"; 6682 + }; 6683 + version = "2.5.0"; 6684 + }; 6685 + prawn-svg = { 6686 + dependencies = [ 6687 + "css_parser" 6688 + "matrix" 6689 + "prawn" 6690 + "rexml" 6691 + ]; 6692 + groups = [ "default" ]; 6693 + platforms = [ ]; 6694 + source = { 6695 + remotes = [ "https://rubygems.org" ]; 6696 + sha256 = "0c18drdsms06h5c5hmhdi7sbck72f2sp3sbgwyr7frq65h1xs6r7"; 6697 + type = "gem"; 6698 + }; 6699 + version = "0.37.0"; 6700 + }; 6595 6701 premailer = { 6596 6702 dependencies = [ 6597 6703 "addressable" ··· 6622 6728 }; 6623 6729 version = "1.12.0"; 6624 6730 }; 6731 + prettyprint = { 6732 + groups = [ 6733 + "default" 6734 + "development" 6735 + "test" 6736 + ]; 6737 + platforms = [ ]; 6738 + source = { 6739 + remotes = [ "https://rubygems.org" ]; 6740 + sha256 = "14zicq3plqi217w6xahv7b8f7aj5kpxv1j1w98344ix9h5ay3j9b"; 6741 + type = "gem"; 6742 + }; 6743 + version = "0.2.0"; 6744 + }; 6625 6745 prime = { 6626 6746 dependencies = [ 6627 6747 "forwardable" ··· 6718 6838 platforms = [ ]; 6719 6839 source = { 6720 6840 remotes = [ "https://rubygems.org" ]; 6721 - sha256 = "1y41al94ks07166qbp2200yzyr5y60hm7xaiw4lxpgsm4b1pbyf8"; 6841 + sha256 = "0wpa3jd46h44rjz3hjwl5c0zfx3jav4a64nm8h0g1iwv61yvn2hb"; 6722 6842 type = "gem"; 6723 6843 }; 6724 - version = "3.10.1"; 6844 + version = "3.11.0"; 6725 6845 }; 6726 6846 pry-rails = { 6727 6847 dependencies = [ "pry" ]; ··· 6754 6874 type = "gem"; 6755 6875 }; 6756 6876 version = "0.6.4"; 6877 + }; 6878 + psych = { 6879 + dependencies = [ 6880 + "date" 6881 + "stringio" 6882 + ]; 6883 + groups = [ 6884 + "default" 6885 + "development" 6886 + "test" 6887 + ]; 6888 + platforms = [ ]; 6889 + source = { 6890 + remotes = [ "https://rubygems.org" ]; 6891 + sha256 = "1vjrx3yd596zzi42dcaq5xw7hil1921r769dlbz08iniaawlp9c4"; 6892 + type = "gem"; 6893 + }; 6894 + version = "5.2.3"; 6757 6895 }; 6758 6896 public_suffix = { 6759 6897 groups = [ ··· 6941 7079 }; 6942 7080 version = "0.7.0"; 6943 7081 }; 7082 + rackup = { 7083 + dependencies = [ 7084 + "rack" 7085 + "webrick" 7086 + ]; 7087 + groups = [ 7088 + "default" 7089 + "development" 7090 + "test" 7091 + ]; 7092 + platforms = [ ]; 7093 + source = { 7094 + remotes = [ "https://rubygems.org" ]; 7095 + sha256 = "0jf2ncj2nx56vh96hh2nh6h4r530nccxh87z7c2f37wq515611ms"; 7096 + type = "gem"; 7097 + }; 7098 + version = "1.0.1"; 7099 + }; 6944 7100 rails = { 6945 7101 dependencies = [ 6946 7102 "actioncable" ··· 6964 7120 platforms = [ ]; 6965 7121 source = { 6966 7122 remotes = [ "https://rubygems.org" ]; 6967 - sha256 = "1vfd2l3m1802vq7gdqpvd3mkcfhxacpsxixqpx4n6x0mv56ysrsy"; 7123 + sha256 = "0148c00v3hks98rymdiilhjm0i8qw5fla4gww0fb94k3ggns5bh5"; 6968 7124 type = "gem"; 6969 7125 }; 6970 - version = "7.0.8.7"; 7126 + version = "7.1.5.1"; 6971 7127 }; 6972 7128 rails-controller-testing = { 6973 7129 dependencies = [ ··· 6987 7143 rails-dom-testing = { 6988 7144 dependencies = [ 6989 7145 "activesupport" 7146 + "minitest" 6990 7147 "nokogiri" 6991 7148 ]; 6992 7149 groups = [ 6993 7150 "default" 6994 7151 "development" 7152 + "monorepo" 6995 7153 "test" 6996 7154 ]; 6997 7155 platforms = [ ]; 6998 7156 source = { 6999 7157 remotes = [ "https://rubygems.org" ]; 7000 - sha256 = "1lfq2a7kp2x64dzzi5p4cjcbiv62vxh9lyqk2f0rqq3fkzrw8h5i"; 7158 + sha256 = "0fx9dx1ag0s1lr6lfr34lbx5i1bvn3bhyf3w3mx6h7yz90p725g5"; 7001 7159 type = "gem"; 7002 7160 }; 7003 - version = "2.0.3"; 7161 + version = "2.2.0"; 7004 7162 }; 7005 7163 rails-html-sanitizer = { 7006 7164 dependencies = [ ··· 7039 7197 dependencies = [ 7040 7198 "actionpack" 7041 7199 "activesupport" 7042 - "method_source" 7200 + "irb" 7201 + "rackup" 7043 7202 "rake" 7044 7203 "thor" 7045 7204 "zeitwerk" ··· 7052 7211 platforms = [ ]; 7053 7212 source = { 7054 7213 remotes = [ "https://rubygems.org" ]; 7055 - sha256 = "0pshckc6b9h2ikl3svk47iv0nq6v908h3q9ndlblpg021cl8bf8s"; 7214 + sha256 = "1yz28fq55drl4c2dwgap96xcjf6qns2ghc3c3gffzm6yw9i5bq8b"; 7056 7215 type = "gem"; 7057 7216 }; 7058 - version = "7.0.8.7"; 7217 + version = "7.1.5.1"; 7059 7218 }; 7060 7219 rainbow = { 7061 7220 groups = [ ··· 7178 7337 }; 7179 7338 version = "1.8.0"; 7180 7339 }; 7340 + rdoc = { 7341 + dependencies = [ "psych" ]; 7342 + groups = [ 7343 + "default" 7344 + "development" 7345 + "test" 7346 + ]; 7347 + platforms = [ ]; 7348 + source = { 7349 + remotes = [ "https://rubygems.org" ]; 7350 + sha256 = "0a83bsmd444pbhga3icwh8c7gm917m1fabq38dy1pn9ywjd17hij"; 7351 + type = "gem"; 7352 + }; 7353 + version = "6.13.0"; 7354 + }; 7181 7355 re2 = { 7182 7356 dependencies = [ "mini_portile2" ]; 7183 7357 groups = [ "default" ]; ··· 7355 7529 }; 7356 7530 version = "1.0.0"; 7357 7531 }; 7532 + reline = { 7533 + dependencies = [ "io-console" ]; 7534 + groups = [ 7535 + "default" 7536 + "development" 7537 + "test" 7538 + ]; 7539 + platforms = [ ]; 7540 + source = { 7541 + remotes = [ "https://rubygems.org" ]; 7542 + sha256 = "1lirwlw59apc8m1wjk85y2xidiv0fkxjn6f7p84yqmmyvish6qjp"; 7543 + type = "gem"; 7544 + }; 7545 + version = "0.6.0"; 7546 + }; 7358 7547 representable = { 7359 7548 dependencies = [ 7360 7549 "declarative" ··· 7423 7612 }; 7424 7613 reverse_markdown = { 7425 7614 dependencies = [ "nokogiri" ]; 7426 - groups = [ "default" ]; 7615 + groups = [ 7616 + "default" 7617 + "development" 7618 + ]; 7427 7619 platforms = [ ]; 7428 7620 source = { 7429 7621 remotes = [ "https://rubygems.org" ]; 7430 - sha256 = "0w786j869fjhjf72waj0hc9i4ghi45b78a2am27kij4sa2hmsc53"; 7622 + sha256 = "195c7yra7amggqj7rir0yr09r4v29c2hgkbkb21mj0jsfs3868mb"; 7431 7623 type = "gem"; 7432 7624 }; 7433 - version = "1.4.0"; 7625 + version = "3.0.0"; 7434 7626 }; 7435 7627 rexml = { 7436 7628 groups = [ ··· 7901 8093 platforms = [ ]; 7902 8094 source = { 7903 8095 remotes = [ "https://rubygems.org" ]; 7904 - sha256 = "0j4zcp7nncrr6sn0m3scnqsxcf7j2v82pxcd7p3436m70ncmm1x1"; 8096 + sha256 = "17z0hi70s201gxw251hgv4r9zmfky2jlmp3pwma7hixsfpkx6gay"; 7905 8097 type = "gem"; 7906 8098 }; 7907 - version = "0.23.13"; 8099 + version = "0.23.15"; 7908 8100 }; 7909 8101 ruby-lsp-rails = { 7910 8102 dependencies = [ "ruby-lsp" ]; ··· 8130 8322 }; 8131 8323 version = "0.1.1"; 8132 8324 }; 8325 + securerandom = { 8326 + groups = [ 8327 + "default" 8328 + "development" 8329 + "monorepo" 8330 + "test" 8331 + ]; 8332 + platforms = [ ]; 8333 + source = { 8334 + remotes = [ "https://rubygems.org" ]; 8335 + sha256 = "1cd0iriqfsf1z91qg271sm88xjnfd92b832z49p1nd542ka96lfc"; 8336 + type = "gem"; 8337 + }; 8338 + version = "0.4.1"; 8339 + }; 8133 8340 seed-fu = { 8134 8341 dependencies = [ 8135 8342 "activerecord" ··· 8172 8379 platforms = [ ]; 8173 8380 source = { 8174 8381 remotes = [ "https://rubygems.org" ]; 8175 - sha256 = "18vkhjy290kf6cvwq03whfih29wyl7q003kx4qa82x3cgh1pi2mv"; 8382 + sha256 = "07nx840hc07a1igzw7zbg1c3wp71sfflv7c6jivwxj7pcr9b0431"; 8176 8383 type = "gem"; 8177 8384 }; 8178 - version = "3.6.0"; 8385 + version = "3.7.0"; 8179 8386 }; 8180 8387 sentry-rails = { 8181 8388 dependencies = [ ··· 8186 8393 platforms = [ ]; 8187 8394 source = { 8188 8395 remotes = [ "https://rubygems.org" ]; 8189 - sha256 = "1drz5lm7s2m55pmxdbpbcxlpvgaj3rchm14nrzl2s80fvh47c8i3"; 8396 + sha256 = "1i6y53hkif95091m2pq07gx3l30f85fmkj6phblc2hz3hlybqb4d"; 8190 8397 type = "gem"; 8191 8398 }; 8192 - version = "5.22.1"; 8399 + version = "5.23.0"; 8193 8400 }; 8194 8401 sentry-ruby = { 8195 8402 dependencies = [ ··· 8200 8407 platforms = [ ]; 8201 8408 source = { 8202 8409 remotes = [ "https://rubygems.org" ]; 8203 - sha256 = "129jbd6zvfn59djs455hflk2nhf0sccnvp23vsiwd957dpbvsxzd"; 8410 + sha256 = "1k45ydlbl99c9ivbafzw8lpm9diiw4m7z55szi87l9kalpwv52wf"; 8204 8411 type = "gem"; 8205 8412 }; 8206 - version = "5.22.1"; 8413 + version = "5.23.0"; 8207 8414 }; 8208 8415 sentry-sidekiq = { 8209 8416 dependencies = [ ··· 8214 8421 platforms = [ ]; 8215 8422 source = { 8216 8423 remotes = [ "https://rubygems.org" ]; 8217 - sha256 = "129ahag27akxqha2dldvvzkbxi3zcrca9naifak3xqaqbs8kyymx"; 8424 + sha256 = "060wbm1xckmlnx3j8mlf7vgmxv6wsh75nq5smj2y2wspl89n9p1l"; 8218 8425 type = "gem"; 8219 8426 }; 8220 - version = "5.22.1"; 8427 + version = "5.23.0"; 8221 8428 }; 8222 8429 shellany = { 8223 8430 groups = [ ··· 8472 8679 "backport" 8473 8680 "benchmark" 8474 8681 "diff-lcs" 8475 - "e2mmap" 8476 8682 "jaro_winkler" 8477 8683 "kramdown" 8478 8684 "kramdown-parser-gfm" 8685 + "logger" 8686 + "observer" 8687 + "ostruct" 8479 8688 "parser" 8689 + "rbs" 8480 8690 "reverse_markdown" 8481 8691 "rubocop" 8482 8692 "thor" 8483 8693 "tilt" 8484 8694 "yard" 8695 + "yard-solargraph" 8485 8696 ]; 8486 8697 groups = [ "development" ]; 8487 8698 platforms = [ ]; 8488 8699 source = { 8489 8700 remotes = [ "https://rubygems.org" ]; 8490 - sha256 = "0smcpi3x87chkdqdclhgh36xlbwm7r44r58m3k1w4mcikdwlpjl7"; 8701 + sha256 = "0mkc1fxz4anv7fcq9jn26dc5ppwriand778f9dklzrpgq9pga8py"; 8491 8702 type = "gem"; 8492 8703 }; 8493 - version = "0.47.2"; 8704 + version = "0.54.2"; 8705 + }; 8706 + solargraph-rspec = { 8707 + dependencies = [ "solargraph" ]; 8708 + groups = [ "development" ]; 8709 + platforms = [ ]; 8710 + source = { 8711 + remotes = [ "https://rubygems.org" ]; 8712 + sha256 = "1kpsdfkj6yvd5ndhj5vbll4591lwg4gjrf5c61ffj8vvy4j93z0d"; 8713 + type = "gem"; 8714 + }; 8715 + version = "0.5.1"; 8494 8716 }; 8495 8717 sorbet-runtime = { 8496 8718 groups = [ ··· 8654 8876 }; 8655 8877 version = "0.8.0"; 8656 8878 }; 8879 + state_machines-rspec = { 8880 + dependencies = [ 8881 + "activesupport" 8882 + "rspec" 8883 + "state_machines" 8884 + ]; 8885 + groups = [ "test" ]; 8886 + platforms = [ ]; 8887 + source = { 8888 + remotes = [ "https://rubygems.org" ]; 8889 + sha256 = "1gf0wlgkpdwwyxg810p1clpba6gmcl7jwvhlg5zwkl2pvx2pm99b"; 8890 + type = "gem"; 8891 + }; 8892 + version = "0.6.0"; 8893 + }; 8894 + stringio = { 8895 + groups = [ 8896 + "default" 8897 + "development" 8898 + "test" 8899 + ]; 8900 + platforms = [ ]; 8901 + source = { 8902 + remotes = [ "https://rubygems.org" ]; 8903 + sha256 = "1yh78pg6lm28c3k0pfd2ipskii1fsraq46m6zjs5yc9a4k5vfy2v"; 8904 + type = "gem"; 8905 + }; 8906 + version = "3.1.7"; 8907 + }; 8657 8908 strings = { 8658 8909 dependencies = [ 8659 8910 "strings-ansi" ··· 9063 9314 }; 9064 9315 version = "0.7.13"; 9065 9316 }; 9317 + ttfunk = { 9318 + dependencies = [ "bigdecimal" ]; 9319 + groups = [ "default" ]; 9320 + platforms = [ ]; 9321 + source = { 9322 + remotes = [ "https://rubygems.org" ]; 9323 + sha256 = "1ji0kn8jkf1rpskv3ijzxvqwixg4p6sk8kg0vmwyjinci7jcgjx7"; 9324 + type = "gem"; 9325 + }; 9326 + version = "1.8.0"; 9327 + }; 9066 9328 tty-color = { 9067 9329 groups = [ 9068 9330 "default" ··· 9475 9737 platforms = [ ]; 9476 9738 source = { 9477 9739 remotes = [ "https://rubygems.org" ]; 9478 - sha256 = "1i2ckb29ffjj431amnk0sr5h9vbs00139irs7bqh51jpl55lln74"; 9740 + sha256 = "0wj9ia0s7vywn66pf2jn49pfsy5h5rncjjwhaymwq32r3f2pq2p1"; 9479 9741 type = "gem"; 9480 9742 }; 9481 - version = "3.9.1"; 9743 + version = "3.9.2"; 9482 9744 }; 9483 9745 vmstat = { 9484 9746 groups = [ "default" ]; ··· 9570 9832 platforms = [ ]; 9571 9833 source = { 9572 9834 remotes = [ "https://rubygems.org" ]; 9573 - sha256 = "089gy5494j560b242vi173wnbj2913hwlwnjkpzld58r96ilc5s3"; 9835 + sha256 = "12d9n8hll67j737ym2zw4v23cn4vxyfkb6vyv1rzpwv6y6a3qbdl"; 9574 9836 type = "gem"; 9575 9837 }; 9576 - version = "1.8.2"; 9838 + version = "1.9.1"; 9577 9839 }; 9578 9840 websocket = { 9579 9841 groups = [ ··· 9721 9983 type = "gem"; 9722 9984 }; 9723 9985 version = "0.9.37"; 9986 + }; 9987 + yard-solargraph = { 9988 + dependencies = [ "yard" ]; 9989 + groups = [ 9990 + "default" 9991 + "development" 9992 + ]; 9993 + platforms = [ ]; 9994 + source = { 9995 + remotes = [ "https://rubygems.org" ]; 9996 + sha256 = "03lklm47k6k294ww97x6zpvlqlyjm5q8jidrixhil622r4cld6m1"; 9997 + type = "gem"; 9998 + }; 9999 + version = "0.1.0"; 9724 10000 }; 9725 10001 zeitwerk = { 9726 10002 groups = [
+2 -2
pkgs/by-name/gi/gitaly/git.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "gitaly-git"; 13 - version = "2.48.1.gl1"; 13 + version = "2.49.0.gl2"; 14 14 15 15 # `src` attribute for nix-update 16 16 src = fetchFromGitLab { 17 17 owner = "gitlab-org"; 18 18 repo = "git"; 19 19 rev = "v${version}"; 20 - hash = "sha256-j7yKImeRerdsYtSMrAU4y5vAJ2BT5wnJxURbDIwVot4="; 20 + hash = "sha256-1y94T5UBG7s76ENsUmaXRXngSKmqIAT0nq1u+QjSWaY="; 21 21 }; 22 22 23 23 # we actually use the gitaly build system
+3 -3
pkgs/by-name/gi/gitaly/package.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "17.11.2"; 10 + version = "18.0.0"; 11 11 package_version = "v${lib.versions.major version}"; 12 12 gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; 13 13 ··· 21 21 owner = "gitlab-org"; 22 22 repo = "gitaly"; 23 23 rev = "v${version}"; 24 - hash = "sha256-Ihw3Mezfz9H19oGM7X9B50aUbyh1JjDOmVU5ZNoiWug="; 24 + hash = "sha256-IhFKEBYCEORLPEplPDRdV61kY5ZgFAxJmfmoG9Q58ec="; 25 25 }; 26 26 27 - vendorHash = "sha256-ExqgxukFKXq/Z//hGSoDevfpJiNbVHhind63os1/3Fk="; 27 + vendorHash = "sha256-PXONynRY5ZLQO2yQdtljDmLhVBIgfEYmyez9pIm9vtw="; 28 28 29 29 ldflags = [ 30 30 "-X ${gitaly_package}/internal/version.version=${version}"
+3 -3
pkgs/by-name/gi/gitlab-elasticsearch-indexer/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "gitlab-elasticsearch-indexer"; 11 - version = "5.5.0"; 11 + version = "5.5.1"; 12 12 13 13 # nixpkgs-update: no auto update 14 14 src = fetchFromGitLab { 15 15 owner = "gitlab-org"; 16 16 repo = "gitlab-elasticsearch-indexer"; 17 17 rev = "v${version}"; 18 - hash = "sha256-b2kXp77pb9MXMRJsbDdNOXub8eZbZkHRwu/Ru0Voi60="; 18 + hash = "sha256-N2H9jLpsP39nKrokWwphAspQwXcL3stAdvNVItIHFyo="; 19 19 }; 20 20 21 - vendorHash = "sha256-9T8LbMROLcQYm9cT32Uc6Cuxwt9OYj3WzSYFgSQg1HQ="; 21 + vendorHash = "sha256-Go02W09799Vu9v7y+P7z1gj7ijG3No5AVprRrmspPZE="; 22 22 23 23 buildInputs = [ icu ]; 24 24 nativeBuildInputs = [ pkg-config ];
+3 -3
pkgs/by-name/gi/gitlab-pages/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gitlab-pages"; 9 - version = "17.11.2"; 9 + version = "18.0.0"; 10 10 11 11 # nixpkgs-update: no auto update 12 12 src = fetchFromGitLab { 13 13 owner = "gitlab-org"; 14 14 repo = "gitlab-pages"; 15 15 rev = "v${version}"; 16 - hash = "sha256-tnswEoocMZXBrS+5toV8IOVs8HcNrTG320ebQqB3XiQ="; 16 + hash = "sha256-c2y11lMeHBi62Ql63HGolF454GkFp7UCErHGk5Bvgvw="; 17 17 }; 18 18 19 - vendorHash = "sha256-jCuLRXr7WHGxbXVg2JB1vp9WiNaLgsIJ6GJSS4QrlwY="; 19 + vendorHash = "sha256-BjCwPt1duDINHP7L0qT2KNTjOZ62bWgVij88ztjjyPg="; 20 20 subPackages = [ "." ]; 21 21 22 22 meta = with lib; {