Unverified Commit 92fb0911 authored by Leona Maroni's avatar Leona Maroni Committed by GitHub
Browse files

gitlab: 18.5.0 -> 18.5.1 (#454465)

parents 9be619ca c56fff34
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
}:

let
  version = "18.5.0";
  version = "18.5.1";
  package_version = "v${lib.versions.major version}";
  gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}";

@@ -21,7 +21,7 @@ let
      owner = "gitlab-org";
      repo = "gitaly";
      rev = "v${version}";
      hash = "sha256-kVFO8brtXWWGU2nWTtHR1q5RrTIXy2ssra9YjtWsglU=";
      hash = "sha256-719FC9+OBX9Li9gkIpusFoZrpMyeDwCsoWxt9pfhI1A=";
    };

    vendorHash = "sha256-I2YMn84wEAY+Z02bmkyP/b0eix7FW3hP/noyEKYsEaQ=";
+2 −2
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@

buildGoModule rec {
  pname = "gitlab-pages";
  version = "18.5.0";
  version = "18.5.1";

  # nixpkgs-update: no auto update
  src = fetchFromGitLab {
    owner = "gitlab-org";
    repo = "gitlab-pages";
    rev = "v${version}";
    hash = "sha256-7jMiKN2L4rF4YyqoJW8pzj5rP5g6ScwZ3qkY+OCZOZ8=";
    hash = "sha256-UrVH5Ky5aiqquQ2o6bSkqLD4ULl9/vUViOoACantT1Q=";
  };

  vendorHash = "sha256-VWD/AXqEVWo7G9p1q1BM2LUNwAFmkPm+Gm2s9EPu6nM=";
+6 −6
Original line number Diff line number Diff line
{
  "version": "18.5.0",
  "repo_hash": "0r1q6byqv3zziwsw63z7km5jjap7q6222j91lnr048w6cf425n1w",
  "version": "18.5.1",
  "repo_hash": "0h80pzsfn6lb8mz8igbpkmazzj3kkdwhrqxazjq6g9zrsqsvydx5",
  "yarn_hash": "16f7r4v4mjjdsfbzy5vy1g18p0l3gnjvfvzrl2xrxdibx7a3b4xs",
  "frontend_islands_yarn_hash": "0kks9hzm5fq3fss9ys8zxls3d3860l1fvsfcrbhf9rccmwvmjn3l",
  "owner": "gitlab-org",
  "repo": "gitlab",
  "rev": "v18.5.0-ee",
  "rev": "v18.5.1-ee",
  "passthru": {
    "GITALY_SERVER_VERSION": "18.5.0",
    "GITLAB_PAGES_VERSION": "18.5.0",
    "GITALY_SERVER_VERSION": "18.5.1",
    "GITLAB_PAGES_VERSION": "18.5.1",
    "GITLAB_SHELL_VERSION": "14.45.3",
    "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.9.4",
    "GITLAB_WORKHORSE_VERSION": "18.5.0"
    "GITLAB_WORKHORSE_VERSION": "18.5.1"
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ in
buildGoModule rec {
  pname = "gitlab-workhorse";

  version = "18.5.0";
  version = "18.5.1";

  # nixpkgs-update: no auto update
  src = fetchFromGitLab {
+2 −1
Original line number Diff line number Diff line
@@ -331,7 +331,8 @@ gem 'js_regex', '~> 3.8', feature_category: :shared
gem 'device_detector', feature_category: :shared

# Redis
gem 'redis', '~> 5.4.0', feature_category: :redis
# Do NOT upgrade until Rails is upgraded with a version that contains https://github.com/rails/rails/pull/55359.
gem 'redis', '= 5.4.0', feature_category: :redis
gem 'redis-client', '~> 0.25', feature_category: :redis
gem 'redis-cluster-client', '~> 0.13', feature_category: :redis
gem 'redis-clustering', '~> 5.4.0', feature_category: :redis
Loading