summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitlab
diff options
context:
space:
mode:
authorYaya <mak@nyantec.com>2022-07-01 22:19:41 +0200
committerGitHub <noreply@github.com>2022-07-01 22:19:41 +0200
commita8c71a477fa3337c5cde8e5ac8b862c807c0385d (patch)
tree5a74cf7371ccb8416021b112f01e3ca17dd6e271 /pkgs/applications/version-management/gitlab
parent8b00147f1d20a3d3c4b7dc2a88cdc6c2d648abaf (diff)
downloadnixpkgs-a8c71a477fa3337c5cde8e5ac8b862c807c0385d.tar
nixpkgs-a8c71a477fa3337c5cde8e5ac8b862c807c0385d.tar.gz
nixpkgs-a8c71a477fa3337c5cde8e5ac8b862c807c0385d.tar.bz2
nixpkgs-a8c71a477fa3337c5cde8e5ac8b862c807c0385d.tar.lz
nixpkgs-a8c71a477fa3337c5cde8e5ac8b862c807c0385d.tar.xz
nixpkgs-a8c71a477fa3337c5cde8e5ac8b862c807c0385d.tar.zst
nixpkgs-a8c71a477fa3337c5cde8e5ac8b862c807c0385d.zip
gitlab: 15.1.0 -> 15.1.1 (#179810)
https://about.gitlab.com/releases/2022/06/30/critical-security-release-gitlab-15-1-1-released/

Fixes CVE-2022-2185 CVE-2022-2235 CVE-2022-2230 CVE-2022-2229
      CVE-2022-1983 CVE-2022-1963 CVE-2022-2228 CVE-2022-1981
      CVE-2022-2243 CVE-2022-2244 CVE-2022-1954 CVE-2022-2270
      CVE-2022-2250 CVE-2022-1999 CVE-2022-2281 CVE-2022-2227
Diffstat (limited to 'pkgs/applications/version-management/gitlab')
-rw-r--r--pkgs/applications/version-management/gitlab/data.json10
-rw-r--r--pkgs/applications/version-management/gitlab/gitaly/default.nix4
-rw-r--r--pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix2
3 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/version-management/gitlab/data.json b/pkgs/applications/version-management/gitlab/data.json
index 3cfdc2a11c7..c9d03868bfd 100644
--- a/pkgs/applications/version-management/gitlab/data.json
+++ b/pkgs/applications/version-management/gitlab/data.json
@@ -1,14 +1,14 @@
 {
-  "version": "15.1.0",
-  "repo_hash": "sha256-vOPI9kxdJlQNmI/DZueFcbvZPy2/0d+2CYM/RBAkIcU=",
+  "version": "15.1.1",
+  "repo_hash": "sha256-wCO0Ksi5c8kgerpK/O3IkI6CJARQbQj9nWmnxBVhBIM=",
   "yarn_hash": "19df16gk0vpvdi1idqaakaglf11cic93i5njw0x4m2cnsznhpvz4",
   "owner": "gitlab-org",
   "repo": "gitlab",
-  "rev": "v15.1.0-ee",
+  "rev": "v15.1.1-ee",
   "passthru": {
-    "GITALY_SERVER_VERSION": "15.1.0",
+    "GITALY_SERVER_VERSION": "15.1.1",
     "GITLAB_PAGES_VERSION": "1.59.0",
     "GITLAB_SHELL_VERSION": "14.7.4",
-    "GITLAB_WORKHORSE_VERSION": "15.1.0"
+    "GITLAB_WORKHORSE_VERSION": "15.1.1"
   }
 }
diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix
index b8c1ecf6704..22cbc267c6b 100644
--- a/pkgs/applications/version-management/gitlab/gitaly/default.nix
+++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix
@@ -11,7 +11,7 @@ let
     gemdir = ./.;
   };
 
-  version = "15.1.0";
+  version = "15.1.1";
   package_version = "v${lib.versions.major version}";
   gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}";
 in
@@ -24,7 +24,7 @@ buildGoModule {
     owner = "gitlab-org";
     repo = "gitaly";
     rev = "v${version}";
-    sha256 = "sha256-rhMQRskum4c5bQL1sE7O4gMxIGX7q3bntuV1HkttA8M=";
+    sha256 = "sha256-JMKB6lrmQBbBgXSKinL2shlXRXhZrf4QwoJrm+VpKdE=";
   };
 
   vendorSha256 = "sha256-0JWJ2mpf79gJdnNRdlQLi0oDvnj6VmibkW2XcPnaCww=";
diff --git a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
index b59909dd041..99860d3fc36 100644
--- a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
+++ b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
@@ -5,7 +5,7 @@ in
 buildGoModule rec {
   pname = "gitlab-workhorse";
 
-  version = "15.1.0";
+  version = "15.1.1";
 
   src = fetchFromGitLab {
     owner = data.owner;