Merge master into staging-next

This commit is contained in:
github-actions[bot]
2024-12-08 18:04:12 +00:00
committed by GitHub
225 changed files with 1205 additions and 1142 deletions

View File

@@ -23,6 +23,8 @@
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
- [Bazecor](https://github.com/Dygmalab/Bazecor), the graphical configurator for Dygma Products.
- [Kimai](https://www.kimai.org/), a web-based multi-user time-tracking application. Available as [services.kimai](options.html#opt-services.kimai). - [Kimai](https://www.kimai.org/), a web-based multi-user time-tracking application. Available as [services.kimai](options.html#opt-services.kimai).
- [Omnom](https://github.com/asciimoo/omnom), a webpage bookmarking and snapshotting service. Available as [services.omnom](options.html#opt-services.omnom.enable). - [Omnom](https://github.com/asciimoo/omnom), a webpage bookmarking and snapshotting service. Available as [services.omnom](options.html#opt-services.omnom.enable).

View File

@@ -160,6 +160,7 @@
./programs/bash/blesh.nix ./programs/bash/blesh.nix
./programs/bash/ls-colors.nix ./programs/bash/ls-colors.nix
./programs/bash/undistract-me.nix ./programs/bash/undistract-me.nix
./programs/bazecor.nix
./programs/bcc.nix ./programs/bcc.nix
./programs/benchexec.nix ./programs/benchexec.nix
./programs/browserpass.nix ./programs/browserpass.nix

View File

@@ -0,0 +1,25 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.bazecor;
in
{
meta.maintainers = with lib.maintainers; [ amesgen ];
options = {
programs.bazecor = {
enable = lib.mkEnableOption "Bazecor, the graphical configurator for Dygma Products";
package = lib.mkPackageOption pkgs "bazecor" { };
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
services.udev.packages = [ cfg.package ];
};
}

View File

@@ -185,7 +185,6 @@ in
''; '';
example = { example = {
PAPERLESS_OCR_LANGUAGE = "deu+eng"; PAPERLESS_OCR_LANGUAGE = "deu+eng";
PAPERLESS_DBHOST = "/run/postgresql";
PAPERLESS_CONSUMER_IGNORE_PATTERN = [ ".DS_STORE/*" "desktop.ini" ]; PAPERLESS_CONSUMER_IGNORE_PATTERN = [ ".DS_STORE/*" "desktop.ini" ];
PAPERLESS_OCR_USER_ARGS = { PAPERLESS_OCR_USER_ARGS = {
optimize = 1; optimize = 1;
@@ -246,11 +245,37 @@ in
``` ```
''; '';
}; };
database = {
createLocally = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
Configure local PostgreSQL database server for Paperless.
'';
};
};
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
services.redis.servers.paperless.enable = lib.mkIf enableRedis true; services.redis.servers.paperless.enable = lib.mkIf enableRedis true;
services.postgresql = lib.mkIf cfg.database.createLocally {
enable = true;
ensureDatabases = [ "paperless" ];
ensureUsers = [{
name = config.services.paperless.user;
ensureDBOwnership = true;
}];
};
services.paperless.settings = lib.mkIf cfg.database.createLocally {
PAPERLESS_DBENGINE = "postgresql";
PAPERLESS_DBHOST = "/run/postgresql";
PAPERLESS_DBNAME = "paperless";
PAPERLESS_DBUSER = "paperless";
};
systemd.slices.system-paperless = { systemd.slices.system-paperless = {
description = "Paperless Document Management System Slice"; description = "Paperless Document Management System Slice";
documentation = [ "https://docs.paperless-ngx.com" ]; documentation = [ "https://docs.paperless-ngx.com" ];
@@ -318,13 +343,16 @@ in
echo "$superuserState" > "$superuserStateFile" echo "$superuserState" > "$superuserStateFile"
fi fi
''; '';
} // lib.optionalAttrs enableRedis { requires = lib.optional cfg.database.createLocally "postgresql.service";
after = [ "redis-paperless.service" ]; after = lib.optional enableRedis "redis-paperless.service"
++ lib.optional cfg.database.createLocally "postgresql.service";
}; };
systemd.services.paperless-task-queue = { systemd.services.paperless-task-queue = {
description = "Paperless Celery Workers"; description = "Paperless Celery Workers";
after = [ "paperless-scheduler.service" ]; requires = lib.optional cfg.database.createLocally "postgresql.service";
after = [ "paperless-scheduler.service" ]
++ lib.optional cfg.database.createLocally "postgresql.service";
serviceConfig = defaultServiceConfig // { serviceConfig = defaultServiceConfig // {
User = cfg.user; User = cfg.user;
ExecStart = "${cfg.package}/bin/celery --app paperless worker --loglevel INFO"; ExecStart = "${cfg.package}/bin/celery --app paperless worker --loglevel INFO";
@@ -342,7 +370,9 @@ in
# Bind to `paperless-scheduler` so that the consumer never runs # Bind to `paperless-scheduler` so that the consumer never runs
# during migrations # during migrations
bindsTo = [ "paperless-scheduler.service" ]; bindsTo = [ "paperless-scheduler.service" ];
after = [ "paperless-scheduler.service" ]; requires = lib.optional cfg.database.createLocally "postgresql.service";
after = [ "paperless-scheduler.service" ]
++ lib.optional cfg.database.createLocally "postgresql.service";
serviceConfig = defaultServiceConfig // { serviceConfig = defaultServiceConfig // {
User = cfg.user; User = cfg.user;
ExecStart = "${cfg.package}/bin/paperless-ngx document_consumer"; ExecStart = "${cfg.package}/bin/paperless-ngx document_consumer";
@@ -359,7 +389,9 @@ in
# Bind to `paperless-scheduler` so that the web server never runs # Bind to `paperless-scheduler` so that the web server never runs
# during migrations # during migrations
bindsTo = [ "paperless-scheduler.service" ]; bindsTo = [ "paperless-scheduler.service" ];
after = [ "paperless-scheduler.service" ]; requires = lib.optional cfg.database.createLocally "postgresql.service";
after = [ "paperless-scheduler.service" ]
++ lib.optional cfg.database.createLocally "postgresql.service";
# Setup PAPERLESS_SECRET_KEY. # Setup PAPERLESS_SECRET_KEY.
# If this environment variable is left unset, paperless-ngx defaults # If this environment variable is left unset, paperless-ngx defaults
# to a well-known value, which is insecure. # to a well-known value, which is insecure.

View File

@@ -12,17 +12,8 @@ import ./make-test-python.nix ({ lib, ... }: {
}; };
postgres = { config, pkgs, ... }: { postgres = { config, pkgs, ... }: {
imports = [ self.simple ]; imports = [ self.simple ];
services.postgresql = { services.paperless.database.createLocally = true;
enable = true;
ensureDatabases = [ "paperless" ];
ensureUsers = [
{ name = config.services.paperless.user;
ensureDBOwnership = true;
}
];
};
services.paperless.settings = { services.paperless.settings = {
PAPERLESS_DBHOST = "/run/postgresql";
PAPERLESS_OCR_LANGUAGE = "deu"; PAPERLESS_OCR_LANGUAGE = "deu";
}; };
}; };

View File

@@ -5,7 +5,7 @@
}: }:
mkDerivation rec { mkDerivation rec {
version = "0.9.13"; version = "0.9.91";
pname = "qjackctl"; pname = "qjackctl";
# some dependencies such as killall have to be installed additionally # some dependencies such as killall have to be installed additionally
@@ -14,7 +14,7 @@ mkDerivation rec {
owner = "rncbc"; owner = "rncbc";
repo = "qjackctl"; repo = "qjackctl";
rev = "${pname}_${lib.replaceStrings ["."] ["_"] version}"; rev = "${pname}_${lib.replaceStrings ["."] ["_"] version}";
sha256 = "sha256-tCABvZzAmDKgOfTylOf2uZsKeib8PgvdQd1niaI8RxM="; sha256 = "sha256-YfdRyylU/ktFvsh18FjpnG9MkV1HxHJBhRnHWQ7I+hY=";
}; };
buildInputs = [ buildInputs = [

View File

@@ -4,13 +4,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "seq66"; pname = "seq66";
version = "0.99.15"; version = "0.99.16";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ahlstromcj"; owner = "ahlstromcj";
repo = "seq66"; repo = "seq66";
rev = version; rev = version;
hash = "sha256-/wrCBRB6AujSQwv56/OR60+A/zvIdEFsw2/W4+dkDgY="; hash = "sha256-HXmpAgztIr6fUdksBPyLli/eMoD3Xlfs+UhHvfrZe0U=";
}; };
nativeBuildInputs = [ autoreconfHook pkg-config qttools which wrapQtAppsHook ]; nativeBuildInputs = [ autoreconfHook pkg-config qttools which wrapQtAppsHook ];

View File

@@ -13,13 +13,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "lite-xl"; pname = "lite-xl";
version = "2.1.5"; version = "2.1.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lite-xl"; owner = "lite-xl";
repo = "lite-xl"; repo = "lite-xl";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-awXcmYAvQUdFUr2vFlnBt8WTLrACREfB7J8HoSyVPTs="; hash = "sha256-J0WxyDxqhIfExamOCnI1+Y6ViVbHR0wOvsY17CixbiI=";
}; };
nativeBuildInputs = [ meson ninja pkg-config ]; nativeBuildInputs = [ meson ninja pkg-config ];

View File

@@ -15,14 +15,14 @@
python3Packages.buildPythonPackage rec { python3Packages.buildPythonPackage rec {
pname = "hydrus"; pname = "hydrus";
version = "595"; version = "598";
format = "other"; format = "other";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hydrusnetwork"; owner = "hydrusnetwork";
repo = "hydrus"; repo = "hydrus";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-bIUtFpAMCIeLAyGXi4Rgn8FmijN5NwbkC31JoVyjNdg="; hash = "sha256-i9XeZJgB0oDimoc0D5UTYSBs9C55QXC6HIxv2gP8vWY=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -10,13 +10,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "pineapple-pictures"; pname = "pineapple-pictures";
version = "0.8.2.1"; version = "0.9.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "BLumia"; owner = "BLumia";
repo = "pineapple-pictures"; repo = "pineapple-pictures";
rev = finalAttrs.version; rev = finalAttrs.version;
hash = "sha256-24VDmB0eR8h0JGqpsdN0HkRRIHLw9DIT2sM4rCvPwhE="; hash = "sha256-NXg+lCkm4i4ONkIp3F7Z1yHHO9daXucC+X1SuNxPJgQ=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -9,13 +9,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "cubiomes-viewer"; pname = "cubiomes-viewer";
version = "4.1.0"; version = "4.1.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Cubitect"; owner = "Cubitect";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-ORTFddzVGKXpy5V6zXJgCnwLwn/8cWKklpcoHkc6u34="; hash = "sha256-izDKS08LNT2rV5rIxlWRHevJAKEbAVzekjfZy0Oen1I=";
fetchSubmodules = true; fetchSubmodules = true;
}; };

View File

@@ -2,16 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "helm-unittest"; pname = "helm-unittest";
version = "0.5.2"; version = "0.6.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-xA0dA8q7ZDQk35VjyIsJFbm3OlagnIbJ/iz5z2KsxjU="; hash = "sha256-OXl3Ax/sqCNcj2uDb0VctJ6Njrd5blkFuur6FT9HOl4=";
}; };
vendorHash = "sha256-hSnTjEvi1Lexp7wAogqeoXWDCg/bvblw0bt1/lX9iR0="; vendorHash = "sha256-i9H65843XynaaNQLIQkBcgDsjnft3nxz6eWdZM9Dn9U=";
# NOTE: Remove the install and upgrade hooks. # NOTE: Remove the install and upgrade hooks.
postPatch = '' postPatch = ''

View File

@@ -68,8 +68,8 @@ rec {
}; };
kops_1_30 = mkKops rec { kops_1_30 = mkKops rec {
version = "1.30.1"; version = "1.30.2";
sha256 = "sha256-aj2OnjkXlBEH830RoJiAlhiFfS1zjVoX38PrsgAaB7A="; sha256 = "sha256-id4I4PLZC1qvhlvAZFVB1vQM8/HDC4IGqXet/KelNvU=";
rev = "v${version}"; rev = "v${version}";
}; };
} }

View File

@@ -2,16 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "roxctl"; pname = "roxctl";
version = "4.5.4"; version = "4.6.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "stackrox"; owner = "stackrox";
repo = "stackrox"; repo = "stackrox";
rev = version; rev = version;
sha256 = "sha256-Da3KFGdhDSvdcMBbYmhgft7Sj+PPgUMsEoXAtx9Mhm8="; sha256 = "sha256-G/AKJV4D7bsObU9wkKysyi/KMay+B7OhAZi59jDiVFk=";
}; };
vendorHash = "sha256-qDSi1Jk6erSCwPiLubdVlqOT6PQygMQghS8leieJ78s="; vendorHash = "sha256-iB5LkGEvkxxFO+/wFSZMP2byA5Pu2sEzS6mdnVD0/wY=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];

View File

@@ -660,11 +660,11 @@
"vendorHash": "sha256-xr54yCVGOJbj0612wiljUkx1wEOSuXB1qrGbF/vCwN8=" "vendorHash": "sha256-xr54yCVGOJbj0612wiljUkx1wEOSuXB1qrGbF/vCwN8="
}, },
"infoblox": { "infoblox": {
"hash": "sha256-x5WGCYvsXby2O8J15fvoRNsYnBCaYdjx6LuDkYAfIlU=", "hash": "sha256-r++9Fagi5hULK0IDEUjHzYS2cNpyB5gvaUwmoPOnExQ=",
"homepage": "https://registry.terraform.io/providers/infobloxopen/infoblox", "homepage": "https://registry.terraform.io/providers/infobloxopen/infoblox",
"owner": "infobloxopen", "owner": "infobloxopen",
"repo": "terraform-provider-infoblox", "repo": "terraform-provider-infoblox",
"rev": "v2.7.0", "rev": "v2.8.0",
"spdx": "MPL-2.0", "spdx": "MPL-2.0",
"vendorHash": null "vendorHash": null
}, },

View File

@@ -15,13 +15,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "seafile-client"; pname = "seafile-client";
version = "9.0.9"; version = "9.0.11";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "haiwen"; owner = "haiwen";
repo = "seafile-client"; repo = "seafile-client";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-dy5EXDEyxtV88Fgbao/J3fNwO5AO/ES0IJLIeRenO8I="; sha256 = "sha256-qiJ/GDbwCei51tsa5MNbjsWQWZNxONFj20QEss/jbRE=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -7,16 +7,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "git-cliff"; pname = "git-cliff";
version = "2.6.1"; version = "2.7.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "orhun"; owner = "orhun";
repo = "git-cliff"; repo = "git-cliff";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-le/E+26N/SEam9Rvo2xzB2cFly65FO0RA+Xvh9NOSfE="; hash = "sha256-wGxxLfl+d8uTPLHPL2EKpaL36x0or7PHwdVaZTlKITE=";
}; };
cargoHash = "sha256-QC/7MctcfGWQpSSz/mS6czHh37llJl7aWJgyaa/WvB0="; cargoHash = "sha256-8G6iyvnKYxiRotQH7SwLSZStJg7iDNw4zPvT9sUTvmA=";
# attempts to run the program on .git in src which is not deterministic # attempts to run the program on .git in src which is not deterministic
doCheck = false; doCheck = false;

View File

@@ -1,15 +1,15 @@
{ {
"version": "17.5.2", "version": "17.6.1",
"repo_hash": "08mx9xbl6cagzp36qwzz1zab5w8y2x4yhy3x5hqv1qwbrjrlcxjd", "repo_hash": "1az442dj0xxkb3bdqgln7ax5779bmndbx8p8mszybgghkjl0g4nq",
"yarn_hash": "0x1yhgjrm7zyj9qir4yk1zkzj009a3s20hf6fqmsaala4hynnlnq", "yarn_hash": "0g60lvngbvgvirjag5l539innmklh2x6a56vd38svrgx5jm6d3jc",
"owner": "gitlab-org", "owner": "gitlab-org",
"repo": "gitlab", "repo": "gitlab",
"rev": "v17.5.2-ee", "rev": "v17.6.1-ee",
"passthru": { "passthru": {
"GITALY_SERVER_VERSION": "17.5.2", "GITALY_SERVER_VERSION": "17.6.1",
"GITLAB_PAGES_VERSION": "17.5.2", "GITLAB_PAGES_VERSION": "17.6.1",
"GITLAB_SHELL_VERSION": "14.39.0", "GITLAB_SHELL_VERSION": "14.39.0",
"GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.3.0", "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.4.0",
"GITLAB_WORKHORSE_VERSION": "17.5.2" "GITLAB_WORKHORSE_VERSION": "17.6.1"
} }
} }

View File

@@ -5,7 +5,7 @@ in
buildGoModule rec { buildGoModule rec {
pname = "gitlab-workhorse"; pname = "gitlab-workhorse";
version = "17.5.2"; version = "17.6.1";
# nixpkgs-update: no auto update # nixpkgs-update: no auto update
src = fetchFromGitLab { src = fetchFromGitLab {
@@ -17,7 +17,7 @@ buildGoModule rec {
sourceRoot = "${src.name}/workhorse"; sourceRoot = "${src.name}/workhorse";
vendorHash = "sha256-10gJPUncde48Lk23mShHXM6ItTHvjh6Y8yMlGFfKkj8="; vendorHash = "sha256-ir2Npjl39K2DzjT8fnbOOcMmfHiwFnVmvG04oh2GoOA=";
buildInputs = [ git ]; buildInputs = [ git ];
ldflags = [ "-X main.Version=${version}" ]; ldflags = [ "-X main.Version=${version}" ];
doCheck = false; doCheck = false;

View File

@@ -63,7 +63,7 @@ gem 'responders', '~> 3.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'sprockets', '~> 3.7.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'sprockets', '~> 3.7.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'sprockets-rails', '~> 3.5.1' # rubocop:todo Gemfile/MissingFeatureCategory gem 'sprockets-rails', '~> 3.5.1' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'view_component', '~> 3.14.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'view_component', '~> 3.20.0' # rubocop:todo Gemfile/MissingFeatureCategory
# Supported DBs # Supported DBs
gem 'pg', '~> 1.5.6', feature_category: :database gem 'pg', '~> 1.5.6', feature_category: :database
@@ -83,7 +83,7 @@ gem 'marginalia', '~> 1.11.1' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'declarative_policy', '~> 1.1.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'declarative_policy', '~> 1.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
# For source code paths mapping # For source code paths mapping
gem 'coverband', '6.1.2', require: false, feature_category: :shared gem 'coverband', '6.1.4', require: false, feature_category: :shared
# Authentication libraries # Authentication libraries
gem 'devise', '~> 4.9.3', feature_category: :system_access gem 'devise', '~> 4.9.3', feature_category: :system_access
@@ -112,7 +112,7 @@ gem 'openid_connect', '~> 2.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'omniauth-salesforce', '~> 1.0.5', path: 'vendor/gems/omniauth-salesforce' # See gem README.md # rubocop:todo Gemfile/MissingFeatureCategory gem 'omniauth-salesforce', '~> 1.0.5', path: 'vendor/gems/omniauth-salesforce' # See gem README.md # rubocop:todo Gemfile/MissingFeatureCategory
gem 'omniauth-atlassian-oauth2', '~> 0.2.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'omniauth-atlassian-oauth2', '~> 0.2.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'rack-oauth2', '~> 2.2.1' # rubocop:todo Gemfile/MissingFeatureCategory gem 'rack-oauth2', '~> 2.2.1' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'jwt', '~> 2.5' # rubocop:todo Gemfile/MissingFeatureCategory gem 'jwt', '~> 2.9.3' # rubocop:todo Gemfile/MissingFeatureCategory
# Kerberos authentication. EE-only # Kerberos authentication. EE-only
gem 'gssapi', '~> 1.3.1', group: :kerberos # rubocop:todo Gemfile/MissingFeatureCategory gem 'gssapi', '~> 1.3.1', group: :kerberos # rubocop:todo Gemfile/MissingFeatureCategory
@@ -159,9 +159,8 @@ gem 'grape-path-helpers', '~> 2.0.1', feature_category: :api
gem 'rack-cors', '~> 2.0.1', require: 'rack/cors' # rubocop:todo Gemfile/MissingFeatureCategory gem 'rack-cors', '~> 2.0.1', require: 'rack/cors' # rubocop:todo Gemfile/MissingFeatureCategory
# GraphQL API # GraphQL API
gem 'graphql', '~> 2.3.14', feature_category: :api gem 'graphql', '~> 2.4.1', feature_category: :api
gem 'graphql-docs', '~> 5.0.0', group: [:development, :test], feature_category: :api gem 'graphql-docs', '~> 5.0.0', group: [:development, :test], feature_category: :api
gem 'graphiql-rails', '~> 1.10', feature_category: :api
gem 'apollo_upload_server', '~> 2.1.6', feature_category: :api gem 'apollo_upload_server', '~> 2.1.6', feature_category: :api
gem 'graphlient', '~> 0.8.0', feature_category: :importers # Used by BulkImport feature (group::import) gem 'graphlient', '~> 0.8.0', feature_category: :importers # Used by BulkImport feature (group::import)
@@ -235,9 +234,9 @@ gem 'seed-fu', '~> 2.3.7' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'elasticsearch-model', '~> 7.2', feature_category: :global_search gem 'elasticsearch-model', '~> 7.2', feature_category: :global_search
gem 'elasticsearch-rails', '~> 7.2', require: 'elasticsearch/rails/instrumentation', feature_category: :global_search gem 'elasticsearch-rails', '~> 7.2', require: 'elasticsearch/rails/instrumentation', feature_category: :global_search
gem 'elasticsearch-api', '7.17.11', feature_category: :global_search gem 'elasticsearch-api', '7.17.11', feature_category: :global_search
gem 'aws-sdk-core', '~> 3.206.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'aws-sdk-core', '~> 3.211.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'aws-sdk-cloudformation', '~> 1' # rubocop:todo Gemfile/MissingFeatureCategory gem 'aws-sdk-cloudformation', '~> 1' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'aws-sdk-s3', '~> 1.163.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'aws-sdk-s3', '~> 1.169.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'faraday-typhoeus', '~> 1.1', feature_category: :global_search gem 'faraday-typhoeus', '~> 1.1', feature_category: :global_search
gem 'faraday_middleware-aws-sigv4', '~> 1.0.1', feature_category: :global_search gem 'faraday_middleware-aws-sigv4', '~> 1.0.1', feature_category: :global_search
# Used with Elasticsearch to support http keep-alive connections # Used with Elasticsearch to support http keep-alive connections
@@ -248,7 +247,7 @@ gem 'html-pipeline', '~> 2.14.3', feature_category: :markdown
gem 'deckar01-task_list', '2.3.4', feature_category: :markdown gem 'deckar01-task_list', '2.3.4', feature_category: :markdown
gem 'gitlab-markup', '~> 1.9.0', require: 'github/markup', feature_category: :markdown gem 'gitlab-markup', '~> 1.9.0', require: 'github/markup', feature_category: :markdown
gem 'commonmarker', '~> 0.23.10', feature_category: :markdown gem 'commonmarker', '~> 0.23.10', feature_category: :markdown
gem 'kramdown', '~> 2.3.1', feature_category: :markdown gem 'kramdown', '~> 2.4.0', feature_category: :markdown
gem 'RedCloth', '~> 4.3.3', feature_category: :markdown gem 'RedCloth', '~> 4.3.3', feature_category: :markdown
gem 'org-ruby', '~> 0.9.12', feature_category: :markdown gem 'org-ruby', '~> 0.9.12', feature_category: :markdown
gem 'creole', '~> 0.5.0', feature_category: :markdown gem 'creole', '~> 0.5.0', feature_category: :markdown
@@ -257,10 +256,12 @@ gem 'asciidoctor', '~> 2.0.18', feature_category: :markdown
gem 'asciidoctor-include-ext', '~> 0.4.0', require: false, feature_category: :markdown gem 'asciidoctor-include-ext', '~> 0.4.0', require: false, feature_category: :markdown
gem 'asciidoctor-plantuml', '~> 0.0.16', feature_category: :markdown gem 'asciidoctor-plantuml', '~> 0.0.16', feature_category: :markdown
gem 'asciidoctor-kroki', '~> 0.10.0', require: false, feature_category: :markdown gem 'asciidoctor-kroki', '~> 0.10.0', require: false, feature_category: :markdown
gem 'rouge', '~> 4.3.0', feature_category: :shared gem 'rouge', '~> 4.4.0', feature_category: :shared
gem 'truncato', '~> 0.7.12', feature_category: :team_planning gem 'truncato', '~> 0.7.12', feature_category: :team_planning
gem 'nokogiri', '~> 1.16', feature_category: :shared gem 'nokogiri', '~> 1.16', feature_category: :shared
gem 'gitlab-glfm-markdown', '~> 0.0.21', feature_category: :markdown gem 'gitlab-glfm-markdown', '~> 0.0.21', feature_category: :markdown
gem 'tanuki_emoji', '~> 0.13', feature_category: :markdown
gem 'unicode-emoji', '~> 4.0', feature_category: :markdown
# Calendar rendering # Calendar rendering
gem 'icalendar', '~> 2.10.1', feature_category: :system_access gem 'icalendar', '~> 2.10.1', feature_category: :system_access
@@ -376,20 +377,18 @@ gem 'terser', '1.0.2' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'click_house-client', path: 'gems/click_house-client', require: 'click_house/client' # rubocop:todo Gemfile/MissingFeatureCategory gem 'click_house-client', path: 'gems/click_house-client', require: 'click_house/client' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'addressable', '~> 2.8' # rubocop:todo Gemfile/MissingFeatureCategory gem 'addressable', '~> 2.8' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'tanuki_emoji', '~> 0.9' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'gon', '~> 6.4.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'gon', '~> 6.4.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'request_store', '~> 1.5.1' # rubocop:todo Gemfile/MissingFeatureCategory gem 'request_store', '~> 1.5.1' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'base32', '~> 0.3.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'base32', '~> 0.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'gitlab-license', '~> 2.5', feature_category: :shared gem 'gitlab-license', '~> 2.5', feature_category: :shared
# Protect against bruteforcing # Protect against bruteforcing
gem 'rack-attack', '~> 6.7.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'rack-attack', '~> 6.7.0' # rubocop:todo Gemfile/MissingFeatureCategory
# Sentry integration # Sentry integration
gem 'sentry-ruby', '~> 5.19.0', feature_category: :observability gem 'sentry-ruby', '~> 5.21.0', feature_category: :observability
gem 'sentry-rails', '~> 5.19.0', feature_category: :observability gem 'sentry-rails', '~> 5.21.0', feature_category: :observability
gem 'sentry-sidekiq', '~> 5.19.0', feature_category: :observability gem 'sentry-sidekiq', '~> 5.21.0', feature_category: :observability
# PostgreSQL query parsing # PostgreSQL query parsing
# #
@@ -437,31 +436,31 @@ gem 'gitlab-security_report_schemas', '0.1.2.min15.0.0.max15.2.1', feature_categ
# OpenTelemetry # OpenTelemetry
group :opentelemetry do group :opentelemetry do
# Core OpenTelemetry gems # Core OpenTelemetry gems
gem 'opentelemetry-sdk', feature_category: :tooling gem 'opentelemetry-sdk', feature_category: :observability
gem 'opentelemetry-exporter-otlp', feature_category: :tooling gem 'opentelemetry-exporter-otlp', feature_category: :observability
# OpenTelemetry gems selected from full set in `opentelemetry-instrumentation-all` metagem # OpenTelemetry gems selected from full set in `opentelemetry-instrumentation-all` metagem
gem 'opentelemetry-instrumentation-active_support', feature_category: :tooling gem 'opentelemetry-instrumentation-active_support', feature_category: :observability
gem 'opentelemetry-instrumentation-action_pack', feature_category: :tooling gem 'opentelemetry-instrumentation-action_pack', feature_category: :observability
gem 'opentelemetry-instrumentation-active_job', feature_category: :tooling gem 'opentelemetry-instrumentation-active_job', feature_category: :observability
gem 'opentelemetry-instrumentation-active_record', feature_category: :tooling gem 'opentelemetry-instrumentation-active_record', feature_category: :observability
gem 'opentelemetry-instrumentation-action_view', feature_category: :tooling gem 'opentelemetry-instrumentation-action_view', feature_category: :observability
gem 'opentelemetry-instrumentation-aws_sdk', feature_category: :tooling gem 'opentelemetry-instrumentation-aws_sdk', feature_category: :observability
gem 'opentelemetry-instrumentation-http', feature_category: :tooling gem 'opentelemetry-instrumentation-http', feature_category: :observability
gem 'opentelemetry-instrumentation-concurrent_ruby', feature_category: :tooling gem 'opentelemetry-instrumentation-concurrent_ruby', feature_category: :observability
gem 'opentelemetry-instrumentation-ethon', feature_category: :tooling gem 'opentelemetry-instrumentation-ethon', feature_category: :observability
gem 'opentelemetry-instrumentation-excon', feature_category: :tooling gem 'opentelemetry-instrumentation-excon', feature_category: :observability
gem 'opentelemetry-instrumentation-faraday', feature_category: :tooling gem 'opentelemetry-instrumentation-faraday', feature_category: :observability
gem 'opentelemetry-instrumentation-grape', feature_category: :tooling gem 'opentelemetry-instrumentation-grape', feature_category: :observability
gem 'opentelemetry-instrumentation-graphql', feature_category: :tooling gem 'opentelemetry-instrumentation-graphql', feature_category: :observability
gem 'opentelemetry-instrumentation-http_client', feature_category: :tooling gem 'opentelemetry-instrumentation-http_client', feature_category: :observability
gem 'opentelemetry-instrumentation-net_http', feature_category: :tooling gem 'opentelemetry-instrumentation-net_http', feature_category: :observability
gem 'opentelemetry-instrumentation-pg', feature_category: :tooling gem 'opentelemetry-instrumentation-pg', feature_category: :observability
gem 'opentelemetry-instrumentation-rack', feature_category: :tooling gem 'opentelemetry-instrumentation-rack', feature_category: :observability
gem 'opentelemetry-instrumentation-rails', feature_category: :tooling gem 'opentelemetry-instrumentation-rails', feature_category: :observability
gem 'opentelemetry-instrumentation-rake', feature_category: :tooling gem 'opentelemetry-instrumentation-rake', feature_category: :observability
gem 'opentelemetry-instrumentation-redis', feature_category: :tooling gem 'opentelemetry-instrumentation-redis', feature_category: :observability
gem 'opentelemetry-instrumentation-sidekiq', feature_category: :tooling gem 'opentelemetry-instrumentation-sidekiq', feature_category: :observability
end end
gem 'warning', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'warning', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
@@ -493,7 +492,7 @@ end
group :development, :test do group :development, :test do
gem 'deprecation_toolkit', '~> 1.5.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory gem 'deprecation_toolkit', '~> 1.5.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory
gem 'bullet', '~> 7.1.2' # rubocop:todo Gemfile/MissingFeatureCategory gem 'bullet', '~> 7.1.2' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'parser', '= 3.3.3.0', feature_category: :shared gem 'parser', '= 3.3.6.0', feature_category: :shared
gem 'pry-byebug' # rubocop:todo Gemfile/MissingFeatureCategory gem 'pry-byebug' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'pry-rails', '~> 0.3.9' # rubocop:todo Gemfile/MissingFeatureCategory gem 'pry-rails', '~> 0.3.9' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'pry-shell', '~> 0.6.4' # rubocop:todo Gemfile/MissingFeatureCategory gem 'pry-shell', '~> 0.6.4' # rubocop:todo Gemfile/MissingFeatureCategory
@@ -510,7 +509,7 @@ group :development, :test do
gem 'spring', '~> 4.1.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'spring', '~> 4.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'spring-commands-rspec', '~> 1.0.4' # rubocop:todo Gemfile/MissingFeatureCategory gem 'spring-commands-rspec', '~> 1.0.4' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'gitlab-styles', '~> 12.0.1', feature_category: :tooling gem 'gitlab-styles', '~> 13.0.1', feature_category: :tooling
gem 'haml_lint', '~> 0.58', feature_category: :tooling gem 'haml_lint', '~> 0.58', feature_category: :tooling
gem 'bundler-audit', '~> 0.9.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory gem 'bundler-audit', '~> 0.9.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory
@@ -582,7 +581,7 @@ group :test do
gem 'shoulda-matchers', '~> 5.1.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory gem 'shoulda-matchers', '~> 5.1.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
gem 'email_spec', '~> 2.2.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'email_spec', '~> 2.2.0' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'webmock', '~> 3.23.0', feature_category: :shared gem 'webmock', '~> 3.24.0', feature_category: :shared
gem 'rails-controller-testing' # rubocop:todo Gemfile/MissingFeatureCategory gem 'rails-controller-testing' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'concurrent-ruby', '~> 1.1' # rubocop:todo Gemfile/MissingFeatureCategory gem 'concurrent-ruby', '~> 1.1' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'test-prof', '~> 1.4.0', feature_category: :tooling gem 'test-prof', '~> 1.4.0', feature_category: :tooling
@@ -593,7 +592,7 @@ group :test do
# Moved in `test` because https://gitlab.com/gitlab-org/gitlab/-/issues/217527 # Moved in `test` because https://gitlab.com/gitlab-org/gitlab/-/issues/217527
gem 'derailed_benchmarks', require: false # rubocop:todo Gemfile/MissingFeatureCategory gem 'derailed_benchmarks', require: false # rubocop:todo Gemfile/MissingFeatureCategory
gem 'gitlab_quality-test_tooling', '~> 1.39.0', require: false, feature_category: :tooling gem 'gitlab_quality-test_tooling', '~> 2.1.0', require: false, feature_category: :tooling
end end
gem 'octokit', '~> 9.0', feature_category: :importers gem 'octokit', '~> 9.0', feature_category: :importers
@@ -630,10 +629,10 @@ gem 'ssh_data', '~> 1.3' # rubocop:todo Gemfile/MissingFeatureCategory
gem 'spamcheck', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'spamcheck', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
# Gitaly GRPC protocol definitions # Gitaly GRPC protocol definitions
gem 'gitaly', '~> 17.4.0.pre.rc1', feature_category: :gitaly gem 'gitaly', '~> 17.5.0.pre.rc1', feature_category: :gitaly
# KAS GRPC protocol definitions # KAS GRPC protocol definitions
gem 'gitlab-kas-grpc', '~> 17.4.0.pre.rc1', feature_category: :deployment_management gem 'gitlab-kas-grpc', '~> 17.5.0', feature_category: :deployment_management
# Lock the version before issues below are resolved: # Lock the version before issues below are resolved:
# https://gitlab.com/gitlab-org/gitlab/-/issues/473169#note_2028352939 # https://gitlab.com/gitlab-org/gitlab/-/issues/473169#note_2028352939
@@ -716,7 +715,7 @@ gem 'cvss-suite', '~> 3.0.1', require: 'cvss_suite' # rubocop:todo Gemfile/Missi
gem 'arr-pm', '~> 0.0.12' # rubocop:todo Gemfile/MissingFeatureCategory gem 'arr-pm', '~> 0.0.12' # rubocop:todo Gemfile/MissingFeatureCategory
# Remote Development # Remote Development
gem 'devfile', '~> 0.0.28.pre.alpha1', feature_category: :workspaces gem 'devfile', '~> 0.1.0', feature_category: :workspaces
# Apple plist parsing # Apple plist parsing
gem 'CFPropertyList', '~> 3.0.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'CFPropertyList', '~> 3.0.0' # rubocop:todo Gemfile/MissingFeatureCategory

View File

@@ -217,7 +217,7 @@ PATH
PATH PATH
remote: vendor/gems/sidekiq-reliable-fetch remote: vendor/gems/sidekiq-reliable-fetch
specs: specs:
gitlab-sidekiq-fetcher (0.11.0) gitlab-sidekiq-fetcher (0.12.0)
json (>= 2.5) json (>= 2.5)
sidekiq (~> 7.0) sidekiq (~> 7.0)
@@ -312,9 +312,10 @@ GEM
apollo_upload_server (2.1.6) apollo_upload_server (2.1.6)
actionpack (>= 6.1.6) actionpack (>= 6.1.6)
graphql (>= 1.8) graphql (>= 1.8)
app_store_connect (0.29.0) app_store_connect (0.38.0)
activesupport (>= 6.0.0) activesupport (>= 6.0.0)
jwt (>= 1.4, <= 2.5.0) jwt (>= 1.4)
zeitwerk (>= 2.6.7)
arr-pm (0.0.12) arr-pm (0.0.12)
asciidoctor (2.0.23) asciidoctor (2.0.23)
asciidoctor-include-ext (0.4.0) asciidoctor-include-ext (0.4.0)
@@ -334,20 +335,20 @@ GEM
awesome_print (1.9.2) awesome_print (1.9.2)
awrence (1.2.1) awrence (1.2.1)
aws-eventstream (1.3.0) aws-eventstream (1.3.0)
aws-partitions (1.877.0) aws-partitions (1.1001.0)
aws-sdk-cloudformation (1.41.0) aws-sdk-cloudformation (1.41.0)
aws-sdk-core (~> 3, >= 3.99.0) aws-sdk-core (~> 3, >= 3.99.0)
aws-sigv4 (~> 1.1) aws-sigv4 (~> 1.1)
aws-sdk-core (3.206.0) aws-sdk-core (3.211.0)
aws-eventstream (~> 1, >= 1.3.0) aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.651.0) aws-partitions (~> 1, >= 1.992.0)
aws-sigv4 (~> 1.9) aws-sigv4 (~> 1.9)
jmespath (~> 1, >= 1.6.1) jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.76.0) aws-sdk-kms (1.76.0)
aws-sdk-core (~> 3, >= 3.188.0) aws-sdk-core (~> 3, >= 3.188.0)
aws-sigv4 (~> 1.1) aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.163.0) aws-sdk-s3 (1.169.0)
aws-sdk-core (~> 3, >= 3.205.0) aws-sdk-core (~> 3, >= 3.210.0)
aws-sdk-kms (~> 1) aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.5) aws-sigv4 (~> 1.5)
aws-sigv4 (1.9.1) aws-sigv4 (1.9.1)
@@ -451,7 +452,7 @@ GEM
countries (4.0.1) countries (4.0.1)
i18n_data (~> 0.13.0) i18n_data (~> 0.13.0)
sixarm_ruby_unaccent (~> 1.1) sixarm_ruby_unaccent (~> 1.1)
coverband (6.1.2) coverband (6.1.4)
redis (>= 3.0) redis (>= 3.0)
crack (0.4.3) crack (0.4.3)
safe_yaml (~> 1.0.0) safe_yaml (~> 1.0.0)
@@ -508,7 +509,7 @@ GEM
thor (>= 0.19, < 2) thor (>= 0.19, < 2)
descendants_tracker (0.0.4) descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1) thread_safe (~> 0.3, >= 0.3.1)
devfile (0.0.28.pre.alpha1) devfile (0.1.0)
device_detector (1.0.0) device_detector (1.0.0)
devise (4.9.3) devise (4.9.3)
bcrypt (~> 3.0) bcrypt (~> 3.0)
@@ -531,12 +532,12 @@ GEM
docile (1.4.0) docile (1.4.0)
domain_name (0.5.20190701) domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0) unf (>= 0.0.5, < 1.0.0)
doorkeeper (5.6.6) doorkeeper (5.7.1)
railties (>= 5) railties (>= 5)
doorkeeper-device_authorization_grant (1.0.3) doorkeeper-device_authorization_grant (1.0.3)
doorkeeper (~> 5.5) doorkeeper (~> 5.5)
doorkeeper-openid_connect (1.8.7) doorkeeper-openid_connect (1.8.9)
doorkeeper (>= 5.5, < 5.7) doorkeeper (>= 5.5, < 5.8)
jwt (>= 2.5) jwt (>= 2.5)
dotenv (2.7.6) dotenv (2.7.6)
dry-cli (1.0.0) dry-cli (1.0.0)
@@ -593,13 +594,14 @@ GEM
expression_parser (0.9.0) expression_parser (0.9.0)
extended-markdown-filter (0.7.0) extended-markdown-filter (0.7.0)
html-pipeline (~> 2.9) html-pipeline (~> 2.9)
factory_bot (6.4.5) factory_bot (6.5.0)
activesupport (>= 5.0.0) activesupport (>= 5.0.0)
factory_bot_rails (6.4.3) factory_bot_rails (6.4.4)
factory_bot (~> 6.4) factory_bot (~> 6.5)
railties (>= 5.0.0) railties (>= 5.0.0)
faraday (2.11.0) faraday (2.12.1)
faraday-net_http (>= 2.0, < 3.4) faraday-net_http (>= 2.0, < 3.5)
json
logger logger
faraday-follow_redirects (0.3.0) faraday-follow_redirects (0.3.0)
faraday (>= 1, < 3) faraday (>= 1, < 3)
@@ -714,7 +716,7 @@ GEM
git (1.18.0) git (1.18.0)
addressable (~> 2.8) addressable (~> 2.8)
rchardet (~> 1.8) rchardet (~> 1.8)
gitaly (17.4.0.pre.rc1) gitaly (17.5.0.pre.rc42)
grpc (~> 1.0) grpc (~> 1.0)
gitlab (4.19.0) gitlab (4.19.0)
httparty (~> 0.20) httparty (~> 0.20)
@@ -739,7 +741,7 @@ GEM
nokogiri (~> 1, >= 1.10.8) nokogiri (~> 1, >= 1.10.8)
gitlab-glfm-markdown (0.0.21) gitlab-glfm-markdown (0.0.21)
rb_sys (= 0.9.94) rb_sys (= 0.9.94)
gitlab-kas-grpc (17.4.0.pre.rc1) gitlab-kas-grpc (17.5.1)
grpc (~> 1.0) grpc (~> 1.0)
gitlab-labkit (0.36.1) gitlab-labkit (0.36.1)
actionpack (>= 5.0.0, < 8.0.0) actionpack (>= 5.0.0, < 8.0.0)
@@ -765,13 +767,15 @@ GEM
gitlab-security_report_schemas (0.1.2.min15.0.0.max15.2.1) gitlab-security_report_schemas (0.1.2.min15.0.0.max15.2.1)
activesupport (>= 6, < 8) activesupport (>= 6, < 8)
json_schemer (~> 2.3.0) json_schemer (~> 2.3.0)
gitlab-styles (12.0.1) gitlab-styles (13.0.1)
rubocop (~> 1.62.1) rubocop (~> 1.67.0)
rubocop-factory_bot (~> 2.25.1) rubocop-capybara (~> 2.21.0)
rubocop-graphql (~> 1.5.0) rubocop-factory_bot (~> 2.26.1)
rubocop-performance (~> 1.20.2) rubocop-graphql (~> 1.5.4)
rubocop-rails (~> 2.24.0) rubocop-performance (~> 1.21.1)
rubocop-rspec (~> 2.27.1) rubocop-rails (~> 2.26.0)
rubocop-rspec (~> 3.0.4)
rubocop-rspec_rails (~> 2.30.0)
gitlab_chronic_duration (0.12.0) gitlab_chronic_duration (0.12.0)
numerizer (~> 0.2) numerizer (~> 0.2)
gitlab_omniauth-ldap (2.2.0) gitlab_omniauth-ldap (2.2.0)
@@ -779,11 +783,11 @@ GEM
omniauth (>= 1.3, < 3) omniauth (>= 1.3, < 3)
pyu-ruby-sasl (>= 0.0.3.3, < 0.1) pyu-ruby-sasl (>= 0.0.3.3, < 0.1)
rubyntlm (~> 0.5) rubyntlm (~> 0.5)
gitlab_quality-test_tooling (1.39.0) gitlab_quality-test_tooling (2.1.0)
activesupport (>= 7.0, < 7.2) activesupport (>= 7.0, < 7.2)
amatch (~> 0.4.1) amatch (~> 0.4.1)
fog-google (~> 1.24, >= 1.24.1) fog-google (~> 1.24, >= 1.24.1)
gitlab (~> 4.19) gitlab (>= 4.19, < 6.0)
http (~> 5.0) http (~> 5.0)
influxdb-client (~> 3.1) influxdb-client (~> 3.1)
nokogiri (~> 1.10) nokogiri (~> 1.10)
@@ -913,13 +917,11 @@ GEM
grape_logging (1.8.4) grape_logging (1.8.4)
grape grape
rack rack
graphiql-rails (1.10.0)
railties
graphlient (0.8.0) graphlient (0.8.0)
faraday (~> 2.0) faraday (~> 2.0)
graphql-client graphql-client
graphlyte (1.0.0) graphlyte (1.0.0)
graphql (2.3.17) graphql (2.4.1)
base64 base64
fiber-storage fiber-storage
graphql-client (0.23.0) graphql-client (0.23.0)
@@ -959,7 +961,7 @@ GEM
haml (5.2.2) haml (5.2.2)
temple (>= 0.8.0) temple (>= 0.8.0)
tilt tilt
haml_lint (0.58.0) haml_lint (0.59.0)
haml (>= 5.0) haml (>= 5.0)
parallel (~> 1.10) parallel (~> 1.10)
rainbow rainbow
@@ -1025,7 +1027,7 @@ GEM
character_set (~> 1.4) character_set (~> 1.4)
regexp_parser (~> 2.5) regexp_parser (~> 2.5)
regexp_property_values (~> 1.0) regexp_property_values (~> 1.0)
json (2.7.2) json (2.7.3)
json-jwt (1.16.6) json-jwt (1.16.6)
activesupport (>= 4.2) activesupport (>= 4.2)
aes_key_wrap aes_key_wrap
@@ -1044,7 +1046,8 @@ GEM
pg (>= 0.18.1) pg (>= 0.18.1)
jsonpath (1.1.2) jsonpath (1.1.2)
multi_json multi_json
jwt (2.5.0) jwt (2.9.3)
base64
kaminari (1.2.2) kaminari (1.2.2)
activesupport (>= 4.1.0) activesupport (>= 4.1.0)
kaminari-actionview (= 1.2.2) kaminari-actionview (= 1.2.2)
@@ -1059,7 +1062,7 @@ GEM
kaminari-core (1.2.2) kaminari-core (1.2.2)
knapsack (4.0.0) knapsack (4.0.0)
rake rake
kramdown (2.3.2) kramdown (2.4.0)
rexml rexml
kramdown-parser-gfm (1.1.0) kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0) kramdown (~> 2.0)
@@ -1110,7 +1113,7 @@ GEM
loofah (2.22.0) loofah (2.22.0)
crass (~> 1.0.2) crass (~> 1.0.2)
nokogiri (>= 1.12.0) nokogiri (>= 1.12.0)
lookbook (2.3.2) lookbook (2.3.4)
activemodel activemodel
css_parser css_parser
htmlbeautifier (~> 1.3) htmlbeautifier (~> 1.3)
@@ -1142,7 +1145,7 @@ GEM
mini_histogram (0.3.1) mini_histogram (0.3.1)
mini_magick (4.12.0) mini_magick (4.12.0)
mini_mime (1.1.2) mini_mime (1.1.2)
mini_portile2 (2.8.5) mini_portile2 (2.8.7)
minitest (5.11.3) minitest (5.11.3)
mixlib-cli (2.1.8) mixlib-cli (2.1.8)
mixlib-config (3.0.27) mixlib-config (3.0.27)
@@ -1150,8 +1153,7 @@ GEM
mixlib-log (3.0.9) mixlib-log (3.0.9)
mixlib-shellout (3.2.7) mixlib-shellout (3.2.7)
chef-utils chef-utils
mize (0.4.1) mize (0.6.0)
protocol (~> 2.0)
msgpack (1.5.4) msgpack (1.5.4)
multi_json (1.14.1) multi_json (1.14.1)
multi_xml (0.6.0) multi_xml (0.6.0)
@@ -1186,7 +1188,7 @@ GEM
netrc (0.11.0) netrc (0.11.0)
nio4r (2.7.0) nio4r (2.7.0)
no_proxy_fix (0.1.2) no_proxy_fix (0.1.2)
nokogiri (1.16.0) nokogiri (1.16.7)
mini_portile2 (~> 2.8.2) mini_portile2 (~> 2.8.2)
racc (~> 1.4) racc (~> 1.4)
notiffany (0.1.3) notiffany (0.1.3)
@@ -1201,7 +1203,7 @@ GEM
rack (>= 1.2, < 4) rack (>= 1.2, < 4)
snaky_hash (~> 2.0) snaky_hash (~> 2.0)
version_gem (~> 1.1) version_gem (~> 1.1)
octokit (9.1.0) octokit (9.2.0)
faraday (>= 1, < 3) faraday (>= 1, < 3)
sawyer (~> 0.9) sawyer (~> 0.9)
ohai (18.1.3) ohai (18.1.3)
@@ -1276,7 +1278,7 @@ GEM
opentelemetry-api (1.2.5) opentelemetry-api (1.2.5)
opentelemetry-common (0.21.0) opentelemetry-common (0.21.0)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-exporter-otlp (0.28.1) opentelemetry-exporter-otlp (0.29.0)
google-protobuf (>= 3.18) google-protobuf (>= 3.18)
googleapis-common-protos-types (~> 1.3) googleapis-common-protos-types (~> 1.3)
opentelemetry-api (~> 1.1) opentelemetry-api (~> 1.1)
@@ -1285,7 +1287,7 @@ GEM
opentelemetry-semantic_conventions opentelemetry-semantic_conventions
opentelemetry-helpers-sql-obfuscation (0.1.0) opentelemetry-helpers-sql-obfuscation (0.1.0)
opentelemetry-common (~> 0.20) opentelemetry-common (~> 0.20)
opentelemetry-instrumentation-action_mailer (0.1.0) opentelemetry-instrumentation-action_mailer (0.2.0)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-active_support (~> 0.1) opentelemetry-instrumentation-active_support (~> 0.1)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
@@ -1293,20 +1295,20 @@ GEM
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-rack (~> 0.21) opentelemetry-instrumentation-rack (~> 0.21)
opentelemetry-instrumentation-action_view (0.7.2) opentelemetry-instrumentation-action_view (0.7.3)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-active_support (~> 0.1) opentelemetry-instrumentation-active_support (~> 0.6)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-active_job (0.7.7) opentelemetry-instrumentation-active_job (0.7.8)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-active_record (0.7.4) opentelemetry-instrumentation-active_record (0.8.0)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-active_support (0.6.0) opentelemetry-instrumentation-active_support (0.6.0)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-aws_sdk (0.5.4) opentelemetry-instrumentation-aws_sdk (0.7.0)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-base (0.22.3) opentelemetry-instrumentation-base (0.22.3)
@@ -1340,20 +1342,20 @@ GEM
opentelemetry-instrumentation-net_http (0.22.7) opentelemetry-instrumentation-net_http (0.22.7)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-pg (0.28.0) opentelemetry-instrumentation-pg (0.29.0)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-helpers-sql-obfuscation opentelemetry-helpers-sql-obfuscation
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-rack (0.24.6) opentelemetry-instrumentation-rack (0.25.0)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-rails (0.31.2) opentelemetry-instrumentation-rails (0.32.0)
opentelemetry-api (~> 1.0) opentelemetry-api (~> 1.0)
opentelemetry-instrumentation-action_mailer (~> 0.1.0) opentelemetry-instrumentation-action_mailer (~> 0.2.0)
opentelemetry-instrumentation-action_pack (~> 0.9.0) opentelemetry-instrumentation-action_pack (~> 0.9.0)
opentelemetry-instrumentation-action_view (~> 0.7.0) opentelemetry-instrumentation-action_view (~> 0.7.0)
opentelemetry-instrumentation-active_job (~> 0.7.0) opentelemetry-instrumentation-active_job (~> 0.7.0)
opentelemetry-instrumentation-active_record (~> 0.7.0) opentelemetry-instrumentation-active_record (~> 0.8.0)
opentelemetry-instrumentation-active_support (~> 0.6.0) opentelemetry-instrumentation-active_support (~> 0.6.0)
opentelemetry-instrumentation-base (~> 0.22.1) opentelemetry-instrumentation-base (~> 0.22.1)
opentelemetry-instrumentation-rake (0.2.2) opentelemetry-instrumentation-rake (0.2.2)
@@ -1405,7 +1407,7 @@ GEM
activerecord (>= 6.1) activerecord (>= 6.1)
request_store (~> 1.4) request_store (~> 1.4)
parallel (1.24.0) parallel (1.24.0)
parser (3.3.3.0) parser (3.3.6.0)
ast (~> 2.4.1) ast (~> 2.4.1)
racc racc
parslet (1.8.2) parslet (1.8.2)
@@ -1436,8 +1438,6 @@ GEM
unparser unparser
prometheus-client-mmap (1.1.1) prometheus-client-mmap (1.1.1)
rb_sys (~> 0.9.86) rb_sys (~> 0.9.86)
protocol (2.0.0)
ruby_parser (~> 3.0)
pry (0.14.2) pry (0.14.2)
coderay (~> 1.1) coderay (~> 1.1)
method_source (~> 1.0) method_source (~> 1.0)
@@ -1455,8 +1455,8 @@ GEM
nio4r (~> 2.0) nio4r (~> 2.0)
pyu-ruby-sasl (0.0.3.3) pyu-ruby-sasl (0.0.3.3)
raabro (1.4.0) raabro (1.4.0)
racc (1.6.2) racc (1.8.1)
rack (2.2.9) rack (2.2.10)
rack-accept (0.4.5) rack-accept (0.4.5)
rack (>= 0.4) rack (>= 0.4)
rack-attack (6.7.0) rack-attack (6.7.0)
@@ -1503,7 +1503,7 @@ GEM
rails-html-sanitizer (1.6.0) rails-html-sanitizer (1.6.0)
loofah (~> 2.21) loofah (~> 2.21)
nokogiri (~> 1.14) nokogiri (~> 1.14)
rails-i18n (7.0.9) rails-i18n (7.0.10)
i18n (>= 0.7, < 2) i18n (>= 0.7, < 2)
railties (>= 6.0.0, < 8) railties (>= 6.0.0, < 8)
railties (7.0.8.4) railties (7.0.8.4)
@@ -1571,11 +1571,10 @@ GEM
retriable (3.1.2) retriable (3.1.2)
reverse_markdown (1.4.0) reverse_markdown (1.4.0)
nokogiri nokogiri
rexml (3.3.2) rexml (3.3.9)
strscan
rinku (2.0.0) rinku (2.0.0)
rotp (6.3.0) rotp (6.3.0)
rouge (4.3.0) rouge (4.4.0)
rqrcode (2.2.0) rqrcode (2.2.0)
chunky_png (~> 1.0) chunky_png (~> 1.0)
rqrcode_core (~> 1.0) rqrcode_core (~> 1.0)
@@ -1625,37 +1624,37 @@ GEM
activerecord activerecord
get_process_mem get_process_mem
rails rails
rubocop (1.62.1) rubocop (1.67.0)
json (~> 2.3) json (~> 2.3)
language_server-protocol (>= 3.17.0) language_server-protocol (>= 3.17.0)
parallel (~> 1.10) parallel (~> 1.10)
parser (>= 3.3.0.2) parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0) rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0) regexp_parser (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0) rubocop-ast (>= 1.32.2, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7) ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0) unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2) rubocop-ast (1.32.3)
parser (>= 3.3.0.4) parser (>= 3.3.1.0)
rubocop-capybara (2.20.0) rubocop-capybara (2.21.0)
rubocop (~> 1.41) rubocop (~> 1.41)
rubocop-factory_bot (2.25.1) rubocop-factory_bot (2.26.1)
rubocop (~> 1.41) rubocop (~> 1.61)
rubocop-graphql (1.5.1) rubocop-graphql (1.5.4)
rubocop (>= 0.90, < 2) rubocop (>= 1.50, < 2)
rubocop-performance (1.20.2) rubocop-performance (1.21.1)
rubocop (>= 1.48.1, < 2.0) rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0) rubocop-ast (>= 1.31.1, < 2.0)
rubocop-rails (2.24.1) rubocop-rails (2.26.2)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
rack (>= 1.1) rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0) rubocop (>= 1.52.0, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0)
rubocop-rspec (2.27.1) rubocop-rspec (3.0.5)
rubocop (~> 1.40) rubocop (~> 1.61)
rubocop-capybara (~> 2.17) rubocop-rspec_rails (2.30.0)
rubocop-factory_bot (~> 2.22) rubocop (~> 1.61)
rubocop-rspec (~> 3, >= 3.0.1)
ruby-fogbugz (0.3.0) ruby-fogbugz (0.3.0)
crack (~> 0.4) crack (~> 0.4)
multipart-post (~> 2.0) multipart-post (~> 2.0)
@@ -1678,9 +1677,6 @@ GEM
rexml rexml
ruby-statistics (3.0.0) ruby-statistics (3.0.0)
ruby2_keywords (0.0.5) ruby2_keywords (0.0.5)
ruby_parser (3.21.0)
racc (~> 1.5)
sexp_processor (~> 4.16)
rubyntlm (0.6.3) rubyntlm (0.6.3)
rubypants (0.2.0) rubypants (0.2.0)
rubyzip (2.3.2) rubyzip (2.3.2)
@@ -1701,27 +1697,26 @@ GEM
seed-fu (2.3.7) seed-fu (2.3.7)
activerecord (>= 3.1) activerecord (>= 3.1)
activesupport (>= 3.1) activesupport (>= 3.1)
selenium-webdriver (4.23.0) selenium-webdriver (4.25.0)
base64 (~> 0.2) base64 (~> 0.2)
logger (~> 1.4) logger (~> 1.4)
rexml (~> 3.2, >= 3.2.5) rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0) rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0) websocket (~> 1.0)
semver_dialects (3.4.3) semver_dialects (3.4.4)
deb_version (~> 1.0.1) deb_version (~> 1.0.1)
pastel (~> 0.8.0) pastel (~> 0.8.0)
thor (~> 1.3) thor (~> 1.3)
tty-command (~> 0.10.1) tty-command (~> 0.10.1)
sentry-rails (5.19.0) sentry-rails (5.21.0)
railties (>= 5.0) railties (>= 5.0)
sentry-ruby (~> 5.19.0) sentry-ruby (~> 5.21.0)
sentry-ruby (5.19.0) sentry-ruby (5.21.0)
bigdecimal bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2) concurrent-ruby (~> 1.0, >= 1.0.2)
sentry-sidekiq (5.19.0) sentry-sidekiq (5.21.0)
sentry-ruby (~> 5.19.0) sentry-ruby (~> 5.21.0)
sidekiq (>= 3.0) sidekiq (>= 3.0)
sexp_processor (4.17.1)
shellany (0.0.1) shellany (0.0.1)
shoulda-matchers (5.1.0) shoulda-matchers (5.1.0)
activesupport (>= 5.2.0) activesupport (>= 5.2.0)
@@ -1799,7 +1794,6 @@ GEM
unicode-display_width (>= 1.5, < 3.0) unicode-display_width (>= 1.5, < 3.0)
unicode_utils (~> 1.4) unicode_utils (~> 1.4)
strings-ansi (0.2.0) strings-ansi (0.2.0)
strscan (3.1.0)
swd (2.0.3) swd (2.0.3)
activesupport (>= 3) activesupport (>= 3)
attr_required (>= 0.0.5) attr_required (>= 0.0.5)
@@ -1810,7 +1804,8 @@ GEM
ffi (~> 1.1) ffi (~> 1.1)
sysexits (1.2.0) sysexits (1.2.0)
table_print (1.5.7) table_print (1.5.7)
tanuki_emoji (0.9.0) tanuki_emoji (0.13.0)
i18n (~> 1.14)
telesign (2.2.4) telesign (2.2.4)
net-http-persistent (>= 3.0.0, < 5.0) net-http-persistent (>= 3.0.0, < 5.0)
telesignenterprise (2.2.2) telesignenterprise (2.2.2)
@@ -1885,6 +1880,9 @@ GEM
unf_ext unf_ext
unf_ext (0.0.8.2) unf_ext (0.0.8.2)
unicode-display_width (2.4.2) unicode-display_width (2.4.2)
unicode-emoji (4.0.0)
unicode-version (~> 1.0)
unicode-version (1.4.0)
unicode_utils (1.4.0) unicode_utils (1.4.0)
uniform_notifier (1.16.0) uniform_notifier (1.16.0)
unleash (3.2.2) unleash (3.2.2)
@@ -1904,8 +1902,8 @@ GEM
activesupport (>= 3.0) activesupport (>= 3.0)
version_gem (1.1.0) version_gem (1.1.0)
version_sorter (2.3.0) version_sorter (2.3.0)
view_component (3.14.0) view_component (3.20.0)
activesupport (>= 5.2.0, < 8.0) activesupport (>= 5.2.0, < 8.1)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
method_source (~> 1.0) method_source (~> 1.0)
virtus (2.0.0) virtus (2.0.0)
@@ -1936,7 +1934,7 @@ GEM
activesupport activesupport
faraday (~> 2.0) faraday (~> 2.0)
faraday-follow_redirects faraday-follow_redirects
webmock (3.23.1) webmock (3.24.0)
addressable (>= 2.8.0) addressable (>= 2.8.0)
crack (>= 0.3.2) crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0) hashdiff (>= 0.4.0, < 2.0.0)
@@ -1983,8 +1981,8 @@ DEPENDENCIES
attr_encrypted (~> 3.2.4)! attr_encrypted (~> 3.2.4)!
awesome_print awesome_print
aws-sdk-cloudformation (~> 1) aws-sdk-cloudformation (~> 1)
aws-sdk-core (~> 3.206.0) aws-sdk-core (~> 3.211.0)
aws-sdk-s3 (~> 1.163.0) aws-sdk-s3 (~> 1.169.0)
axe-core-rspec (~> 4.9.0) axe-core-rspec (~> 4.9.0)
babosa (~> 2.0) babosa (~> 2.0)
base32 (~> 0.3.0) base32 (~> 0.3.0)
@@ -2009,7 +2007,7 @@ DEPENDENCIES
concurrent-ruby (~> 1.1) concurrent-ruby (~> 1.1)
connection_pool (~> 2.4) connection_pool (~> 2.4)
countries (~> 4.0.0) countries (~> 4.0.0)
coverband (= 6.1.2) coverband (= 6.1.4)
creole (~> 0.5.0) creole (~> 0.5.0)
crystalball (~> 0.7.0) crystalball (~> 0.7.0)
cssbundling-rails (= 1.4.1) cssbundling-rails (= 1.4.1)
@@ -2020,7 +2018,7 @@ DEPENDENCIES
declarative_policy (~> 1.1.0) declarative_policy (~> 1.1.0)
deprecation_toolkit (~> 1.5.1) deprecation_toolkit (~> 1.5.1)
derailed_benchmarks derailed_benchmarks
devfile (~> 0.0.28.pre.alpha1) devfile (~> 0.1.0)
device_detector device_detector
devise (~> 4.9.3) devise (~> 4.9.3)
devise-pbkdf2-encryptable (~> 0.0.0)! devise-pbkdf2-encryptable (~> 0.0.0)!
@@ -2061,7 +2059,7 @@ DEPENDENCIES
gdk-toogle (~> 0.9, >= 0.9.5) gdk-toogle (~> 0.9, >= 0.9.5)
gettext (~> 3.4, >= 3.4.9) gettext (~> 3.4, >= 3.4.9)
gettext_i18n_rails (~> 1.13.0) gettext_i18n_rails (~> 1.13.0)
gitaly (~> 17.4.0.pre.rc1) gitaly (~> 17.5.0.pre.rc1)
gitlab-backup-cli! gitlab-backup-cli!
gitlab-chronic (~> 0.10.5) gitlab-chronic (~> 0.10.5)
gitlab-dangerfiles (~> 4.8.0) gitlab-dangerfiles (~> 4.8.0)
@@ -2071,7 +2069,7 @@ DEPENDENCIES
gitlab-glfm-markdown (~> 0.0.21) gitlab-glfm-markdown (~> 0.0.21)
gitlab-housekeeper! gitlab-housekeeper!
gitlab-http! gitlab-http!
gitlab-kas-grpc (~> 17.4.0.pre.rc1) gitlab-kas-grpc (~> 17.5.0)
gitlab-labkit (~> 0.36.0) gitlab-labkit (~> 0.36.0)
gitlab-license (~> 2.5) gitlab-license (~> 2.5)
gitlab-mail_room (~> 0.0.24) gitlab-mail_room (~> 0.0.24)
@@ -2085,12 +2083,12 @@ DEPENDENCIES
gitlab-secret_detection! gitlab-secret_detection!
gitlab-security_report_schemas (= 0.1.2.min15.0.0.max15.2.1) gitlab-security_report_schemas (= 0.1.2.min15.0.0.max15.2.1)
gitlab-sidekiq-fetcher! gitlab-sidekiq-fetcher!
gitlab-styles (~> 12.0.1) gitlab-styles (~> 13.0.1)
gitlab-topology-service-client (~> 0.1)! gitlab-topology-service-client (~> 0.1)!
gitlab-utils! gitlab-utils!
gitlab_chronic_duration (~> 0.12) gitlab_chronic_duration (~> 0.12)
gitlab_omniauth-ldap (~> 2.2.0) gitlab_omniauth-ldap (~> 2.2.0)
gitlab_quality-test_tooling (~> 1.39.0) gitlab_quality-test_tooling (~> 2.1.0)
gon (~> 6.4.0) gon (~> 6.4.0)
google-apis-androidpublisher_v3 (~> 0.34.0) google-apis-androidpublisher_v3 (~> 0.34.0)
google-apis-cloudbilling_v1 (~> 0.21.0) google-apis-cloudbilling_v1 (~> 0.21.0)
@@ -2115,10 +2113,9 @@ DEPENDENCIES
grape-swagger (~> 2.1.0) grape-swagger (~> 2.1.0)
grape-swagger-entity (~> 0.5.1) grape-swagger-entity (~> 0.5.1)
grape_logging (~> 1.8, >= 1.8.4) grape_logging (~> 1.8, >= 1.8.4)
graphiql-rails (~> 1.10)
graphlient (~> 0.8.0) graphlient (~> 0.8.0)
graphlyte (~> 1.0.0) graphlyte (~> 1.0.0)
graphql (~> 2.3.14) graphql (~> 2.4.1)
graphql-docs (~> 5.0.0) graphql-docs (~> 5.0.0)
grpc (= 1.63.0) grpc (= 1.63.0)
gssapi (~> 1.3.1) gssapi (~> 1.3.1)
@@ -2142,10 +2139,10 @@ DEPENDENCIES
json (~> 2.7.2) json (~> 2.7.2)
json_schemer (~> 2.3.0) json_schemer (~> 2.3.0)
jsonb_accessor (~> 1.3.10) jsonb_accessor (~> 1.3.10)
jwt (~> 2.5) jwt (~> 2.9.3)
kaminari (~> 1.2.2) kaminari (~> 1.2.2)
knapsack (~> 4.0.0) knapsack (~> 4.0.0)
kramdown (~> 2.3.1) kramdown (~> 2.4.0)
kubeclient (~> 4.11.0) kubeclient (~> 4.11.0)
lefthook (~> 1.7.0) lefthook (~> 1.7.0)
letter_opener_web (~> 3.0.0) letter_opener_web (~> 3.0.0)
@@ -2222,7 +2219,7 @@ DEPENDENCIES
pact (~> 1.64) pact (~> 1.64)
paper_trail (~> 15.0) paper_trail (~> 15.0)
parallel (~> 1.19) parallel (~> 1.19)
parser (= 3.3.3.0) parser (= 3.3.6.0)
parslet (~> 1.8) parslet (~> 1.8)
peek (~> 1.1) peek (~> 1.1)
pg (~> 1.5.6) pg (~> 1.5.6)
@@ -2255,7 +2252,7 @@ DEPENDENCIES
responders (~> 3.0) responders (~> 3.0)
retriable (~> 3.1.2) retriable (~> 3.1.2)
rexml (~> 3.3.2) rexml (~> 3.3.2)
rouge (~> 4.3.0) rouge (~> 4.4.0)
rqrcode (~> 2.2) rqrcode (~> 2.2)
rspec-benchmark (~> 0.6.0) rspec-benchmark (~> 0.6.0)
rspec-parameterized (~> 1.0, >= 1.0.2) rspec-parameterized (~> 1.0, >= 1.0.2)
@@ -2279,9 +2276,9 @@ DEPENDENCIES
seed-fu (~> 2.3.7) seed-fu (~> 2.3.7)
selenium-webdriver (~> 4.21, >= 4.21.1) selenium-webdriver (~> 4.21, >= 4.21.1)
semver_dialects (~> 3.0) semver_dialects (~> 3.0)
sentry-rails (~> 5.19.0) sentry-rails (~> 5.21.0)
sentry-ruby (~> 5.19.0) sentry-ruby (~> 5.21.0)
sentry-sidekiq (~> 5.19.0) sentry-sidekiq (~> 5.21.0)
shoulda-matchers (~> 5.1.0) shoulda-matchers (~> 5.1.0)
sidekiq! sidekiq!
sidekiq-cron (~> 1.12.0) sidekiq-cron (~> 1.12.0)
@@ -2303,7 +2300,7 @@ DEPENDENCIES
stackprof (~> 0.2.26) stackprof (~> 0.2.26)
state_machines-activerecord (~> 0.8.0) state_machines-activerecord (~> 0.8.0)
sys-filesystem (~> 1.4.3) sys-filesystem (~> 1.4.3)
tanuki_emoji (~> 0.9) tanuki_emoji (~> 0.13)
telesignenterprise (~> 2.2) telesignenterprise (~> 2.2)
terser (= 1.0.2) terser (= 1.0.2)
test-prof (~> 1.4.0) test-prof (~> 1.4.0)
@@ -2315,17 +2312,18 @@ DEPENDENCIES
tty-prompt (~> 0.23) tty-prompt (~> 0.23)
typhoeus (~> 1.4.0) typhoeus (~> 1.4.0)
undercover (~> 0.5.0) undercover (~> 0.5.0)
unicode-emoji (~> 4.0)
unleash (~> 3.2.2) unleash (~> 3.2.2)
valid_email (~> 0.1) valid_email (~> 0.1)
validates_hostname (~> 1.0.13) validates_hostname (~> 1.0.13)
version_sorter (~> 2.3) version_sorter (~> 2.3)
view_component (~> 3.14.0) view_component (~> 3.20.0)
vite_rails (~> 3.0.17) vite_rails (~> 3.0.17)
vite_ruby (~> 3.8.0) vite_ruby (~> 3.8.0)
vmstat (~> 2.3.0) vmstat (~> 2.3.0)
warning (~> 1.3.0) warning (~> 1.3.0)
webauthn (~> 3.0) webauthn (~> 3.0)
webmock (~> 3.23.0) webmock (~> 3.24.0)
webrick (~> 1.8.1) webrick (~> 1.8.1)
wikicloth (= 0.8.1) wikicloth (= 0.8.1)
yajl-ruby (~> 1.4.3) yajl-ruby (~> 1.4.3)

View File

@@ -228,15 +228,15 @@ src:
version = "2.1.6"; version = "2.1.6";
}; };
app_store_connect = { app_store_connect = {
dependencies = ["activesupport" "jwt"]; dependencies = ["activesupport" "jwt" "zeitwerk"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "03s3x8b6ifjrqk9ian59i9yyxxl65ykvbb4r424j2hjsh8iskmq1"; sha256 = "1rjwnb5fj0kzwgrn1n98gnb0s855ck1dm3j06sd01vcqj8829xih";
type = "gem"; type = "gem";
}; };
version = "0.29.0"; version = "0.38.0";
}; };
arr-pm = { arr-pm = {
groups = ["default"]; groups = ["default"];
@@ -378,10 +378,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1zcwrlg4in3gzvsiynpzp9fzlr5grrhc2881xcgfs01ppmxysllm"; sha256 = "01w3b84d129q9b6bg2cm8p4cn8pl74l343sxsc47ax9sglqz6y99";
type = "gem"; type = "gem";
}; };
version = "1.877.0"; version = "1.1001.0";
}; };
aws-sdk-cloudformation = { aws-sdk-cloudformation = {
dependencies = ["aws-sdk-core" "aws-sigv4"]; dependencies = ["aws-sdk-core" "aws-sigv4"];
@@ -400,10 +400,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1w1cqsh59c417359sj07wj5dkg0qlx5adz1m6r9knj6ax06z9zch"; sha256 = "16mvscjhxdyhlvk2rpbxdzqmyikcf64xavb35grk4dkh0pg390rk";
type = "gem"; type = "gem";
}; };
version = "3.206.0"; version = "3.211.0";
}; };
aws-sdk-kms = { aws-sdk-kms = {
dependencies = ["aws-sdk-core" "aws-sigv4"]; dependencies = ["aws-sdk-core" "aws-sigv4"];
@@ -422,10 +422,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "07nbpffq5ih9ig7lx3721a99as9agnpd99r15s578wwsqrkkssnl"; sha256 = "1jnf9k9d91ki3yvy12q4kph5wvd8l3ziwwh0qsmar5xhyb7zbwrz";
type = "gem"; type = "gem";
}; };
version = "1.163.0"; version = "1.169.0";
}; };
aws-sigv4 = { aws-sigv4 = {
dependencies = ["aws-eventstream"]; dependencies = ["aws-eventstream"];
@@ -993,10 +993,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0cms6ppz367fqfynyzjdsy1lqrxkrh6vvfzznrw3mxhz1xmkb7wp"; sha256 = "1j0p1qsnnx0xhx43y7xskxwpcsv3yw5wj79qf7naf3nhdn73kkv5";
type = "gem"; type = "gem";
}; };
version = "6.1.2"; version = "6.1.4";
}; };
crack = { crack = {
dependencies = ["safe_yaml"]; dependencies = ["safe_yaml"];
@@ -1233,10 +1233,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0yyggbmai6jhrndhs154vd6manng9fig7jak1x875l1iz64p1hjr"; sha256 = "18fbys0bf562681c96a4qcbdwxhlc9w3jz8rzkkfqns421hn024q";
type = "gem"; type = "gem";
}; };
version = "0.0.28.pre.alpha1"; version = "0.1.0";
}; };
device_detector = { device_detector = {
groups = ["default"]; groups = ["default"];
@@ -1358,10 +1358,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1q2pywgyn6cbnm0fh3dln5z1qgd1g8hvb4x8rppjc1bpfxnfhi13"; sha256 = "0a6nbc12nfz355am2vwm1ql2p8zck7mr941glghmnl32djaga24b";
type = "gem"; type = "gem";
}; };
version = "5.6.6"; version = "5.7.1";
}; };
doorkeeper-device_authorization_grant = { doorkeeper-device_authorization_grant = {
dependencies = ["doorkeeper"]; dependencies = ["doorkeeper"];
@@ -1380,10 +1380,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "11p7p3b0yb12xfdhxxsifc2mz0rj1hlgi8sbcwjzxvld24rszvbi"; sha256 = "1bpw7flhhkfffbfpxrpc46hw1jrvmyafn8npqzhlds8ks68sj2ap";
type = "gem"; type = "gem";
}; };
version = "1.8.7"; version = "1.8.9";
}; };
dotenv = { dotenv = {
groups = ["default"]; groups = ["default"];
@@ -1694,10 +1694,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1glq677vmd3xrdilcx6ar8sdaysm9ldrppg34yzw43jzr6dx47fp"; sha256 = "0q927lvgjqj0xaplxhicj5xv8xadx3957mank3p7g01vb6iv6x33";
type = "gem"; type = "gem";
}; };
version = "6.4.5"; version = "6.5.0";
}; };
factory_bot_rails = { factory_bot_rails = {
dependencies = ["factory_bot" "railties"]; dependencies = ["factory_bot" "railties"];
@@ -1705,21 +1705,21 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1j6w4rr2cb5wng9yrn2ya9k40q52m0pbz47kzw8xrwqg3jncwwza"; sha256 = "122wkrc3d2q1dlca27794hh3arw0kvrf3rgmvn7hj3y5lb51g7hk";
type = "gem"; type = "gem";
}; };
version = "6.4.3"; version = "6.4.4";
}; };
faraday = { faraday = {
dependencies = ["faraday-net_http" "logger"]; dependencies = ["faraday-net_http" "json" "logger"];
groups = ["danger" "default" "development" "test"]; groups = ["danger" "default" "development" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "00pd34pnfmij5iw1xv73f6d68zng63wyjhmk7dyi010kmb4x5sp6"; sha256 = "0vxaw0mg8avqivdj0lzj19nxf652ri208grsdf0361flyn5i5wi3";
type = "gem"; type = "gem";
}; };
version = "2.11.0"; version = "2.12.1";
}; };
faraday-follow_redirects = { faraday-follow_redirects = {
dependencies = ["faraday"]; dependencies = ["faraday"];
@@ -2156,10 +2156,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1czp3492kpvpbxwgb7bpdlwmnldr64qvw5z0sa6yf6w7fzx9vikj"; sha256 = "05z84knb5f520azqcq0mzwrp3s4c13hpl1bfkkq86paw4hq94ihm";
type = "gem"; type = "gem";
}; };
version = "17.4.0.pre.rc1"; version = "17.5.0.pre.rc42";
}; };
gitlab = { gitlab = {
dependencies = ["httparty" "terminal-table"]; dependencies = ["httparty" "terminal-table"];
@@ -2273,10 +2273,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1jljmgkabr02645nd7f0zf936k4q2j3yfhap445q66z7lcsr8rrp"; sha256 = "19qwlv3kjszypx8in77llqanlsgdcb16wsgzzfkph79hm7x9nqw8";
type = "gem"; type = "gem";
}; };
version = "17.4.0.pre.rc1"; version = "17.5.1";
}; };
gitlab-labkit = { gitlab-labkit = {
dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing" "pg_query" "redis"]; dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing" "pg_query" "redis"];
@@ -2410,18 +2410,18 @@ src:
path = "${src}/vendor/gems/sidekiq-reliable-fetch"; path = "${src}/vendor/gems/sidekiq-reliable-fetch";
type = "path"; type = "path";
}; };
version = "0.11.0"; version = "0.12.0";
}; };
gitlab-styles = { gitlab-styles = {
dependencies = ["rubocop" "rubocop-factory_bot" "rubocop-graphql" "rubocop-performance" "rubocop-rails" "rubocop-rspec"]; dependencies = ["rubocop" "rubocop-capybara" "rubocop-factory_bot" "rubocop-graphql" "rubocop-performance" "rubocop-rails" "rubocop-rspec" "rubocop-rspec_rails"];
groups = ["development" "test"]; groups = ["development" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0cyi9sccg1h7ia12i9jwbq5ygic53c7pc08ms7i1h7qfmfq058yq"; sha256 = "1gb89c035f32hj8iam4hxlyx6c7f1apq66hzzrvan5djjzz4065z";
type = "gem"; type = "gem";
}; };
version = "12.0.1"; version = "13.0.1";
}; };
gitlab-topology-service-client = { gitlab-topology-service-client = {
dependencies = ["grpc"]; dependencies = ["grpc"];
@@ -2471,10 +2471,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0dgalsl4452fgbzkg8frgyyas6rp3zac055iihsv3db9bi4vhg1v"; sha256 = "0z74fj5gklxpq8bc622f6psaaz8fpkg08q4lf28kj9krcx3b0jw3";
type = "gem"; type = "gem";
}; };
version = "1.39.0"; version = "2.1.0";
}; };
globalid = { globalid = {
dependencies = ["activesupport"]; dependencies = ["activesupport"];
@@ -2903,17 +2903,6 @@ src:
}; };
version = "1.8.4"; version = "1.8.4";
}; };
graphiql-rails = {
dependencies = ["railties"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0h0hi4i49hd7087ba7kh78wykc9gqnz0j9hlhplvkj1ply4zjmxm";
type = "gem";
};
version = "1.10.0";
};
graphlient = { graphlient = {
dependencies = ["faraday" "graphql-client"]; dependencies = ["faraday" "graphql-client"];
groups = ["default"]; groups = ["default"];
@@ -2941,10 +2930,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1qsljlb2fm8qmd8169ijyrnfixd63jcpy7w222bws1xbz1dna0sy"; sha256 = "0sc2s5yprba7i6x8iskd39fsp93r04xa08wbz1m5bygvj0lb7zpf";
type = "gem"; type = "gem";
}; };
version = "2.3.17"; version = "2.4.1";
}; };
graphql-client = { graphql-client = {
dependencies = ["activesupport" "graphql"]; dependencies = ["activesupport" "graphql"];
@@ -3050,10 +3039,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1mf24djxk6968n0ypwbib790nzijcf03m4kw0dnks8csfxj6hy9g"; sha256 = "1cc45znb0fiab69d0x67yakd5kywwl7w9ck128ikzqrgixa2ps12";
type = "gem"; type = "gem";
}; };
version = "0.58.0"; version = "0.59.0";
}; };
hamlit = { hamlit = {
dependencies = ["temple" "thor" "tilt"]; dependencies = ["temple" "thor" "tilt"];
@@ -3401,14 +3390,14 @@ src:
version = "3.8.0"; version = "3.8.0";
}; };
json = { json = {
groups = ["default" "development" "test"]; groups = ["danger" "default" "development" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0b4qsi8gay7ncmigr0pnbxyb17y3h8kavdyhsh7nrlqwr35vb60q"; sha256 = "1prbjd8r4rq6hjc6d5hn8hlpf4g9h62swxj7absjac7qqnzwrhvw";
type = "gem"; type = "gem";
}; };
version = "2.7.2"; version = "2.7.3";
}; };
json-jwt = { json-jwt = {
dependencies = ["activesupport" "aes_key_wrap" "base64" "bindata" "faraday" "faraday-follow_redirects"]; dependencies = ["activesupport" "aes_key_wrap" "base64" "bindata" "faraday" "faraday-follow_redirects"];
@@ -3455,14 +3444,15 @@ src:
version = "1.1.2"; version = "1.1.2";
}; };
jwt = { jwt = {
groups = ["default"]; dependencies = ["base64"];
groups = ["default" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0kcmnx6rgjyd7sznai9ccns2nh7p7wnw3mi8a7vf2wkm51azwddq"; sha256 = "0rba9mji57sfa1kjhj0bwff1377vj0i8yx2rd39j5ik4vp60gzam";
type = "gem"; type = "gem";
}; };
version = "2.5.0"; version = "2.9.3";
}; };
kaminari = { kaminari = {
dependencies = ["activesupport" "kaminari-actionview" "kaminari-activerecord" "kaminari-core"]; dependencies = ["activesupport" "kaminari-actionview" "kaminari-activerecord" "kaminari-core"];
@@ -3524,10 +3514,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0757lqaq593z8hzdv98nai73ag384dkk7jgj3mcq2r6ix7130ifb"; sha256 = "1ic14hdcqxn821dvzki99zhmcy130yhv5fqfffkcf87asv5mnbmn";
type = "gem"; type = "gem";
}; };
version = "2.3.2"; version = "2.4.0";
}; };
kramdown-parser-gfm = { kramdown-parser-gfm = {
dependencies = ["kramdown"]; dependencies = ["kramdown"];
@@ -3716,10 +3706,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "02hniq2gjckb0s70w2p90aymrf4x8lpjl0mq1arhl5fr2gmyzkdb"; sha256 = "01bni0dlqc9blb1akqsna39l2wb9a9dgv75mqhihrb0lnng4qj0n";
type = "gem"; type = "gem";
}; };
version = "2.3.2"; version = "2.3.4";
}; };
lru_redux = { lru_redux = {
groups = ["default"]; groups = ["default"];
@@ -3883,10 +3873,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1kl9c3kdchjabrihdqfmcplk3lq4cw1rr9f378y6q22qwy5dndvs"; sha256 = "1q1f2sdw3y3y9mnym9dhjgsjr72sq975cfg5c4yx7gwv8nmzbvhk";
type = "gem"; type = "gem";
}; };
version = "2.8.5"; version = "2.8.7";
}; };
minitest = { minitest = {
groups = ["development" "test"]; groups = ["development" "test"];
@@ -3941,15 +3931,14 @@ src:
version = "3.2.7"; version = "3.2.7";
}; };
mize = { mize = {
dependencies = ["protocol"];
groups = ["default" "test"]; groups = ["default" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "09zn7789ifzc13xraqsqxk762l4898n1f63scidgzjq1y06bmg2m"; sha256 = "0qr3vf0qc216kyyv2vnp8p9pv73di6zd6v9sx51qw5awrd90y6iz";
type = "gem"; type = "gem";
}; };
version = "0.4.1"; version = "0.6.0";
}; };
msgpack = { msgpack = {
groups = ["default"]; groups = ["default"];
@@ -4197,10 +4186,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1l8b0i24h4irivyhwy9xmkjbggw86cxkzkiqdqg0jpcp9qc8h4rl"; sha256 = "15gysw8rassqgdq3kwgl4mhqmrgh7nk2qvrcqp4ijyqazgywn6gq";
type = "gem"; type = "gem";
}; };
version = "1.16.0"; version = "1.16.7";
}; };
notiffany = { notiffany = {
dependencies = ["nenv" "shellany"]; dependencies = ["nenv" "shellany"];
@@ -4250,10 +4239,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0lw2537cdgxx9la7d5jwm3qkk5bwarz1v3glh68n4b3js9cscjbq"; sha256 = "05j3gz79gxkid3lc2balyllqik4v4swnm0rcvxz14m76bkrpz92g";
type = "gem"; type = "gem";
}; };
version = "9.1.0"; version = "9.2.0";
}; };
ohai = { ohai = {
dependencies = ["chef-config" "chef-utils" "ffi" "ffi-yajl" "ipaddress" "mixlib-cli" "mixlib-config" "mixlib-log" "mixlib-shellout" "plist" "train-core" "wmi-lite"]; dependencies = ["chef-config" "chef-utils" "ffi" "ffi-yajl" "ipaddress" "mixlib-cli" "mixlib-config" "mixlib-log" "mixlib-shellout" "plist" "train-core" "wmi-lite"];
@@ -4528,10 +4517,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0saiiaf5bkg95fjcq6asz5w86s6zg76xb0r93dcffhvnz36z0r2v"; sha256 = "1yl10v1vvb9krvvks0si5nbjpknz8lcbbcryqkf2g0db3kha072d";
type = "gem"; type = "gem";
}; };
version = "0.28.1"; version = "0.29.0";
}; };
opentelemetry-helpers-sql-obfuscation = { opentelemetry-helpers-sql-obfuscation = {
dependencies = ["opentelemetry-common"]; dependencies = ["opentelemetry-common"];
@@ -4550,10 +4539,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1afibmwprdiqnkin7lb6zdxng36rqa7qbl5fl9wx0lchpc039zjj"; sha256 = "03nbn48q5ymk4wyhvnqa1wzvi1mzy2cbc8pmpf26x217zy6dvwl8";
type = "gem"; type = "gem";
}; };
version = "0.1.0"; version = "0.2.0";
}; };
opentelemetry-instrumentation-action_pack = { opentelemetry-instrumentation-action_pack = {
dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base" "opentelemetry-instrumentation-rack"]; dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base" "opentelemetry-instrumentation-rack"];
@@ -4572,10 +4561,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "17qild0js6rgv95rphhs19jhd6ixspv1qvpijchqxmxg8waxmwih"; sha256 = "08ga079lc2xariw83xc4ly1kab718ripmfb9af7xh6vm9qajka3d";
type = "gem"; type = "gem";
}; };
version = "0.7.2"; version = "0.7.3";
}; };
opentelemetry-instrumentation-active_job = { opentelemetry-instrumentation-active_job = {
dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"];
@@ -4583,10 +4572,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1a5afx39bf0pzi0w75ic8zs8447i96993h056ww4vr23zl585f2x"; sha256 = "0hirfvkg4kf575al080zvnpbxs3y9qlmzdr1w7qwkap7mjdks6r8";
type = "gem"; type = "gem";
}; };
version = "0.7.7"; version = "0.7.8";
}; };
opentelemetry-instrumentation-active_record = { opentelemetry-instrumentation-active_record = {
dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"];
@@ -4594,10 +4583,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1fq0i6rmxvgj56jafj8ka19j2nkpj2yvj7h0zi0hc4s6r1s2xmvx"; sha256 = "1j61jv60hdvjs18rj7i3lbkd5zqkfm8fdx15c0ixdxc15q88778r";
type = "gem"; type = "gem";
}; };
version = "0.7.4"; version = "0.8.0";
}; };
opentelemetry-instrumentation-active_support = { opentelemetry-instrumentation-active_support = {
dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"];
@@ -4616,10 +4605,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1fxk5jaliz93njgfmbl5ygsbzbwqbh0g48w4ar905xxsfg1dl18q"; sha256 = "1d8rbbn3qnv0bb4l7mlxd9zlihf8m6k7rrajaj5zmq5p9fq79hx3";
type = "gem"; type = "gem";
}; };
version = "0.5.4"; version = "0.7.0";
}; };
opentelemetry-instrumentation-base = { opentelemetry-instrumentation-base = {
dependencies = ["opentelemetry-api" "opentelemetry-registry"]; dependencies = ["opentelemetry-api" "opentelemetry-registry"];
@@ -4737,10 +4726,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1sv1bkmapkzyvivf50wjcmq7cv16g9capngzky8p1p2dai0f2794"; sha256 = "1lgkjp0h0hf51n6afgafqaswvm06ybsvj3yf7dxxkzjpnzgxvjvg";
type = "gem"; type = "gem";
}; };
version = "0.28.0"; version = "0.29.0";
}; };
opentelemetry-instrumentation-rack = { opentelemetry-instrumentation-rack = {
dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"];
@@ -4748,10 +4737,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1dmfxcc2xz2qa4zp0sks5zrqcfr4fbpbc9xdgvcv8ys0ipf7pwn0"; sha256 = "0g94rqqgw1jhqfng2692559wrldl6xji45lhbr4id3l1dd7qp72k";
type = "gem"; type = "gem";
}; };
version = "0.24.6"; version = "0.25.0";
}; };
opentelemetry-instrumentation-rails = { opentelemetry-instrumentation-rails = {
dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-action_mailer" "opentelemetry-instrumentation-action_pack" "opentelemetry-instrumentation-action_view" "opentelemetry-instrumentation-active_job" "opentelemetry-instrumentation-active_record" "opentelemetry-instrumentation-active_support" "opentelemetry-instrumentation-base"]; dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-action_mailer" "opentelemetry-instrumentation-action_pack" "opentelemetry-instrumentation-action_view" "opentelemetry-instrumentation-active_job" "opentelemetry-instrumentation-active_record" "opentelemetry-instrumentation-active_support" "opentelemetry-instrumentation-base"];
@@ -4759,10 +4748,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "12k4s1k9wa257bqfny33byscb4ai86jw4q6ygrzsj3iv2bij07w9"; sha256 = "13nj66l0jhs4pz4krlncyach5zb1bbb82bfipkvc33b0dmicll88";
type = "gem"; type = "gem";
}; };
version = "0.31.2"; version = "0.32.0";
}; };
opentelemetry-instrumentation-rake = { opentelemetry-instrumentation-rake = {
dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"]; dependencies = ["opentelemetry-api" "opentelemetry-instrumentation-base"];
@@ -4941,10 +4930,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1sryynf3iws1b2ffba1gvmlpf8jzhfva5p0qdf37x6wdj683rqm2"; sha256 = "0fxw738al3qxa4s4ghqkxb908sav03i3h7xflawwmxzhqiyfdm15";
type = "gem"; type = "gem";
}; };
version = "3.3.3.0"; version = "3.3.6.0";
}; };
parslet = { parslet = {
groups = ["default" "development" "test"]; groups = ["default" "development" "test"];
@@ -5084,17 +5073,6 @@ src:
}; };
version = "1.1.1"; version = "1.1.1";
}; };
protocol = {
dependencies = ["ruby_parser"];
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1f8nvz0621gfsyiwy2nmwaliqafmf4p2wnln9qldd31vwl4wbmyw";
type = "gem";
};
version = "2.0.0";
};
pry = { pry = {
dependencies = ["coderay" "method_source"]; dependencies = ["coderay" "method_source"];
groups = ["default" "development" "test"]; groups = ["default" "development" "test"];
@@ -5181,24 +5159,24 @@ src:
version = "1.4.0"; version = "1.4.0";
}; };
racc = { racc = {
groups = ["default" "development" "test"]; groups = ["coverage" "default" "development" "monorepo" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "09jgz6r0f7v84a7jz9an85q8vvmp743dqcsdm3z9c8rqcqv6pljq"; sha256 = "0byn0c9nkahsl93y9ln5bysq4j31q8xkf2ws42swighxd4lnjzsa";
type = "gem"; type = "gem";
}; };
version = "1.6.2"; version = "1.8.1";
}; };
rack = { rack = {
groups = ["default" "development" "test"]; groups = ["default" "development" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0hj0rkw2z9r1lcg2wlrcld2n3phwrcgqcp7qd1g9a7hwgalh2qzx"; sha256 = "0ax778fsfvlhj7c11n0d1wdcb8bxvkb190a9lha5d91biwzyx9g4";
type = "gem"; type = "gem";
}; };
version = "2.2.9"; version = "2.2.10";
}; };
rack-accept = { rack-accept = {
dependencies = ["rack"]; dependencies = ["rack"];
@@ -5348,10 +5326,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0s8kvic2ia34ngssz6h15wqj0k3wwblhyh0f9v0j3gy7ly0dp161"; sha256 = "1jiiv5ni1jrk15g572wc0l1ansbx6aqqsp2mk0pg9h18mkh1dbpg";
type = "gem"; type = "gem";
}; };
version = "7.0.9"; version = "7.0.10";
}; };
railties = { railties = {
dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor" "zeitwerk"]; dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor" "zeitwerk"];
@@ -5673,15 +5651,14 @@ src:
version = "1.4.0"; version = "1.4.0";
}; };
rexml = { rexml = {
dependencies = ["strscan"];
groups = ["coverage" "danger" "default" "development" "omnibus" "test"]; groups = ["coverage" "danger" "default" "development" "omnibus" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0zr5qpa8lampaqzhdcjcvyqnrqcjl7439mqjlkjz43wdhmpnh4s5"; sha256 = "1j9p66pmfgxnzp76ksssyfyqqrg7281dyi3xyknl3wwraaw7a66p";
type = "gem"; type = "gem";
}; };
version = "3.3.2"; version = "3.3.9";
}; };
rinku = { rinku = {
groups = ["default"]; groups = ["default"];
@@ -5708,10 +5685,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "072qvvrcqj0yfr3b0j932mlhvn41i38bq37z7z07i3ikagndkqwy"; sha256 = "0r0b48945hakgy0y7lg6h1bb7pkfz8jqd0r6777f80ij3sansvbs";
type = "gem"; type = "gem";
}; };
version = "4.3.0"; version = "4.4.0";
}; };
rqrcode = { rqrcode = {
dependencies = ["chunky_png" "rqrcode_core"]; dependencies = ["chunky_png" "rqrcode_core"];
@@ -5877,15 +5854,15 @@ src:
version = "0.0.9"; version = "0.0.9";
}; };
rubocop = { rubocop = {
dependencies = ["json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; dependencies = ["json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rubocop-ast" "ruby-progressbar" "unicode-display_width"];
groups = ["development" "test"]; groups = ["development" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0daamn13fbm77rdwwa4w6j6221iq6091asivgdhk6n7g398frcdf"; sha256 = "131pbjl7bv9g9qli84j91kgqmcqzdm2flq7r9abskl3ndqiagk4c";
type = "gem"; type = "gem";
}; };
version = "1.62.1"; version = "1.67.0";
}; };
rubocop-ast = { rubocop-ast = {
dependencies = ["parser"]; dependencies = ["parser"];
@@ -5893,10 +5870,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1v3q8n48w8h809rqbgzihkikr4g3xk72m1na7s97jdsmjjq6y83w"; sha256 = "03zywfpm4540q6hw8srhi8pzp0gg51w65ir8jkaw58vk3j31w820";
type = "gem"; type = "gem";
}; };
version = "1.31.2"; version = "1.32.3";
}; };
rubocop-capybara = { rubocop-capybara = {
dependencies = ["rubocop"]; dependencies = ["rubocop"];
@@ -5904,10 +5881,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0f5r9di123hc4x2h453a143986plfzz9935bwc7267wj8awl8s1a"; sha256 = "1aw0n8jwhsr39r9q2k90xjmcz8ai2k7xx2a87ld0iixnv3ylw9jx";
type = "gem"; type = "gem";
}; };
version = "2.20.0"; version = "2.21.0";
}; };
rubocop-factory_bot = { rubocop-factory_bot = {
dependencies = ["rubocop"]; dependencies = ["rubocop"];
@@ -5915,10 +5892,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0d012phc7z5h1j1d2aisnbkmqlb95sld5jriia5qg2gpgbg1nxb2"; sha256 = "1aljadsjx7affcarzbhz7pydpy6fgqb8hl951y0cmrffxpa3rqcd";
type = "gem"; type = "gem";
}; };
version = "2.25.1"; version = "2.26.1";
}; };
rubocop-graphql = { rubocop-graphql = {
dependencies = ["rubocop"]; dependencies = ["rubocop"];
@@ -5926,10 +5903,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1sw242bz2al9c1arprim9pd0kks8wbla77kkjvwp7kp1m01dc0lm"; sha256 = "14j14ld5d3w141r5lgaljcd8q1g3w4xn592cwzqxlxw5n108v21d";
type = "gem"; type = "gem";
}; };
version = "1.5.1"; version = "1.5.4";
}; };
rubocop-performance = { rubocop-performance = {
dependencies = ["rubocop" "rubocop-ast"]; dependencies = ["rubocop" "rubocop-ast"];
@@ -5937,10 +5914,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0cf7fn4dwf45r3nhnda0dhnwn8qghswyqbfxr2ippb3z8a6gmc8v"; sha256 = "0kkkv073c01px27w69g93gbjwajxji5wmawrmbb5l9s4ll101wjw";
type = "gem"; type = "gem";
}; };
version = "1.20.2"; version = "1.21.1";
}; };
rubocop-rails = { rubocop-rails = {
dependencies = ["activesupport" "rack" "rubocop" "rubocop-ast"]; dependencies = ["activesupport" "rack" "rubocop" "rubocop-ast"];
@@ -5948,21 +5925,32 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "06dcxrr71sn0kkw8fwh0w884zbig2ilxpkl66s7lcis9jmkggv83"; sha256 = "1bc4xpyx0gldjdmbl9aaqav5bjiqfc2zdw7k2r1zblmgsq4ilmpm";
type = "gem"; type = "gem";
}; };
version = "2.24.1"; version = "2.26.2";
}; };
rubocop-rspec = { rubocop-rspec = {
dependencies = ["rubocop" "rubocop-capybara" "rubocop-factory_bot"]; dependencies = ["rubocop"];
groups = ["default" "development" "test"]; groups = ["default" "development" "test"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "17ksg89i1k5kyhi241pc0zyzmq1n7acxg0zybav5vrqbf02cw9rg"; sha256 = "03vyjxs5rzrsn5graljffgzy1fgbyn99w5fz69y243dhn6gy5a66";
type = "gem"; type = "gem";
}; };
version = "2.27.1"; version = "3.0.5";
};
rubocop-rspec_rails = {
dependencies = ["rubocop" "rubocop-rspec"];
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0ijc1kw81884k0wjq1sgwaxa854n1fdddscp4fnzfzlx7zl150c8";
type = "gem";
};
version = "2.30.0";
}; };
ruby-fogbugz = { ruby-fogbugz = {
dependencies = ["crack" "multipart-post"]; dependencies = ["crack" "multipart-post"];
@@ -6071,17 +6059,6 @@ src:
}; };
version = "0.0.5"; version = "0.0.5";
}; };
ruby_parser = {
dependencies = ["racc" "sexp_processor"];
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0sy5y7w89ii5iqym7b21glcwxqg8kizxfy8a7kcxq0j65wyqjhiq";
type = "gem";
};
version = "3.21.0";
};
rubyntlm = { rubyntlm = {
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
@@ -6203,10 +6180,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "00dq3450kadsvxh1lpndasy0bab0ilrjhrnvlicfmkvrx3gfs2j9"; sha256 = "1md0sixm8dq8a7riv50x4q1z273q47b5jvcbv5hxympxn3ran4by";
type = "gem"; type = "gem";
}; };
version = "4.23.0"; version = "4.25.0";
}; };
semver_dialects = { semver_dialects = {
dependencies = ["deb_version" "pastel" "thor" "tty-command"]; dependencies = ["deb_version" "pastel" "thor" "tty-command"];
@@ -6214,10 +6191,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "10ncp5pl9jsm81kj89gwyhsilbqhgh0j2cfz66q3ls86g2gsjgmf"; sha256 = "1i2wxx2vdpdiwcr4npqxzdzmd7hwzlllsrpxpic13na654r3wxri";
type = "gem"; type = "gem";
}; };
version = "3.4.3"; version = "3.4.4";
}; };
sentry-rails = { sentry-rails = {
dependencies = ["railties" "sentry-ruby"]; dependencies = ["railties" "sentry-ruby"];
@@ -6225,10 +6202,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "158rhsv547f3c31kfz8kdr7kpgm34sqm0bzbkxpqg3pazqim7bfl"; sha256 = "00nn1agy19s3zp7y06zxal6ds8h6w2rlxb6vjk5x7w5gk78l7adm";
type = "gem"; type = "gem";
}; };
version = "5.19.0"; version = "5.21.0";
}; };
sentry-ruby = { sentry-ruby = {
dependencies = ["bigdecimal" "concurrent-ruby"]; dependencies = ["bigdecimal" "concurrent-ruby"];
@@ -6236,10 +6213,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "12w3w779dcab85x1i4aavd5fw8xdb7mvhs3cvx85q2l48vr8kpqd"; sha256 = "0ac6yy9nfwak6pi8xp2qx31pap1l4h4qhkiala5y1rzwkbahski9";
type = "gem"; type = "gem";
}; };
version = "5.19.0"; version = "5.21.0";
}; };
sentry-sidekiq = { sentry-sidekiq = {
dependencies = ["sentry-ruby" "sidekiq"]; dependencies = ["sentry-ruby" "sidekiq"];
@@ -6247,20 +6224,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "106bxqzi0mhvxm583mly7a95rv77m89dd51433fwnpdk2m5yq5hv"; sha256 = "1qlh1r1h6lj57bbgzv9r78pp194jl79bqivn9ffrvxiqjb3lxxbd";
type = "gem"; type = "gem";
}; };
version = "5.19.0"; version = "5.21.0";
};
sexp_processor = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "182x05kpdjlckh31qizws50fz7sjk86yjjfmy45z61q3f930j4ci";
type = "gem";
};
version = "4.17.1";
}; };
shellany = { shellany = {
groups = ["default" "test"]; groups = ["default" "test"];
@@ -6617,16 +6584,6 @@ src:
}; };
version = "0.2.0"; version = "0.2.0";
}; };
strscan = {
groups = ["coverage" "danger" "default" "development" "omnibus" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0mamrl7pxacbc79ny5hzmakc9grbjysm3yy6119ppgsg44fsif01";
type = "gem";
};
version = "3.1.0";
};
swd = { swd = {
dependencies = ["activesupport" "attr_required" "faraday" "faraday-follow_redirects"]; dependencies = ["activesupport" "attr_required" "faraday" "faraday-follow_redirects"];
groups = ["default"]; groups = ["default"];
@@ -6680,14 +6637,15 @@ src:
version = "1.5.7"; version = "1.5.7";
}; };
tanuki_emoji = { tanuki_emoji = {
dependencies = ["i18n"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0mj0qyapppbvlr81a4pcivgsbwi5082iyzbxypasxdv17wl0p7q0"; sha256 = "14vdkzrfq3sv9dfzz0sgw89z7a6jic43jkndj7nqhvxdbhm1iqny";
type = "gem"; type = "gem";
}; };
version = "0.9.0"; version = "0.13.0";
}; };
telesign = { telesign = {
dependencies = ["net-http-persistent"]; dependencies = ["net-http-persistent"];
@@ -7068,6 +7026,27 @@ src:
}; };
version = "2.4.2"; version = "2.4.2";
}; };
unicode-emoji = {
dependencies = ["unicode-version"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1zis8a993f4hxmcmmacm7rwzd06hpzfs7aa4zqqik39gg8pxz74l";
type = "gem";
};
version = "4.0.0";
};
unicode-version = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0qvmcyv9gh5i0x4pzd30jn1j9vn6h67zaiymmklz4b8498srlh2n";
type = "gem";
};
version = "1.4.0";
};
unicode_utils = { unicode_utils = {
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
@@ -7179,10 +7158,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0333krs3kil7p1rr7cvfrsqr1plns7j6wca9mjgns9qdqkhnv0cn"; sha256 = "12r27rq6xlzngc1qv9zhbis0zx2216b8brb0bqg54di91jw94cdc";
type = "gem"; type = "gem";
}; };
version = "3.14.0"; version = "3.20.0";
}; };
virtus = { virtus = {
dependencies = ["axiom-types" "coercible" "descendants_tracker"]; dependencies = ["axiom-types" "coercible" "descendants_tracker"];
@@ -7276,10 +7255,10 @@ src:
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "158d2ikjfzw43kgm095klp43ihphk0cv5xjprk44w73xfv03i9qg"; sha256 = "08kixkdp41dw39kqfxf2wp5m4z9b6fxg6yfa6xin0wy7dxzka0dy";
type = "gem"; type = "gem";
}; };
version = "3.23.1"; version = "3.24.0";
}; };
webrick = { webrick = {
groups = ["default" "development" "test"]; groups = ["default" "development" "test"];

View File

@@ -8,13 +8,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "obs-source-record"; pname = "obs-source-record";
version = "0.3.5"; version = "0.4.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "exeldro"; owner = "exeldro";
repo = "obs-source-record"; repo = "obs-source-record";
rev = version; rev = version;
sha256 = "sha256-RodZjab3DKiJwYuspdpCsF0ah4u5JtDDYoZPUGk36H4="; sha256 = "sha256-fbIWbn5AfQxdXO5+YLfqPSWv4rdYyxJ7U0QnZgFexh4=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];

View File

@@ -8,16 +8,16 @@
buildGoModule rec { buildGoModule rec {
pname = "obs-teleport"; pname = "obs-teleport";
version = "0.7.2"; version = "0.7.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "fzwoch"; owner = "fzwoch";
repo = "obs-teleport"; repo = "obs-teleport";
rev = version; rev = version;
sha256 = "sha256-71fvaqjesLhCdK3dHodAtMNYhU6LGX4wkHSPgQJPYqo="; sha256 = "sha256-daDP4WElVu2nyqS1zMHpzSunVq6X3d4t/CQg5r6v2+E=";
}; };
vendorHash = "sha256-INJvecUwHMauoqqyd6S2JvZ/oqnwonbdbGhV8hdqiH8="; vendorHash = "sha256-bXBkv/nQv6UYSzPat6PcykU2hRW/UGDvmYrGOwo9I04=";
buildInputs = [ buildInputs = [
libjpeg libjpeg

View File

@@ -2,7 +2,7 @@
i3.overrideAttrs (oldAttrs: rec { i3.overrideAttrs (oldAttrs: rec {
pname = "i3-rounded"; pname = "i3-rounded";
version = "unstable-2021-10-03"; version = "4.21.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "LinoBigatti"; owner = "LinoBigatti";

View File

@@ -15,13 +15,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "acme.sh"; pname = "acme.sh";
version = "3.0.9"; version = "3.1.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "acmesh-official"; owner = "acmesh-official";
repo = "acme.sh"; repo = "acme.sh";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-GJNaY5Dxis/x5bCvOPnIvJ4VrJkjjaaOFq68JYXxDf0="; hash = "sha256-BPZ+5xvKqEaz+tkccVL0hEDAxLkICW5O+qPf73bOqRU=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -10,16 +10,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "aiken"; pname = "aiken";
version = "1.1.5"; version = "1.1.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aiken-lang"; owner = "aiken-lang";
repo = "aiken"; repo = "aiken";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-cspIIuH+0LJItTz9wk6mChwEMFP3GDpI+KKg0FWM9bQ="; hash = "sha256-dcJrLzdj4YK5CZ0jk+gqiqIj1ngq7443y8FVo6ajaz8=";
}; };
cargoHash = "sha256-aylmZFb+UaK3OEpJLOf4NuT4uMLRhdUg+cSjzxRo7t8="; cargoHash = "sha256-KtlqV/I9zqTlMStKQX7o14NuSOLf+dDoi/QJqirxqHY=";
buildInputs = buildInputs =
[ openssl ] [ openssl ]

View File

@@ -25,7 +25,7 @@
, patchelf , patchelf
}: }:
let let
version = "0.14.0"; version = "0.15.0";
# Patch for airshipper to install veloren # Patch for airshipper to install veloren
patch = let patch = let
runtimeLibs = [ runtimeLibs = [
@@ -63,10 +63,10 @@ rustPlatform.buildRustPackage {
owner = "Veloren"; owner = "Veloren";
repo = "airshipper"; repo = "airshipper";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-+ZU3WAjmPDAFAevebePcIlYcgSYSJJ3LyvwbTBKGUH4="; hash = "sha256-V8G1mZIdqf+WGcrUzRgWnlUk+EXs4arAEQdRESpobGg=";
}; };
cargoHash = "sha256-mwfYCVcOH2zFr76W9ZC4t/LmEwO5P2eGYXRVkwn6Fm4="; cargoHash = "sha256-N2FZZGbsAJdmBthsl1Be+kLMjI65yzMcbnBkgvdfDLM=";
buildInputs = [ buildInputs = [
fontconfig fontconfig

View File

@@ -5,11 +5,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "alfaview"; pname = "alfaview";
version = "9.17.0"; version = "9.18.1";
src = fetchurl { src = fetchurl {
url = "https://assets.alfaview.com/stable/linux/deb/${pname}_${version}.deb"; url = "https://assets.alfaview.com/stable/linux/deb/${pname}_${version}.deb";
hash = "sha256-Rq/5QByaqGd5Cfr4r+Ojv8OC8PvFQ4a+TT8CgeevF28="; hash = "sha256-O0lFDyIL+BJBRfPKsEm7+sdoyPBojgN3uVSe6e75HqI=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -77,13 +77,13 @@ let
in in
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "ansel"; pname = "ansel";
version = "0-unstable-2024-09-29"; version = "0-unstable-2024-10-28";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aurelienpierreeng"; owner = "aurelienpierreeng";
repo = "ansel"; repo = "ansel";
rev = "0e942648c4f9b1fd89fee8ca91d6e9bd5e06344c"; rev = "7f23d9d38630629e559e76073ec4dbe71733c225";
hash = "sha256-gzIZwbTdGE0+uLScV/JfGW0ZxXIbnnSrYO1OxPS5Xz0="; hash = "sha256-2AEQlt75nnVD8ZFpVUEvgxRV94NtWDK0R+zVd/ytXuU=";
fetchSubmodules = true; fetchSubmodules = true;
}; };

View File

@@ -5,16 +5,16 @@
buildGoModule rec { buildGoModule rec {
pname = "api-linter"; pname = "api-linter";
version = "1.67.4"; version = "1.67.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "googleapis"; owner = "googleapis";
repo = "api-linter"; repo = "api-linter";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-zHJE3sau2KAbPNafUw2+OPFI5RRomqzr1QMEB1vfq3I="; hash = "sha256-Dp5bZu9/wqrBZuups69P/SxK6RAKLSPqYt3TXdxMQss=";
}; };
vendorHash = "sha256-rZn3SYcuFay2pjGad+NhEf8dmzonsvO7M4OQovT8otg="; vendorHash = "sha256-RPw8SPfs/M5ycPxB7eM2BmSYU0kKp/4drBvju0u+eoM=";
subPackages = [ "cmd/api-linter" ]; subPackages = [ "cmd/api-linter" ];

View File

@@ -6,13 +6,13 @@
buildGoModule rec { buildGoModule rec {
pname = "arkade"; pname = "arkade";
version = "0.11.29"; version = "0.11.31";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "alexellis"; owner = "alexellis";
repo = "arkade"; repo = "arkade";
rev = version; rev = version;
hash = "sha256-B5MgBX8GPjBsfOCa1OoZRhQAUQxKH7GXYKMaH6TsUV4="; hash = "sha256-MFce+stC+OzUL0H0ahZZAfMwr9Y+EVJIMmhhRl4JYaU=";
}; };
CGO_ENABLED = 0; CGO_ENABLED = 0;

View File

@@ -5,14 +5,14 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "asahi-bless"; pname = "asahi-bless";
version = "0.3.0"; version = "0.4.1";
src = fetchCrate { src = fetchCrate {
inherit pname version; inherit pname version;
hash = "sha256-pgl424SqeHODsjGwNRJtVHT6sKRlYxlXl3esEKK02jc="; hash = "sha256-SNaA+CEuCBwo4c54qWGs5AdkBYb9IWY1cQ0dRd/noe8=";
}; };
cargoHash = "sha256-ilblP8nqb/eY0+9Iua298M7NQKv+IwtdliGd9ZYAVaM="; cargoHash = "sha256-Ou6sZ0fjsiadNcsdyiqxRwg+JIXMA4oanIgyW6NrLwI=";
cargoDepsName = pname; cargoDepsName = pname;
meta = with lib; { meta = with lib; {

View File

@@ -5,14 +5,14 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "asahi-nvram"; pname = "asahi-nvram";
version = "0.2.1"; version = "0.2.3";
src = fetchCrate { src = fetchCrate {
inherit pname version; inherit pname version;
hash = "sha256-bFUFjHVTYj0eUmhijraOdeCvAt2UGX8+yyvooYN1Uo0="; hash = "sha256-zfUvPHAPrYhzgeiirGuqZaWnLBH0PHsqOUy2e972bWM=";
}; };
cargoHash = "sha256-WhySIQew8xxdwXLWkpvTYQZFiqCEPjEAjr7NVxfjDkU="; cargoHash = "sha256-FP4qCJyzCOGaPDijp18m5K1YO+Ki9oDwblP2Vh8GsO0=";
cargoDepsName = pname; cargoDepsName = pname;
meta = with lib; { meta = with lib; {

View File

@@ -38,13 +38,13 @@ in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "astc-encoder"; pname = "astc-encoder";
version = "5.0.0"; version = "5.1.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ARM-software"; owner = "ARM-software";
repo = "astc-encoder"; repo = "astc-encoder";
rev = version; rev = version;
sha256 = "sha256-ngorPKDBRk4u4EUoJHAz5jrUiNUGffJKdEf9fiWbi/g="; sha256 = "sha256-IGzH/0JLDUkwABCFRVVEJevWwcT5El3HweU6nsVQCJw=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];

View File

@@ -2473,9 +2473,9 @@ dependencies = [
[[package]] [[package]]
name = "inotify" name = "inotify"
version = "0.9.6" version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"inotify-sys", "inotify-sys",
@@ -2773,11 +2773,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
dependencies = [ dependencies = [
"libc", "libc",
"log",
"wasi", "wasi",
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
[[package]]
name = "mio"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
dependencies = [
"hermit-abi",
"libc",
"log",
"wasi",
"windows-sys 0.52.0",
]
[[package]] [[package]]
name = "nix-base32" name = "nix-base32"
version = "0.2.0" version = "0.2.0"
@@ -2796,9 +2808,9 @@ dependencies = [
[[package]] [[package]]
name = "notify" name = "notify"
version = "6.1.1" version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009"
dependencies = [ dependencies = [
"bitflags 2.5.0", "bitflags 2.5.0",
"filetime", "filetime",
@@ -2806,9 +2818,19 @@ dependencies = [
"kqueue", "kqueue",
"libc", "libc",
"log", "log",
"mio", "mio 1.0.2",
"notify-types",
"walkdir", "walkdir",
"windows-sys 0.48.0", "windows-sys 0.52.0",
]
[[package]]
name = "notify-types"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7393c226621f817964ffb3dc5704f9509e107a8b024b489cc2c1b217378785df"
dependencies = [
"instant",
] ]
[[package]] [[package]]
@@ -4686,7 +4708,7 @@ dependencies = [
"backtrace", "backtrace",
"bytes", "bytes",
"libc", "libc",
"mio", "mio 0.8.11",
"num_cpus", "num_cpus",
"pin-project-lite", "pin-project-lite",
"signal-hook-registry", "signal-hook-registry",

View File

@@ -12,13 +12,13 @@
}: }:
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
pname = "attic"; pname = "attic";
version = "0-unstable-2024-10-06"; version = "0-unstable-2024-11-10";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zhaofengli"; owner = "zhaofengli";
repo = "attic"; repo = "attic";
rev = "1b29816235b7573fca7f964709fd201e1a187024"; rev = "47752427561f1c34debb16728a210d378f0ece36";
hash = "sha256-icNt2T1obK3hFNgBOgiiyOoiScUfz9blmRbNp3aOUBE="; hash = "sha256-6KMC/NH/VWP5Eb+hA56hz0urel3jP6Y6cF2PX6xaTkk=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -5,18 +5,18 @@
buildGoModule rec { buildGoModule rec {
pname = "azure-storage-azcopy"; pname = "azure-storage-azcopy";
version = "10.27.0"; version = "10.27.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Azure"; owner = "Azure";
repo = "azure-storage-azcopy"; repo = "azure-storage-azcopy";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-TF0vChuM3OF/YbCsP8Vg4x609Q1QgqwBNmKUdWCHHUc="; hash = "sha256-h/EiJZMX2vHn/t1FPM1ZkXf9I8LYiqK1GqkSDAlXBYY=";
}; };
subPackages = [ "." ]; subPackages = [ "." ];
vendorHash = "sha256-dYIZb8sSh1Y8yllWOSsWEpiaIwcwZL2wCet3Terl0Ro="; vendorHash = "sha256-7ZUQMJPYE62M47VqEwahVePC85x3TyOmADOVczUrj7w=";
doCheck = false; doCheck = false;

View File

@@ -2,16 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "bazelisk"; pname = "bazelisk";
version = "1.22.1"; version = "1.24.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bazelbuild"; owner = "bazelbuild";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-C5kCCSvIcjZPRXS8ckoHusYCZ4IfsaHeyQC7jLdjZQY="; sha256 = "sha256-RuSsX20n8W9Fo5idkOhUPo7ESW7xMBKLHPYRNO7wyjA=";
}; };
vendorHash = "sha256-q8W+WSOxR/VC0uU8c2PVZwIer2CDUdDQ64AA2K6KghM="; vendorHash = "sha256-r87F8wjF/LrIb/evdtq8y3R15bEc9mNjQt7QsB4BYfo=";
doCheck = false; doCheck = false;

View File

@@ -13,13 +13,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "bngblaster"; pname = "bngblaster";
version = "0.9.8"; version = "0.9.12";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rtbrick"; owner = "rtbrick";
repo = "bngblaster"; repo = "bngblaster";
rev = finalAttrs.version; rev = finalAttrs.version;
hash = "sha256-6pOkFu5BQHyESGW4Yxq5QjUG+fZOGxT2OAnglrav6fE="; hash = "sha256-wbjqZ3lZZzctHDjQM0DDrkMX3obIFJEj+R7M7JGU0Uk=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];

View File

@@ -17,13 +17,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "brainflow"; pname = "brainflow";
version = "5.14.0"; version = "5.15.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "brainflow-dev"; owner = "brainflow-dev";
repo = "brainflow"; repo = "brainflow";
rev = "refs/tags/${finalAttrs.version}"; rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-cnItKuOu4ez54mAyRuk8PDC3oKKUIqdkAUuuaxNs5Z8="; hash = "sha256-NBdSVYW2xWY5jgXeaeW0yBzIzvSWt5Qp2A9zIn7+0Yw=";
}; };
patches = [ ]; patches = [ ];

View File

@@ -9,11 +9,11 @@
stdenvNoCC.mkDerivation rec { stdenvNoCC.mkDerivation rec {
pname = "camunda-modeler"; pname = "camunda-modeler";
version = "5.28.0"; version = "5.30.0";
src = fetchurl { src = fetchurl {
url = "https://github.com/camunda/camunda-modeler/releases/download/v${version}/camunda-modeler-${version}-linux-x64.tar.gz"; url = "https://github.com/camunda/camunda-modeler/releases/download/v${version}/camunda-modeler-${version}-linux-x64.tar.gz";
hash = "sha256-0xOgnpHoFxBzDoDGI7bcBFRu47HDYASIu4ApQo288Bo="; hash = "sha256-zv4gry/PcudNDSUNmnhB1nrGoKI1D3pswoXpHqouQAw=";
}; };
sourceRoot = "camunda-modeler-${version}-linux-x64"; sourceRoot = "camunda-modeler-${version}-linux-x64";

View File

@@ -2,14 +2,14 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cargo-bolero"; pname = "cargo-bolero";
version = "0.11.2"; version = "0.12.0";
src = fetchCrate { src = fetchCrate {
inherit pname version; inherit pname version;
hash = "sha256-Xcu91CbIDBLSojWQJjvdFWJiqjMteAxF105lemCAipk="; hash = "sha256-ta0H6V7Zg/Jnu3973eYJXGwwQcqZnDTlsmWAHkQr2EA=";
}; };
cargoHash = "sha256-QLtf42Il+XHWeaUdh8jNNWU1sXaVe82sYOKiHLoXw2M="; cargoHash = "sha256-5F72vjEu0qrE3fYPbiw/UFUUnAZcEBcuhDkuqqCBbrM=";
buildInputs = [ libbfd libopcodes libunwind ]; buildInputs = [ libbfd libopcodes libunwind ];

View File

@@ -14,16 +14,16 @@ let
in in
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cargo-leptos"; pname = "cargo-leptos";
version = "0.2.21"; version = "0.2.22";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "leptos-rs"; owner = "leptos-rs";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-Oe65m9io7ihymUjylaWHQM/x7r0y/xXqD313H3oyjN8="; hash = "sha256-QPCYKlbPHuSBmwfkKdYhcVF81Lnirf65IYao7UVxz9Q=";
}; };
cargoHash = "sha256-wZNtEr6IAy+OABpTm93rOhKAP1NEEYUvokjaVdoaSG4="; cargoHash = "sha256-vtceKtYU8Jslk0PnQD/kGPFO4tDOp0TMYDFqkLy4j6U=";
buildInputs = optionals isDarwin [ buildInputs = optionals isDarwin [
SystemConfiguration SystemConfiguration

View File

@@ -2,14 +2,14 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cargo-tally"; pname = "cargo-tally";
version = "1.0.50"; version = "1.0.56";
src = fetchCrate { src = fetchCrate {
inherit pname version; inherit pname version;
hash = "sha256-kU2SmD51enAyRzzpPJunMKloKS1m7zwEqk2kMX94s7U="; hash = "sha256-IB1OoS9pdFHFewLfeu1cVCffLGtPvCJlVkIBZxtBkm4=";
}; };
cargoHash = "sha256-tWMiAb50znyZS77Qcp5dUjPr7qnODjiEFunIyDOde8s="; cargoHash = "sha256-uPlilomHib10/v2HKBjU/ln0B4QkKpFJPpKf37RO7Oo=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk_11_0.frameworks; [ buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk_11_0.frameworks; [
DiskArbitration DiskArbitration

View File

@@ -9,13 +9,13 @@
buildGoModule rec { buildGoModule rec {
pname = "cilium-cli"; pname = "cilium-cli";
version = "0.16.19"; version = "0.16.20";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cilium"; owner = "cilium";
repo = "cilium-cli"; repo = "cilium-cli";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-I5HC1H517oCizZf2mcHOKmgJqnvPjkNVfDy2/9Kkw44="; hash = "sha256-aTCMYVvbVKhM2Nm1mYw8beEIb3sdDwjcigFvEum86s8=";
}; };
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];

View File

@@ -17,13 +17,13 @@
buildGoModule rec { buildGoModule rec {
pname = "colima"; pname = "colima";
version = "0.7.6"; version = "0.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "abiosoft"; owner = "abiosoft";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-S8KmwUN5ZU21P/i6X9uSmQ25nMHZxYKd6XtawrwP6yU="; hash = "sha256-nWJnk2m0ETXYjiUIDSN1hK9FXopn3AZz7TJ8nzSLe1E=";
# We need the git revision # We need the git revision
leaveDotGit = true; leaveDotGit = true;
postFetch = '' postFetch = ''

View File

@@ -19,13 +19,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "collector"; pname = "collector";
version = "0-unstable-2024-08-02"; version = "0-unstable-2024-11-11";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mijorus"; owner = "mijorus";
repo = "collector"; repo = "collector";
rev = "7c83ef15ec6189005e63a036f00699adf1cb7132"; rev = "54cf58e79066284e6c62fdabca2a4b444131ee09";
hash = "sha256-WTNisQuwtyjZ73cVPhuCQkf7FkpAvNx3BrxjpzKc1/s="; hash = "sha256-V+FMpmI4vcqfBwgxnSxRm1RJ8If19yvSKAqrf+mI604=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -5,11 +5,11 @@
let let
pname = "cozydrive"; pname = "cozydrive";
version = "3.40.0"; version = "3.41.0";
src = fetchurl { src = fetchurl {
url = "https://github.com/cozy-labs/cozy-desktop/releases/download/v${version}/Cozy-Drive-${version}-x86_64.AppImage"; url = "https://github.com/cozy-labs/cozy-desktop/releases/download/v${version}/Cozy-Drive-${version}-x86_64.AppImage";
sha256 = "sha256-bKYtuFgKmZj8fFEh/O9HXGm+GQTEbjpe+KsMW5nX1ek="; sha256 = "sha256-cNjr6QpzugVSSS1QrL+KwU5V0KAcupezZZIIQuHBIC8=";
}; };
appimageContents = appimageTools.extract { inherit pname version src; }; appimageContents = appimageTools.extract { inherit pname version src; };

View File

@@ -7,7 +7,7 @@
buildPackages, buildPackages,
}: }:
let let
version = "0.31.0"; version = "0.32.0";
in in
buildGoModule { buildGoModule {
pname = "csvtk"; pname = "csvtk";
@@ -17,10 +17,10 @@ buildGoModule {
owner = "shenwei356"; owner = "shenwei356";
repo = "csvtk"; repo = "csvtk";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-RfW7SiRcsN0F/+2bixLMNsqJCOSD1BQwlm4Zm2kogXM="; hash = "sha256-t1juidSPCOEFsApvMWW8F/gF2F6JwK0Ds7O/GSZRg30=";
}; };
vendorHash = "sha256-5RqAtnGioasbQxLltglCWitzb7mQgNYIE9IFkE0AOME="; vendorHash = "sha256-T9flXxly3i8SKQlhp4AF2FNCqgcnGAHxv5b7nqzM3DI=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];

View File

@@ -2,13 +2,13 @@
buildGoModule rec { buildGoModule rec {
pname = "ctlptl"; pname = "ctlptl";
version = "0.8.35"; version = "0.8.36";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tilt-dev"; owner = "tilt-dev";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-JFHPwda1p3xIfbQqnl3tI7Z/LhAB1U2VtLvT2DlyQMo="; hash = "sha256-r3WDo8ZNXc7a0BgJ4A4wluarwvbePL70//nJKt6u55I=";
}; };
vendorHash = "sha256-d9TijRzBpMvRrOMexGtewtAA9XpLwDTjPnPzt7G67Cs="; vendorHash = "sha256-d9TijRzBpMvRrOMexGtewtAA9XpLwDTjPnPzt7G67Cs=";

View File

@@ -8,13 +8,13 @@
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {
pname = "cyberpunk-neon"; pname = "cyberpunk-neon";
version = "0-unstable-2024-09-15"; version = "0-unstable-2024-11-07";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Roboron3042"; owner = "Roboron3042";
repo = "Cyberpunk-Neon"; repo = "Cyberpunk-Neon";
rev = "18febaab8aa808889fb08c368e37be4ca79e0cdd"; rev = "f036cc70f39caa91b8ff1dab16194a97848ee378";
hash = "sha256-YR8au1ukggYsPGecZMkLIf901dbRJSrXVMs2CzaIMBo="; hash = "sha256-PmCzTj9TfFzilO+Sf976hhcBwUq7qyG1+HbwwBD777o=";
}; };
outputs = [ outputs = [

View File

@@ -6,16 +6,16 @@
buildGoModule rec { buildGoModule rec {
pname = "dnsproxy"; pname = "dnsproxy";
version = "0.73.2"; version = "0.73.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "AdguardTeam"; owner = "AdguardTeam";
repo = "dnsproxy"; repo = "dnsproxy";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-Xxi23Cwm389fsDcYa3qJ9GhDZVXwh/LiWPfiYMuG5Js="; hash = "sha256-LCo/SWfsmwbHhDZRf9PRN0FbB81js616YLUQG/Xtz2A=";
}; };
vendorHash = "sha256-tyEp0vY8hWE8jTvkxKuqQJcgeey+c50pxREpmlZWE24="; vendorHash = "sha256-5NTHIeKwruVMO7mBxcO+wglUslOJVFmxS2krDfdFAgg=";
ldflags = [ ldflags = [
"-s" "-s"

View File

@@ -2,7 +2,7 @@
let let
themeName = "Dracula"; themeName = "Dracula";
version = "4.0.0-unstable-2024-10-03"; version = "4.0.0-unstable-2024-11-26";
in in
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {
pname = "dracula-theme"; pname = "dracula-theme";
@@ -11,8 +11,8 @@ stdenvNoCC.mkDerivation {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dracula"; owner = "dracula";
repo = "gtk"; repo = "gtk";
rev = "b5b7f3aed7060e14b848ca449a1d575c872f4e73"; rev = "788add33099a70b8ebba321b882ebff23fdc0a98";
hash = "sha256-hsWyvmxEBJKdNem+eYbGF+UBopP3p90SdFNP7wBuE74="; hash = "sha256-QlJ9gxFYQ+ZIpMUib2gNmO0JnY1C2h/f6/3cbwi0TUg=";
}; };
propagatedUserEnvPkgs = [ propagatedUserEnvPkgs = [

View File

@@ -6,13 +6,13 @@
buildGoModule rec { buildGoModule rec {
pname = "ejson"; pname = "ejson";
version = "1.5.2"; version = "1.5.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Shopify"; owner = "Shopify";
repo = "ejson"; repo = "ejson";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-Pv0eoFf/E+PE/C+0wsSQxhVTlymOMAYk5UVQP2udpnA="; sha256 = "sha256-WazcVmZq9uQPXbslWFW0r0SFF4xNKECgxcBoD+RS17k=";
}; };
vendorHash = "sha256-N2vcj3STkaZO2eRr8VztZTWOBUTI+wOri0HYDJ1KiN8="; vendorHash = "sha256-N2vcj3STkaZO2eRr8VztZTWOBUTI+wOri0HYDJ1KiN8=";

View File

@@ -13,24 +13,24 @@ let
"linux-${arch}-unknown-linux-gnu"; "linux-${arch}-unknown-linux-gnu";
hashes = { hashes = {
linux-aarch64-unknown-linux-gnu = "sha256-vWMrq/uFU/uyuDnsxZK0ZyvtraVCZwvGjzO1a5QjR8g="; linux-aarch64-unknown-linux-gnu = "sha256-Fte7oZD5+aFph5xGrKtbSimb3aHewkjsJRXB+64IW5A=";
linux-x86_64-unknown-linux-gnu = "sha256-iE/zH6M51C6sFZrsUMwZTQ0+hzfpRFJtiKh3MS9bDto="; linux-x86_64-unknown-linux-gnu = "sha256-tu4uloIyXjq5DjDaU4qxbf8a/S7yv3RsNcUwusfMztw=";
macos-aarch64-apple-darwin = "sha256-55LSChvO0wRHGL0H29MLy/JW8V52GFr3z/qoxdIPun0="; macos-aarch64-apple-darwin = "sha256-3K3sPizBR/+DJIX67GsYqm2X5k7kq3kBRg8P2WALTZs=";
macos-x86_64-apple-darwin = "sha256-l9bzQ5z9hQ/N2dOkAjPAU4OfRbLCUoRt1eQB6EZE0NI="; macos-x86_64-apple-darwin = "sha256-j+AVmLfe/yCvKvYhL5ikhXA1g+zQ1CDlMl1FYO6q1yA=";
}; };
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "erlang-language-platform"; pname = "erlang-language-platform";
version = "2024-07-16"; version = "2024-11-07";
src = fetchurl { src = fetchurl {
url = "https://github.com/WhatsApp/erlang-language-platform/releases/download/${version}/elp-${release}-otp-26.2.tar.gz"; url = "https://github.com/WhatsApp/erlang-language-platform/releases/download/${version}/elp-${release}-otp-26.2.tar.gz";
hash = hashes.${release}; hash = hashes.${release};
}; };
nativeBuildInputs = [ autoPatchelfHook ]; nativeBuildInputs = lib.optionals stdenv.hostPlatform.isElf [ autoPatchelfHook ];
buildInputs = [ (lib.getLib stdenv.cc.cc) ]; buildInputs = lib.optionals stdenv.hostPlatform.isElf [ (lib.getLib stdenv.cc.cc) ];
sourceRoot = "."; sourceRoot = ".";

View File

@@ -6,13 +6,13 @@
buildGoModule rec { buildGoModule rec {
pname = "f2"; pname = "f2";
version = "2.0.1"; version = "2.0.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ayoisaiah"; owner = "ayoisaiah";
repo = "f2"; repo = "f2";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-z2w+1dAwd3108J+ApHn2rj9duW9qObd3AZJXyt0811c="; sha256 = "sha256-AjuWaSEP2X3URZBPD05laV32ms/pULooSQKXUz8sqsU=";
}; };
vendorHash = "sha256-xKw9shfAtRjD0f4BGALM5VPjGOaYz1IqXWcctHcV/p8="; vendorHash = "sha256-xKw9shfAtRjD0f4BGALM5VPjGOaYz1IqXWcctHcV/p8=";

View File

@@ -4,13 +4,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "faudio"; pname = "faudio";
version = "24.11"; version = "24.12";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "FNA-XNA"; owner = "FNA-XNA";
repo = "FAudio"; repo = "FAudio";
rev = version; rev = version;
sha256 = "sha256-fmJh2DZNAjqqTDFt5b2HZ5oeS7VkvPy1a8gr59OQSUo="; sha256 = "sha256-hzU4MabTzpbyMMoUQ3tSwjulm6jJSxQUvVXOY3Y84yI=";
}; };
nativeBuildInputs = [cmake]; nativeBuildInputs = [cmake];

View File

@@ -15,13 +15,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "fcitx5-mcbopomofo"; pname = "fcitx5-mcbopomofo";
version = "2.8"; version = "2.8.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "openvanilla"; owner = "openvanilla";
repo = "fcitx5-mcbopomofo"; repo = "fcitx5-mcbopomofo";
rev = version; rev = version;
hash = "sha256-VnAE+DIDEYAfHnHS/ufwohkUgmgjNyrCyJlA2g1p2aY="; hash = "sha256-4z6kSzmtuypbT7oXBJqiOMwU6PVRH+vEBYcBWtv4fGE=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -1,36 +1,44 @@
{ lib {
, stdenv lib,
, fetchFromGitHub fetchFromGitHub,
, rustPlatform rustPlatform,
, darwin pandoc,
, pandoc pkg-config,
, pkg-config openssl,
, openssl installShellFiles,
, installShellFiles copyDesktopItems,
, copyDesktopItems makeDesktopItem,
, makeDesktopItem nix-update-script,
, nix-update-script testers,
, testers writeText,
, writeText runCommand,
, runCommand fend,
, fend
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "fend"; pname = "fend";
version = "1.5.3"; version = "1.5.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "printfn"; owner = "printfn";
repo = "fend"; repo = "fend";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-mokBvBJlqvrherpZ+qMy86CXESXlaC6Qh3LISmmfR0Q="; hash = "sha256-yRNfkP6DgXK1pLq50D9dMbbJaOX4ouQACJrfP5XrAJs=";
}; };
cargoHash = "sha256-+8rXZ+xX2fqm0+tFnyQK9HXa/ZuIcbvtzVrB5cOUCp4="; cargoHash = "sha256-y2H1BghzVvU/1WtAa4Yy2G9liKNbnyaufn5HbApwERA=";
nativeBuildInputs = [ pandoc installShellFiles pkg-config copyDesktopItems ]; nativeBuildInputs = [
buildInputs = [ pkg-config openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ]; pandoc
installShellFiles
pkg-config
copyDesktopItems
];
buildInputs = [
pkg-config
openssl
];
postBuild = '' postBuild = ''
patchShebangs --build ./documentation/build.sh patchShebangs --build ./documentation/build.sh
@@ -60,7 +68,11 @@ rustPlatform.buildRustPackage rec {
icon = "fend"; icon = "fend";
exec = "fend"; exec = "fend";
terminal = true; terminal = true;
categories = [ "Utility" "Calculator" "ConsoleOnly" ]; categories = [
"Utility"
"Calculator"
"ConsoleOnly"
];
}) })
]; ];
@@ -85,7 +97,10 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/printfn/fend"; homepage = "https://github.com/printfn/fend";
changelog = "https://github.com/printfn/fend/releases/tag/v${version}"; changelog = "https://github.com/printfn/fend/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ djanatyn liff ]; maintainers = with maintainers; [
djanatyn
liff
];
mainProgram = "fend"; mainProgram = "fend";
}; };
} }

View File

@@ -19,15 +19,15 @@ let
# TODO: It'd be nice to write an update script that would update all of these # TODO: It'd be nice to write an update script that would update all of these
# hashes together. # hashes together.
packageHash = { packageHash = {
x86_64-linux = "sha256-gYHIfvgofT9tKYCchZoRYvioLCtp2wfaOtuVWxTyujM="; x86_64-linux = "sha256-r/F3Tj3WeeL2R27ussX+ebFWpW+8z2e7tdBK4MHFMpk=";
aarch64-linux = "sha256-zW+aeUc67pa6mQQkfazShHKAvGeucswLK1eRCxzXOJM="; aarch64-linux = "sha256-BSFxDJeY7fOOxDqAV+6FJf0hup1Y5IJ/czqwc4W7qSA=";
x86_64-darwin = "sha256-ph+SrrxOIyG9rRS098duhvDFiNGuh0o2uemm++J+zKw="; x86_64-darwin = "sha256-T6J9IjfXdt9DnZksndAmZRkYyH/5H60J7V6xU0ltD2A=";
aarch64-darwin = "sha256-eOpRaivRhk841/TCxC4ygw27UrPkqQCMH2mme2qo8V8="; aarch64-darwin = "sha256-6x+0PB5/2oqYDVNiNhc0xcs/ESCLvvSsWtm2KlTIeBo=";
}.${system} or (throw "Unsupported system: ${system}"); }.${system} or (throw "Unsupported system: ${system}");
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "fermyon-spin"; pname = "fermyon-spin";
version = "2.5.1"; version = "3.0.0";
# Use fetchurl rather than fetchzip as these tarballs are built by the project # Use fetchurl rather than fetchzip as these tarballs are built by the project
# and not by GitHub (and thus are stable) - this simplifies the update script # and not by GitHub (and thus are stable) - this simplifies the update script
@@ -60,6 +60,7 @@ in stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Framework for building, deploying, and running fast, secure, and composable cloud microservices with WebAssembly"; description = "Framework for building, deploying, and running fast, secure, and composable cloud microservices with WebAssembly";
homepage = "https://github.com/fermyon/spin"; homepage = "https://github.com/fermyon/spin";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = with licenses; [ asl20 ]; license = with licenses; [ asl20 ];
mainProgram = "spin"; mainProgram = "spin";
maintainers = with maintainers; [ mglolenstine ]; maintainers = with maintainers; [ mglolenstine ];

View File

@@ -2,16 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "fioctl"; pname = "fioctl";
version = "0.42"; version = "0.43";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "foundriesio"; owner = "foundriesio";
repo = "fioctl"; repo = "fioctl";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-UqUr57D5nZh+zanzCmxujLbA8eICKx0NUlP78YH8x/Q="; sha256 = "sha256-hZ8jkIbNY2z4M7sHCYq6vVacetThcoYPJjkr8PFQmQA=";
}; };
vendorHash = "sha256-A5buz9JOAiXx9X4qmi7mTMJiy/E6XBaFlG/sXOG5AKw="; vendorHash = "sha256-SUjHHsZGi5C5juYdJJ0Z7i6P6gySQOdn1VaReCIwfzU=";
ldflags = [ ldflags = [
"-s" "-w" "-s" "-w"

View File

@@ -18,24 +18,16 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "flycast"; pname = "flycast";
version = "2.3.2"; version = "2.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "flyinghead"; owner = "flyinghead";
repo = "flycast"; repo = "flycast";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-YFLSUaEikwLPglHh3t8sHiKHRn5cchKzzkJlZDdgVsU="; hash = "sha256-1Rso7/S95+8KPoKa+3oFPJBWE+YGw4Qqo3Hn+crxNio=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
patches = [
# miniupnp: add support for api version 18
(fetchpatch2 {
url = "https://github.com/flyinghead/flycast/commit/71982eda7a038e24942921e558845103b6c12326.patch?full_index=1";
hash = "sha256-5fFCgX7MfCqW7zxXJuHt9js+VTZZKEQHRYuWh7MTKzI=";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
pkg-config pkg-config

View File

@@ -7,16 +7,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "funzzy"; pname = "funzzy";
version = "1.2.0"; version = "1.5.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cristianoliveira"; owner = "cristianoliveira";
repo = "funzzy"; repo = "funzzy";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-YjA/XxVB8gGxyLovxTTatSC/ESBCkgz7Not0qfEPxtw="; hash = "sha256-3EHZvgHlM3ldX6SEyqGf6MZIrDFOLXbKTZnJNczT570=";
}; };
cargoHash = "sha256-eq5d6oHWKip9K+9yszLXW+JHtzYzrThXfqoZGMhnSHk="; cargoHash = "sha256-DJGpNuRb0bFdXBV/p3enyTvZgJIQOaNy3kijxuLFl1g=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.CoreServices darwin.apple_sdk.frameworks.CoreServices

View File

@@ -5,16 +5,16 @@
buildGoModule rec { buildGoModule rec {
pname = "gat"; pname = "gat";
version = "0.19.1"; version = "0.19.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "koki-develop"; owner = "koki-develop";
repo = "gat"; repo = "gat";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-wbtTqCSvNGqlliAKdKZyTCeenmcorqQKROAOc4NJal4="; hash = "sha256-f0B+MHVtG73arkvUTSb+iYJ8p2fn5NvxfL6QBBOBTi8=";
}; };
vendorHash = "sha256-xLoLLn9lsEZ+SjIbVRzhwM9mXkltfA0Zoiz1T7hpTEc="; vendorHash = "sha256-ns1jFmBvIfclb3SBtdg05qNBy18p6VjtEKrahtxJUM4=";
CGO_ENABLED = 0; CGO_ENABLED = 0;

View File

@@ -5,13 +5,13 @@
buildGoModule rec { buildGoModule rec {
pname = "gh-poi"; pname = "gh-poi";
version = "0.11.0"; version = "0.12.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "seachicken"; owner = "seachicken";
repo = "gh-poi"; repo = "gh-poi";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-xLeIqTGwizvBmOgwisqoCrFY4KdWoWrA0YYgPWtQT/M="; hash = "sha256-GRTBYwphw5rpwFzLrBRpzz6z6udNCdPn3vanfMvBtGI=";
}; };
ldflags = [ "-s" "-w" ]; ldflags = [ "-s" "-w" ];
@@ -19,7 +19,7 @@ buildGoModule rec {
vendorHash = "sha256-D/YZLwwGJWCekq9mpfCECzJyJ/xSlg7fC6leJh+e8i0="; vendorHash = "sha256-D/YZLwwGJWCekq9mpfCECzJyJ/xSlg7fC6leJh+e8i0=";
# Skip checks because some of test suites require fixture. # Skip checks because some of test suites require fixture.
# See: https://github.com/seachicken/gh-poi/blob/v0.11.0/.github/workflows/contract-test.yml#L28-L29 # See: https://github.com/seachicken/gh-poi/blob/v0.12.0/.github/workflows/contract-test.yml#L28-L29
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {

View File

@@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "ghciwatch"; pname = "ghciwatch";
version = "1.0.1"; version = "1.0.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "MercuryTechnologies"; owner = "MercuryTechnologies";
repo = "ghciwatch"; repo = "ghciwatch";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-ywjbi+5xBrwgvgwAatNMs160ij52X8gbJ1PaLmZgTnY="; hash = "sha256-jHjUpLSu1+rshZ37ZyXjh5Q4WrFkqZUk8gxErN+vpQM=";
}; };
cargoHash = "sha256-bE2cNgmq1TxtEDmLuyJVJpaj0Gbt73fnD1j/X42OL/w="; cargoHash = "sha256-TiMqWF+MJseK5KMj+G4j66gJ0mQdW+VKglgBq2qPd6A=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation darwin.apple_sdk.frameworks.CoreFoundation

View File

@@ -2,13 +2,13 @@
buildGoModule rec { buildGoModule rec {
pname = "git-credential-oauth"; pname = "git-credential-oauth";
version = "0.13.3"; version = "0.13.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hickford"; owner = "hickford";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-vs+PRFyvzn25nM6oO4VybXkTr1frmSspA2isSXLJFQo="; hash = "sha256-ki5efsB9p5jCz9Z16n0/uqN0dh6vUn+aKkiEYzLsCBs=";
}; };
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];

View File

@@ -8,7 +8,7 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "git-pw"; pname = "git-pw";
version = "2.6.0"; version = "2.7.0";
format = "pyproject"; format = "pyproject";
PBR_VERSION = version; PBR_VERSION = version;
@@ -16,8 +16,8 @@ python3.pkgs.buildPythonApplication rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "getpatchwork"; owner = "getpatchwork";
repo = "git-pw"; repo = "git-pw";
rev = version; rev = "refs/tags/${version}";
hash = "sha256-3IiFU6qGI2MDTBOLQ2qyT5keUMNTNG3sxhtGR3bkIBc="; hash = "sha256-y5qbvhuT+tjXvIFgCrM7RIPF6zhCkMu+/qByValrEXE=";
}; };
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [

View File

@@ -6,7 +6,7 @@
}: }:
let let
version = "17.5.2"; version = "17.6.1";
package_version = "v${lib.versions.major version}"; package_version = "v${lib.versions.major version}";
gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}";
@@ -20,10 +20,10 @@ let
owner = "gitlab-org"; owner = "gitlab-org";
repo = "gitaly"; repo = "gitaly";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-jEgw66aNJdLW6twU/oqJN/pxyGsJh/UOFaNEzfVjdCY="; hash = "sha256-eh/dMoKnwN+xz6dMnPZUD8b/SyrxUqDAtWmCIBXbIT4=";
}; };
vendorHash = "sha256-VN+d6jMX3f4ua+YEF6LmqEOTRm2q4zxZ/X73hhA4fNs="; vendorHash = "sha256-AxuAEiYV3jwWxcuTLc1i4/6sG957YIA+Fmky5Dkdzu8=";
ldflags = [ "-X ${gitaly_package}/internal/version.version=${version}" "-X ${gitaly_package}/internal/version.moduleVersion=${version}" ]; ldflags = [ "-X ${gitaly_package}/internal/version.version=${version}" "-X ${gitaly_package}/internal/version.moduleVersion=${version}" ];

View File

@@ -2,17 +2,17 @@
buildGoModule rec { buildGoModule rec {
pname = "gitlab-elasticsearch-indexer"; pname = "gitlab-elasticsearch-indexer";
version = "5.3.0"; version = "5.4.0";
# nixpkgs-update: no auto update # nixpkgs-update: no auto update
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "gitlab-org"; owner = "gitlab-org";
repo = "gitlab-elasticsearch-indexer"; repo = "gitlab-elasticsearch-indexer";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-upbVe78HLRWXf8knxsVX6mGbXHfMTPa7yQ7/XMTgGLo="; hash = "sha256-jrUNOxqc/k4a/34nHEatGnBorTlh/EuHnEs/GfFRUcI=";
}; };
vendorHash = "sha256-sws1r6W6tYJI/zOWFFp2hry9ToXuE4fezIL1XPgp0EM="; vendorHash = "sha256-iL8QowfX0OpU9irUP4MJXhGVim7GU2fTMLgJSTAfh9w=";
buildInputs = [ icu ]; buildInputs = [ icu ];
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];

View File

@@ -2,17 +2,17 @@
buildGoModule rec { buildGoModule rec {
pname = "gitlab-pages"; pname = "gitlab-pages";
version = "17.5.2"; version = "17.6.1";
# nixpkgs-update: no auto update # nixpkgs-update: no auto update
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "gitlab-org"; owner = "gitlab-org";
repo = "gitlab-pages"; repo = "gitlab-pages";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-fjoby/fTh1wAidyOQSqx7VolxzSB0TQYvltJhYduDSY="; hash = "sha256-fLQ2Hd1GtSBfxUJIozf4xcXC5yvNX4xqh0H0UVL55kw=";
}; };
vendorHash = "sha256-M2RQPkLWsi9rHXI3lSb9w9nxiklTkV8wpC9VoH0SP6M="; vendorHash = "sha256-2feUOWcGj7eQ43rfM6IF55BawYVP4UY5sKA29Y9ozPk=";
subPackages = [ "." ]; subPackages = [ "." ];
meta = with lib; { meta = with lib; {

View File

@@ -18,16 +18,15 @@
, ninja , ninja
, pkg-config , pkg-config
, rustc , rustc
, rustPlatform
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "glycin-loaders"; pname = "glycin-loaders";
version = "1.1.1"; version = "1.1.2";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/glycin/${lib.versions.majorMinor finalAttrs.version}/glycin-${finalAttrs.version}.tar.xz"; url = "mirror://gnome/sources/glycin/${lib.versions.majorMinor finalAttrs.version}/glycin-${finalAttrs.version}.tar.xz";
hash = "sha256-Vg7kIWfB7SKCZhjmHYPkkUDbW/R6Zam6js4s1z0qSqg="; hash = "sha256-Qccr4eybpV2pDIL8GFc7dC3/WCsJr8N7RWXEfpnMj/Q=";
}; };
patches = [ patches = [
@@ -45,7 +44,6 @@ stdenv.mkDerivation (finalAttrs: {
ninja ninja
pkg-config pkg-config
rustc rustc
rustPlatform.bindgenHook # for libheif-sys
]; ];
buildInputs = [ buildInputs = [

View File

@@ -8,13 +8,13 @@
buildGoModule rec { buildGoModule rec {
pname = "gnmic"; pname = "gnmic";
version = "0.39.0"; version = "0.39.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "openconfig"; owner = "openconfig";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-xS2TLYA/9Xb4UJ8yCpqDBQbHTE1p2OlBpp8R2BTXwyk="; hash = "sha256-bFMgGPGbBWfT7M5rE6k4Q5L9srgy0UyFtAq/xOdZhxw=";
}; };
vendorHash = "sha256-9A/ZcamCMUpNxG3taHrqI4JChjpSjSuwx0ZUyGAuGXo="; vendorHash = "sha256-9A/ZcamCMUpNxG3taHrqI4JChjpSjSuwx0ZUyGAuGXo=";

View File

@@ -74,11 +74,11 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "gnome-control-center"; pname = "gnome-control-center";
version = "47.1.1"; version = "47.2";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-control-center/${lib.versions.major finalAttrs.version}/gnome-control-center-${finalAttrs.version}.tar.xz"; url = "mirror://gnome/sources/gnome-control-center/${lib.versions.major finalAttrs.version}/gnome-control-center-${finalAttrs.version}.tar.xz";
hash = "sha256-BR/UBXFX9LIzcBP778luPRKWVOP8lg1ISdNUJSQAvnc="; hash = "sha256-Q0oyLcN0OFi4nYFl2J+J3AWWi2t740AJRM7UJxJQ0+k=";
}; };
patches = [ patches = [
@@ -151,9 +151,6 @@ stdenv.mkDerivation (finalAttrs: {
# For animations in Mouse panel. # For animations in Mouse panel.
gst_all_1.gst-plugins-base gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good gst_all_1.gst-plugins-good
# vp9alphadecodebin, observed from GST_DEBUG="*:3" warnings.
# https://github.com/NixOS/nixpkgs/pull/333911#issuecomment-2409233470
gst_all_1.gst-plugins-bad
]; ];
nativeCheckInputs = [ nativeCheckInputs = [

View File

@@ -37,11 +37,11 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "gnome-initial-setup"; pname = "gnome-initial-setup";
version = "47.1"; version = "47.2";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-initial-setup/${lib.versions.major finalAttrs.version}/gnome-initial-setup-${finalAttrs.version}.tar.xz"; url = "mirror://gnome/sources/gnome-initial-setup/${lib.versions.major finalAttrs.version}/gnome-initial-setup-${finalAttrs.version}.tar.xz";
hash = "sha256-KTeKVkQG7Lzn8IzzklqA3TCCWoQ/kfzwWF45mecDUw0="; hash = "sha256-T00Y61YnXMVqGZOlofTRPVpkJoad5nCWuS8rKcryIjw=";
}; };
patches = [ patches = [

View File

@@ -31,13 +31,13 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "gnome-music"; pname = "gnome-music";
version = "47.0"; version = "47.1";
format = "other"; format = "other";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-music/${lib.versions.major version}/gnome-music-${version}.tar.xz"; url = "mirror://gnome/sources/gnome-music/${lib.versions.major version}/gnome-music-${version}.tar.xz";
hash = "sha256-o1Qjz1IgX9cDfLCpprVw9uwvHjQubiDtfn2A2NyGpyY="; hash = "sha256-Zm8XX1YKGtnLq2HqDzA5PKL+0pRrpG5cAOrqEX28cNA=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -31,13 +31,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "gnome-online-accounts"; pname = "gnome-online-accounts";
version = "3.52.1"; version = "3.52.2";
outputs = [ "out" "dev" ] ++ lib.optionals enableBackend [ "man" "devdoc" ]; outputs = [ "out" "dev" ] ++ lib.optionals enableBackend [ "man" "devdoc" ];
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-online-accounts/${lib.versions.majorMinor finalAttrs.version}/gnome-online-accounts-${finalAttrs.version}.tar.xz"; url = "mirror://gnome/sources/gnome-online-accounts/${lib.versions.majorMinor finalAttrs.version}/gnome-online-accounts-${finalAttrs.version}.tar.xz";
hash = "sha256-N8dSL/lFT4NxtahyW7p27XQwyVsfnvx/66YmjwUtHrc="; hash = "sha256-+0E/SN7vu5/DACqRV53ulHzu7UH0nC9RMXr3SJtnb2c=";
}; };
mesonFlags = [ mesonFlags = [

View File

@@ -31,11 +31,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gnome-remote-desktop"; pname = "gnome-remote-desktop";
version = "47.1"; version = "47.2";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-remote-desktop/${lib.versions.major version}/gnome-remote-desktop-${version}.tar.xz"; url = "mirror://gnome/sources/gnome-remote-desktop/${lib.versions.major version}/gnome-remote-desktop-${version}.tar.xz";
hash = "sha256-BG0Py4m4jQskaczTUGPbW0KkUfkHEbU/H6OrFJGsGN4="; hash = "sha256-k1HdjDns5wUMlny9zr4WYrwmuP2pJPioCpsqMS0H9HE=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -42,11 +42,11 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "gnome-settings-daemon"; pname = "gnome-settings-daemon";
version = "47.1"; version = "47.2";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-settings-daemon/${lib.versions.major finalAttrs.version}/gnome-settings-daemon-${finalAttrs.version}.tar.xz"; url = "mirror://gnome/sources/gnome-settings-daemon/${lib.versions.major finalAttrs.version}/gnome-settings-daemon-${finalAttrs.version}.tar.xz";
hash = "sha256-8qrL5V+jjocIWD7sCmZRBJ5TfrUFo+0s4Lqk6bZCRtE="; hash = "sha256-HrdYhi6Ij1WghpGTCH8c+8x6EWNlTmMAmf9DQt0/alo=";
}; };
patches = [ patches = [

View File

@@ -15,11 +15,11 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "gnome-shell-extensions"; pname = "gnome-shell-extensions";
version = "47.1"; version = "47.2";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-shell-extensions/${lib.versions.major finalAttrs.version}/gnome-shell-extensions-${finalAttrs.version}.tar.xz"; url = "mirror://gnome/sources/gnome-shell-extensions/${lib.versions.major finalAttrs.version}/gnome-shell-extensions-${finalAttrs.version}.tar.xz";
hash = "sha256-6UOMxdOfmHXf0E6gq7UeWWLqrVwgJ0EjJDsWEgmLOoU="; hash = "sha256-3XdKApFYSRer3oi7xOzPkkQXjjwmnOBhjQSVF3wSZS0=";
}; };
patches = [ patches = [

View File

@@ -70,7 +70,7 @@ let
in in
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "gnome-shell"; pname = "gnome-shell";
version = "47.1"; version = "47.2";
outputs = [ outputs = [
"out" "out"
@@ -79,7 +79,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-shell/${lib.versions.major finalAttrs.version}/gnome-shell-${finalAttrs.version}.tar.xz"; url = "mirror://gnome/sources/gnome-shell/${lib.versions.major finalAttrs.version}/gnome-shell-${finalAttrs.version}.tar.xz";
hash = "sha256-tGdXX4wVnSBVclhRfw3Wjf0BR9EbSNl6uOH3CbxSKmM="; hash = "sha256-QYTQGhq4LLQh0couK8zgKSzrRsTHSeYbC95LdQBNLgA=";
}; };
patches = [ patches = [

View File

@@ -9,11 +9,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gnome-user-docs"; pname = "gnome-user-docs";
version = "47.0"; version = "47.2";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-user-docs/${lib.versions.major version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/gnome-user-docs/${lib.versions.major version}/${pname}-${version}.tar.xz";
hash = "sha256-0G2H/NcmqQ7QOhcMq0XUcIlJkeMSkS/FCL3g37yDz9o="; hash = "sha256-2b8IuabChNHgT2/pI3pt7trRYeDlungQv/7PKF4rzd8=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -20,11 +20,11 @@ in
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "gnome-user-share"; pname = "gnome-user-share";
version = "47.0"; version = "47.2";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-user-share/${lib.versions.major finalAttrs.version}/gnome-user-share-${finalAttrs.version}.tar.xz"; url = "mirror://gnome/sources/gnome-user-share/${lib.versions.major finalAttrs.version}/gnome-user-share-${finalAttrs.version}.tar.xz";
hash = "sha256-yELzUv5/Dw6hj/kYa6lIK2yQ0vazZau1sR1oyQbbpJA="; hash = "sha256-H6wbuIAN+kitnD4ZaQ9+EOZ6T5lNnLF8rh0b3/yRRLo=";
}; };
preConfigure = '' preConfigure = ''

View File

@@ -2,11 +2,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "google-java-format"; pname = "google-java-format";
version = "1.24.0"; version = "1.25.0";
src = fetchurl { src = fetchurl {
url = "https://github.com/google/google-java-format/releases/download/v${version}/google-java-format-${version}-all-deps.jar"; url = "https://github.com/google/google-java-format/releases/download/v${version}/google-java-format-${version}-all-deps.jar";
sha256 = "sha256-gS+AX1gRJGDt8BvyAqjmHQ/R81wNT6vVQiBkB3bsV6E="; sha256 = "sha256-i9lJ6EpkNQRs8Y3fp2lmHqrJ2iGy08pGxLoS+WY3vLs=";
}; };
dontUnpack = true; dontUnpack = true;

View File

@@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "gql"; pname = "gql";
version = "0.29.1"; version = "0.32.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "AmrDeveloper"; owner = "AmrDeveloper";
repo = "GQL"; repo = "GQL";
rev = version; rev = version;
hash = "sha256-Py2wTWuUfr6Poxtab4JikG4D7Iv6mBocLEbn0zgz+k8="; hash = "sha256-0eySuZDSr8d91+OW4d+1HE+gYZmxkDvXTZfuwPvRfc4=";
}; };
cargoHash = "sha256-BAaHnBkTmk58uAnZyZ7id1WmKz/HiOKSvdZApmgk6rs="; cargoHash = "sha256-uGRFXR8bD1TkxL9bGx9zAice+grEBxyuxnF0x7cfDvs=";
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config

View File

@@ -23,11 +23,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gtranslator"; pname = "gtranslator";
version = "47.0"; version = "47.1";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
hash = "sha256-duEEHF77Coi6GHZOpFiLThll+lAxTgGhc/o+oBUOHNU="; hash = "sha256-yRwCZLmpnjCR75EfcxqP9tCahKK8115WUZcdprvqYiI=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -7,16 +7,16 @@
buildGoModule rec { buildGoModule rec {
pname = "gtree"; pname = "gtree";
version = "1.10.12"; version = "1.10.13";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ddddddO"; owner = "ddddddO";
repo = "gtree"; repo = "gtree";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-dtKT2T8GNcR5ux1whFrXgJ08XHJWS76M/wmAtBHDLUI="; hash = "sha256-9ygy1Xhl50k6ec0xQB4wy7vm9mfmv4oZdpUIa60DDUQ=";
}; };
vendorHash = "sha256-wiPHK5RjMBMLHx3Vv2zWoZc1wWJ1IVxu8dIbO9fPaPQ="; vendorHash = "sha256-4a9hTT0b+1YG3WFA9lm9dArrNIAYYV2sEw0rzhXqXac=";
subPackages = [ subPackages = [
"cmd/gtree" "cmd/gtree"

View File

@@ -2,11 +2,11 @@
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "heroku"; pname = "heroku";
version = "9.3.0"; version = "9.5.0";
src = fetchzip { src = fetchzip {
url = "https://cli-assets.heroku.com/versions/9.3.0/65eb66a/heroku-v9.3.0-65eb66a-linux-x64.tar.xz"; url = "https://cli-assets.heroku.com/versions/9.5.0/61bf905/heroku-v9.5.0-61bf905-linux-x64.tar.xz";
hash = "sha256-4k/HLSB4o1BnzG7dPW20ejSFYmJ8o9eVrJWCdXrqC/Q="; hash = "sha256-zEWGh7azao/8otrcFt5wZDWRMxGosHF+QfUH/pr0bmM=";
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];

View File

@@ -4,9 +4,9 @@
, curl, writeShellScript, common-updater-scripts, xmlstarlet }: , curl, writeShellScript, common-updater-scripts, xmlstarlet }:
let let
url = "https://app.hubstaff.com/download/8099-standard-linux-1-6-26-release"; url = "https://app.hubstaff.com/download/8495-standard-linux-1-6-28-release/sh";
version = "1.6.26-95441346"; version = "1.6.28-fafb0aba";
sha256 = "sha256:0xxw2za1hmqff5y0vyrvccgldsgyb808dql548c2xqsc1qi9gbn9"; sha256 = "sha256:1y757477hhyflk3da11fvmyyglwlp6hrii1qn3ycb0l81xyxg9s0";
rpath = lib.makeLibraryPath rpath = lib.makeLibraryPath
[ libX11 zlib libSM libICE libXext freetype libXrender fontconfig libXft [ libX11 zlib libSM libICE libXext freetype libXrender fontconfig libXft

View File

@@ -3,13 +3,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "hyperrogue"; pname = "hyperrogue";
version = "13.0r"; version = "13.0v";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zenorogue"; owner = "zenorogue";
repo = "hyperrogue"; repo = "hyperrogue";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-uenMBGlRDA//4J/9tY2Ec8r8qo4bsqiZytux0EHPFCo="; sha256 = "sha256-bH5dnXLWU2D6Y70u7Cy2vqsli1GhID9af4J+21NSPHk=";
}; };
CXXFLAGS = [ CXXFLAGS = [

View File

@@ -6,16 +6,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "hyprland-workspaces"; pname = "hyprland-workspaces";
version = "2.0.3"; version = "2.0.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "FieldofClay"; owner = "FieldofClay";
repo = "hyprland-workspaces"; repo = "hyprland-workspaces";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-P+EJoZJqSlpMX1bWOkQYlKR577nTTe1luWKK5GS9Pn4="; hash = "sha256-a5P99aSqhlZqClXAoaUNv/jmuM5duLDf+OzMeKGwDVI=";
}; };
cargoHash = "sha256-vUlr12K/vYJE+HlSgulE2aSowU+pT9VPCaCp7Ix9ChM="; cargoHash = "sha256-LkAENnk1H1p8g7KKtkkh1aBtjXyM5scOtTROUaXwJhw=";
meta = with lib; { meta = with lib; {
description = "Multi-monitor aware Hyprland workspace widget"; description = "Multi-monitor aware Hyprland workspace widget";

View File

@@ -6,13 +6,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "initool"; pname = "initool";
version = "0.18.0"; version = "1.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dbohdan"; owner = "dbohdan";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-f426yzSYcrhd0MOZc5vDg4T4m/RdWzTz/KPzb65h03U="; hash = "sha256-PROsyYw8xdnn0PX+3OyUPaybQbTmO88G2koeZhBfwjg=";
}; };
nativeBuildInputs = [ mlton ]; nativeBuildInputs = [ mlton ];

View File

@@ -2,11 +2,11 @@
let let
pname = "jbrowse"; pname = "jbrowse";
version = "2.16.0"; version = "2.17.0";
src = fetchurl { src = fetchurl {
url = "https://github.com/GMOD/jbrowse-components/releases/download/v${version}/jbrowse-desktop-v${version}-linux.AppImage"; url = "https://github.com/GMOD/jbrowse-components/releases/download/v${version}/jbrowse-desktop-v${version}-linux.AppImage";
sha256 = "sha256-Nf+Dp1XVXgY1+iih7/cvzxnfCKdgHz5kpefdMucrlIA="; sha256 = "sha256-SqkUcsmnj77kL6YOdFP5Jm1LEaVNS+nrYgpckoHEPqg=";
}; };
appimageContents = appimageTools.extractType2 { appimageContents = appimageTools.extractType2 {

View File

@@ -5,16 +5,16 @@
buildGoModule rec { buildGoModule rec {
pname = "kafkactl"; pname = "kafkactl";
version = "5.3.0"; version = "5.4.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "deviceinsight"; owner = "deviceinsight";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-OPXSajfR/eHSL0nHOIYPYvML2PsxtflBt7aTLPT1i0M="; hash = "sha256-ByvyRVyYXGvMFF9F/DU7lSka5PQJULyzo3nvqYAlQzI=";
}; };
vendorHash = "sha256-VY1pm1RSfNGswuVoD73Mrpq+yMtenbjfpV7q72x/z7o="; vendorHash = "sha256-95iiNoeWkECwIWumb03buCc9s616cO1v5BBGcjfnRNo=";
doCheck = false; doCheck = false;

View File

@@ -2,16 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "kube-router"; pname = "kube-router";
version = "2.2.2"; version = "2.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cloudnativelabs"; owner = "cloudnativelabs";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-ABSjF3Wd7Ue/c+j2BvjB0UgAMccGUgJsj33JHMG8ijs="; hash = "sha256-eyO8eMlxWobUQBuswh4kM07kJV3fsRz4gTeP/tIR3aM=";
}; };
vendorHash = "sha256-sIWRODIV3iJ5FdVjVwesqfbYivOlqZAvPSYa38vhCMA="; vendorHash = "sha256-KmAMGKm+cFGRMD1Nyn9/CHv9vUvflAiLJcro08GIGtw=";
CGO_ENABLED = 0; CGO_ENABLED = 0;

View File

@@ -8,16 +8,16 @@
buildGoModule rec { buildGoModule rec {
pname = "kubeone"; pname = "kubeone";
version = "1.8.3"; version = "1.9.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kubermatic"; owner = "kubermatic";
repo = "kubeone"; repo = "kubeone";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-+9Dw6W/Tbg7zRC/ARuuXqZGTcMeSrtdoTvHtsQevigg="; hash = "sha256-YLJ/SNxu0F7edOmXm99iZRaLeu8MPUOLuZs9RKPV2bU=";
}; };
vendorHash = "sha256-z1BBE+PH2s7VxWNxneu5y2ZerfzCZNPJowZJVq821Kk="; vendorHash = "sha256-79eEqzQgEjDU4PbxMcFXLEH3so1kKjdYJpP2nWPXv20=";
ldflags = [ ldflags = [
"-s" "-s"

View File

@@ -6,16 +6,16 @@
buildGoModule rec { buildGoModule rec {
pname = "leetgo"; pname = "leetgo";
version = "1.4.10"; version = "1.4.11";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "j178"; owner = "j178";
repo = "leetgo"; repo = "leetgo";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-0cBhJfxzzZ5IrVVYNWVoKK9c1baj5U2CvDO52wdsjcs="; hash = "sha256-3euD5njhZowFOhR6sYym+qV2+ioYRXbdhSI1V4vhxxI=";
}; };
vendorHash = "sha256-1/U+sPauV3kYvQKTGSuX9FvvEFNsksTPXtfZH0a/o0s="; vendorHash = "sha256-VrCdDHqq1ZPyK1Izh+E4O3E/iXyAHNQ3ANiCF0PkVBo=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];

View File

@@ -17,8 +17,8 @@ stdenv.mkDerivation {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "xsco"; owner = "xsco";
repo = "libdjinterop"; repo = "libdjinterop";
rev = "0.20.2"; rev = "0.22.1";
hash = "sha256-eTr9ax/bZWazLhLLQG6XUgqiM+7LVieh5ruA0EaUaj0="; hash = "sha256-x0GbuUDmx8ooiaD/8J5VvIG239d5uDdK5H1tnwHd62c=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@@ -6,7 +6,8 @@
libusb1, libusb1,
}: }:
let let
version = "1.20.20240909"; # This package should be updated together with libphidget22extra
version = "1.21.20241122";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "libphidget22"; pname = "libphidget22";
@@ -14,7 +15,7 @@ stdenv.mkDerivation {
src = fetchurl { src = fetchurl {
url = "https://www.phidgets.com/downloads/phidget22/libraries/linux/libphidget22/libphidget22-${version}.tar.gz"; url = "https://www.phidgets.com/downloads/phidget22/libraries/linux/libphidget22/libphidget22-${version}.tar.gz";
hash = "sha256-20Y7cukEzq/Rf2v91SYTC1yCtS4p5aaG4aK8x6/6ebk="; hash = "sha256-6Sib9CSaPUbAdyHfoSgQ6g4oik7+pjb7g79QftSeVIk=";
}; };
nativeBuildInputs = [ automake ]; nativeBuildInputs = [ automake ];

Some files were not shown because too many files have changed in this diff Show More