Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
eba4fcfd 65b948d4

+757 -467
+28 -4
.github/workflows/eval.yml
··· 168 168 run: | 169 169 # Get the latest eval.yml workflow run for the PR's base commit 170 170 if ! run=$(gh api --method GET /repos/"$REPOSITORY"/actions/workflows/eval.yml/runs \ 171 - -f head_sha="$BASE_SHA" \ 171 + -f head_sha="$BASE_SHA" -f event=push \ 172 172 --jq '.workflow_runs | sort_by(.run_started_at) | .[-1]') \ 173 173 || [[ -z "$run" ]]; then 174 174 echo "Could not find an eval.yml workflow run for $BASE_SHA, cannot make comparison" ··· 237 237 238 238 - name: Tagging pull request 239 239 run: | 240 + # Get all currently set rebuild labels 240 241 gh api \ 241 - --method POST \ 242 - /repos/${{ github.repository }}/issues/${{ github.event.number }}/labels \ 243 - --input <(jq -c '{ labels: .labels }' comparison/changed-paths.json) 242 + /repos/"$REPOSITORY"/issues/"$NUMBER"/labels \ 243 + --jq '.[].name | select(startswith("10.rebuild"))' \ 244 + | sort > before 245 + 246 + # And the labels that should be there 247 + jq -r '.labels[]' comparison/changed-paths.json \ 248 + | sort > after 249 + 250 + # Remove the ones not needed anymore 251 + while read -r toRemove; do 252 + echo "Removing label $toRemove" 253 + gh api \ 254 + --method DELETE \ 255 + /repos/"$REPOSITORY"/issues/"$NUMBER"/labels/"$toRemove" 256 + done < <(comm -23 before after) 257 + 258 + # And add the ones that aren't set already 259 + while read -r toAdd; do 260 + echo "Adding label $toAdd" 261 + gh api \ 262 + --method POST \ 263 + /repos/"$REPOSITORY"/issues/"$NUMBER"/labels \ 264 + -f "labels[]=$toAdd" 265 + done < <(comm -13 before after) 244 266 env: 245 267 GH_TOKEN: ${{ github.token }} 268 + REPOSITORY: ${{ github.repository }} 269 + NUMBER: ${{ github.event.number }}
+1 -1
nixos/modules/services/misc/gitlab.nix
··· 1348 1348 ln -sf ${cableYml} ${cfg.statePath}/config/cable.yml 1349 1349 ln -sf ${resqueYml} ${cfg.statePath}/config/resque.yml 1350 1350 1351 - ${cfg.packages.gitlab-shell}/bin/gitlab-shell-install 1351 + ${cfg.packages.gitlab-shell}/support/make_necessary_dirs 1352 1352 1353 1353 ${optionalString cfg.smtp.enable '' 1354 1354 install -m u=rw ${smtpSettings} ${cfg.statePath}/config/initializers/smtp_settings.rb
+2 -1
nixos/modules/system/boot/networkd.nix
··· 733 733 (assertValueOneOf "IPv4AcceptLocal" boolValues) 734 734 (assertValueOneOf "IPv4RouteLocalnet" boolValues) 735 735 (assertValueOneOf "IPv4ProxyARP" boolValues) 736 - (assertValueOneof "IPv4ProxyARPPrivateVLAN" boolValues) 736 + (assertValueOneOf "IPv4ProxyARPPrivateVLAN" boolValues) 737 737 (assertValueOneOf "IPv6ProxyNDP" boolValues) 738 738 (assertValueOneOf "IPv6SendRA" boolValues) 739 739 (assertValueOneOf "DHCPPrefixDelegation" boolValues) ··· 1392 1392 "Wash" 1393 1393 "SplitGSO" 1394 1394 "AckFilter" 1395 + "RTTSec" 1395 1396 ]) 1396 1397 (assertValueOneOf "AutoRateIngress" boolValues) 1397 1398 (assertInt "OverheadBytes")
+5 -4
pkgs/applications/gis/qgis/unwrapped-ltr.nix
··· 30 30 , postgresql 31 31 , proj 32 32 , protobuf 33 - , python311 33 + , python3 34 34 , qca-qt5 35 35 , qscintilla 36 36 , qt3d ··· 49 49 }: 50 50 51 51 let 52 - py = python311.override { 52 + py = python3.override { 53 53 self = py; 54 54 packageOverrides = self: super: { 55 55 pyqt5 = super.pyqt5.override { 56 56 withLocation = true; 57 + withSerialPort = true; 57 58 }; 58 59 }; 59 60 }; ··· 79 80 urllib3 80 81 ]; 81 82 in mkDerivation rec { 82 - version = "3.34.11"; 83 + version = "3.34.13"; 83 84 pname = "qgis-ltr-unwrapped"; 84 85 85 86 src = fetchFromGitHub { 86 87 owner = "qgis"; 87 88 repo = "QGIS"; 88 89 rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; 89 - hash = "sha256-VNgUMEA7VKZXsLG1ZYUIlYvjwRrH8LsliGiVRMnXOM0="; 90 + hash = "sha256-eNncDIRfFYFxyc5a2tZijmVpx/LNm/roak84guFvldg="; 90 91 }; 91 92 92 93 passthru = {
+4 -4
pkgs/applications/gis/qgis/unwrapped.nix
··· 30 30 , postgresql 31 31 , proj 32 32 , protobuf 33 - , python311 33 + , python3 34 34 , qca-qt5 35 35 , qscintilla 36 36 , qt3d ··· 49 49 }: 50 50 51 51 let 52 - py = python311.override { 52 + py = python3.override { 53 53 self = py; 54 54 packageOverrides = self: super: { 55 55 pyqt5 = super.pyqt5.override { ··· 80 80 urllib3 81 81 ]; 82 82 in mkDerivation rec { 83 - version = "3.38.3"; 83 + version = "3.40.1"; 84 84 pname = "qgis-unwrapped"; 85 85 86 86 src = fetchFromGitHub { 87 87 owner = "qgis"; 88 88 repo = "QGIS"; 89 89 rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; 90 - hash = "sha256-yJFYq4t0LzBr+O2bmtBSeehQ2vfUaZIQfOY68WZcHG4="; 90 + hash = "sha256-C86RwyeIZrflC5F2VQCw1LwF9VM4/OBEsLbGPiWKeco="; 91 91 }; 92 92 93 93 passthru = {
+9 -9
pkgs/applications/version-management/gitlab/data.json
··· 1 1 { 2 - "version": "17.3.7", 3 - "repo_hash": "1nci1lnr7wikjrqqpya7ypwf2lcjlcvkjc3wc0b7wcx9jnrylbr1", 4 - "yarn_hash": "1g5xqggdbrxz6ablav119jw8a2v8qdd2cwlbvpygablbcxqak41l", 2 + "version": "17.5.2", 3 + "repo_hash": "08mx9xbl6cagzp36qwzz1zab5w8y2x4yhy3x5hqv1qwbrjrlcxjd", 4 + "yarn_hash": "0x1yhgjrm7zyj9qir4yk1zkzj009a3s20hf6fqmsaala4hynnlnq", 5 5 "owner": "gitlab-org", 6 6 "repo": "gitlab", 7 - "rev": "v17.3.7-ee", 7 + "rev": "v17.5.2-ee", 8 8 "passthru": { 9 - "GITALY_SERVER_VERSION": "17.3.7", 10 - "GITLAB_PAGES_VERSION": "17.3.7", 11 - "GITLAB_SHELL_VERSION": "14.38.0", 12 - "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.2.0", 13 - "GITLAB_WORKHORSE_VERSION": "17.3.7" 9 + "GITALY_SERVER_VERSION": "17.5.2", 10 + "GITLAB_PAGES_VERSION": "17.5.2", 11 + "GITLAB_SHELL_VERSION": "14.39.0", 12 + "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.3.0", 13 + "GITLAB_WORKHORSE_VERSION": "17.5.2" 14 14 } 15 15 }
+1 -1
pkgs/applications/version-management/gitlab/default.nix
··· 77 77 cp Cargo.lock $out 78 78 ''; 79 79 }; 80 - hash = "sha256-VYjCYUikORuXx27OYWyumBxeHw9aj/S1wcr9vLIsXeo="; 80 + hash = "sha256-L/URWw7NoQhi7VV8ZiKLzthbF0wl4rIUqCQdH9wmAV0="; 81 81 }; 82 82 83 83 dontBuild = false;
+2 -2
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 5 5 buildGoModule rec { 6 6 pname = "gitlab-workhorse"; 7 7 8 - version = "17.3.7"; 8 + version = "17.5.2"; 9 9 10 10 # nixpkgs-update: no auto update 11 11 src = fetchFromGitLab { ··· 17 17 18 18 sourceRoot = "${src.name}/workhorse"; 19 19 20 - vendorHash = "sha256-sLr9kFKRNYOlCj9bmP+J7/Iu/OfFTEjAm64BUni+eiY="; 20 + vendorHash = "sha256-10gJPUncde48Lk23mShHXM6ItTHvjh6Y8yMlGFfKkj8="; 21 21 buildInputs = [ git ]; 22 22 ldflags = [ "-X main.Version=${version}" ]; 23 23 doCheck = false;
+57 -46
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile
··· 30 30 # See https://docs.gitlab.com/ee/development/gemfile.html#upgrade-rails for guidelines when upgrading Rails 31 31 32 32 if next? 33 - gem 'rails', '~> 7.1.3.4', feature_category: :shared 33 + gem 'rails', '~> 7.1.4', feature_category: :shared 34 34 else 35 35 gem 'rails', '~> 7.0.8.4', feature_category: :shared 36 36 end ··· 38 38 gem 'activerecord-gitlab', path: 'gems/activerecord-gitlab' # rubocop:todo Gemfile/MissingFeatureCategory 39 39 40 40 gem 'bootsnap', '~> 1.18.3', require: false # rubocop:todo Gemfile/MissingFeatureCategory 41 + 42 + # Avoid the precompiled native gems because Omnibus needs to build this to ensure 43 + # LD_LIBRARY_PATH is correct: https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/7730 44 + gem 'ffi', '~> 1.17', force_ruby_platform: true, feature_category: :shared 41 45 42 46 gem 'openssl', '~> 3.0' # rubocop:todo Gemfile/MissingFeatureCategory 43 47 gem 'ipaddr', '~> 1.2.5' # rubocop:todo Gemfile/MissingFeatureCategory ··· 59 63 gem 'sprockets', '~> 3.7.0' # rubocop:todo Gemfile/MissingFeatureCategory 60 64 gem 'sprockets-rails', '~> 3.5.1' # rubocop:todo Gemfile/MissingFeatureCategory 61 65 62 - gem 'view_component', '~> 3.13.0' # rubocop:todo Gemfile/MissingFeatureCategory 66 + gem 'view_component', '~> 3.14.0' # rubocop:todo Gemfile/MissingFeatureCategory 63 67 64 68 # Supported DBs 65 69 gem 'pg', '~> 1.5.6', feature_category: :database ··· 89 93 gem 'doorkeeper-openid_connect', '~> 1.8', '>= 1.8.7' # rubocop:todo Gemfile/MissingFeatureCategory 90 94 gem 'doorkeeper-device_authorization_grant', '~> 1.0.0', feature_category: :system_access 91 95 gem 'rexml', '~> 3.3.2' # rubocop:todo Gemfile/MissingFeatureCategory 92 - gem 'ruby-saml', '~> 1.17.0' # rubocop:todo Gemfile/MissingFeatureCategory 96 + gem 'ruby-saml', '~> 1.17.0', feature_category: :system_access 93 97 gem 'omniauth', '~> 2.1.0' # rubocop:todo Gemfile/MissingFeatureCategory 94 98 gem 'omniauth-auth0', '~> 3.1' # rubocop:todo Gemfile/MissingFeatureCategory 95 99 gem 'omniauth-azure-activedirectory-v2', '~> 2.0' # rubocop:todo Gemfile/MissingFeatureCategory ··· 98 102 gem 'omniauth-gitlab', '~> 4.0.0', path: 'vendor/gems/omniauth-gitlab' # See vendor/gems/omniauth-gitlab/README.md # rubocop:todo Gemfile/MissingFeatureCategory 99 103 gem 'omniauth-google-oauth2', '~> 1.1' # rubocop:todo Gemfile/MissingFeatureCategory 100 104 gem 'omniauth-oauth2-generic', '~> 0.2.2' # rubocop:todo Gemfile/MissingFeatureCategory 101 - gem 'omniauth-saml', '~> 2.2.1' # rubocop:todo Gemfile/MissingFeatureCategory 105 + gem 'omniauth-saml', '~> 2.2.1', feature_category: :system_access 102 106 gem 'omniauth-shibboleth-redux', '~> 2.0', require: 'omniauth-shibboleth' # rubocop:todo Gemfile/MissingFeatureCategory 103 107 gem 'omniauth_crowd', '~> 2.4.0', path: 'vendor/gems/omniauth_crowd' # See vendor/gems/omniauth_crowd/README.md # rubocop:todo Gemfile/MissingFeatureCategory 104 108 gem 'omniauth_openid_connect', '~> 0.8.0' # rubocop:todo Gemfile/MissingFeatureCategory ··· 138 142 gem 'ohai', '~> 18.1' # rubocop:todo Gemfile/MissingFeatureCategory 139 143 140 144 # GPG 141 - gem 'gpgme', '~> 2.0.23' # rubocop:todo Gemfile/MissingFeatureCategory 145 + gem 'gpgme', '~> 2.0.24', feature_category: :source_code_management 142 146 143 147 # LDAP Auth 144 148 # GitLab fork with several improvements to original library. For full list of changes ··· 155 159 gem 'rack-cors', '~> 2.0.1', require: 'rack/cors' # rubocop:todo Gemfile/MissingFeatureCategory 156 160 157 161 # GraphQL API 158 - gem 'graphql', '~> 2.3.5', feature_category: :api 162 + gem 'graphql', '~> 2.3.14', feature_category: :api 159 163 gem 'graphql-docs', '~> 5.0.0', group: [:development, :test], feature_category: :api 160 164 gem 'graphiql-rails', '~> 1.10', feature_category: :api 161 165 gem 'apollo_upload_server', '~> 2.1.6', feature_category: :api ··· 187 191 gem 'mini_magick', '~> 4.12' # rubocop:todo Gemfile/MissingFeatureCategory 188 192 189 193 # for backups 190 - gem 'fog-aws', '~> 3.18' # rubocop:todo Gemfile/MissingFeatureCategory 194 + gem 'fog-aws', '~> 3.26', feature_category: :shared 191 195 # Locked until fog-google resolves https://github.com/fog/fog-google/issues/421. 192 196 # Also see config/initializers/fog_core_patch.rb. 193 197 gem 'fog-core', '= 2.1.0' # rubocop:todo Gemfile/MissingFeatureCategory ··· 200 204 # We may want to update this dependency if this is ever addressed upstream, e.g. via 201 205 # https://github.com/aliyun/aliyun-oss-ruby-sdk/pull/93 202 206 gem 'fog-aliyun', '~> 0.4' # rubocop:todo Gemfile/MissingFeatureCategory 203 - gem 'gitlab-fog-azure-rm', '~> 2.0.1', require: 'fog/azurerm', feature_category: :shared 207 + gem 'gitlab-fog-azure-rm', '~> 2.1.0', require: 'fog/azurerm', feature_category: :shared 204 208 205 209 # for Google storage 206 210 ··· 231 235 gem 'elasticsearch-model', '~> 7.2', feature_category: :global_search 232 236 gem 'elasticsearch-rails', '~> 7.2', require: 'elasticsearch/rails/instrumentation', feature_category: :global_search 233 237 gem 'elasticsearch-api', '7.17.11', feature_category: :global_search 234 - gem 'aws-sdk-core', '~> 3.201.0' # rubocop:todo Gemfile/MissingFeatureCategory 238 + gem 'aws-sdk-core', '~> 3.206.0' # rubocop:todo Gemfile/MissingFeatureCategory 235 239 gem 'aws-sdk-cloudformation', '~> 1' # rubocop:todo Gemfile/MissingFeatureCategory 236 - gem 'aws-sdk-s3', '~> 1.157.0' # rubocop:todo Gemfile/MissingFeatureCategory 240 + gem 'aws-sdk-s3', '~> 1.163.0' # rubocop:todo Gemfile/MissingFeatureCategory 237 241 gem 'faraday-typhoeus', '~> 1.1', feature_category: :global_search 238 242 gem 'faraday_middleware-aws-sigv4', '~> 1.0.1', feature_category: :global_search 239 243 # Used with Elasticsearch to support http keep-alive connections 240 244 gem 'typhoeus', '~> 1.4.0', feature_category: :global_search 241 245 242 246 # Markdown and HTML processing 243 - gem 'html-pipeline', '~> 2.14.3', feature_category: :team_planning 244 - gem 'deckar01-task_list', '2.3.4', feature_category: :team_planning 245 - gem 'gitlab-markup', '~> 1.9.0', require: 'github/markup' # rubocop:todo Gemfile/MissingFeatureCategory 246 - gem 'commonmarker', '~> 0.23.10', feature_category: :team_planning 247 - gem 'kramdown', '~> 2.3.1' # rubocop:todo Gemfile/MissingFeatureCategory 248 - gem 'RedCloth', '~> 4.3.3' # rubocop:todo Gemfile/MissingFeatureCategory 249 - gem 'org-ruby', '~> 0.9.12' # rubocop:todo Gemfile/MissingFeatureCategory 250 - gem 'creole', '~> 0.5.0' # rubocop:todo Gemfile/MissingFeatureCategory 251 - gem 'wikicloth', '0.8.1' # rubocop:todo Gemfile/MissingFeatureCategory 252 - gem 'asciidoctor', '~> 2.0.18' # rubocop:todo Gemfile/MissingFeatureCategory 253 - gem 'asciidoctor-include-ext', '~> 0.4.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory 254 - gem 'asciidoctor-plantuml', '~> 0.0.16' # rubocop:todo Gemfile/MissingFeatureCategory 255 - gem 'asciidoctor-kroki', '~> 0.10.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory 247 + gem 'html-pipeline', '~> 2.14.3', feature_category: :markdown 248 + gem 'deckar01-task_list', '2.3.4', feature_category: :markdown 249 + gem 'gitlab-markup', '~> 1.9.0', require: 'github/markup', feature_category: :markdown 250 + gem 'commonmarker', '~> 0.23.10', feature_category: :markdown 251 + gem 'kramdown', '~> 2.3.1', feature_category: :markdown 252 + gem 'RedCloth', '~> 4.3.3', feature_category: :markdown 253 + gem 'org-ruby', '~> 0.9.12', feature_category: :markdown 254 + gem 'creole', '~> 0.5.0', feature_category: :markdown 255 + gem 'wikicloth', '0.8.1', feature_category: :markdown 256 + gem 'asciidoctor', '~> 2.0.18', feature_category: :markdown 257 + gem 'asciidoctor-include-ext', '~> 0.4.0', require: false, feature_category: :markdown 258 + gem 'asciidoctor-plantuml', '~> 0.0.16', feature_category: :markdown 259 + gem 'asciidoctor-kroki', '~> 0.10.0', require: false, feature_category: :markdown 256 260 gem 'rouge', '~> 4.3.0', feature_category: :shared 257 - gem 'truncato', '~> 0.7.12' # rubocop:todo Gemfile/MissingFeatureCategory 258 - gem 'nokogiri', '~> 1.16' # rubocop:todo Gemfile/MissingFeatureCategory 259 - gem 'gitlab-glfm-markdown', '~> 0.0.17', feature_category: :team_planning 261 + gem 'truncato', '~> 0.7.12', feature_category: :team_planning 262 + gem 'nokogiri', '~> 1.16', feature_category: :shared 263 + gem 'gitlab-glfm-markdown', '~> 0.0.21', feature_category: :markdown 260 264 261 265 # Calendar rendering 262 266 gem 'icalendar', '~> 2.10.1', feature_category: :system_access ··· 271 275 gem 'rack-timeout', '~> 0.7.0', require: 'rack/timeout/base' # rubocop:todo Gemfile/MissingFeatureCategory 272 276 273 277 group :puma do 274 - gem 'puma', '= 6.4.0', require: false, feature_category: :shared 278 + gem 'puma', '= 6.4.3', require: false, feature_category: :shared 275 279 gem 'sd_notify', '~> 0.1.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory 276 280 end 277 281 ··· 279 283 gem 'state_machines-activerecord', '~> 0.8.0' # rubocop:todo Gemfile/MissingFeatureCategory 280 284 281 285 # Background jobs 282 - gem 'sidekiq', '~> 7.1.6', feature_category: :scalability 286 + gem 'sidekiq', path: 'vendor/gems/sidekiq-7.2.4', require: 'sidekiq', feature_category: :scalability 283 287 gem 'sidekiq-cron', '~> 1.12.0', feature_category: :scalability 284 288 gem 'gitlab-sidekiq-fetcher', 285 289 path: 'vendor/gems/sidekiq-reliable-fetch', ··· 315 319 316 320 # Redis 317 321 gem 'redis-namespace', '~> 1.11.0', feature_category: :redis 318 - gem 'redis', '~> 5.2.0', feature_category: :redis 319 - gem 'redis-clustering', '~> 5.2.0', feature_category: :redis 322 + gem 'redis', '~> 5.3.0', feature_category: :redis 323 + gem 'redis-clustering', '~> 5.3.0', feature_category: :redis 320 324 gem 'connection_pool', '~> 2.4' # rubocop:todo Gemfile/MissingFeatureCategory 321 325 322 326 # Redis session store ··· 383 387 gem 'rack-attack', '~> 6.7.0' # rubocop:todo Gemfile/MissingFeatureCategory 384 388 385 389 # Sentry integration 386 - gem 'sentry-ruby', '~> 5.18.0', feature_category: :error_tracking 387 - gem 'sentry-rails', '~> 5.18.0', feature_category: :error_tracking 388 - gem 'sentry-sidekiq', '~> 5.18.0', feature_category: :error_tracking 390 + gem 'sentry-ruby', '~> 5.19.0', feature_category: :observability 391 + gem 'sentry-rails', '~> 5.19.0', feature_category: :observability 392 + gem 'sentry-sidekiq', '~> 5.19.0', feature_category: :observability 389 393 390 394 # PostgreSQL query parsing 391 395 # ··· 400 404 401 405 # I18n 402 406 gem 'rails-i18n', '~> 7.0', '>= 7.0.9', feature_category: :internationalization 403 - gem 'gettext_i18n_rails', '~> 1.12.0', feature_category: :internationalization 407 + gem 'gettext_i18n_rails', '~> 1.13.0', feature_category: :internationalization 404 408 gem 'gettext', '~> 3.4', '>= 3.4.9', 405 409 require: false, 406 410 group: [:development, :test], ··· 427 431 # Required manually in config/initializers/require_async_gem 428 432 gem 'async', '~> 2.12.1', require: false # rubocop:disable Gemfile/MissingFeatureCategory -- This is general utility gem 429 433 434 + # Security report schemas used to validate CI job artifacts of security jobs 435 + gem 'gitlab-security_report_schemas', '0.1.2.min15.0.0.max15.2.1', feature_category: :vulnerability_management 436 + 430 437 # OpenTelemetry 431 438 group :opentelemetry do 432 439 # Core OpenTelemetry gems ··· 460 467 gem 'warning', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory 461 468 462 469 group :development do 463 - gem 'lefthook', '~> 1.6.8', require: false, feature_category: :tooling 470 + gem 'lefthook', '~> 1.7.0', require: false, feature_category: :tooling 464 471 gem 'rubocop', feature_category: :tooling 465 472 gem 'solargraph', '~> 0.47.2', require: false # rubocop:todo Gemfile/MissingFeatureCategory 466 473 ··· 474 481 475 482 gem 'listen', '~> 3.7' # rubocop:todo Gemfile/MissingFeatureCategory 476 483 477 - gem 'ruby-lsp', "~> 0.17.0", require: false, feature_category: :tooling 484 + gem 'ruby-lsp', "~> 0.19.0", require: false, feature_category: :tooling 478 485 479 486 gem 'ruby-lsp-rails', "~> 0.3.6", feature_category: :tooling 480 487 ··· 494 501 gem 'awesome_print', require: false # rubocop:todo Gemfile/MissingFeatureCategory 495 502 496 503 gem 'database_cleaner-active_record', '~> 2.2.0', feature_category: :database 497 - gem 'rspec-rails', '~> 6.1.1', feature_category: :shared 504 + gem 'rspec-rails', '~> 7.0.0', feature_category: :shared 498 505 gem 'factory_bot_rails', '~> 6.4.3', feature_category: :tooling 499 506 500 507 # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) ··· 532 539 # For now we only use vite in development / test, and not for production builds 533 540 # See: https://gitlab.com/gitlab-org/frontend/rfcs/-/issues/106 534 541 gem 'vite_rails', '~> 3.0.17', feature_category: :shared 535 - gem 'vite_ruby', '~> 3.7.0', feature_category: :shared 542 + gem 'vite_ruby', '~> 3.8.0', feature_category: :shared 536 543 537 544 gem 'gitlab-housekeeper', path: 'gems/gitlab-housekeeper', feature_category: :tooling 538 545 end ··· 567 574 gem 'rspec-parameterized', '~> 1.0', '>= 1.0.2', require: false, feature_category: :tooling 568 575 gem 'os', '~> 1.1', '>= 1.1.4', feature_category: :tooling 569 576 570 - gem 'capybara', '~> 3.40' # rubocop:todo Gemfile/MissingFeatureCategory 571 - gem 'capybara-screenshot', '~> 1.0.26' # rubocop:todo Gemfile/MissingFeatureCategory 572 - gem 'selenium-webdriver', '~> 4.21', '>= 4.21.1' # rubocop:todo Gemfile/MissingFeatureCategory 577 + gem 'capybara', '~> 3.40', feature_category: :test_platform 578 + gem 'capybara-screenshot', '~> 1.0.26', feature_category: :test_platform 579 + gem 'selenium-webdriver', '~> 4.21', '>= 4.21.1', feature_category: :test_platform 573 580 574 581 gem 'graphlyte', '~> 1.0.0' # rubocop:todo Gemfile/MissingFeatureCategory 575 582 ··· 578 585 gem 'webmock', '~> 3.23.0', feature_category: :shared 579 586 gem 'rails-controller-testing' # rubocop:todo Gemfile/MissingFeatureCategory 580 587 gem 'concurrent-ruby', '~> 1.1' # rubocop:todo Gemfile/MissingFeatureCategory 581 - gem 'test-prof', '~> 1.3.3', feature_category: :tooling 588 + gem 'test-prof', '~> 1.4.0', feature_category: :tooling 582 589 gem 'rspec_junit_formatter' # rubocop:todo Gemfile/MissingFeatureCategory 583 590 gem 'guard-rspec' # rubocop:todo Gemfile/MissingFeatureCategory 584 591 gem 'axe-core-rspec', '~> 4.9.0', feature_category: :tooling ··· 586 593 # Moved in `test` because https://gitlab.com/gitlab-org/gitlab/-/issues/217527 587 594 gem 'derailed_benchmarks', require: false # rubocop:todo Gemfile/MissingFeatureCategory 588 595 589 - gem 'gitlab_quality-test_tooling', '~> 1.33.0', require: false, feature_category: :tooling 596 + gem 'gitlab_quality-test_tooling', '~> 1.39.0', require: false, feature_category: :tooling 590 597 end 591 598 592 599 gem 'octokit', '~> 9.0', feature_category: :importers ··· 623 630 gem 'spamcheck', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory 624 631 625 632 # Gitaly GRPC protocol definitions 626 - gem 'gitaly', '~> 17.2.0', feature_category: :gitaly 633 + gem 'gitaly', '~> 17.4.0.pre.rc1', feature_category: :gitaly 627 634 628 635 # KAS GRPC protocol definitions 629 - gem 'kas-grpc', '~> 0.6.0', feature_category: :deployment_management 636 + gem 'gitlab-kas-grpc', '~> 17.4.0.pre.rc1', feature_category: :deployment_management 630 637 631 638 # Lock the version before issues below are resolved: 632 639 # https://gitlab.com/gitlab-org/gitlab/-/issues/473169#note_2028352939 ··· 709 716 gem 'arr-pm', '~> 0.0.12' # rubocop:todo Gemfile/MissingFeatureCategory 710 717 711 718 # Remote Development 712 - gem 'devfile', '~> 0.0.26.pre.alpha1', feature_category: :remote_development 719 + gem 'devfile', '~> 0.0.28.pre.alpha1', feature_category: :workspaces 713 720 714 721 # Apple plist parsing 715 722 gem 'CFPropertyList', '~> 3.0.0' # rubocop:todo Gemfile/MissingFeatureCategory ··· 731 738 gem 'gitlab-sdk', '~> 0.3.0', feature_category: :application_instrumentation 732 739 733 740 gem 'openbao_client', path: 'gems/openbao_client' # rubocop:todo Gemfile/MissingFeatureCategory 741 + 742 + gem 'paper_trail', '~> 15.0' # rubocop:todo Gemfile/MissingFeatureCategory 743 + 744 + gem "i18n_data", "~> 0.13.1", feature_category: :system_access
+155 -134
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock
··· 27 27 remote: gems/gitlab-backup-cli 28 28 specs: 29 29 gitlab-backup-cli (0.0.1) 30 - activesupport (< 7.2) 30 + activesupport (>= 7) 31 + addressable (~> 2.8) 32 + concurrent-ruby (~> 1.1) 33 + faraday (~> 2) 31 34 google-cloud-storage_transfer (~> 1.2.0) 35 + google-protobuf (~> 3.25, >= 3.25.3) 32 36 googleauth (~> 1.8.1) 37 + grpc (= 1.63.0) 38 + json (~> 2.7.2) 39 + jwt (~> 2.5) 40 + logger (~> 1.5.3) 41 + minitest (~> 5.11.0) 42 + parallel (~> 1.19) 43 + rack (~> 2.2.9) 33 44 rainbow (~> 3.0) 45 + rexml (~> 3.3.2) 34 46 thor (~> 1.3) 35 47 36 48 PATH ··· 194 206 omniauth (~> 2.0) 195 207 196 208 PATH 209 + remote: vendor/gems/sidekiq-7.2.4 210 + specs: 211 + sidekiq (7.2.4) 212 + concurrent-ruby (< 2) 213 + connection_pool (>= 2.3.0) 214 + rack (>= 2.2.4) 215 + redis-client (>= 0.19.0) 216 + 217 + PATH 197 218 remote: vendor/gems/sidekiq-reliable-fetch 198 219 specs: 199 220 gitlab-sidekiq-fetcher (0.11.0) ··· 205 226 specs: 206 227 CFPropertyList (3.0.5) 207 228 rexml 208 - RedCloth (4.3.3) 229 + RedCloth (4.3.4) 209 230 acme-client (2.0.18) 210 231 faraday (>= 1.0, < 3.0.0) 211 232 faraday-retry (>= 1.0, < 3.0.0) ··· 277 298 i18n (>= 1.6, < 2) 278 299 minitest (>= 5.1) 279 300 tzinfo (~> 2.0) 280 - addressable (2.8.1) 281 - public_suffix (>= 2.0.2, < 6.0) 301 + addressable (2.8.7) 302 + public_suffix (>= 2.0.2, < 7.0) 282 303 aes_key_wrap (1.1.0) 283 304 akismet (3.0.0) 284 305 aliyun-sdk (0.8.0) ··· 295 316 activesupport (>= 6.0.0) 296 317 jwt (>= 1.4, <= 2.5.0) 297 318 arr-pm (0.0.12) 298 - asciidoctor (2.0.18) 319 + asciidoctor (2.0.23) 299 320 asciidoctor-include-ext (0.4.0) 300 321 asciidoctor (>= 1.5.6, < 3.0.0) 301 322 asciidoctor-kroki (0.10.0) ··· 317 338 aws-sdk-cloudformation (1.41.0) 318 339 aws-sdk-core (~> 3, >= 3.99.0) 319 340 aws-sigv4 (~> 1.1) 320 - aws-sdk-core (3.201.4) 341 + aws-sdk-core (3.206.0) 321 342 aws-eventstream (~> 1, >= 1.3.0) 322 343 aws-partitions (~> 1, >= 1.651.0) 323 - aws-sigv4 (~> 1.8) 344 + aws-sigv4 (~> 1.9) 324 345 jmespath (~> 1, >= 1.6.1) 325 346 aws-sdk-kms (1.76.0) 326 347 aws-sdk-core (~> 3, >= 3.188.0) 327 348 aws-sigv4 (~> 1.1) 328 - aws-sdk-s3 (1.157.0) 329 - aws-sdk-core (~> 3, >= 3.201.0) 349 + aws-sdk-s3 (1.163.0) 350 + aws-sdk-core (~> 3, >= 3.205.0) 330 351 aws-sdk-kms (~> 1) 331 352 aws-sigv4 (~> 1.5) 332 - aws-sigv4 (1.8.0) 353 + aws-sigv4 (1.9.1) 333 354 aws-eventstream (~> 1, >= 1.0.2) 334 355 axe-core-api (4.9.1) 335 356 dumb_delegator ··· 487 508 thor (>= 0.19, < 2) 488 509 descendants_tracker (0.0.4) 489 510 thread_safe (~> 0.3, >= 0.3.1) 490 - devfile (0.0.26.pre.alpha1) 511 + devfile (0.0.28.pre.alpha1) 491 512 device_detector (1.0.0) 492 513 devise (4.9.3) 493 514 bcrypt (~> 3.0) ··· 577 598 factory_bot_rails (6.4.3) 578 599 factory_bot (~> 6.4) 579 600 railties (>= 5.0.0) 580 - faraday (2.10.1) 581 - faraday-net_http (>= 2.0, < 3.2) 601 + faraday (2.11.0) 602 + faraday-net_http (>= 2.0, < 3.4) 582 603 logger 583 604 faraday-follow_redirects (0.3.0) 584 605 faraday (>= 1, < 3) ··· 602 623 fast_blank (1.0.1) 603 624 fast_gettext (2.3.0) 604 625 ffaker (2.23.0) 605 - ffi (1.15.5) 626 + ffi (1.17.0) 606 627 ffi-compiler (1.0.1) 607 628 ffi (>= 1.0.0) 608 629 rake ··· 628 649 fog-json 629 650 ipaddress (~> 0.8) 630 651 xml-simple (~> 1.1) 631 - fog-aws (3.18.0) 652 + fog-aws (3.27.0) 653 + base64 (~> 0.2.0) 632 654 fog-core (~> 2.1) 633 655 fog-json (~> 1.1) 634 656 fog-xml (~> 0.1) ··· 687 709 prime 688 710 racc 689 711 text (>= 1.3.0) 690 - gettext_i18n_rails (1.12.0) 712 + gettext_i18n_rails (1.13.0) 691 713 fast_gettext (>= 0.9.0) 692 714 git (1.18.0) 693 715 addressable (~> 2.8) 694 716 rchardet (~> 1.8) 695 - gitaly (17.2.0) 717 + gitaly (17.4.0.pre.rc1) 696 718 grpc (~> 1.0) 697 719 gitlab (4.19.0) 698 720 httparty (~> 0.20) ··· 706 728 gitlab-experiment (0.9.1) 707 729 activesupport (>= 3.0) 708 730 request_store (>= 1.0) 709 - gitlab-fog-azure-rm (2.0.1) 731 + gitlab-fog-azure-rm (2.1.0) 710 732 faraday (~> 2.0) 711 733 faraday-follow_redirects (~> 0.3.0) 712 734 faraday-net_http_persistent (~> 2.0) ··· 715 737 mime-types 716 738 net-http-persistent (~> 4.0) 717 739 nokogiri (~> 1, >= 1.10.8) 718 - gitlab-glfm-markdown (0.0.17) 740 + gitlab-glfm-markdown (0.0.21) 719 741 rb_sys (= 0.9.94) 742 + gitlab-kas-grpc (17.4.0.pre.rc1) 743 + grpc (~> 1.0) 720 744 gitlab-labkit (0.36.1) 721 745 actionpack (>= 5.0.0, < 8.0.0) 722 746 activesupport (>= 5.0.0, < 8.0.0) ··· 738 762 activesupport (>= 5.2.0) 739 763 rake (~> 13.0) 740 764 snowplow-tracker (~> 0.8.0) 765 + gitlab-security_report_schemas (0.1.2.min15.0.0.max15.2.1) 766 + activesupport (>= 6, < 8) 767 + json_schemer (~> 2.3.0) 741 768 gitlab-styles (12.0.1) 742 769 rubocop (~> 1.62.1) 743 770 rubocop-factory_bot (~> 2.25.1) ··· 752 779 omniauth (>= 1.3, < 3) 753 780 pyu-ruby-sasl (>= 0.0.3.3, < 0.1) 754 781 rubyntlm (~> 0.5) 755 - gitlab_quality-test_tooling (1.33.0) 782 + gitlab_quality-test_tooling (1.39.0) 756 783 activesupport (>= 7.0, < 7.2) 757 784 amatch (~> 0.4.1) 785 + fog-google (~> 1.24, >= 1.24.1) 758 786 gitlab (~> 4.19) 759 787 http (~> 5.0) 760 788 influxdb-client (~> 3.1) ··· 846 874 google-cloud-storage_transfer-v1 (0.8.0) 847 875 gapic-common (>= 0.20.0, < 2.a) 848 876 google-cloud-errors (~> 1.0) 849 - google-protobuf (3.25.4) 877 + google-protobuf (3.25.5) 850 878 googleapis-common-protos (1.4.0) 851 879 google-protobuf (~> 3.14) 852 880 googleapis-common-protos-types (~> 1.2) ··· 859 887 multi_json (~> 1.11) 860 888 os (>= 0.9, < 2.0) 861 889 signet (>= 0.16, < 2.a) 862 - gpgme (2.0.23) 890 + gpgme (2.0.24) 863 891 mini_portile2 (~> 2.7) 864 892 grape (2.0.0) 865 893 activesupport (>= 5) ··· 876 904 grape (~> 2.0) 877 905 rake (> 12) 878 906 ruby2_keywords (~> 0.0.2) 879 - grape-swagger (2.1.0) 907 + grape-swagger (2.1.1) 880 908 grape (>= 1.7, < 3.0) 881 909 rack-test (~> 2) 882 - grape-swagger-entity (0.5.4) 910 + grape-swagger-entity (0.5.5) 883 911 grape-entity (~> 1) 884 912 grape-swagger (~> 2) 885 913 grape_logging (1.8.4) ··· 891 919 faraday (~> 2.0) 892 920 graphql-client 893 921 graphlyte (1.0.0) 894 - graphql (2.3.5) 922 + graphql (2.3.17) 895 923 base64 924 + fiber-storage 896 925 graphql-client (0.23.0) 897 926 activesupport (>= 3.0) 898 927 graphql (>= 1.13.0) ··· 970 999 i18n (1.14.4) 971 1000 concurrent-ruby (~> 1.0) 972 1001 i18n_data (0.13.1) 973 - icalendar (2.10.1) 1002 + icalendar (2.10.2) 974 1003 ice_cube (~> 0.16) 975 1004 ice_cube (0.16.4) 976 1005 ice_nine (0.11.2) ··· 1028 1057 activerecord 1029 1058 kaminari-core (= 1.2.2) 1030 1059 kaminari-core (1.2.2) 1031 - kas-grpc (0.6.0) 1032 - grpc (~> 1.0) 1033 1060 knapsack (4.0.0) 1034 1061 rake 1035 1062 kramdown (2.3.2) ··· 1042 1069 recursive-open-struct (~> 1.1, >= 1.1.1) 1043 1070 rest-client (~> 2.0) 1044 1071 language_server-protocol (3.17.0.3) 1045 - launchy (2.5.0) 1046 - addressable (~> 2.7) 1047 - lefthook (1.6.18) 1072 + launchy (2.5.2) 1073 + addressable (~> 2.8) 1074 + lefthook (1.7.18) 1048 1075 letter_opener (1.10.0) 1049 1076 launchy (>= 2.2, < 4) 1050 1077 letter_opener_web (3.0.0) ··· 1249 1276 opentelemetry-api (1.2.5) 1250 1277 opentelemetry-common (0.21.0) 1251 1278 opentelemetry-api (~> 1.0) 1252 - opentelemetry-exporter-otlp (0.27.0) 1253 - google-protobuf (~> 3.14) 1279 + opentelemetry-exporter-otlp (0.28.1) 1280 + google-protobuf (>= 3.18) 1254 1281 googleapis-common-protos-types (~> 1.3) 1255 1282 opentelemetry-api (~> 1.1) 1256 1283 opentelemetry-common (~> 0.20) ··· 1266 1293 opentelemetry-api (~> 1.0) 1267 1294 opentelemetry-instrumentation-base (~> 0.22.1) 1268 1295 opentelemetry-instrumentation-rack (~> 0.21) 1269 - opentelemetry-instrumentation-action_view (0.7.0) 1296 + opentelemetry-instrumentation-action_view (0.7.2) 1270 1297 opentelemetry-api (~> 1.0) 1271 1298 opentelemetry-instrumentation-active_support (~> 0.1) 1272 1299 opentelemetry-instrumentation-base (~> 0.22.1) 1273 - opentelemetry-instrumentation-active_job (0.7.1) 1300 + opentelemetry-instrumentation-active_job (0.7.7) 1274 1301 opentelemetry-api (~> 1.0) 1275 1302 opentelemetry-instrumentation-base (~> 0.22.1) 1276 - opentelemetry-instrumentation-active_record (0.7.2) 1303 + opentelemetry-instrumentation-active_record (0.7.4) 1277 1304 opentelemetry-api (~> 1.0) 1278 1305 opentelemetry-instrumentation-base (~> 0.22.1) 1279 - opentelemetry-instrumentation-active_support (0.5.1) 1306 + opentelemetry-instrumentation-active_support (0.6.0) 1280 1307 opentelemetry-api (~> 1.0) 1281 1308 opentelemetry-instrumentation-base (~> 0.22.1) 1282 - opentelemetry-instrumentation-aws_sdk (0.5.2) 1309 + opentelemetry-instrumentation-aws_sdk (0.5.4) 1283 1310 opentelemetry-api (~> 1.0) 1284 1311 opentelemetry-instrumentation-base (~> 0.22.1) 1285 1312 opentelemetry-instrumentation-base (0.22.3) 1286 1313 opentelemetry-api (~> 1.0) 1287 1314 opentelemetry-registry (~> 0.1) 1288 - opentelemetry-instrumentation-concurrent_ruby (0.21.3) 1315 + opentelemetry-instrumentation-concurrent_ruby (0.21.4) 1289 1316 opentelemetry-api (~> 1.0) 1290 1317 opentelemetry-instrumentation-base (~> 0.22.1) 1291 - opentelemetry-instrumentation-ethon (0.21.5) 1318 + opentelemetry-instrumentation-ethon (0.21.8) 1292 1319 opentelemetry-api (~> 1.0) 1293 - opentelemetry-common (~> 0.21.0) 1294 1320 opentelemetry-instrumentation-base (~> 0.22.1) 1295 - opentelemetry-instrumentation-excon (0.22.2) 1321 + opentelemetry-instrumentation-excon (0.22.4) 1296 1322 opentelemetry-api (~> 1.0) 1297 - opentelemetry-common (~> 0.21.0) 1298 1323 opentelemetry-instrumentation-base (~> 0.22.1) 1299 - opentelemetry-instrumentation-faraday (0.24.3) 1324 + opentelemetry-instrumentation-faraday (0.24.6) 1300 1325 opentelemetry-api (~> 1.0) 1301 - opentelemetry-common (~> 0.21.0) 1302 1326 opentelemetry-instrumentation-base (~> 0.22.1) 1303 - opentelemetry-instrumentation-grape (0.1.8) 1327 + opentelemetry-instrumentation-grape (0.2.0) 1304 1328 opentelemetry-api (~> 1.0) 1305 1329 opentelemetry-instrumentation-base (~> 0.22.1) 1306 1330 opentelemetry-instrumentation-rack (~> 0.21) 1307 - opentelemetry-instrumentation-graphql (0.28.2) 1331 + opentelemetry-instrumentation-graphql (0.28.4) 1308 1332 opentelemetry-api (~> 1.0) 1309 1333 opentelemetry-instrumentation-base (~> 0.22.1) 1310 - opentelemetry-instrumentation-http (0.23.3) 1334 + opentelemetry-instrumentation-http (0.23.4) 1311 1335 opentelemetry-api (~> 1.0) 1312 1336 opentelemetry-instrumentation-base (~> 0.22.1) 1313 - opentelemetry-instrumentation-http_client (0.22.5) 1337 + opentelemetry-instrumentation-http_client (0.22.7) 1314 1338 opentelemetry-api (~> 1.0) 1315 - opentelemetry-common (~> 0.21.0) 1316 1339 opentelemetry-instrumentation-base (~> 0.22.1) 1317 - opentelemetry-instrumentation-net_http (0.22.5) 1340 + opentelemetry-instrumentation-net_http (0.22.7) 1318 1341 opentelemetry-api (~> 1.0) 1319 - opentelemetry-common (~> 0.21.0) 1320 1342 opentelemetry-instrumentation-base (~> 0.22.1) 1321 - opentelemetry-instrumentation-pg (0.27.3) 1343 + opentelemetry-instrumentation-pg (0.28.0) 1322 1344 opentelemetry-api (~> 1.0) 1323 1345 opentelemetry-helpers-sql-obfuscation 1324 1346 opentelemetry-instrumentation-base (~> 0.22.1) 1325 - opentelemetry-instrumentation-rack (0.24.4) 1347 + opentelemetry-instrumentation-rack (0.24.6) 1326 1348 opentelemetry-api (~> 1.0) 1327 - opentelemetry-common (~> 0.21.0) 1328 1349 opentelemetry-instrumentation-base (~> 0.22.1) 1329 - opentelemetry-instrumentation-rails (0.30.2) 1350 + opentelemetry-instrumentation-rails (0.31.2) 1330 1351 opentelemetry-api (~> 1.0) 1331 1352 opentelemetry-instrumentation-action_mailer (~> 0.1.0) 1332 1353 opentelemetry-instrumentation-action_pack (~> 0.9.0) 1333 1354 opentelemetry-instrumentation-action_view (~> 0.7.0) 1334 1355 opentelemetry-instrumentation-active_job (~> 0.7.0) 1335 1356 opentelemetry-instrumentation-active_record (~> 0.7.0) 1336 - opentelemetry-instrumentation-active_support (~> 0.5.0) 1357 + opentelemetry-instrumentation-active_support (~> 0.6.0) 1337 1358 opentelemetry-instrumentation-base (~> 0.22.1) 1338 1359 opentelemetry-instrumentation-rake (0.2.2) 1339 1360 opentelemetry-api (~> 1.0) 1340 1361 opentelemetry-instrumentation-base (~> 0.22.1) 1341 - opentelemetry-instrumentation-redis (0.25.5) 1362 + opentelemetry-instrumentation-redis (0.25.7) 1342 1363 opentelemetry-api (~> 1.0) 1343 - opentelemetry-common (~> 0.21.0) 1344 1364 opentelemetry-instrumentation-base (~> 0.22.1) 1345 - opentelemetry-instrumentation-sidekiq (0.25.4) 1365 + opentelemetry-instrumentation-sidekiq (0.25.7) 1346 1366 opentelemetry-api (~> 1.0) 1347 - opentelemetry-common (~> 0.21.0) 1348 1367 opentelemetry-instrumentation-base (~> 0.22.1) 1349 1368 opentelemetry-registry (0.3.0) 1350 1369 opentelemetry-api (~> 1.1) 1351 - opentelemetry-sdk (1.4.1) 1370 + opentelemetry-sdk (1.5.0) 1352 1371 opentelemetry-api (~> 1.1) 1353 1372 opentelemetry-common (~> 0.20) 1354 1373 opentelemetry-registry (~> 0.2) ··· 1382 1401 diff-lcs (~> 1.5) 1383 1402 expgen (~> 0.1) 1384 1403 rainbow (~> 3.1.1) 1404 + paper_trail (15.1.0) 1405 + activerecord (>= 6.1) 1406 + request_store (~> 1.4) 1385 1407 parallel (1.24.0) 1386 1408 parser (3.3.3.0) 1387 1409 ast (~> 2.4.1) ··· 1407 1429 prime (0.1.2) 1408 1430 forwardable 1409 1431 singleton 1410 - prism (0.29.0) 1432 + prism (1.1.0) 1411 1433 proc_to_ast (0.1.0) 1412 1434 coderay 1413 1435 parser ··· 1428 1450 pry (>= 0.13.0) 1429 1451 tty-markdown 1430 1452 tty-prompt 1431 - public_suffix (5.0.0) 1432 - puma (6.4.0) 1453 + public_suffix (6.0.1) 1454 + puma (6.4.3) 1433 1455 nio4r (~> 2.0) 1434 1456 pyu-ruby-sasl (0.0.3.3) 1435 1457 raabro (1.4.0) ··· 1510 1532 json 1511 1533 recursive-open-struct (1.1.3) 1512 1534 redcarpet (3.6.0) 1513 - redis (5.2.0) 1535 + redis (5.3.0) 1514 1536 redis-client (>= 0.22.0) 1515 1537 redis-actionpack (5.4.0) 1516 1538 actionpack (>= 5, < 8) ··· 1518 1540 redis-store (>= 1.1.0, < 2) 1519 1541 redis-client (0.22.2) 1520 1542 connection_pool 1521 - redis-cluster-client (0.8.2) 1543 + redis-cluster-client (0.11.0) 1522 1544 redis-client (~> 0.22) 1523 - redis-clustering (5.2.0) 1524 - redis (= 5.2.0) 1525 - redis-cluster-client (>= 0.7.11) 1545 + redis-clustering (5.3.0) 1546 + redis (= 5.3.0) 1547 + redis-cluster-client (>= 0.10.0) 1526 1548 redis-namespace (1.11.0) 1527 1549 redis (>= 4) 1528 1550 redis-rack (3.0.0) ··· 1558 1580 chunky_png (~> 1.0) 1559 1581 rqrcode_core (~> 1.0) 1560 1582 rqrcode_core (1.2.0) 1561 - rspec (3.12.0) 1562 - rspec-core (~> 3.12.0) 1563 - rspec-expectations (~> 3.12.0) 1564 - rspec-mocks (~> 3.12.0) 1583 + rspec (3.13.0) 1584 + rspec-core (~> 3.13.0) 1585 + rspec-expectations (~> 3.13.0) 1586 + rspec-mocks (~> 3.13.0) 1565 1587 rspec-benchmark (0.6.0) 1566 1588 benchmark-malloc (~> 0.2) 1567 1589 benchmark-perf (~> 0.6) 1568 1590 benchmark-trend (~> 0.4) 1569 1591 rspec (>= 3.0) 1570 - rspec-core (3.12.2) 1571 - rspec-support (~> 3.12.0) 1572 - rspec-expectations (3.12.3) 1592 + rspec-core (3.13.1) 1593 + rspec-support (~> 3.13.0) 1594 + rspec-expectations (3.13.3) 1573 1595 diff-lcs (>= 1.2.0, < 2.0) 1574 - rspec-support (~> 3.12.0) 1575 - rspec-mocks (3.12.6) 1596 + rspec-support (~> 3.13.0) 1597 + rspec-mocks (3.13.2) 1576 1598 diff-lcs (>= 1.2.0, < 2.0) 1577 - rspec-support (~> 3.12.0) 1599 + rspec-support (~> 3.13.0) 1578 1600 rspec-parameterized (1.0.2) 1579 1601 rspec-parameterized-core (< 2) 1580 1602 rspec-parameterized-table_syntax (< 2) ··· 1586 1608 rspec-parameterized-table_syntax (1.0.0) 1587 1609 binding_of_caller 1588 1610 rspec-parameterized-core (< 2) 1589 - rspec-rails (6.1.1) 1590 - actionpack (>= 6.1) 1591 - activesupport (>= 6.1) 1592 - railties (>= 6.1) 1593 - rspec-core (~> 3.12) 1594 - rspec-expectations (~> 3.12) 1595 - rspec-mocks (~> 3.12) 1596 - rspec-support (~> 3.12) 1611 + rspec-rails (7.0.1) 1612 + actionpack (>= 7.0) 1613 + activesupport (>= 7.0) 1614 + railties (>= 7.0) 1615 + rspec-core (~> 3.13) 1616 + rspec-expectations (~> 3.13) 1617 + rspec-mocks (~> 3.13) 1618 + rspec-support (~> 3.13) 1597 1619 rspec-retry (0.6.2) 1598 1620 rspec-core (> 3.3) 1599 - rspec-support (3.12.0) 1621 + rspec-support (3.13.1) 1600 1622 rspec_junit_formatter (0.6.0) 1601 1623 rspec-core (>= 2, < 4, != 2.12.0) 1602 1624 rspec_profiling (0.0.9) ··· 1637 1659 ruby-fogbugz (0.3.0) 1638 1660 crack (~> 0.4) 1639 1661 multipart-post (~> 2.0) 1640 - ruby-lsp (0.17.4) 1662 + ruby-lsp (0.19.1) 1641 1663 language_server-protocol (~> 3.17.0) 1642 - prism (>= 0.29.0, < 0.31) 1664 + prism (>= 1.1, < 2.0) 1643 1665 rbs (>= 3, < 4) 1644 1666 sorbet-runtime (>= 0.5.10782) 1645 - ruby-lsp-rails (0.3.8) 1646 - ruby-lsp (>= 0.17.2, < 0.18.0) 1647 - ruby-lsp-rspec (0.1.12) 1648 - ruby-lsp (~> 0.17.0) 1667 + ruby-lsp-rails (0.3.17) 1668 + ruby-lsp (>= 0.19.0, < 0.20.0) 1669 + ruby-lsp-rspec (0.1.15) 1670 + ruby-lsp (~> 0.19.0) 1649 1671 ruby-magic (0.6.0) 1650 1672 mini_portile2 (~> 2.8) 1651 1673 ruby-openai (3.7.0) ··· 1690 1712 pastel (~> 0.8.0) 1691 1713 thor (~> 1.3) 1692 1714 tty-command (~> 0.10.1) 1693 - sentry-rails (5.18.2) 1715 + sentry-rails (5.19.0) 1694 1716 railties (>= 5.0) 1695 - sentry-ruby (~> 5.18.2) 1696 - sentry-ruby (5.18.2) 1717 + sentry-ruby (~> 5.19.0) 1718 + sentry-ruby (5.19.0) 1697 1719 bigdecimal 1698 1720 concurrent-ruby (~> 1.0, >= 1.0.2) 1699 - sentry-sidekiq (5.18.2) 1700 - sentry-ruby (~> 5.18.2) 1721 + sentry-sidekiq (5.19.0) 1722 + sentry-ruby (~> 5.19.0) 1701 1723 sidekiq (>= 3.0) 1702 1724 sexp_processor (4.17.1) 1703 1725 shellany (0.0.1) 1704 1726 shoulda-matchers (5.1.0) 1705 1727 activesupport (>= 5.2.0) 1706 - sidekiq (7.1.6) 1707 - concurrent-ruby (< 2) 1708 - connection_pool (>= 2.3.0) 1709 - rack (>= 2.2.4) 1710 - redis-client (>= 0.14.0) 1711 1728 sidekiq-cron (1.12.0) 1712 1729 fugit (~> 1.8) 1713 1730 globalid (>= 1.0.1) ··· 1805 1822 unicode-display_width (>= 1.1.1, < 3) 1806 1823 terser (1.0.2) 1807 1824 execjs (>= 0.3.0, < 3) 1808 - test-prof (1.3.3.1) 1825 + test-prof (1.4.0) 1809 1826 test_file_finder (0.3.1) 1810 1827 faraday (>= 1.0, < 3.0, != 2.0.0) 1811 1828 text (1.3.1) ··· 1887 1904 activesupport (>= 3.0) 1888 1905 version_gem (1.1.0) 1889 1906 version_sorter (2.3.0) 1890 - view_component (3.13.0) 1907 + view_component (3.14.0) 1891 1908 activesupport (>= 5.2.0, < 8.0) 1892 1909 concurrent-ruby (~> 1.0) 1893 1910 method_source (~> 1.0) ··· 1898 1915 vite_rails (3.0.17) 1899 1916 railties (>= 5.1, < 8) 1900 1917 vite_ruby (~> 3.0, >= 3.2.2) 1901 - vite_ruby (3.7.0) 1918 + vite_ruby (3.8.2) 1902 1919 dry-cli (>= 0.7, < 2) 1903 1920 rack-proxy (~> 0.6, >= 0.6.1) 1904 1921 zeitwerk (~> 2.2) ··· 1966 1983 attr_encrypted (~> 3.2.4)! 1967 1984 awesome_print 1968 1985 aws-sdk-cloudformation (~> 1) 1969 - aws-sdk-core (~> 3.201.0) 1970 - aws-sdk-s3 (~> 1.157.0) 1986 + aws-sdk-core (~> 3.206.0) 1987 + aws-sdk-s3 (~> 1.163.0) 1971 1988 axe-core-rspec (~> 4.9.0) 1972 1989 babosa (~> 2.0) 1973 1990 base32 (~> 0.3.0) ··· 2003 2020 declarative_policy (~> 1.1.0) 2004 2021 deprecation_toolkit (~> 1.5.1) 2005 2022 derailed_benchmarks 2006 - devfile (~> 0.0.26.pre.alpha1) 2023 + devfile (~> 0.0.28.pre.alpha1) 2007 2024 device_detector 2008 2025 devise (~> 4.9.3) 2009 2026 devise-pbkdf2-encryptable (~> 0.0.0)! ··· 2030 2047 faraday_middleware-aws-sigv4 (~> 1.0.1) 2031 2048 fast_blank (~> 1.0.1) 2032 2049 ffaker (~> 2.23) 2050 + ffi (~> 1.17) 2033 2051 flipper (~> 0.26.2) 2034 2052 flipper-active_record (~> 0.26.2) 2035 2053 flipper-active_support_cache_store (~> 0.26.2) 2036 2054 fog-aliyun (~> 0.4) 2037 - fog-aws (~> 3.18) 2055 + fog-aws (~> 3.26) 2038 2056 fog-core (= 2.1.0) 2039 2057 fog-google (~> 1.24.1) 2040 2058 fog-local (~> 0.8) ··· 2042 2060 fuubar (~> 2.2.0) 2043 2061 gdk-toogle (~> 0.9, >= 0.9.5) 2044 2062 gettext (~> 3.4, >= 3.4.9) 2045 - gettext_i18n_rails (~> 1.12.0) 2046 - gitaly (~> 17.2.0) 2063 + gettext_i18n_rails (~> 1.13.0) 2064 + gitaly (~> 17.4.0.pre.rc1) 2047 2065 gitlab-backup-cli! 2048 2066 gitlab-chronic (~> 0.10.5) 2049 2067 gitlab-dangerfiles (~> 4.8.0) 2050 2068 gitlab-duo-workflow-service-client (~> 0.1)! 2051 2069 gitlab-experiment (~> 0.9.1) 2052 - gitlab-fog-azure-rm (~> 2.0.1) 2053 - gitlab-glfm-markdown (~> 0.0.17) 2070 + gitlab-fog-azure-rm (~> 2.1.0) 2071 + gitlab-glfm-markdown (~> 0.0.21) 2054 2072 gitlab-housekeeper! 2055 2073 gitlab-http! 2074 + gitlab-kas-grpc (~> 17.4.0.pre.rc1) 2056 2075 gitlab-labkit (~> 0.36.0) 2057 2076 gitlab-license (~> 2.5) 2058 2077 gitlab-mail_room (~> 0.0.24) ··· 2064 2083 gitlab-schema-validation! 2065 2084 gitlab-sdk (~> 0.3.0) 2066 2085 gitlab-secret_detection! 2086 + gitlab-security_report_schemas (= 0.1.2.min15.0.0.max15.2.1) 2067 2087 gitlab-sidekiq-fetcher! 2068 2088 gitlab-styles (~> 12.0.1) 2069 2089 gitlab-topology-service-client (~> 0.1)! 2070 2090 gitlab-utils! 2071 2091 gitlab_chronic_duration (~> 0.12) 2072 2092 gitlab_omniauth-ldap (~> 2.2.0) 2073 - gitlab_quality-test_tooling (~> 1.33.0) 2093 + gitlab_quality-test_tooling (~> 1.39.0) 2074 2094 gon (~> 6.4.0) 2075 2095 google-apis-androidpublisher_v3 (~> 0.34.0) 2076 2096 google-apis-cloudbilling_v1 (~> 0.21.0) ··· 2088 2108 google-cloud-storage (~> 1.45.0) 2089 2109 google-protobuf (~> 3.25, >= 3.25.3) 2090 2110 googleauth (~> 1.8.1) 2091 - gpgme (~> 2.0.23) 2111 + gpgme (~> 2.0.24) 2092 2112 grape (~> 2.0.0) 2093 2113 grape-entity (~> 1.0.1) 2094 2114 grape-path-helpers (~> 2.0.1) ··· 2098 2118 graphiql-rails (~> 1.10) 2099 2119 graphlient (~> 0.8.0) 2100 2120 graphlyte (~> 1.0.0) 2101 - graphql (~> 2.3.5) 2121 + graphql (~> 2.3.14) 2102 2122 graphql-docs (~> 5.0.0) 2103 2123 grpc (= 1.63.0) 2104 2124 gssapi (~> 1.3.1) ··· 2110 2130 html-pipeline (~> 2.14.3) 2111 2131 html2text 2112 2132 httparty (~> 0.21.0) 2133 + i18n_data (~> 0.13.1) 2113 2134 icalendar (~> 2.10.1) 2114 2135 influxdb-client (~> 3.1) 2115 2136 invisible_captcha (~> 2.1.0) ··· 2123 2144 jsonb_accessor (~> 1.3.10) 2124 2145 jwt (~> 2.5) 2125 2146 kaminari (~> 1.2.2) 2126 - kas-grpc (~> 0.6.0) 2127 2147 knapsack (~> 4.0.0) 2128 2148 kramdown (~> 2.3.1) 2129 2149 kubeclient (~> 4.11.0) 2130 - lefthook (~> 1.6.8) 2150 + lefthook (~> 1.7.0) 2131 2151 letter_opener_web (~> 3.0.0) 2132 2152 license_finder (~> 7.0) 2133 2153 licensee (~> 9.16) ··· 2200 2220 org-ruby (~> 0.9.12) 2201 2221 os (~> 1.1, >= 1.1.4) 2202 2222 pact (~> 1.64) 2223 + paper_trail (~> 15.0) 2203 2224 parallel (~> 1.19) 2204 2225 parser (= 3.3.3.0) 2205 2226 parslet (~> 1.8) ··· 2212 2233 pry-byebug 2213 2234 pry-rails (~> 0.3.9) 2214 2235 pry-shell (~> 0.6.4) 2215 - puma (= 6.4.0) 2236 + puma (= 6.4.3) 2216 2237 rack (~> 2.2.9) 2217 2238 rack-attack (~> 6.7.0) 2218 2239 rack-cors (~> 2.0.1) ··· 2226 2247 rbtrace (~> 0.4) 2227 2248 re2 (= 2.7.0) 2228 2249 recaptcha (~> 5.12) 2229 - redis (~> 5.2.0) 2250 + redis (~> 5.3.0) 2230 2251 redis-actionpack (~> 5.4.0) 2231 - redis-clustering (~> 5.2.0) 2252 + redis-clustering (~> 5.3.0) 2232 2253 redis-namespace (~> 1.11.0) 2233 2254 request_store (~> 1.5.1) 2234 2255 responders (~> 3.0) ··· 2238 2259 rqrcode (~> 2.2) 2239 2260 rspec-benchmark (~> 0.6.0) 2240 2261 rspec-parameterized (~> 1.0, >= 1.0.2) 2241 - rspec-rails (~> 6.1.1) 2262 + rspec-rails (~> 7.0.0) 2242 2263 rspec-retry (~> 0.6.2) 2243 2264 rspec_junit_formatter 2244 2265 rspec_profiling (~> 0.0.9) 2245 2266 rubocop 2246 2267 ruby-fogbugz (~> 0.3.0) 2247 - ruby-lsp (~> 0.17.0) 2268 + ruby-lsp (~> 0.19.0) 2248 2269 ruby-lsp-rails (~> 0.3.6) 2249 2270 ruby-lsp-rspec (~> 0.1.10) 2250 2271 ruby-magic (~> 0.6) ··· 2258 2279 seed-fu (~> 2.3.7) 2259 2280 selenium-webdriver (~> 4.21, >= 4.21.1) 2260 2281 semver_dialects (~> 3.0) 2261 - sentry-rails (~> 5.18.0) 2262 - sentry-ruby (~> 5.18.0) 2263 - sentry-sidekiq (~> 5.18.0) 2282 + sentry-rails (~> 5.19.0) 2283 + sentry-ruby (~> 5.19.0) 2284 + sentry-sidekiq (~> 5.19.0) 2264 2285 shoulda-matchers (~> 5.1.0) 2265 - sidekiq (~> 7.1.6) 2286 + sidekiq! 2266 2287 sidekiq-cron (~> 1.12.0) 2267 2288 sigdump (~> 0.2.4) 2268 2289 simple_po_parser (~> 1.1.6) ··· 2285 2306 tanuki_emoji (~> 0.9) 2286 2307 telesignenterprise (~> 2.2) 2287 2308 terser (= 1.0.2) 2288 - test-prof (~> 1.3.3) 2309 + test-prof (~> 1.4.0) 2289 2310 test_file_finder (~> 0.3.1) 2290 2311 thrift (>= 0.16.0) 2291 2312 timfel-krb5-auth (~> 0.8) ··· 2298 2319 valid_email (~> 0.1) 2299 2320 validates_hostname (~> 1.0.13) 2300 2321 version_sorter (~> 2.3) 2301 - view_component (~> 3.13.0) 2322 + view_component (~> 3.14.0) 2302 2323 vite_rails (~> 3.0.17) 2303 - vite_ruby (~> 3.7.0) 2324 + vite_ruby (~> 3.8.0) 2304 2325 vmstat (~> 2.3.0) 2305 2326 warning (~> 1.3.0) 2306 2327 webauthn (~> 3.0) ··· 2310 2331 yajl-ruby (~> 1.4.3) 2311 2332 2312 2333 BUNDLED WITH 2313 - 2.5.22 2334 + 2.5.11
+183 -162
pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix
··· 155 155 }; 156 156 addressable = { 157 157 dependencies = ["public_suffix"]; 158 - groups = ["danger" "default" "development" "test"]; 158 + groups = ["danger" "default" "development" "monorepo" "test"]; 159 159 platforms = []; 160 160 source = { 161 161 remotes = ["https://rubygems.org"]; 162 - sha256 = "1ypdmpdn20hxp5vwxz3zc04r5xcwqc25qszdlg41h8ghdqbllwmw"; 162 + sha256 = "0cl2qpvwiffym62z991ynks7imsm87qmgxf0yfsmlwzkgi9qcaa6"; 163 163 type = "gem"; 164 164 }; 165 - version = "2.8.1"; 165 + version = "2.8.7"; 166 166 }; 167 167 aes_key_wrap = { 168 168 groups = ["default"]; ··· 253 253 platforms = []; 254 254 source = { 255 255 remotes = ["https://rubygems.org"]; 256 - sha256 = "11z3vnd8vh3ny1vx69bjrbck5b2g8zsbj94npyadpn7fdp8y3ldv"; 256 + sha256 = "1wyxgwmnz9bw377r3lba26b090hbsq9qnbw8575a1prpy83qh82j"; 257 257 type = "gem"; 258 258 }; 259 - version = "2.0.18"; 259 + version = "2.0.23"; 260 260 }; 261 261 asciidoctor-include-ext = { 262 262 dependencies = ["asciidoctor"]; ··· 400 400 platforms = []; 401 401 source = { 402 402 remotes = ["https://rubygems.org"]; 403 - sha256 = "0b7qc3pfhiv052fgw8dj4fj7fwm9rp7mc627ax2nkq5zbbbqs6sz"; 403 + sha256 = "1w1cqsh59c417359sj07wj5dkg0qlx5adz1m6r9knj6ax06z9zch"; 404 404 type = "gem"; 405 405 }; 406 - version = "3.201.4"; 406 + version = "3.206.0"; 407 407 }; 408 408 aws-sdk-kms = { 409 409 dependencies = ["aws-sdk-core" "aws-sigv4"]; ··· 422 422 platforms = []; 423 423 source = { 424 424 remotes = ["https://rubygems.org"]; 425 - sha256 = "1479h0jpjfkyj26h9hv8d6q8b9iw7v1x5yd0yk6af477d2icgq71"; 425 + sha256 = "07nbpffq5ih9ig7lx3721a99as9agnpd99r15s578wwsqrkkssnl"; 426 426 type = "gem"; 427 427 }; 428 - version = "1.157.0"; 428 + version = "1.163.0"; 429 429 }; 430 430 aws-sigv4 = { 431 431 dependencies = ["aws-eventstream"]; ··· 433 433 platforms = []; 434 434 source = { 435 435 remotes = ["https://rubygems.org"]; 436 - sha256 = "1g3w27wzjy4si6kp49w10as6ml6g6zl3xrfqs5ikpfciidv9kpc4"; 436 + sha256 = "0yf396fxashbqn0drbnvd9srxfg7w06v70q8kqpzi04zqchf6lvp"; 437 437 type = "gem"; 438 438 }; 439 - version = "1.8.0"; 439 + version = "1.9.1"; 440 440 }; 441 441 axe-core-api = { 442 442 dependencies = ["dumb_delegator" "virtus"]; ··· 1233 1233 platforms = []; 1234 1234 source = { 1235 1235 remotes = ["https://rubygems.org"]; 1236 - sha256 = "1r69vrhh72j6fq41ii99n4ncf0kgb82nhb7j8ia1pr94m4prc4i0"; 1236 + sha256 = "0yyggbmai6jhrndhs154vd6manng9fig7jak1x875l1iz64p1hjr"; 1237 1237 type = "gem"; 1238 1238 }; 1239 - version = "0.0.26.pre.alpha1"; 1239 + version = "0.0.28.pre.alpha1"; 1240 1240 }; 1241 1241 device_detector = { 1242 1242 groups = ["default"]; ··· 1716 1716 platforms = []; 1717 1717 source = { 1718 1718 remotes = ["https://rubygems.org"]; 1719 - sha256 = "104s7n9505488p923cs0pl3jlgn4naam28clkm2885hrysizpjbb"; 1719 + sha256 = "00pd34pnfmij5iw1xv73f6d68zng63wyjhmk7dyi010kmb4x5sp6"; 1720 1720 type = "gem"; 1721 1721 }; 1722 - version = "2.10.1"; 1722 + version = "2.11.0"; 1723 1723 }; 1724 1724 faraday-follow_redirects = { 1725 1725 dependencies = ["faraday"]; ··· 1840 1840 version = "2.23.0"; 1841 1841 }; 1842 1842 ffi = { 1843 - groups = ["default" "development" "kerberos" "puma" "test"]; 1843 + groups = ["default" "development" "kerberos" "test"]; 1844 1844 platforms = []; 1845 1845 source = { 1846 1846 remotes = ["https://rubygems.org"]; 1847 - sha256 = "1862ydmclzy1a0cjbvm8dz7847d9rch495ib0zb64y84d3xd4bkg"; 1847 + sha256 = "07139870npj59jnl8vmk39ja3gdk3fb5z9vc0lf32y2h891hwqsi"; 1848 1848 type = "gem"; 1849 1849 }; 1850 - version = "1.15.5"; 1850 + version = "1.17.0"; 1851 1851 }; 1852 1852 ffi-compiler = { 1853 1853 dependencies = ["ffi" "rake"]; ··· 1957 1957 version = "0.4.0"; 1958 1958 }; 1959 1959 fog-aws = { 1960 - dependencies = ["fog-core" "fog-json" "fog-xml"]; 1960 + dependencies = ["base64" "fog-core" "fog-json" "fog-xml"]; 1961 1961 groups = ["default"]; 1962 1962 platforms = []; 1963 1963 source = { 1964 1964 remotes = ["https://rubygems.org"]; 1965 - sha256 = "0127b2jx7lj82h96sm0rnmlgqzgiz5013m6z27vxnkmwrw78iigl"; 1965 + sha256 = "1f67gjmvpcdql5mh4z9z0i03snwx80q7y37nyp1bgryb61gic4vm"; 1966 1966 type = "gem"; 1967 1967 }; 1968 - version = "3.18.0"; 1968 + version = "3.27.0"; 1969 1969 }; 1970 1970 fog-core = { 1971 1971 dependencies = ["builder" "excon" "formatador" "mime-types"]; ··· 2134 2134 platforms = []; 2135 2135 source = { 2136 2136 remotes = ["https://rubygems.org"]; 2137 - sha256 = "1gn1mzqx49i5zfmal499piij457r6jn82cz8w53wxqm965vq3i3a"; 2137 + sha256 = "1rlfmhhampvkzir32yqriry6rc6w66l36kb95lmfav4bjafp796l"; 2138 2138 type = "gem"; 2139 2139 }; 2140 - version = "1.12.0"; 2140 + version = "1.13.0"; 2141 2141 }; 2142 2142 git = { 2143 2143 dependencies = ["addressable" "rchardet"]; ··· 2156 2156 platforms = []; 2157 2157 source = { 2158 2158 remotes = ["https://rubygems.org"]; 2159 - sha256 = "0rg8rkwjbm51kvnbmkmy6dyf7krr6iaf8hxvxn7jzfs37j4fivj8"; 2159 + sha256 = "1czp3492kpvpbxwgb7bpdlwmnldr64qvw5z0sa6yf6w7fzx9vikj"; 2160 2160 type = "gem"; 2161 2161 }; 2162 - version = "17.2.0"; 2162 + version = "17.4.0.pre.rc1"; 2163 2163 }; 2164 2164 gitlab = { 2165 2165 dependencies = ["httparty" "terminal-table"]; ··· 2173 2173 version = "4.19.0"; 2174 2174 }; 2175 2175 gitlab-backup-cli = { 2176 - dependencies = ["activesupport" "google-cloud-storage_transfer" "googleauth" "rainbow" "thor"]; 2176 + dependencies = ["activesupport" "addressable" "concurrent-ruby" "faraday" "google-cloud-storage_transfer" "google-protobuf" "googleauth" "grpc" "json" "jwt" "logger" "minitest" "parallel" "rack" "rainbow" "rexml" "thor"]; 2177 2177 groups = ["default"]; 2178 2178 platforms = []; 2179 2179 source = { ··· 2231 2231 platforms = []; 2232 2232 source = { 2233 2233 remotes = ["https://rubygems.org"]; 2234 - sha256 = "09brm889i4xmr2ba8jyqk91yhya13qfa0kn16p3ipilcm6gh9k31"; 2234 + sha256 = "1p8bmbkfc0dkq663vxm9nx7kaajnqa5in1mcz0c8z31a86gcvgpm"; 2235 2235 type = "gem"; 2236 2236 }; 2237 - version = "2.0.1"; 2237 + version = "2.1.0"; 2238 2238 }; 2239 2239 gitlab-glfm-markdown = { 2240 2240 dependencies = ["rb_sys"]; ··· 2242 2242 platforms = []; 2243 2243 source = { 2244 2244 remotes = ["https://rubygems.org"]; 2245 - sha256 = "0sdaq9av30761h9x7kjwmwri22265x1dnpq24law6w9sqmgm8ygk"; 2245 + sha256 = "0h1vsqblhy9bqw01nsyylmhz0b50n17r7p69c2s757ahpk0hm5nb"; 2246 2246 type = "gem"; 2247 2247 }; 2248 - version = "0.0.17"; 2248 + version = "0.0.21"; 2249 2249 }; 2250 2250 gitlab-housekeeper = { 2251 2251 dependencies = ["activesupport" "awesome_print" "httparty" "rubocop"]; ··· 2267 2267 }; 2268 2268 version = "0.1.0"; 2269 2269 }; 2270 + gitlab-kas-grpc = { 2271 + dependencies = ["grpc"]; 2272 + groups = ["default"]; 2273 + platforms = []; 2274 + source = { 2275 + remotes = ["https://rubygems.org"]; 2276 + sha256 = "1jljmgkabr02645nd7f0zf936k4q2j3yfhap445q66z7lcsr8rrp"; 2277 + type = "gem"; 2278 + }; 2279 + version = "17.4.0.pre.rc1"; 2280 + }; 2270 2281 gitlab-labkit = { 2271 2282 dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing" "pg_query" "redis"]; 2272 2283 groups = ["default"]; ··· 2380 2391 }; 2381 2392 version = "0.1.0"; 2382 2393 }; 2394 + gitlab-security_report_schemas = { 2395 + dependencies = ["activesupport" "json_schemer"]; 2396 + groups = ["default"]; 2397 + platforms = []; 2398 + source = { 2399 + remotes = ["https://rubygems.org"]; 2400 + sha256 = "1bl0qrmb6xci719zxnaizja2pf0wabzi91b49y0immf9gr43f01h"; 2401 + type = "gem"; 2402 + }; 2403 + version = "0.1.2.min15.0.0.max15.2.1"; 2404 + }; 2383 2405 gitlab-sidekiq-fetcher = { 2384 2406 dependencies = ["json" "sidekiq"]; 2385 2407 groups = ["default"]; ··· 2444 2466 version = "2.2.0"; 2445 2467 }; 2446 2468 gitlab_quality-test_tooling = { 2447 - dependencies = ["activesupport" "amatch" "gitlab" "http" "influxdb-client" "nokogiri" "parallel" "rainbow" "rspec-parameterized" "table_print" "zeitwerk"]; 2469 + dependencies = ["activesupport" "amatch" "fog-google" "gitlab" "http" "influxdb-client" "nokogiri" "parallel" "rainbow" "rspec-parameterized" "table_print" "zeitwerk"]; 2448 2470 groups = ["test"]; 2449 2471 platforms = []; 2450 2472 source = { 2451 2473 remotes = ["https://rubygems.org"]; 2452 - sha256 = "0dfsv3aqfmq318dirln6nlmxx8n1z4ncy03w2yi965nm2rwjf58y"; 2474 + sha256 = "0dgalsl4452fgbzkg8frgyyas6rp3zac055iihsv3db9bi4vhg1v"; 2453 2475 type = "gem"; 2454 2476 }; 2455 - version = "1.33.0"; 2477 + version = "1.39.0"; 2456 2478 }; 2457 2479 globalid = { 2458 2480 dependencies = ["activesupport"]; ··· 2766 2788 platforms = []; 2767 2789 source = { 2768 2790 remotes = ["https://rubygems.org"]; 2769 - sha256 = "03pg19m15aqw33q6an777735x4x8643xg17rb3jr9j4rkp599id1"; 2791 + sha256 = "0fanhdf3vzghma51w1hqpp8s585mwzxgqkwvxj5is4q9j0pgwcs3"; 2770 2792 type = "gem"; 2771 2793 }; 2772 - version = "3.25.4"; 2794 + version = "3.25.5"; 2773 2795 }; 2774 2796 googleapis-common-protos = { 2775 2797 dependencies = ["google-protobuf" "googleapis-common-protos-types" "grpc"]; ··· 2810 2832 platforms = []; 2811 2833 source = { 2812 2834 remotes = ["https://rubygems.org"]; 2813 - sha256 = "010wr6nnifi952bx4v5c49q25yx1g8lhib5wiv2sg7bip3yvlyy8"; 2835 + sha256 = "0r1vmql7w7ka5xzj1aqf8pk2a4sv0znwj2zkg1fgvd5b89qcvv2k"; 2814 2836 type = "gem"; 2815 2837 }; 2816 - version = "2.0.23"; 2838 + version = "2.0.24"; 2817 2839 }; 2818 2840 grape = { 2819 2841 dependencies = ["activesupport" "builder" "dry-types" "mustermann-grape" "rack" "rack-accept"]; ··· 2854 2876 platforms = []; 2855 2877 source = { 2856 2878 remotes = ["https://rubygems.org"]; 2857 - sha256 = "07i1rl07ra81j4zhz7i8f34ja4dgaksdp5rjgmznk332040k2jxn"; 2879 + sha256 = "079wa3bn9drp9gysxfyjpvcxlazj1ssylv2nqm8aqv5f3nx8jkgm"; 2858 2880 type = "gem"; 2859 2881 }; 2860 - version = "2.1.0"; 2882 + version = "2.1.1"; 2861 2883 }; 2862 2884 grape-swagger-entity = { 2863 2885 dependencies = ["grape-entity" "grape-swagger"]; ··· 2865 2887 platforms = []; 2866 2888 source = { 2867 2889 remotes = ["https://rubygems.org"]; 2868 - sha256 = "0wdmkdq907swkf5x8vgj4i166mqh7nnqp612x7768g2jwr6n9h9l"; 2890 + sha256 = "1rpcsyzagcmd6pjixvms7mq0nc0aky53aw9mb9vmc6jbjqlfp852"; 2869 2891 type = "gem"; 2870 2892 }; 2871 - version = "0.5.4"; 2893 + version = "0.5.5"; 2872 2894 }; 2873 2895 grape_logging = { 2874 2896 dependencies = ["grape" "rack"]; ··· 2914 2936 version = "1.0.0"; 2915 2937 }; 2916 2938 graphql = { 2917 - dependencies = ["base64"]; 2939 + dependencies = ["base64" "fiber-storage"]; 2918 2940 groups = ["default" "development" "test"]; 2919 2941 platforms = []; 2920 2942 source = { 2921 2943 remotes = ["https://rubygems.org"]; 2922 - sha256 = "1w8ahq2sry3hw2p7lmq4sd9ybkky4qr1dn634h6nchb5z0sphdlw"; 2944 + sha256 = "1qsljlb2fm8qmd8169ijyrnfixd63jcpy7w222bws1xbz1dna0sy"; 2923 2945 type = "gem"; 2924 2946 }; 2925 - version = "2.3.5"; 2947 + version = "2.3.17"; 2926 2948 }; 2927 2949 graphql-client = { 2928 2950 dependencies = ["activesupport" "graphql"]; ··· 3228 3250 platforms = []; 3229 3251 source = { 3230 3252 remotes = ["https://rubygems.org"]; 3231 - sha256 = "03ki7wm2iqr3dv7mgrxv2b8vbh42c7yv55dc33a077n8jnxhhc8z"; 3253 + sha256 = "022nal50cxz0y3ylbgjndqf97wbhh6knmjyq43r6mb8r8b5cs3np"; 3232 3254 type = "gem"; 3233 3255 }; 3234 - version = "2.10.1"; 3256 + version = "2.10.2"; 3235 3257 }; 3236 3258 ice_cube = { 3237 3259 groups = ["default"]; ··· 3485 3507 }; 3486 3508 version = "1.2.2"; 3487 3509 }; 3488 - kas-grpc = { 3489 - dependencies = ["grpc"]; 3490 - groups = ["default"]; 3491 - platforms = []; 3492 - source = { 3493 - remotes = ["https://rubygems.org"]; 3494 - sha256 = "0ydgam2c0c43wpzziz3hxif2xwj8nsdniqd4dilxal2xyi63dxs3"; 3495 - type = "gem"; 3496 - }; 3497 - version = "0.6.0"; 3498 - }; 3499 3510 knapsack = { 3500 3511 dependencies = ["rake"]; 3501 3512 groups = ["development" "test"]; ··· 3556 3567 platforms = []; 3557 3568 source = { 3558 3569 remotes = ["https://rubygems.org"]; 3559 - sha256 = "1xdyvr5j0gjj7b10kgvh8ylxnwk3wx19my42wqn9h82r4p246hlm"; 3570 + sha256 = "06r43899384das2bkbrpsdxsafyyqa94il7111053idfalb4984a"; 3560 3571 type = "gem"; 3561 3572 }; 3562 - version = "2.5.0"; 3573 + version = "2.5.2"; 3563 3574 }; 3564 3575 lefthook = { 3565 3576 groups = ["development"]; 3566 3577 platforms = []; 3567 3578 source = { 3568 3579 remotes = ["https://rubygems.org"]; 3569 - sha256 = "0wri6j02jkq75qgd4mpdmi2444lzcvyf63nvkfz9p31rvsj44v5n"; 3580 + sha256 = "1bswnpka6w3ph2v3bv1ixmxbszank2a0hkpg4d3qdai2vmnyy9qc"; 3570 3581 type = "gem"; 3571 3582 }; 3572 - version = "1.6.18"; 3583 + version = "1.7.18"; 3573 3584 }; 3574 3585 letter_opener = { 3575 3586 dependencies = ["launchy"]; ··· 4517 4528 platforms = []; 4518 4529 source = { 4519 4530 remotes = ["https://rubygems.org"]; 4520 - sha256 = "0k4y30x7l29kgkydn966qcwvf35phx0c9n3c2zinw64pvrmcyl00"; 4531 + sha256 = "0saiiaf5bkg95fjcq6asz5w86s6zg76xb0r93dcffhvnz36z0r2v"; 4521 4532 type = "gem"; 4522 4533 }; 4523 - version = "0.27.0"; 4534 + version = "0.28.1"; 4524 4535 }; 4525 4536 opentelemetry-helpers-sql-obfuscation = { 4526 4537 dependencies = ["opentelemetry-common"]; ··· 4561 4572 platforms = []; 4562 4573 source = { 4563 4574 remotes = ["https://rubygems.org"]; 4564 - sha256 = "0xfbqgw497k2f56f68k7zsvmrrk5jk69xhl56227dfxlw15p2z5w"; 4575 + sha256 = "17qild0js6rgv95rphhs19jhd6ixspv1qvpijchqxmxg8waxmwih"; 4565 4576 type = "gem"; 4566 4577 }; 4567 - version = "0.7.0"; 4578 + version = "0.7.2"; 4568 4579 }; 4569 4580 opentelemetry-instrumentation-active_job = { 4570 4581 dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; ··· 4572 4583 platforms = []; 4573 4584 source = { 4574 4585 remotes = ["https://rubygems.org"]; 4575 - sha256 = "12c0qr980zr4si2ps55aj3zj84zycg3zcf16nh6mizljkmn8096s"; 4586 + sha256 = "1a5afx39bf0pzi0w75ic8zs8447i96993h056ww4vr23zl585f2x"; 4576 4587 type = "gem"; 4577 4588 }; 4578 - version = "0.7.1"; 4589 + version = "0.7.7"; 4579 4590 }; 4580 4591 opentelemetry-instrumentation-active_record = { 4581 4592 dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; ··· 4583 4594 platforms = []; 4584 4595 source = { 4585 4596 remotes = ["https://rubygems.org"]; 4586 - sha256 = "0wjfd1dmfzcnvss2jsnc2s3g6p0wfq5ay3vfnidkmisgyw7fphfk"; 4597 + sha256 = "1fq0i6rmxvgj56jafj8ka19j2nkpj2yvj7h0zi0hc4s6r1s2xmvx"; 4587 4598 type = "gem"; 4588 4599 }; 4589 - version = "0.7.2"; 4600 + version = "0.7.4"; 4590 4601 }; 4591 4602 opentelemetry-instrumentation-active_support = { 4592 4603 dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; ··· 4594 4605 platforms = []; 4595 4606 source = { 4596 4607 remotes = ["https://rubygems.org"]; 4597 - sha256 = "0rjajgb7sj3mrw5d79xm7q3f4mns1fc3ngasjfw10i18x0kq7283"; 4608 + sha256 = "1q07nn9ipq2yd7xjj24hh00cbvlda269k1l0xfkc8d8iw8mixrsg"; 4598 4609 type = "gem"; 4599 4610 }; 4600 - version = "0.5.1"; 4611 + version = "0.6.0"; 4601 4612 }; 4602 4613 opentelemetry-instrumentation-aws_sdk = { 4603 4614 dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; ··· 4605 4616 platforms = []; 4606 4617 source = { 4607 4618 remotes = ["https://rubygems.org"]; 4608 - sha256 = "191p0d0yvlwakppzhfq7nkakbz4psby0h0bgx8p5apdc7vz2mmmr"; 4619 + sha256 = "1fxk5jaliz93njgfmbl5ygsbzbwqbh0g48w4ar905xxsfg1dl18q"; 4609 4620 type = "gem"; 4610 4621 }; 4611 - version = "0.5.2"; 4622 + version = "0.5.4"; 4612 4623 }; 4613 4624 opentelemetry-instrumentation-base = { 4614 4625 dependencies = ["opentelemetry-api" "opentelemetry-registry"]; ··· 4627 4638 platforms = []; 4628 4639 source = { 4629 4640 remotes = ["https://rubygems.org"]; 4630 - sha256 = "1xmx1rxdvf835kvad352rcavwkk3x758q0rznx2npay3mm8bbcbg"; 4641 + sha256 = "1khlhzwb37mqnzr1vr49ljhi4bplmq9w8ndm0k8xbfsr8h8wivq4"; 4631 4642 type = "gem"; 4632 4643 }; 4633 - version = "0.21.3"; 4644 + version = "0.21.4"; 4634 4645 }; 4635 4646 opentelemetry-instrumentation-ethon = { 4636 - dependencies = ["opentelemetry-api" "opentelemetry-common" "opentelemetry-instrumentation-base"]; 4647 + dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; 4637 4648 groups = ["opentelemetry"]; 4638 4649 platforms = []; 4639 4650 source = { 4640 4651 remotes = ["https://rubygems.org"]; 4641 - sha256 = "1h5sa5in4b5yh8xgsgpk2spzhvkakinyi81mccgfy39zvz1p1i1i"; 4652 + sha256 = "1s6ya4sr4w492qbd16b33qpk52wf3903l2ns6camv79kq1h7vahr"; 4642 4653 type = "gem"; 4643 4654 }; 4644 - version = "0.21.5"; 4655 + version = "0.21.8"; 4645 4656 }; 4646 4657 opentelemetry-instrumentation-excon = { 4647 - dependencies = ["opentelemetry-api" "opentelemetry-common" "opentelemetry-instrumentation-base"]; 4658 + dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; 4648 4659 groups = ["opentelemetry"]; 4649 4660 platforms = []; 4650 4661 source = { 4651 4662 remotes = ["https://rubygems.org"]; 4652 - sha256 = "0im1ljdz4xd2498ss919gsqmv8r4ipk4rkwhf8ai0diw58qwa78p"; 4663 + sha256 = "14g6dvk31kz9v9qbr2w6ggxk96v3kaadm8wvnw3qsrsc4pd9ycns"; 4653 4664 type = "gem"; 4654 4665 }; 4655 - version = "0.22.2"; 4666 + version = "0.22.4"; 4656 4667 }; 4657 4668 opentelemetry-instrumentation-faraday = { 4658 - dependencies = ["opentelemetry-api" "opentelemetry-common" "opentelemetry-instrumentation-base"]; 4669 + dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; 4659 4670 groups = ["opentelemetry"]; 4660 4671 platforms = []; 4661 4672 source = { 4662 4673 remotes = ["https://rubygems.org"]; 4663 - sha256 = "1a3hx6linkdwmy5pax0khm64w68d2c7536yzc3svppivhxnfank9"; 4674 + sha256 = "0np6wnckn12df6mwcr695fvjy3x2s6541ywr7ahw8a8dszs0qjsh"; 4664 4675 type = "gem"; 4665 4676 }; 4666 - version = "0.24.3"; 4677 + version = "0.24.6"; 4667 4678 }; 4668 4679 opentelemetry-instrumentation-grape = { 4669 4680 dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base" "opentelemetry-instrumentation-rack"]; ··· 4671 4682 platforms = []; 4672 4683 source = { 4673 4684 remotes = ["https://rubygems.org"]; 4674 - sha256 = "0c33cg6a2ykpc5215v1a1pqhvad5wld6pz0m32zxhai5psxj3110"; 4685 + sha256 = "1dhpapza8qw8clfp7pri6r6sbibrx07sj7xfk3myivmp05rms8m1"; 4675 4686 type = "gem"; 4676 4687 }; 4677 - version = "0.1.8"; 4688 + version = "0.2.0"; 4678 4689 }; 4679 4690 opentelemetry-instrumentation-graphql = { 4680 4691 dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; ··· 4682 4693 platforms = []; 4683 4694 source = { 4684 4695 remotes = ["https://rubygems.org"]; 4685 - sha256 = "13lbvcbszr20b7li8mm007rnm59np5y7zz5a36jchbz8503dhfai"; 4696 + sha256 = "0v6w0b3q0li5cq0xmc42ngqk9ahx60n5q31alka36ds4inxcrky2"; 4686 4697 type = "gem"; 4687 4698 }; 4688 - version = "0.28.2"; 4699 + version = "0.28.4"; 4689 4700 }; 4690 4701 opentelemetry-instrumentation-http = { 4691 4702 dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; ··· 4693 4704 platforms = []; 4694 4705 source = { 4695 4706 remotes = ["https://rubygems.org"]; 4696 - sha256 = "1yncpv6i2cagjyq1srdqddf6mh0q9s04kfi9q1rh9qbsxqbp5cff"; 4707 + sha256 = "05mrlg8msp59bagpc18ycr9333760kqp780gw8fgqn1798dl02qr"; 4697 4708 type = "gem"; 4698 4709 }; 4699 - version = "0.23.3"; 4710 + version = "0.23.4"; 4700 4711 }; 4701 4712 opentelemetry-instrumentation-http_client = { 4702 - dependencies = ["opentelemetry-api" "opentelemetry-common" "opentelemetry-instrumentation-base"]; 4713 + dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; 4703 4714 groups = ["opentelemetry"]; 4704 4715 platforms = []; 4705 4716 source = { 4706 4717 remotes = ["https://rubygems.org"]; 4707 - sha256 = "038bpsg4bfix3ap7l9f8jqkb1acl3v0p7c2jd7bj1116v4ycdcvc"; 4718 + sha256 = "0g6f5zv0bq585ppgzhm6acrpkz32j1h7zyrcy1r8n3ha41daip1z"; 4708 4719 type = "gem"; 4709 4720 }; 4710 - version = "0.22.5"; 4721 + version = "0.22.7"; 4711 4722 }; 4712 4723 opentelemetry-instrumentation-net_http = { 4713 - dependencies = ["opentelemetry-api" "opentelemetry-common" "opentelemetry-instrumentation-base"]; 4724 + dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; 4714 4725 groups = ["opentelemetry"]; 4715 4726 platforms = []; 4716 4727 source = { 4717 4728 remotes = ["https://rubygems.org"]; 4718 - sha256 = "1gppqpy2c48xj2jlcd1lkmr3wh3qhwf14337wjk2w0qq77h11gcr"; 4729 + sha256 = "1l26f8sqsjjcc72a5xr9as3gibm4sgj8n004y15i5vbvdgzjfx60"; 4719 4730 type = "gem"; 4720 4731 }; 4721 - version = "0.22.5"; 4732 + version = "0.22.7"; 4722 4733 }; 4723 4734 opentelemetry-instrumentation-pg = { 4724 4735 dependencies = ["opentelemetry-api" "opentelemetry-helpers-sql-obfuscation" "opentelemetry-instrumentation-base"]; ··· 4726 4737 platforms = []; 4727 4738 source = { 4728 4739 remotes = ["https://rubygems.org"]; 4729 - sha256 = "1k9m9v4i42y53s85b8y7vz4dj4y00v1gg8392rkrswl5f72fk2dn"; 4740 + sha256 = "1sv1bkmapkzyvivf50wjcmq7cv16g9capngzky8p1p2dai0f2794"; 4730 4741 type = "gem"; 4731 4742 }; 4732 - version = "0.27.3"; 4743 + version = "0.28.0"; 4733 4744 }; 4734 4745 opentelemetry-instrumentation-rack = { 4735 - dependencies = ["opentelemetry-api" "opentelemetry-common" "opentelemetry-instrumentation-base"]; 4746 + dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; 4736 4747 groups = ["opentelemetry"]; 4737 4748 platforms = []; 4738 4749 source = { 4739 4750 remotes = ["https://rubygems.org"]; 4740 - sha256 = "1dc2ds4vaqybfpzp98p79z9kgpdagljsgbjbhpi0i9jrlh2xnddy"; 4751 + sha256 = "1dmfxcc2xz2qa4zp0sks5zrqcfr4fbpbc9xdgvcv8ys0ipf7pwn0"; 4741 4752 type = "gem"; 4742 4753 }; 4743 - version = "0.24.4"; 4754 + version = "0.24.6"; 4744 4755 }; 4745 4756 opentelemetry-instrumentation-rails = { 4746 4757 dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-action_mailer" "opentelemetry-instrumentation-action_pack" "opentelemetry-instrumentation-action_view" "opentelemetry-instrumentation-active_job" "opentelemetry-instrumentation-active_record" "opentelemetry-instrumentation-active_support" "opentelemetry-instrumentation-base"]; ··· 4748 4759 platforms = []; 4749 4760 source = { 4750 4761 remotes = ["https://rubygems.org"]; 4751 - sha256 = "04isc412xin2xw11lccdxcg7i2yf4m8jsw9jlq7gcld5mwix1pa2"; 4762 + sha256 = "12k4s1k9wa257bqfny33byscb4ai86jw4q6ygrzsj3iv2bij07w9"; 4752 4763 type = "gem"; 4753 4764 }; 4754 - version = "0.30.2"; 4765 + version = "0.31.2"; 4755 4766 }; 4756 4767 opentelemetry-instrumentation-rake = { 4757 4768 dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; ··· 4765 4776 version = "0.2.2"; 4766 4777 }; 4767 4778 opentelemetry-instrumentation-redis = { 4768 - dependencies = ["opentelemetry-api" "opentelemetry-common" "opentelemetry-instrumentation-base"]; 4779 + dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; 4769 4780 groups = ["opentelemetry"]; 4770 4781 platforms = []; 4771 4782 source = { 4772 4783 remotes = ["https://rubygems.org"]; 4773 - sha256 = "1mrkcd8mdvfgrqalnav4dh3hvd1f91yq718n1mdb56jkd607kknp"; 4784 + sha256 = "1qrgnk2x64sks9gqb7fycfa6sass6ddqzh5dms4hdbz1bzag581f"; 4774 4785 type = "gem"; 4775 4786 }; 4776 - version = "0.25.5"; 4787 + version = "0.25.7"; 4777 4788 }; 4778 4789 opentelemetry-instrumentation-sidekiq = { 4779 - dependencies = ["opentelemetry-api" "opentelemetry-common" "opentelemetry-instrumentation-base"]; 4790 + dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; 4780 4791 groups = ["opentelemetry"]; 4781 4792 platforms = []; 4782 4793 source = { 4783 4794 remotes = ["https://rubygems.org"]; 4784 - sha256 = "18x3x06dfydaqqab4k6yykqhy2axppyf9q63sh2da893jphb5qac"; 4795 + sha256 = "0cfzw1avv52idxvq02y95g3byxsswccck78zch5hmnnzvp5f59nn"; 4785 4796 type = "gem"; 4786 4797 }; 4787 - version = "0.25.4"; 4798 + version = "0.25.7"; 4788 4799 }; 4789 4800 opentelemetry-registry = { 4790 4801 dependencies = ["opentelemetry-api"]; ··· 4803 4814 platforms = []; 4804 4815 source = { 4805 4816 remotes = ["https://rubygems.org"]; 4806 - sha256 = "1ajf9igx63r6r2ds0f3hxd18iragvr88k2k9kzvamp1jkdna6gsi"; 4817 + sha256 = "0div7n5wac7x1l9fwdpb3bllw18cns93c7xccy27r4gmvv02f46s"; 4807 4818 type = "gem"; 4808 4819 }; 4809 - version = "1.4.1"; 4820 + version = "1.5.0"; 4810 4821 }; 4811 4822 opentelemetry-semantic_conventions = { 4812 4823 dependencies = ["opentelemetry-api"]; ··· 4903 4914 }; 4904 4915 version = "1.20.0"; 4905 4916 }; 4917 + paper_trail = { 4918 + dependencies = ["activerecord" "request_store"]; 4919 + groups = ["default"]; 4920 + platforms = []; 4921 + source = { 4922 + remotes = ["https://rubygems.org"]; 4923 + sha256 = "1yd9kdyyg1wisxi9mx01ar9s6h50x9k2av95xam58v6jx6bwvg0d"; 4924 + type = "gem"; 4925 + }; 4926 + version = "15.1.0"; 4927 + }; 4906 4928 parallel = { 4907 4929 groups = ["development" "test"]; 4908 4930 platforms = []; ··· 5035 5057 platforms = []; 5036 5058 source = { 5037 5059 remotes = ["https://rubygems.org"]; 5038 - sha256 = "0ps7lydh1jsqv02vmb1lgky80hi8wcvbv6lfybxgb9q80cx88b55"; 5060 + sha256 = "0ywvpskabdm0ckg6b3cf1jczg1jkjnb1mr0g73cy5l09xdlx5w25"; 5039 5061 type = "gem"; 5040 5062 }; 5041 - version = "0.29.0"; 5063 + version = "1.1.0"; 5042 5064 }; 5043 5065 proc_to_ast = { 5044 5066 dependencies = ["coderay" "parser" "unparser"]; ··· 5118 5140 version = "0.6.4"; 5119 5141 }; 5120 5142 public_suffix = { 5121 - groups = ["danger" "default" "development" "test"]; 5143 + groups = ["danger" "default" "development" "monorepo" "test"]; 5122 5144 platforms = []; 5123 5145 source = { 5124 5146 remotes = ["https://rubygems.org"]; 5125 - sha256 = "0sqw1zls6227bgq38sxb2hs8nkdz4hn1zivs27mjbniswfy4zvi6"; 5147 + sha256 = "0vqcw3iwby3yc6avs1vb3gfd0vcp2v7q310665dvxfswmcf4xm31"; 5126 5148 type = "gem"; 5127 5149 }; 5128 - version = "5.0.0"; 5150 + version = "6.0.1"; 5129 5151 }; 5130 5152 puma = { 5131 5153 dependencies = ["nio4r"]; ··· 5133 5155 platforms = []; 5134 5156 source = { 5135 5157 remotes = ["https://rubygems.org"]; 5136 - sha256 = "1y8jcw80zcxvdq0id329lzmp5pzx7hpac227d7sgjkblc89s3pfm"; 5158 + sha256 = "0gml1rixrfb0naciq3mrnqkpcvm9ahgps1c04hzxh4b801f69914"; 5137 5159 type = "gem"; 5138 5160 }; 5139 - version = "6.4.0"; 5161 + version = "6.4.3"; 5140 5162 }; 5141 5163 pyu-ruby-sasl = { 5142 5164 groups = ["default"]; ··· 5472 5494 platforms = []; 5473 5495 source = { 5474 5496 remotes = ["https://rubygems.org"]; 5475 - sha256 = "0bb3yk2p12f1j4nr0grbadrwnr6gkzd7vn96jcnhswz2jsnbhhfr"; 5497 + sha256 = "15r2h7rfp4bi9i0bfmvgnmvmw0kl3byyac53rcakk4qsv7yv4caj"; 5476 5498 type = "gem"; 5477 5499 }; 5478 - version = "4.3.3"; 5500 + version = "4.3.4"; 5479 5501 }; 5480 5502 redis = { 5481 5503 dependencies = ["redis-client"]; ··· 5483 5505 platforms = []; 5484 5506 source = { 5485 5507 remotes = ["https://rubygems.org"]; 5486 - sha256 = "1d1ng78dwbzgfg1sljf9bnx2km5y3p3jc42a9npwcrmiard9fsrk"; 5508 + sha256 = "1cbjvb61kx2p1mjg2z55mw80760h6d8dnxszqkq8g4c8mv2i1y3b"; 5487 5509 type = "gem"; 5488 5510 }; 5489 - version = "5.2.0"; 5511 + version = "5.3.0"; 5490 5512 }; 5491 5513 redis-actionpack = { 5492 5514 dependencies = ["actionpack" "redis-rack" "redis-store"]; ··· 5516 5538 platforms = []; 5517 5539 source = { 5518 5540 remotes = ["https://rubygems.org"]; 5519 - sha256 = "107ban04brh3f6xwy4rcy83a6kgq0r71jdfyjz95ggg2hs51pv8w"; 5541 + sha256 = "1az0l2q11214gxbi8fcn7xfxj0m31d3wlxcqd0h8qjxqvsjcmrk3"; 5520 5542 type = "gem"; 5521 5543 }; 5522 - version = "0.8.2"; 5544 + version = "0.11.0"; 5523 5545 }; 5524 5546 redis-clustering = { 5525 5547 dependencies = ["redis" "redis-cluster-client"]; ··· 5527 5549 platforms = []; 5528 5550 source = { 5529 5551 remotes = ["https://rubygems.org"]; 5530 - sha256 = "13h3w100848y272vykm1bwyj29z749pa9sfcjqd0k0fx1f73hpv8"; 5552 + sha256 = "0ncqm43bcxwll4lkdw5fp34m8pc0fp9lqzhq4qcgn7ax68a90gvp"; 5531 5553 type = "gem"; 5532 5554 }; 5533 - version = "5.2.0"; 5555 + version = "5.3.0"; 5534 5556 }; 5535 5557 redis-namespace = { 5536 5558 dependencies = ["redis"]; ··· 5714 5736 }; 5715 5737 rspec = { 5716 5738 dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"]; 5717 - groups = ["default" "development" "test"]; 5739 + groups = ["default" "development" "monorepo" "test"]; 5718 5740 platforms = []; 5719 5741 source = { 5720 5742 remotes = ["https://rubygems.org"]; 5721 - sha256 = "171rc90vcgjl8p1bdrqa92ymrj8a87qf6w20x05xq29mljcigi6c"; 5743 + sha256 = "14xrp8vq6i9zx37vh0yp4h9m0anx9paw200l1r5ad9fmq559346l"; 5722 5744 type = "gem"; 5723 5745 }; 5724 - version = "3.12.0"; 5746 + version = "3.13.0"; 5725 5747 }; 5726 5748 rspec-benchmark = { 5727 5749 dependencies = ["benchmark-malloc" "benchmark-perf" "benchmark-trend" "rspec"]; ··· 5740 5762 platforms = []; 5741 5763 source = { 5742 5764 remotes = ["https://rubygems.org"]; 5743 - sha256 = "0l95bnjxdabrn79hwdhn2q1n7mn26pj7y1w5660v5qi81x458nqm"; 5765 + sha256 = "0s688wfw77fjldzayvczg8bgwcgh6bh552dw7qcj1rhjk3r4zalx"; 5744 5766 type = "gem"; 5745 5767 }; 5746 - version = "3.12.2"; 5768 + version = "3.13.1"; 5747 5769 }; 5748 5770 rspec-expectations = { 5749 5771 dependencies = ["diff-lcs" "rspec-support"]; ··· 5751 5773 platforms = []; 5752 5774 source = { 5753 5775 remotes = ["https://rubygems.org"]; 5754 - sha256 = "05j44jfqlv7j2rpxb5vqzf9hfv7w8ba46wwgxwcwd8p0wzi1hg89"; 5776 + sha256 = "0n3cyrhsa75x5wwvskrrqk56jbjgdi2q1zx0irllf0chkgsmlsqf"; 5755 5777 type = "gem"; 5756 5778 }; 5757 - version = "3.12.3"; 5779 + version = "3.13.3"; 5758 5780 }; 5759 5781 rspec-mocks = { 5760 5782 dependencies = ["diff-lcs" "rspec-support"]; ··· 5762 5784 platforms = []; 5763 5785 source = { 5764 5786 remotes = ["https://rubygems.org"]; 5765 - sha256 = "1gq7gviwpck7fhp4y5ibljljvxgjklza18j62qf6zkm2icaa8lfy"; 5787 + sha256 = "1vxxkb2sf2b36d8ca2nq84kjf85fz4x7wqcvb8r6a5hfxxfk69r3"; 5766 5788 type = "gem"; 5767 5789 }; 5768 - version = "3.12.6"; 5790 + version = "3.13.2"; 5769 5791 }; 5770 5792 rspec-parameterized = { 5771 5793 dependencies = ["rspec-parameterized-core" "rspec-parameterized-table_syntax"]; ··· 5806 5828 platforms = []; 5807 5829 source = { 5808 5830 remotes = ["https://rubygems.org"]; 5809 - sha256 = "1clmx6qzdbpm1g8ycg38gjbqsbr8ccqi6hqyx88g8yckz1hrx55x"; 5831 + sha256 = "1ycjggcmzbgrfjk04v26b43c3fj5jq2qic911qk7585wvav2qaxd"; 5810 5832 type = "gem"; 5811 5833 }; 5812 - version = "6.1.1"; 5834 + version = "7.0.1"; 5813 5835 }; 5814 5836 rspec-retry = { 5815 5837 dependencies = ["rspec-core"]; ··· 5823 5845 version = "0.6.2"; 5824 5846 }; 5825 5847 rspec-support = { 5826 - groups = ["default" "development" "test"]; 5848 + groups = ["default" "development" "monorepo" "test"]; 5827 5849 platforms = []; 5828 5850 source = { 5829 5851 remotes = ["https://rubygems.org"]; 5830 - sha256 = "12y52zwwb3xr7h91dy9k3ndmyyhr3mjcayk0nnarnrzz8yr48kfx"; 5852 + sha256 = "03z7gpqz5xkw9rf53835pa8a9vgj4lic54rnix9vfwmp2m7pv1s8"; 5831 5853 type = "gem"; 5832 5854 }; 5833 - version = "3.12.0"; 5855 + version = "3.13.1"; 5834 5856 }; 5835 5857 rspec_junit_formatter = { 5836 5858 dependencies = ["rspec-core"]; ··· 5959 5981 platforms = []; 5960 5982 source = { 5961 5983 remotes = ["https://rubygems.org"]; 5962 - sha256 = "04z280c4mimfwpfgcw2j6b13g1vni0cnrfgwjs9bgkzm95m1vsj9"; 5984 + sha256 = "1vcc2jib05p8lf09mczxyd2rw89gybbk8lkc08ckzq53lqvzj4yh"; 5963 5985 type = "gem"; 5964 5986 }; 5965 - version = "0.17.4"; 5987 + version = "0.19.1"; 5966 5988 }; 5967 5989 ruby-lsp-rails = { 5968 5990 dependencies = ["ruby-lsp"]; ··· 5970 5992 platforms = []; 5971 5993 source = { 5972 5994 remotes = ["https://rubygems.org"]; 5973 - sha256 = "0xd9d1h7m0bw05jykf0sx6sds01ymf0dffpb3j1r99ril703lzc4"; 5995 + sha256 = "1l8z5m81519ki6p33s8xxy3vbcvp71did91pzvhr129a7cqhxs14"; 5974 5996 type = "gem"; 5975 5997 }; 5976 - version = "0.3.8"; 5998 + version = "0.3.17"; 5977 5999 }; 5978 6000 ruby-lsp-rspec = { 5979 6001 dependencies = ["ruby-lsp"]; ··· 5981 6003 platforms = []; 5982 6004 source = { 5983 6005 remotes = ["https://rubygems.org"]; 5984 - sha256 = "1r8i93fq4ijnxbh9pfh5df0d0pl8xr23s7whvwqjyk6w4xg7gzil"; 6006 + sha256 = "17dxzzywxy8x78nxm24czdc9jf75ghgqijj396q1mx0nknmd9vni"; 5985 6007 type = "gem"; 5986 6008 }; 5987 - version = "0.1.12"; 6009 + version = "0.1.15"; 5988 6010 }; 5989 6011 ruby-magic = { 5990 6012 dependencies = ["mini_portile2"]; ··· 6203 6225 platforms = []; 6204 6226 source = { 6205 6227 remotes = ["https://rubygems.org"]; 6206 - sha256 = "09qfh3pgjg92cjsn83zkp1vc234gm2j66rld09lfhlviavkzdbad"; 6228 + sha256 = "158rhsv547f3c31kfz8kdr7kpgm34sqm0bzbkxpqg3pazqim7bfl"; 6207 6229 type = "gem"; 6208 6230 }; 6209 - version = "5.18.2"; 6231 + version = "5.19.0"; 6210 6232 }; 6211 6233 sentry-ruby = { 6212 6234 dependencies = ["bigdecimal" "concurrent-ruby"]; ··· 6214 6236 platforms = []; 6215 6237 source = { 6216 6238 remotes = ["https://rubygems.org"]; 6217 - sha256 = "168dq5i95aaps8bppc402qgd8xpxisdpx9z4cqr3zcn6s0dwn9fz"; 6239 + sha256 = "12w3w779dcab85x1i4aavd5fw8xdb7mvhs3cvx85q2l48vr8kpqd"; 6218 6240 type = "gem"; 6219 6241 }; 6220 - version = "5.18.2"; 6242 + version = "5.19.0"; 6221 6243 }; 6222 6244 sentry-sidekiq = { 6223 6245 dependencies = ["sentry-ruby" "sidekiq"]; ··· 6225 6247 platforms = []; 6226 6248 source = { 6227 6249 remotes = ["https://rubygems.org"]; 6228 - sha256 = "0qajyyiwd035rwnxd2zdhh9y2rdx00812ya247nhqb6kqw1s7ml6"; 6250 + sha256 = "106bxqzi0mhvxm583mly7a95rv77m89dd51433fwnpdk2m5yq5hv"; 6229 6251 type = "gem"; 6230 6252 }; 6231 - version = "5.18.2"; 6253 + version = "5.19.0"; 6232 6254 }; 6233 6255 sexp_processor = { 6234 6256 groups = ["default" "test"]; ··· 6266 6288 groups = ["default"]; 6267 6289 platforms = []; 6268 6290 source = { 6269 - remotes = ["https://rubygems.org"]; 6270 - sha256 = "18j3g31ps6ga9nzza0z0d00qjrn810fhkhx2pqi3rvxwsmkdlnbq"; 6271 - type = "gem"; 6291 + path = "${src}/vendor/gems/sidekiq-7.2.4"; 6292 + type = "path"; 6272 6293 }; 6273 - version = "7.1.6"; 6294 + version = "7.2.4"; 6274 6295 }; 6275 6296 sidekiq-cron = { 6276 6297 dependencies = ["fugit" "globalid" "sidekiq"]; ··· 6738 6759 platforms = []; 6739 6760 source = { 6740 6761 remotes = ["https://rubygems.org"]; 6741 - sha256 = "0lxik4ngvbphivyhss9i59c67zxkc0z7k0r683qshw1gdkfxzd8f"; 6762 + sha256 = "0x0gj68an9nkb8pvlzxs7m5n3ip3fizlw9s4kgkyj5kjqgpw6swn"; 6742 6763 type = "gem"; 6743 6764 }; 6744 - version = "1.3.3.1"; 6765 + version = "1.4.0"; 6745 6766 }; 6746 6767 test_file_finder = { 6747 6768 dependencies = ["faraday"]; ··· 7158 7179 platforms = []; 7159 7180 source = { 7160 7181 remotes = ["https://rubygems.org"]; 7161 - sha256 = "0yqq8srliv2w960gxnfr5sn8dmcppcyd6wmkgq71d1qkymwn8vii"; 7182 + sha256 = "0333krs3kil7p1rr7cvfrsqr1plns7j6wca9mjgns9qdqkhnv0cn"; 7162 7183 type = "gem"; 7163 7184 }; 7164 - version = "3.13.0"; 7185 + version = "3.14.0"; 7165 7186 }; 7166 7187 virtus = { 7167 7188 dependencies = ["axiom-types" "coercible" "descendants_tracker"]; ··· 7191 7212 platforms = []; 7192 7213 source = { 7193 7214 remotes = ["https://rubygems.org"]; 7194 - sha256 = "0fgpwlvmasj10kx5929xyb4fysqlfb3iixbci68170k6bslssd2a"; 7215 + sha256 = "1fcharh45xwi2cx96m695v9gccny3hgvdkkhcbkhplk1bc6ldwgk"; 7195 7216 type = "gem"; 7196 7217 }; 7197 - version = "3.7.0"; 7218 + version = "3.8.2"; 7198 7219 }; 7199 7220 vmstat = { 7200 7221 groups = ["default"];
+2 -2
pkgs/by-name/gi/gitaly/git.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "gitaly-git"; 12 - version = "2.45.2"; 12 + version = "2.46.2"; 13 13 14 14 # `src` attribute for nix-update 15 15 src = fetchFromGitLab { 16 16 owner = "gitlab-org"; 17 17 repo = "git"; 18 18 rev = "v${version}"; 19 - hash = "sha256-R4K5b4d1DQw+pwoOCAK4EJtVPXQDPossTUmVv0LJtUs="; 19 + hash = "sha256-LQqb3lmYIqtwIHR5KHg/Cm568CxQqeGOBAQeXphqSXo="; 20 20 }; 21 21 22 22 # we actually use the gitaly build system
+3 -3
pkgs/by-name/gi/gitaly/package.nix
··· 6 6 }: 7 7 8 8 let 9 - version = "17.3.7"; 9 + version = "17.5.2"; 10 10 package_version = "v${lib.versions.major version}"; 11 11 gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; 12 12 ··· 20 20 owner = "gitlab-org"; 21 21 repo = "gitaly"; 22 22 rev = "v${version}"; 23 - hash = "sha256-H//vwXzpUh1a8Lez5HTmwkF8TQVPVSefyabnEM4Wo4E="; 23 + hash = "sha256-jEgw66aNJdLW6twU/oqJN/pxyGsJh/UOFaNEzfVjdCY="; 24 24 }; 25 25 26 - vendorHash = "sha256-3Gwpf4zLg9KsmGr2bYmcHATsouKXe3W/vppGHT2B048="; 26 + vendorHash = "sha256-VN+d6jMX3f4ua+YEF6LmqEOTRm2q4zxZ/X73hhA4fNs="; 27 27 28 28 ldflags = [ "-X ${gitaly_package}/internal/version.version=${version}" "-X ${gitaly_package}/internal/version.moduleVersion=${version}" ]; 29 29
+3 -3
pkgs/by-name/gi/gitlab-container-registry/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gitlab-container-registry"; 5 - version = "4.13.0"; 5 + version = "4.14.0"; 6 6 rev = "v${version}-gitlab"; 7 7 8 8 # nixpkgs-update: no auto update ··· 10 10 owner = "gitlab-org"; 11 11 repo = "container-registry"; 12 12 inherit rev; 13 - hash = "sha256-V58UjlIlGllbPBTZMY5EoGNC+toy11xLCnnLHXqJUVU="; 13 + hash = "sha256-FOytsMFiaVqHQrwdWpmDbzWGddD4R1rClXWVD2EpUk8="; 14 14 }; 15 15 16 - vendorHash = "sha256-LSl94y1g0sfqXWddF7f8z2YRC5D6zJP1t+gsXqdVHww="; 16 + vendorHash = "sha256-8TQMMRKyg5bQ3www79V1ejGJ81D0ZMwiXyIhx8+fdec="; 17 17 18 18 postPatch = '' 19 19 # Disable flaky inmemory storage driver test
+3 -3
pkgs/by-name/gi/gitlab-elasticsearch-indexer/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gitlab-elasticsearch-indexer"; 5 - version = "5.2.0"; 5 + version = "5.3.0"; 6 6 7 7 # nixpkgs-update: no auto update 8 8 src = fetchFromGitLab { 9 9 owner = "gitlab-org"; 10 10 repo = "gitlab-elasticsearch-indexer"; 11 11 rev = "v${version}"; 12 - hash = "sha256-pkZWIsPWUDkjZo48mJ9N8LbMJJAHNI2Wf6X0F5+K23s="; 12 + hash = "sha256-upbVe78HLRWXf8knxsVX6mGbXHfMTPa7yQ7/XMTgGLo="; 13 13 }; 14 14 15 - vendorHash = "sha256-hFTvNh/N3z99O7dtAEiksonJcTn7Zj7Ijp68vfXEBw8="; 15 + vendorHash = "sha256-sws1r6W6tYJI/zOWFFp2hry9ToXuE4fezIL1XPgp0EM="; 16 16 17 17 buildInputs = [ icu ]; 18 18 nativeBuildInputs = [ pkg-config ];
+3 -3
pkgs/by-name/gi/gitlab-pages/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gitlab-pages"; 5 - version = "17.3.7"; 5 + version = "17.5.2"; 6 6 7 7 # nixpkgs-update: no auto update 8 8 src = fetchFromGitLab { 9 9 owner = "gitlab-org"; 10 10 repo = "gitlab-pages"; 11 11 rev = "v${version}"; 12 - hash = "sha256-ZViBwStBDqnR9SMeqZz1HSzL5OVSp2An/9hj4FBTmGs="; 12 + hash = "sha256-fjoby/fTh1wAidyOQSqx7VolxzSB0TQYvltJhYduDSY="; 13 13 }; 14 14 15 - vendorHash = "sha256-O8kWiOpgVCUD6DdM95F1b+j4Gv9LTLRdBjByqXWV7Pk="; 15 + vendorHash = "sha256-M2RQPkLWsi9rHXI3lSb9w9nxiklTkV8wpC9VoH0SP6M="; 16 16 subPackages = [ "." ]; 17 17 18 18 meta = with lib; {
+11 -6
pkgs/by-name/gi/gitlab-shell/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gitlab-shell"; 5 - version = "14.38.0"; 5 + version = "14.39.0"; 6 6 7 7 # nixpkgs-update: no auto update 8 8 src = fetchFromGitLab { 9 9 owner = "gitlab-org"; 10 10 repo = "gitlab-shell"; 11 11 rev = "v${version}"; 12 - hash = "sha256-oYvsSjdzfJn4ujy1qbMmqZyEQFbYTSke8t3KBqjr/Vc="; 12 + hash = "sha256-HSieVAYuqv5zYN6CMAo86s/Df17PdIXzDIZ2pM4Sqlw="; 13 13 }; 14 14 15 15 buildInputs = [ ruby libkrb5 ]; ··· 18 18 ./remove-hardcoded-locations.patch 19 19 ]; 20 20 21 - vendorHash = "sha256-YOShgZv0zdfXgKi//IENt6wE2m0S1Kqa+2ndvCwKDLQ="; 21 + vendorHash = "sha256-wlxHaPstdXjMWV+qHxahAukk/Lc07kq37SlnCU3KO4o="; 22 + 23 + subPackages = [ 24 + "cmd/gitlab-shell" 25 + "cmd/gitlab-sshd" 26 + "cmd/gitlab-shell-check" 27 + "cmd/gitlab-shell-authorized-principals-check" 28 + "cmd/gitlab-shell-authorized-keys-check" 29 + ]; 22 30 23 31 postInstall = '' 24 - cp -r "$NIX_BUILD_TOP/source"/bin/* $out/bin 25 - mv $out/bin/install $out/bin/gitlab-shell-install 26 - mv $out/bin/check $out/bin/gitlab-shell-check 27 32 cp -r "$NIX_BUILD_TOP/source"/{support,VERSION} $out/ 28 33 ''; 29 34 doCheck = false;
+1
pkgs/by-name/ha/halloy/package.nix
··· 75 75 mimeTypes = [ 76 76 "x-scheme-handler/irc" 77 77 "x-scheme-handler/ircs" 78 + "x-scheme-handler/halloy" 78 79 ]; 79 80 categories = [ 80 81 "Network"
+4 -4
pkgs/by-name/jo/jogger/package.nix
··· 21 21 22 22 stdenv.mkDerivation (finalAttrs: { 23 23 pname = "jogger"; 24 - version = "1.2.4-unstable-2024-04-05"; 24 + version = "1.2.5"; 25 25 26 26 src = fetchFromGitea { 27 27 domain = "codeberg.org"; 28 28 owner = "baarkerlounger"; 29 29 repo = "jogger"; 30 - rev = "09386b9503a9b996b86ea4638268403868b24d6a"; 31 - hash = "sha256-oGjqYRHkYk22/RzDc5c0066SlOPGRGC6z/BTn1DM03o="; 30 + rev = "refs/tags/${finalAttrs.version}"; 31 + hash = "sha256-bju9XXMT6HRHG9QViO+FQCYQ+llrC+GP/AlIha0mxkM="; 32 32 }; 33 33 34 34 cargoDeps = rustPlatform.fetchCargoTarball { 35 35 inherit (finalAttrs) pname version src; 36 - hash = "sha256-+8mMJgLHLUdFLOwjhXolHcVUP+s/j6PlWeRh8sGRYTc="; 36 + hash = "sha256-YCLIxKl4QCmqHx/WXwxpqOqIMx1Ab16QyAi+j542eoY="; 37 37 }; 38 38 39 39 nativeBuildInputs = [
+2 -2
pkgs/by-name/jw/jwx/package.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "jwx"; 8 - version = "2.1.1"; 8 + version = "2.1.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "lestrrat-go"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-cYNqe5BZJSYWD7XegVEm5prQjC6uX+JZtJ7AZdFbPu4="; 14 + hash = "sha256-CuxBfR+q+2JCe7F1gruGrVM+UBkrmz5dEyrDtFdmbhM="; 15 15 }; 16 16 17 17 vendorHash = "sha256-ZS7xliFymXTE8hlc3GEMNonP5sJTZGirw5YQNzPCl3Y=";
+4
pkgs/by-name/li/libcamera/package.nix
··· 51 51 install -D ${./ipa-priv-key.pem} src/ipa-priv-key.pem 52 52 ''; 53 53 54 + postFixup = '' 55 + ../src/ipa/ipa-sign-install.sh src/ipa-priv-key.pem $out/lib/libcamera/ipa_*.so 56 + ''; 57 + 54 58 strictDeps = true; 55 59 56 60 buildInputs = [
+4
pkgs/by-name/li/libstroke/package.nix
··· 15 15 sha256 = "0bbpqzsqh9zrc6cg62f6vp1p4dzvv37blsd0gdlzdskgwvyzba8d"; 16 16 }; 17 17 18 + postPatch = '' 19 + sed -i 1i'#include <string.h>' libstroke/stroke.c 20 + ''; 21 + 18 22 nativeBuildInputs = [ automake autoconf ]; 19 23 buildInputs = [ libX11 ]; 20 24
+36
pkgs/by-name/mq/mqtt-randompub/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + python3, 5 + }: 6 + 7 + python3.pkgs.buildPythonApplication rec { 8 + pname = "mqtt-randompub"; 9 + version = "0.2.2"; 10 + pyproject = true; 11 + 12 + src = fetchFromGitHub { 13 + owner = "fabaff"; 14 + repo = "mqtt-randompub"; 15 + rev = "refs/tags/${version}"; 16 + hash = "sha256-vAFEVlw9reRP+4Qwywv+cP27SU1c3seL3Z+b/YfUdl8="; 17 + }; 18 + 19 + build-system = with python3.pkgs; [ setuptools ]; 20 + 21 + dependencies = with python3.pkgs; [ paho-mqtt ]; 22 + 23 + # Project has no tests 24 + doCheck = false; 25 + 26 + pythonImportsCheck = [ "mqtt_randompub" ]; 27 + 28 + meta = { 29 + description = "Tool that sends random MQTT messages to random topics"; 30 + homepage = "https://github.com/fabaff/mqtt-randompub"; 31 + changelog = "https://github.com/fabaff/mqtt-randompub/blob/${src.rev}/ChangeLog"; 32 + license = lib.licenses.mit; 33 + maintainers = with lib.maintainers; [ fab ]; 34 + mainProgram = "mqtt-randompub"; 35 + }; 36 + }
+2 -2
pkgs/by-name/nf/nfs-ganesha/package.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "nfs-ganesha"; 23 - version = "6.2"; 23 + version = "6.3"; 24 24 25 25 outputs = [ 26 26 "out" ··· 32 32 owner = "nfs-ganesha"; 33 33 repo = "nfs-ganesha"; 34 34 rev = "V${version}"; 35 - hash = "sha256-wWN9E6QxipTh5ppEyEbhqG0uSVjd+DzWgY/oj5FIso0="; 35 + hash = "sha256-4gPhmBC42uCcaEhdJj9ZWw4ECB9UYwP+c2ndBFbBK0k="; 36 36 }; 37 37 38 38 preConfigure = "cd src";
+4 -4
pkgs/by-name/ni/nix-plugin-pijul/package.nix
··· 14 14 nixOverride ? null, 15 15 nix-plugin-pijul, 16 16 }: 17 - let nix = if nixOverride != null then nixOverride else nixVersions.nix_2_18; 17 + let nix = if nixOverride != null then nixOverride else nixVersions.nix_2_24; 18 18 in stdenv.mkDerivation (finalAttrs: { 19 19 pname = "nix-plugin-pijul"; 20 - version = "0.1.4"; 20 + version = "0.1.5"; 21 21 22 22 src = fetchzip { 23 23 url = "https://dblsaiko.net/pub/nix-plugin-pijul/nix-plugin-pijul-${finalAttrs.version}.tar.gz"; 24 - hash = "sha256-X25tFqcAgNWmkMxbfXGx8KJ25BV6sFWAQM9NvjQeSmQ="; 24 + hash = "sha256-1BJZ0lv7XDgT/AiXmJ2Z5Jn0tEa1Yerp9YYcjVCHqoI="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ ··· 73 73 stable = localRepoCheck nixVersions.stable; 74 74 latest = localRepoCheck nixVersions.latest; 75 75 git = localRepoCheck nixVersions.git; 76 - nix_2_18 = localRepoCheck nixVersions.nix_2_18; 76 + nix_2_24 = localRepoCheck nixVersions.nix_2_24; 77 77 }; 78 78 79 79 meta = {
+2 -2
pkgs/by-name/nt/ntirpc/package.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "ntirpc"; 7 - version = "6.0.1"; 7 + version = "6.3"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "nfs-ganesha"; 11 11 repo = "ntirpc"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-Txtc0Oyt/WfZiMe26uMzx3HFq/YaeU6cYfjPQwh0uQg="; 13 + sha256 = "sha256-e4eF09xwX2Qf/y9YfOGy7p6yhDFnKGI5cnrQy3o8c98="; 14 14 }; 15 15 16 16 outputs = [ "out" "dev" ];
+3 -3
pkgs/by-name/ox/oxipng/package.nix
··· 1 1 { lib, stdenv, fetchCrate, rustPlatform }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 - version = "9.1.2"; 4 + version = "9.1.3"; 5 5 pname = "oxipng"; 6 6 7 7 src = fetchCrate { 8 8 inherit version pname; 9 - hash = "sha256-uP4wLqL0c/dLiczumsq+Ad5ljNvi85RwoYS24fg8kFo="; 9 + hash = "sha256-kzN4YNsFqv/KUxpHao++oqc90Us6VllyFYkpdVUigD0="; 10 10 }; 11 11 12 - cargoHash = "sha256-LZ3YIosDpjDYVACWQsr/0XhgX4fyo8CyZG58WfLSzCs="; 12 + cargoHash = "sha256-4PCLtBJliK3uteL8EVKLBVR2YZW1gwQOiSLQok+rqug="; 13 13 14 14 doCheck = !stdenv.hostPlatform.isAarch64 && !stdenv.hostPlatform.isDarwin; 15 15
+6 -4
pkgs/by-name/re/redlib/package.nix
··· 9 9 }: 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "redlib"; 12 - version = "0.35.1-unstable-2024-11-01"; 12 + version = "0.35.1-unstable-2024-11-27"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "redlib-org"; 16 16 repo = "redlib"; 17 - rev = "f03bdcf472d32d51a1093528071dc329b348379d"; 18 - hash = "sha256-fbk0m20NpaUCWvH/l9hfmx+VKw4U3pkTkXdAeHL7bHs="; 17 + rev = "9f6b08cbb2d0f43644a34f5d0210ac32b9add30c"; 18 + hash = "sha256-lFvlrVFzMk6igH/h/3TZnkl8SooanVyIRYbSyleb2OU="; 19 19 }; 20 20 21 - cargoHash = "sha256-PNqecQSx0Q+K3bBfbOJYWPdl7JdUTDQ4f95RUuW0vPw="; 21 + cargoHash = "sha256-BorE3wcT8eCgIatHyNr3p9ewj7cX8yYer0vPEuBYPj4="; 22 22 23 23 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 24 24 darwin.apple_sdk.frameworks.Security ··· 44 44 "--skip=test_private_sub" 45 45 "--skip=test_banned_sub" 46 46 "--skip=test_gated_sub" 47 + "--skip=test_default_subscriptions" 48 + "--skip=test_rate_limit_check" 47 49 48 50 # subreddit.rs 49 51 "--skip=test_fetching_subreddit"
+40
pkgs/by-name/ve/vermin/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + python3Packages, 5 + }: 6 + python3Packages.buildPythonApplication rec { 7 + pname = "vermin"; 8 + version = "1.6.0"; 9 + pyproject = true; 10 + 11 + src = fetchFromGitHub { 12 + owner = "netromdk"; 13 + repo = "vermin"; 14 + rev = "v${version}"; 15 + hash = "sha256-lgxYQ8oNfa0+8BUf3nRv0fcNLP+UATjz733ms3pM6gQ="; 16 + }; 17 + 18 + build-system = with python3Packages; [ 19 + setuptools 20 + ]; 21 + 22 + dependencies = with python3Packages; [ 23 + setuptools 24 + ]; 25 + 26 + checkPhase = '' 27 + runHook preCheck 28 + python runtests.py 29 + runHook postCheck 30 + ''; 31 + 32 + meta = { 33 + mainProgram = "vermin"; 34 + homepage = "https://github.com/netromdk/vermin"; 35 + changelog = "https://github.com/netromdk/vermin/releases/tag/v${version}"; 36 + description = "Concurrently detect the minimum Python versions needed to run code"; 37 + license = lib.licenses.mit; 38 + maintainers = [ lib.maintainers.fidgetingbits ]; 39 + }; 40 + }
+3 -3
pkgs/by-name/yt/ytdownloader/package.nix
··· 12 12 13 13 buildNpmPackage rec { 14 14 pname = "ytDownloader"; 15 - version = "3.18.3"; 15 + version = "3.18.4"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "aandrew-me"; 19 19 repo = "ytDownloader"; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-omq1krlHj0+SvyofQtJnVBiQzHPIC/v/WhXGClm0vzM="; 21 + hash = "sha256-3kR4UOEwHmp63289H7onVU48q9vGpS0oPRj0Qb1s47w="; 22 22 }; 23 23 24 - npmDepsHash = "sha256-PE9RWdnUlHTCBqGN6xvq+B7gXke/KsKsGcg1SAy7bfs="; 24 + npmDepsHash = "sha256-ifo3O9cF52hRsPKD70pJ42O7XhzrBg//iXzBWrpv+5I="; 25 25 26 26 nativeBuildInputs = [ 27 27 copyDesktopItems
+16 -12
pkgs/desktops/mate/mate-calc/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , pkg-config 5 - , gettext 6 - , itstool 7 - , gtk3 8 - , libmpc 9 - , libxml2 10 - , mpfr 11 - , wrapGAppsHook3 12 - , mateUpdateScript 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + pkg-config, 6 + gettext, 7 + itstool, 8 + gtk3, 9 + libmpc, 10 + libxml2, 11 + mpfr, 12 + wrapGAppsHook3, 13 + mateUpdateScript, 13 14 }: 14 15 15 16 stdenv.mkDerivation rec { ··· 21 22 sha256 = "gEsSXR4oZLHnSvgW2psquLGUcrmvl0Q37nNVraXmKPU="; 22 23 }; 23 24 25 + strictDeps = true; 26 + 24 27 nativeBuildInputs = [ 25 28 gettext 26 29 itstool 30 + libxml2 # xmllint 27 31 pkg-config 28 32 wrapGAppsHook3 29 33 ];
+19 -15
pkgs/desktops/mate/mate-system-monitor/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , pkg-config 5 - , gettext 6 - , itstool 7 - , gtkmm3 8 - , libxml2 9 - , libgtop 10 - , librsvg 11 - , polkit 12 - , systemd 13 - , wrapGAppsHook3 14 - , mate-desktop 15 - , mateUpdateScript 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + pkg-config, 6 + gettext, 7 + itstool, 8 + gtkmm3, 9 + libxml2, 10 + libgtop, 11 + librsvg, 12 + polkit, 13 + systemd, 14 + wrapGAppsHook3, 15 + mate-desktop, 16 + mateUpdateScript, 16 17 }: 17 18 18 19 stdenv.mkDerivation rec { ··· 24 25 sha256 = "QtZj1rkPtTYevBP2VHmD1vHirHXcKuTxysbqYymWWiU="; 25 26 }; 26 27 28 + strictDeps = true; 29 + 27 30 nativeBuildInputs = [ 28 31 pkg-config 29 32 gettext 30 33 itstool 34 + libxml2 # xmllint 31 35 wrapGAppsHook3 32 36 ]; 33 37
+18 -15
pkgs/desktops/mate/mate-terminal/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , pkg-config 5 - , gettext 6 - , itstool 7 - , libxml2 8 - , mate-desktop 9 - , dconf 10 - , vte 11 - , pcre2 12 - , wrapGAppsHook3 13 - , mateUpdateScript 14 - , nixosTests 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + pkg-config, 6 + gettext, 7 + itstool, 8 + libxml2, 9 + mate-desktop, 10 + dconf, 11 + vte, 12 + pcre2, 13 + wrapGAppsHook3, 14 + mateUpdateScript, 15 + nixosTests, 15 16 }: 16 17 17 18 stdenv.mkDerivation rec { ··· 23 24 sha256 = "8TXrGp4q4ieY7LLcGRT9tM/XdOa7ZcAVK+N8xslGnpI="; 24 25 }; 25 26 27 + strictDeps = true; 28 + 26 29 nativeBuildInputs = [ 27 30 gettext 28 31 itstool 29 32 pkg-config 33 + libxml2 # xmllint 30 34 wrapGAppsHook3 31 35 ]; 32 36 33 37 buildInputs = [ 34 38 dconf 35 - libxml2 36 39 mate-desktop 37 40 pcre2 38 41 vte
+40
pkgs/development/python-modules/aiowmi/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pycryptodome, 6 + pytestCheckHook, 7 + pythonOlder, 8 + setuptools, 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "aiowmi"; 13 + version = "0.2.3"; 14 + pyproject = true; 15 + 16 + disabled = pythonOlder "3.10"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "cesbit"; 20 + repo = "aiowmi"; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-bKxGIUxGAW1GDa5xlv9NNWr5xLTdpK5dSsym/5y9nGQ="; 23 + }; 24 + 25 + build-system = [ setuptools ]; 26 + 27 + dependencies = [ pycryptodome ]; 28 + 29 + nativeCheckInputs = [ pytestCheckHook ]; 30 + 31 + pythonImportsCheck = [ "aiowmi" ]; 32 + 33 + meta = { 34 + description = "Python WMI Queries"; 35 + homepage = "https://github.com/cesbit/aiowmi"; 36 + changelog = "https://github.com/cesbit/aiowmi/releases/tag/v${version}"; 37 + license = lib.licenses.gpl3Only; 38 + maintainers = with lib.maintainers; [ fab ]; 39 + }; 40 + }
+55
pkgs/development/python-modules/jh2/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + cargo, 5 + fetchFromGitHub, 6 + hypothesis, 7 + pytestCheckHook, 8 + pythonOlder, 9 + rustc, 10 + rustPlatform, 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "jh2"; 15 + version = "5.0.4"; 16 + pyproject = true; 17 + 18 + disabled = pythonOlder "3.10"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "jawah"; 22 + repo = "h2"; 23 + rev = "refs/tags/v${version}"; 24 + hash = "sha256-la1tZ+t6HeGqaua1f858mT1IRyqS0hnoOiKr656vthQ="; 25 + fetchSubmodules = true; 26 + }; 27 + 28 + cargoDeps = rustPlatform.fetchCargoTarball { 29 + inherit src; 30 + name = "${pname}-${version}"; 31 + hash = "sha256-m1MkKhwTMDGsC0jt1skyFb23Ln5spa+vUEOyA5pHxP4="; 32 + }; 33 + 34 + build-system = [ 35 + cargo 36 + rustPlatform.cargoSetupHook 37 + rustPlatform.maturinBuildHook 38 + rustc 39 + ]; 40 + 41 + nativeCheckInputs = [ 42 + hypothesis 43 + pytestCheckHook 44 + ]; 45 + 46 + pythonImportsCheck = [ "jh2" ]; 47 + 48 + meta = { 49 + description = "HTTP/2 State-Machine based protocol implementation"; 50 + homepage = "https://github.com/jawah/h2"; 51 + changelog = "https://github.com/jawah/h2/blob/${src.rev}/CHANGELOG.rst"; 52 + license = lib.licenses.mit; 53 + maintainers = with lib.maintainers; [ fab ]; 54 + }; 55 + }
+12 -4
pkgs/os-specific/linux/evdi/default.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + fetchpatch, 5 6 kernel, 6 7 libdrm, 7 8 python3, ··· 16 17 in 17 18 stdenv.mkDerivation (finalAttrs: { 18 19 pname = "evdi"; 19 - version = "1.14.7"; 20 + version = "1.14.7-unstable-2024-11-30"; 20 21 21 22 src = fetchFromGitHub { 22 23 owner = "DisplayLink"; 23 24 repo = "evdi"; 24 - rev = "refs/tags/v${finalAttrs.version}"; 25 - hash = "sha256-z3GawjaokbmmUC1LihwGSnF3tUp9n/FO+kDiWvBq+mY="; 25 + rev = "59a3a864f7476cd61d9c65bfd012d1e9ed90e2b1"; 26 + hash = "sha256-0xEh0Tb5QFReW5lXO/Mb3gn1z87+baR8Tix+dQjUZMw="; 26 27 }; 28 + 29 + patches = [ 30 + (fetchpatch { 31 + url = "https://github.com/DisplayLink/evdi/commit/e41240cf62d7188643bc95e5d69e1c4cfa6ddb84.patch?full_index=1"; 32 + hash = "sha256-6V3QJZMAhXqfGLW2eWkIzJnOdBPvLLNVzg6DW1M3IaA="; 33 + }) 34 + ]; 27 35 28 36 env.NIX_CFLAGS_COMPILE = toString [ 29 37 "-Wno-error" ··· 60 68 enableParallelBuilding = true; 61 69 62 70 meta = { 63 - broken = kernel.kernelOlder "4.19" || kernel.kernelAtLeast "6.12"; 71 + broken = kernel.kernelOlder "4.19"; 64 72 changelog = "https://github.com/DisplayLink/evdi/releases/tag/v${finalAttrs.version}"; 65 73 description = "Extensible Virtual Display Interface"; 66 74 homepage = "https://www.displaylink.com/";
+2 -2
pkgs/os-specific/linux/kernel/linux-libre.nix
··· 1 1 { stdenv, lib, fetchsvn, linux 2 2 , scripts ? fetchsvn { 3 3 url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/"; 4 - rev = "19663"; 5 - sha256 = "126b05v6hcdag3pfaxwbabfwkrp4c7010v52rk2dqh9i631ykavd"; 4 + rev = "19675"; 5 + sha256 = "sha256-vlWY3e9uf+a+I003CjFFw9e3suY059KlIqDf86LGmHM="; 6 6 } 7 7 , ... 8 8 } @ args:
+2 -2
pkgs/servers/amqp/rabbitmq-server/default.nix pkgs/by-name/ra/rabbitmq-server/package.nix
··· 42 42 43 43 stdenv.mkDerivation rec { 44 44 pname = "rabbitmq-server"; 45 - version = "4.0.2"; 45 + version = "4.0.4"; 46 46 47 47 # when updating, consider bumping elixir version in all-packages.nix 48 48 src = fetchurl { 49 49 url = "https://github.com/rabbitmq/rabbitmq-server/releases/download/v${version}/${pname}-${version}.tar.xz"; 50 - hash = "sha256-mSwjQTLkEWBBbbMDLZ+qldS2YDcUvp8BB+J0+RLQvZE="; 50 + hash = "sha256-7ff/BFXH0MiMEV+GsfCnBPGGlgPht6gM0K43V2ogtHc="; 51 51 }; 52 52 53 53 nativeBuildInputs = [
+3 -3
pkgs/tools/networking/magic-wormhole-rs/default.nix
··· 9 9 }: 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "magic-wormhole-rs"; 12 - version = "0.7.3"; 12 + version = "0.7.4"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "magic-wormhole"; 16 16 repo = "magic-wormhole.rs"; 17 17 rev = version; 18 - sha256 = "sha256-R5TUZZE+cgSMGR+kNgjaqppXbWM0cELE7jyI4fSNIVM="; 18 + sha256 = "sha256-cPFstE442xuNnW8PQZ8y+0sXTaWk3QYjTn3HG+zWzY0="; 19 19 }; 20 20 21 - cargoHash = "sha256-Q6S7iTV8kCDyV3FdXCKA2vcg3x64BrXOIfrRUc06nI4="; 21 + cargoHash = "sha256-+OcjILDwGg0eybzBgVIZeVelnQatPU6rgd/b6buvTRQ="; 22 22 23 23 buildInputs = [ libxcb ] 24 24 ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security AppKit ];
+3 -2
pkgs/top-level/all-packages.nix
··· 12078 12078 12079 12079 qremotecontrol-server = libsForQt5.callPackage ../servers/misc/qremotecontrol-server { }; 12080 12080 12081 - rabbitmq-server = callPackage ../servers/amqp/rabbitmq-server { 12082 - erlang = erlang_26; 12081 + rabbitmq-server = callPackage ../by-name/ra/rabbitmq-server/package.nix rec { 12082 + erlang = erlang_27; 12083 + elixir = pkgs.elixir.override { inherit erlang; }; 12083 12084 }; 12084 12085 12085 12086 radicale2 = callPackage ../servers/radicale/2.x.nix { };
+4
pkgs/top-level/python-packages.nix
··· 471 471 472 472 aiowebostv = callPackage ../development/python-modules/aiowebostv { }; 473 473 474 + aiowmi = callPackage ../development/python-modules/aiowmi { }; 475 + 474 476 aiowinreg = callPackage ../development/python-modules/aiowinreg { }; 475 477 476 478 aiowithings = callPackage ../development/python-modules/aiowithings { }; ··· 6560 6562 jenkinsapi = callPackage ../development/python-modules/jenkinsapi { }; 6561 6563 6562 6564 jenkins-job-builder = callPackage ../development/python-modules/jenkins-job-builder { }; 6565 + 6566 + jh2 = callPackage ../development/python-modules/jh2 { }; 6563 6567 6564 6568 jianpu-ly = callPackage ../development/python-modules/jianpu-ly { }; 6565 6569