Skip to content

Commit

Permalink
gitlab: 13.0.4 -> 13.0.6
Browse files Browse the repository at this point in the history
CI Token Access Control

An authorization issue discovered in the mirroring logic allowed read access to private repositories. This issue is now mitigated in the latest release and is waiting for a CVE ID to be assigned.

https://about.gitlab.com/releases/2020/06/10/critical-security-release-13-0-6-released/
  • Loading branch information
flokli committed Jun 10, 2020
1 parent e596d5c commit 38a4af7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions pkgs/applications/version-management/gitlab/data.json
@@ -1,13 +1,13 @@
{
"version": "13.0.4",
"repo_hash": "15pfg3ss1diqsnlf0xpx4ixlpjnvzghzjfvs6y3bv21qnjfwkp0g",
"version": "13.0.6",
"repo_hash": "0iyzx5lnkwp6m8q5p60gzsjmpf6qflvzl0vzfw37hymnxwq646zy",
"owner": "gitlab-org",
"repo": "gitlab",
"rev": "v13.0.4-ee",
"rev": "v13.0.6-ee",
"passthru": {
"GITALY_SERVER_VERSION": "13.0.4",
"GITALY_SERVER_VERSION": "13.0.6",
"GITLAB_PAGES_VERSION": "1.18.0",
"GITLAB_SHELL_VERSION": "13.2.0",
"GITLAB_WORKHORSE_VERSION": "8.31.1"
"GITLAB_WORKHORSE_VERSION": "8.31.2"
}
}
Expand Up @@ -19,14 +19,14 @@ let
};
};
in buildGoPackage rec {
version = "13.0.4";
version = "13.0.6";
pname = "gitaly";

src = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitaly";
rev = "v${version}";
sha256 = "1hnjv2q98016srvjmyjpd5fkpg68mra6qk0asl1l83z2vin2xrkm";
sha256 = "14vp73z9f0p3m1bjykkfzrmw9miyjxiqm79rns477xbm2dbmwa4s";
};

# Fix a check which assumes that hook files are writeable by their
Expand Down
Expand Up @@ -3,13 +3,13 @@
buildGoPackage rec {
pname = "gitlab-workhorse";

version = "8.31.1";
version = "8.31.2";

src = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-workhorse";
rev = "v${version}";
sha256 = "1c2y1icil98qay9d95q1rlpi0ffhll990grkkib9srsn55b2i86v";
sha256 = "0wvhhjfb490mjdrmc9xwr3qfh3941xn3b02c757ghrvzwv329wvg";
};

goPackagePath = "gitlab.com/gitlab-org/gitlab-workhorse";
Expand Down

0 comments on commit 38a4af7

Please sign in to comment.