From 085e4e9a663e53832b805846ec9d226c1c45894b Mon Sep 17 00:00:00 2001 From: Yaya Date: Tue, 6 Jun 2023 09:08:52 +0200 Subject: [PATCH] gitlab: 16.0.1 -> 16.0.2 (#236150) https://gitlab.com/gitlab-org/gitlab/-/blob/v16.0.2-ee/CHANGELOG.md Fixes CVE-2023-2442 Fixes CVE-2023-2199 Fixes CVE-2023-2198 Fixes CVE-2023-2132 Fixes CVE-2023-0121 Fixes CVE-2023-2589 Fixes CVE-2023-2015 Fixes CVE-2023-2485 Fixes CVE-2023-2001 Fixes CVE-2023-0921 Fixes CVE-2023-1204 Fixes CVE-2023-0508 Fixes CVE-2023-1825 Fixes CVE-2023-2013 --- .../applications/version-management/gitlab/data.json | 12 ++++++------ .../version-management/gitlab/gitaly/default.nix | 4 ++-- .../gitlab/gitlab-pages/default.nix | 4 ++-- .../gitlab/gitlab-workhorse/default.nix | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/version-management/gitlab/data.json b/pkgs/applications/version-management/gitlab/data.json index e1f099bb22f1..82996fe58857 100644 --- a/pkgs/applications/version-management/gitlab/data.json +++ b/pkgs/applications/version-management/gitlab/data.json @@ -1,14 +1,14 @@ { - "version": "16.0.1", - "repo_hash": "sha256-TApZSavGA361Pue0u21Der6CUABhp/hwewUe9YExLAs=", + "version": "16.0.2", + "repo_hash": "sha256-qAwO/5eyyYdpwSUg3lC8jOFoBc8H6yhgiHUbx+Ww6Uc=", "yarn_hash": "0yy04jnfvn5dgciqd105xiwg7chjwp3w6iqbjpylak9h82ci6wlh", "owner": "gitlab-org", "repo": "gitlab", - "rev": "v16.0.1-ee", + "rev": "v16.0.2-ee", "passthru": { - "GITALY_SERVER_VERSION": "16.0.1", - "GITLAB_PAGES_VERSION": "16.0.1", + "GITALY_SERVER_VERSION": "16.0.2", + "GITLAB_PAGES_VERSION": "16.0.2", "GITLAB_SHELL_VERSION": "14.20.0", - "GITLAB_WORKHORSE_VERSION": "16.0.1" + "GITLAB_WORKHORSE_VERSION": "16.0.2" } } diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix index c21d1312a457..e6dc566d4e10 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/default.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix @@ -13,7 +13,7 @@ }: let - version = "16.0.1"; + version = "16.0.2"; package_version = "v${lib.versions.major version}"; gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; @@ -24,7 +24,7 @@ let owner = "gitlab-org"; repo = "gitaly"; rev = "v${version}"; - sha256 = "sha256-2OlCjwcJ0RydbKI15X4wZ20XVclC44McNig95UndDGg="; + sha256 = "sha256-dtGtWV+lfTp9pKipAHx3FUIPaUobiRLsKYbULpuIgRY="; }; vendorSha256 = "sha256-KBhTI70eReZGSd7RxwGXcUGa0wDo7q5tU9fUhrLeFO0="; diff --git a/pkgs/applications/version-management/gitlab/gitlab-pages/default.nix b/pkgs/applications/version-management/gitlab/gitlab-pages/default.nix index e8b90d5d53f5..3be7ff6f2ce2 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-pages/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-pages/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "gitlab-pages"; - version = "16.0.1"; + version = "16.0.2"; src = fetchFromGitLab { owner = "gitlab-org"; repo = "gitlab-pages"; rev = "v${version}"; - sha256 = "sha256-RbsPWc3Dc/rMLnSID0dZmHMg3+uK91kI+DXBYPSy81w="; + sha256 = "sha256-AUX6JIkElYZHjy/RFBVXRb3ZnbWkaNyApZNMT6zsBAU="; }; vendorHash = "sha256-s3HHoz9URACuVVhePQQFviTqlQU7vCLOjTJPBlus1Vo="; diff --git a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix index c4afb9f0a367..b79b88137ddb 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 = "16.0.1"; + version = "16.0.2"; src = fetchFromGitLab { owner = data.owner;