Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pkgs/applications/version-management/gitlab/data.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"version": "17.5.2",
"repo_hash": "08mx9xbl6cagzp36qwzz1zab5w8y2x4yhy3x5hqv1qwbrjrlcxjd",
"version": "17.5.4",
"repo_hash": "sha256-hKG9IZthAJc99wogi8K/4PgM5zTs525jKDZP9k6Clt0=",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The hash is now in a different format as nix-universal-prefetch threw an error and I generated the hash with nix flake prefetch. I'll soon prepare a PR to switch the update script to nix flake prefetch as nix-univeral-prefetch is also dropped because it's not maintainted anymore.

"yarn_hash": "0x1yhgjrm7zyj9qir4yk1zkzj009a3s20hf6fqmsaala4hynnlnq",
"owner": "gitlab-org",
"repo": "gitlab",
"rev": "v17.5.2-ee",
"rev": "v17.5.4-ee",
"passthru": {
"GITALY_SERVER_VERSION": "17.5.2",
"GITLAB_PAGES_VERSION": "17.5.2",
"GITALY_SERVER_VERSION": "17.5.4",
"GITLAB_PAGES_VERSION": "17.5.4",
"GITLAB_SHELL_VERSION": "14.39.0",
"GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.3.0",
"GITLAB_WORKHORSE_VERSION": "17.5.2"
"GITLAB_WORKHORSE_VERSION": "17.5.4"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}:

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

Expand All @@ -21,7 +21,7 @@ let
owner = "gitlab-org";
repo = "gitaly";
rev = "v${version}";
hash = "sha256-jEgw66aNJdLW6twU/oqJN/pxyGsJh/UOFaNEzfVjdCY=";
hash = "sha256-sxe4AwxkzuhVq/LJpsRbqBTYtF751rborawDhsFgfhc=";
};

vendorHash = "sha256-VN+d6jMX3f4ua+YEF6LmqEOTRm2q4zxZ/X73hhA4fNs=";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

buildGoModule rec {
pname = "gitlab-pages";
version = "17.5.2";
version = "17.5.4";

# nixpkgs-update: no auto update
src = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-pages";
rev = "v${version}";
hash = "sha256-fjoby/fTh1wAidyOQSqx7VolxzSB0TQYvltJhYduDSY=";
hash = "sha256-gjYnougKEsydEW3sYSYxcGP7B0uL+IKs0nP3udOyqTg=";
};

vendorHash = "sha256-M2RQPkLWsi9rHXI3lSb9w9nxiklTkV8wpC9VoH0SP6M=";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ in
buildGoModule rec {
pname = "gitlab-workhorse";

version = "17.5.2";
version = "17.5.4";

# nixpkgs-update: no auto update
src = fetchFromGitLab {
Expand Down