Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
3ed34914 bc8fbef5

+2905 -2441
+1
.git-blame-ignore-revs
··· 247 247 248 248 # python-packages: sort with keep-sorted 249 249 fd14c067813572afc03ddbf7cdedc3eab5a59954 250 + 783add849cbca228a36ffdf407e5d380dc2fe6c4
+15 -14
maintainers/maintainer-list.nix
··· 7119 7119 githubId = 13485450; 7120 7120 name = "Emmanuel Rosa"; 7121 7121 }; 7122 - emneo = { 7123 - name = "emneo"; 7124 - email = "emneo@kreog.com"; 7125 - github = "emneo-dev"; 7126 - githubId = 44233177; 7127 - keys = [ { fingerprint = "5FD0 400D 0E78 EAF9 8431 4880 8EBF C4B9 24C6 2D20"; } ]; 7128 - }; 7129 7122 emptyflask = { 7130 7123 email = "jon@emptyflask.dev"; 7131 7124 github = "emptyflask"; ··· 10639 10632 email = "jacbart@gmail.com"; 10640 10633 github = "jacbart"; 10641 10634 githubId = 7909687; 10642 - }; 10643 - jacekpoz = { 10644 - name = "Jacek Poziemski"; 10645 - email = "jacek@poz.pet"; 10646 - matrix = "@jacek:poz.pet"; 10647 - github = "jacekpoz"; 10648 - githubId = 64381190; 10649 10635 }; 10650 10636 jacfal = { 10651 10637 name = "Jakub Pravda"; ··· 18173 18159 githubId = 20342389; 18174 18160 name = "paneku"; 18175 18161 }; 18162 + panchoh = { 18163 + name = "pancho horrillo"; 18164 + email = "pancho@pancho.name"; 18165 + matrix = "@panchoh:matrix.org"; 18166 + github = "panchoh"; 18167 + githubId = 471059; 18168 + keys = [ { fingerprint = "4430 F502 8B19 FAF4 A40E C4E8 11E0 447D 4ABB A7D0"; } ]; 18169 + }; 18176 18170 panda2134 = { 18177 18171 email = "me+nixpkgs@panda2134.site"; 18178 18172 github = "panda2134"; ··· 19177 19171 github = "PowerUser64"; 19178 19172 githubId = 24578572; 19179 19173 name = "Blake North"; 19174 + }; 19175 + poz = { 19176 + name = "Jacek Poziemski"; 19177 + email = "poz@poz.pet"; 19178 + matrix = "@poz:poz.pet"; 19179 + github = "imnotpoz"; 19180 + githubId = 64381190; 19180 19181 }; 19181 19182 ppenguin = { 19182 19183 name = "Jeroen Versteeg";
+1
maintainers/team-list.nix
··· 332 332 AndersonTorres 333 333 adisbladis 334 334 linj 335 + panchoh 335 336 ]; 336 337 scope = "Maintain the Emacs editor and packages."; 337 338 shortName = "Emacs";
+8 -5
nixos/modules/services/misc/redmine.nix
··· 395 395 "d '${cfg.stateDir}/log' 0750 ${cfg.user} ${cfg.group} - -" 396 396 "d '${cfg.stateDir}/plugins' 0750 ${cfg.user} ${cfg.group} - -" 397 397 "d '${cfg.stateDir}/public' 0750 ${cfg.user} ${cfg.group} - -" 398 + "d '${cfg.stateDir}/public/assets' 0750 ${cfg.user} ${cfg.group} - -" 398 399 "d '${cfg.stateDir}/public/plugin_assets' 0750 ${cfg.user} ${cfg.group} - -" 399 - "d '${cfg.stateDir}/public/themes' 0750 ${cfg.user} ${cfg.group} - -" 400 + "d '${cfg.stateDir}/themes' 0750 ${cfg.user} ${cfg.group} - -" 400 401 "d '${cfg.stateDir}/tmp' 0750 ${cfg.user} ${cfg.group} - -" 401 402 402 403 "d /run/redmine - - - - -" ··· 405 406 "L+ /run/redmine/files - - - - ${cfg.stateDir}/files" 406 407 "L+ /run/redmine/log - - - - ${cfg.stateDir}/log" 407 408 "L+ /run/redmine/plugins - - - - ${cfg.stateDir}/plugins" 409 + "L+ /run/redmine/public/assets - - - - ${cfg.stateDir}/public/assets" 408 410 "L+ /run/redmine/public/plugin_assets - - - - ${cfg.stateDir}/public/plugin_assets" 409 - "L+ /run/redmine/public/themes - - - - ${cfg.stateDir}/public/themes" 411 + "L+ /run/redmine/themes - - - - ${cfg.stateDir}/themes" 410 412 "L+ /run/redmine/tmp - - - - ${cfg.stateDir}/tmp" 411 413 ]; 412 414 ··· 434 436 435 437 preStart = '' 436 438 rm -rf "${cfg.stateDir}/plugins/"* 437 - rm -rf "${cfg.stateDir}/public/themes/"* 439 + rm -rf "${cfg.stateDir}/themes/"* 438 440 439 441 # start with a fresh config directory 440 442 # the config directory is copied instead of linked as some mutable data is stored in there ··· 452 454 453 455 # link in all user specified themes 454 456 for theme in ${concatStringsSep " " (mapAttrsToList unpackTheme cfg.themes)}; do 455 - ln -fs $theme/* "${cfg.stateDir}/public/themes" 457 + ln -fs $theme/* "${cfg.stateDir}/themes" 456 458 done 457 459 458 460 # link in redmine provided themes 459 - ln -sf ${cfg.package}/share/redmine/public/themes.dist/* "${cfg.stateDir}/public/themes/" 461 + ln -sf ${cfg.package}/share/redmine/themes.dist/* "${cfg.stateDir}/themes/" 460 462 461 463 462 464 # link in all user specified plugins ··· 486 488 ${bundle} exec rake db:migrate 487 489 ${bundle} exec rake redmine:plugins:migrate 488 490 ${bundle} exec rake redmine:load_default_data 491 + ${bundle} exec rake assets:precompile 489 492 ''; 490 493 491 494 serviceConfig = {
+45 -5
nixos/modules/services/networking/blocky.nix
··· 30 30 config = lib.mkIf cfg.enable { 31 31 systemd.services.blocky = { 32 32 description = "A DNS proxy and ad-blocker for the local network"; 33 - wantedBy = [ "multi-user.target" ]; 34 - 33 + wants = [ 34 + "network-online.target" 35 + "nss-lookup.target" 36 + ]; 37 + before = [ 38 + "nss-lookup.target" 39 + ]; 40 + wantedBy = [ 41 + "multi-user.target" 42 + ]; 35 43 serviceConfig = { 44 + AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ]; 45 + CapabilityBoundingSet = [ "CAP_NET_BIND_SERVICE" ]; 36 46 DynamicUser = true; 37 47 ExecStart = "${lib.getExe cfg.package} --config ${configFile}"; 48 + LockPersonality = true; 49 + LogsDirectory = "blocky"; 50 + MemoryDenyWriteExecute = true; 51 + NoNewPrivileges = true; 52 + NonBlocking = true; 53 + PrivateDevices = true; 54 + ProtectClock = true; 55 + ProtectControlGroups = true; 56 + ProtectHome = true; 57 + ProtectHostname = true; 58 + ProtectKernelLogs = true; 59 + ProtectKernelModules = true; 60 + ProtectKernelTunables = true; 61 + ProtectSystem = "strict"; 38 62 Restart = "on-failure"; 39 - 40 - AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ]; 41 - CapabilityBoundingSet = [ "CAP_NET_BIND_SERVICE" ]; 63 + RestrictAddressFamilies = [ 64 + "AF_INET" 65 + "AF_INET6" 66 + ]; 67 + RestrictNamespaces = true; 68 + RestrictRealtime = true; 69 + RuntimeDirectory = "blocky"; 70 + StateDirectory = "blocky"; 71 + SystemCallArchitectures = "native"; 72 + SystemCallFilter = [ 73 + "@system-service" 74 + "@chown" 75 + "~@aio" 76 + "~@keyring" 77 + "~@memlock" 78 + "~@setuid" 79 + "~@timer" 80 + ]; 42 81 }; 43 82 }; 44 83 }; 84 + meta.maintainers = with lib.maintainers; [ paepcke ]; 45 85 }
+1
nixos/modules/services/networking/jitsi-videobridge.nix
··· 280 280 User = "jitsi-videobridge"; 281 281 Group = "jitsi-meet"; 282 282 283 + AmbientCapabilities = "CAP_NET_BIND_SERVICE"; 283 284 CapabilityBoundingSet = ""; 284 285 NoNewPrivileges = true; 285 286 ProtectSystem = "strict";
+9 -2
nixos/modules/services/networking/prosody.nix
··· 342 342 question can be created again. 343 343 ''; 344 344 }; 345 - 345 + allowners_muc = mkOption { 346 + type = types.bool; 347 + default = false; 348 + description = '' 349 + Add module allowners, any user in chat is able to 350 + kick other. Usefull in jitsi-meet to kick ghosts. 351 + ''; 352 + }; 346 353 vcard_muc = mkOption { 347 354 type = types.bool; 348 355 default = true; ··· 856 863 857 864 ${lib.concatMapStrings (muc: '' 858 865 Component ${toLua muc.domain} "muc" 859 - modules_enabled = { "muc_mam"; ${optionalString muc.vcard_muc ''"vcard_muc";'' } } 866 + modules_enabled = { "muc_mam"; ${optionalString muc.vcard_muc ''"vcard_muc";'' } ${optionalString muc.allowners_muc ''"muc_allowners";'' } } 860 867 name = ${toLua muc.name} 861 868 restrict_room_creation = ${toLua muc.restrictRoomCreation} 862 869 max_history_messages = ${toLua muc.maxHistoryMessages}
+11
nixos/modules/services/web-apps/jitsi-meet.nix
··· 187 187 off if you want to configure it manually. 188 188 ''; 189 189 }; 190 + 191 + prosody.allowners_muc = mkOption { 192 + type = bool; 193 + default = false; 194 + description = '' 195 + Add module allowners, any user in chat is able to 196 + kick other. Usefull in jitsi-meet to kick ghosts. 197 + ''; 198 + }; 199 + 190 200 prosody.lockdown = mkOption { 191 201 type = bool; 192 202 default = false; ··· 240 250 { 241 251 domain = "conference.${cfg.hostName}"; 242 252 name = "Jitsi Meet MUC"; 253 + allowners_muc = cfg.prosody.allowners_muc; 243 254 roomLocking = false; 244 255 roomDefaultPublicJids = true; 245 256 extraConfig = ''
+1 -17
nixos/modules/services/web-servers/caddy/default.nix
··· 45 45 settingsFormat.generate "caddy.json" cfg.settings 46 46 else 47 47 let 48 - writeCaddyfile = 49 - text: 50 - pkgs.runCommandLocal "Caddyfile" 51 - { 52 - inherit text; 53 - passAsFile = [ "text" ]; 54 - } 55 - '' 56 - mkdir -p $out 57 - cp "$textPath" $out/Caddyfile 58 - 59 - # 'validate' cannot be used for validation, due to log location access 60 - # See https://github.com/caddyserver/caddy/issues/6788 61 - ${lib.getExe cfg.package} adapt --config $out/Caddyfile 62 - ''; 63 - 64 - Caddyfile = writeCaddyfile '' 48 + Caddyfile = pkgs.writeTextDir "Caddyfile" '' 65 49 { 66 50 ${cfg.globalConfig} 67 51 }
+1
pkgs/applications/editors/emacs/sources.nix
··· 86 86 jwiegley 87 87 lovek323 88 88 matthewbauer 89 + panchoh 89 90 ]; 90 91 "macport" = with lib.maintainers; [ ]; 91 92 }
+2 -2
pkgs/applications/editors/vscode/extensions/WakaTime.vscode-wakatime/default.nix
··· 7 7 mktplcRef = { 8 8 name = "vscode-wakatime"; 9 9 publisher = "WakaTime"; 10 - version = "24.7.2"; 11 - hash = "sha256-WOhJraXU2J+5votnxH17kjilVh1CVbCZEEaUvCVuCZ0="; 10 + version = "25.0.0"; 11 + hash = "sha256-n/7y2nbD+ziUCDmNbfuT01GK/ls8rTfghpntj6SmsbA="; 12 12 }; 13 13 14 14 meta = {
+2 -2
pkgs/applications/editors/vscode/extensions/azdavis.millet/default.nix
··· 10 10 mktplcRef = { 11 11 name = "Millet"; 12 12 publisher = "azdavis"; 13 - version = "0.14.8"; 14 - hash = "sha256-uuMIFaqMktXuc6G94+PB7j13YFH1qV9iXA9CAHTvsX4="; 13 + version = "0.14.9"; 14 + hash = "sha256-gRXS+i02XpJSveCTq6KK8utc32JNPE+I3vSEyCqOzaE="; 15 15 }; 16 16 nativeBuildInputs = [ 17 17 jq
+130 -130
pkgs/applications/editors/vscode/extensions/default.nix
··· 107 107 mktplcRef = { 108 108 name = "vscode-ron"; 109 109 publisher = "a5huynh"; 110 - version = "0.10.0"; 111 - hash = "sha256-DmyYE7RHOX/RrbIPYCq/x0l081SzmyBAd7yHSUOPkOA="; 110 + version = "0.11.0"; 111 + hash = "sha256-xIGOgK/kcdwm8EicAGIac5zPqRxw6ZTRLwteC03NKQ8="; 112 112 }; 113 113 meta = { 114 114 license = lib.licenses.mit; ··· 148 148 mktplcRef = { 149 149 name = "vscode-sievehighlight"; 150 150 publisher = "adzero"; 151 - version = "1.0.6"; 152 - hash = "sha256-8Ompv792eI2kIH+5+KPL9jAf88xsMGQewHEQwi8BhoQ="; 151 + version = "1.0.7"; 152 + hash = "sha256-MoYOhzNRjl7dseDUeJxEWyQ8ZaMx2a3HdCbH4F1HaxI="; 153 153 }; 154 154 meta = { 155 155 changelog = "https://marketplace.visualstudio.com/items/adzero.vscode-sievehighlight/changelog"; ··· 165 165 mktplcRef = { 166 166 name = "vscode-hie-server"; 167 167 publisher = "alanz"; 168 - version = "0.0.27"; # see the note above 169 - sha256 = "1mz0h5zd295i73hbji9ivla8hx02i4yhqcv6l4r23w3f07ql3i8h"; 168 + version = "0.2.1"; # see the note above 169 + sha256 = "sha256-/RA+7OnoR5Nu2bK6dFEL8aZW+CJkTeM0bKG6k5X1g+I="; 170 170 }; 171 171 meta = { 172 172 license = lib.licenses.mit; ··· 257 257 mktplcRef = { 258 258 name = "ng-template"; 259 259 publisher = "Angular"; 260 - version = "19.2.0"; 261 - hash = "sha256-Xf2ziPU3JWbmjoNy4ufaJHgnbxAw1fwuw+nH6r/8oTA="; 260 + version = "19.2.1"; 261 + hash = "sha256-X4ZDKgUyoBU8LIh+aM3JyvqGE9LnXVhvOXtAdX6gUv4="; 262 262 }; 263 263 meta = { 264 264 changelog = "https://marketplace.visualstudio.com/items/Angular.ng-template/changelog"; ··· 408 408 mktplcRef = { 409 409 name = "vscode-neovim"; 410 410 publisher = "asvetliakov"; 411 - version = "1.18.18"; 412 - hash = "sha256-pPsUSEsolAWWJs9epvLipOJuOJ38zBWTpV2XEtLgdmY="; 411 + version = "1.18.19"; 412 + hash = "sha256-JGyyvDZQmlVGwEwQHh+82yK7uSrtt/HBaWHzbiGJ614="; 413 413 }; 414 414 meta = { 415 415 changelog = "https://marketplace.visualstudio.com/items/asvetliakov.vscode-neovim/changelog"; ··· 446 446 mktplcRef = { 447 447 name = "scaladex-search"; 448 448 publisher = "baccata"; 449 - version = "0.3.3"; 450 - hash = "sha256-+793uA+cSBHV6t4wAM4j4GeWggLJTl2GENkn8RFIwr0="; 449 + version = "0.3.5"; 450 + hash = "sha256-ff4mqEqO07z/pV2U/R4NsFW7czG+5+M/a2x7vv1ly7E="; 451 451 }; 452 452 meta = { 453 453 license = lib.licenses.asl20; ··· 490 490 mktplcRef = { 491 491 publisher = "banacorn"; 492 492 name = "agda-mode"; 493 - version = "0.5.1"; 494 - hash = "sha256-pa0wWHumOMcOJwZY67Uj0xNGcx8pfHOagrJd45FCIgs="; 493 + version = "0.5.4"; 494 + hash = "sha256-U+J1FxFMK0tfi+YueXohnommHXagoadVYsZLp5lAC3Q="; 495 495 }; 496 496 meta = { 497 497 changelog = "https://marketplace.visualstudio.com/items/banacorn.agda-mode/changelog"; ··· 637 637 mktplcRef = { 638 638 name = "markdown-emoji"; 639 639 publisher = "bierner"; 640 - version = "0.3.0"; 641 - hash = "sha256-rw8/HeDA8kQuiPVDpeOGw1Mscd6vn4utw1Qznsd8lVI="; 640 + version = "0.3.1"; 641 + hash = "sha256-gfdEwKXLSu54M1gApM1Y1jofAtTdmg5UuBT8f/TUCRA="; 642 642 }; 643 643 meta = { 644 644 license = lib.licenses.mit; ··· 737 737 mktplcRef = { 738 738 name = "vscode-intelephense-client"; 739 739 publisher = "bmewburn"; 740 - version = "1.14.2"; 741 - hash = "sha256-T0uaJedhlH3s6QnCEZvNxU8ErYW4+L1VBz79hnhwSyU="; 740 + version = "1.14.3"; 741 + hash = "sha256-YmrE0HQlqtuFqD3CDuU5SHnvDbZsfZWEIAZLTkiNXtE="; 742 742 }; 743 743 meta = { 744 744 description = "PHP code intelligence for Visual Studio Code"; ··· 781 781 mktplcRef = { 782 782 name = "vscode-tailwindcss"; 783 783 publisher = "bradlc"; 784 - version = "0.14.8"; 785 - hash = "sha256-IPD8nsm6z6Pxeqjj00I/dQyGEORxFpDZ2yS8xpK1H9U="; 784 + version = "0.14.11"; 785 + hash = "sha256-sZcbUIAs4m96rBfYJbyZegqAqL71+OjVykqna+QMdu0="; 786 786 }; 787 787 meta = { 788 788 changelog = "https://marketplace.visualstudio.com/items/bradlc.vscode-tailwindcss/changelog"; ··· 893 893 mktplcRef = { 894 894 name = "catppuccin-vsc-icons"; 895 895 publisher = "catppuccin"; 896 - version = "1.16.0"; 897 - hash = "sha256-caIOQ2/NafUFp2J4odIM55kzOS3Of+WO84M5xNfkhf4="; 896 + version = "1.20.0"; 897 + hash = "sha256-jkoa5X5vswJBvA69gstl/GUDHAvk94SVSV4lCy2yyWw="; 898 898 }; 899 899 meta = { 900 900 changelog = "https://marketplace.visualstudio.com/items/Catppuccin.catppuccin-vsc-icons/changelog"; ··· 1011 1011 mktplcRef = { 1012 1012 name = "coder-remote"; 1013 1013 publisher = "coder"; 1014 - version = "1.4.2"; 1015 - hash = "sha256-TKQUKUuuR9UBNTFWedzDQrKxGB4Apd2I2b50YdOnBKA="; 1014 + version = "1.5.0"; 1015 + hash = "sha256-l4F3HZKkqANw9ErCE75IpI3GIWJIkePOW9+4QsKWaVQ="; 1016 1016 }; 1017 1017 meta = { 1018 1018 description = "Extension for Visual Studio Code to open any Coder workspace in VS Code with a single click"; ··· 1158 1158 mktplcRef = { 1159 1159 name = "dbclient-jdbc"; 1160 1160 publisher = "cweijan"; 1161 - version = "1.3.6"; 1162 - hash = "sha256-CETB2hLaXD7DuNmop/DHjpI8NgHfMGyMMZyfw/Bt1yc="; 1161 + version = "1.4.2"; 1162 + hash = "sha256-ru4c7/6X3HfKyn5wz7I5PRh+A4bntB+FAWEGUzjMlY8="; 1163 1163 }; 1164 1164 meta = { 1165 1165 description = "JDBC Adapter For Database Client"; ··· 1174 1174 mktplcRef = { 1175 1175 name = "vscode-database-client2"; 1176 1176 publisher = "cweijan"; 1177 - version = "8.1.9"; 1178 - hash = "sha256-6/UV3Q5FToF+OXCe2Z4oPYTKKGVoXSXgyk8dBd5kp7E="; 1177 + version = "8.2.3"; 1178 + hash = "sha256-QOYTJSO0kGXSjvLnkbmbXSaKZcvWqO07yvZ/PNe8Fmc="; 1179 1179 }; 1180 1180 meta = { 1181 1181 description = "Database Client For Visual Studio Code"; ··· 1203 1203 mktplcRef = { 1204 1204 publisher = "DanielSanMedium"; 1205 1205 name = "dscodegpt"; 1206 - version = "3.9.34"; 1207 - hash = "sha256-PGMTO4WDUqmKMFS397sC3zyP3cXsPvVwWIy7IayWqbc="; 1206 + version = "3.9.49"; 1207 + hash = "sha256-YKeUgQpnH5XrYOiUdU5R2a9PJLj2iLYPXxhGdXAqW8U="; 1208 1208 }; 1209 1209 meta = { 1210 1210 changelog = "https://marketplace.visualstudio.com/items/DanielSanMedium.dscodegpt/changelog"; ··· 1220 1220 mktplcRef = { 1221 1221 publisher = "daohong-emilio"; 1222 1222 name = "yash"; 1223 - version = "0.2.9"; 1224 - hash = "sha256-5JX6Z7xVPoqGjD1/ySc9ObD14O1sWDpvBj9VbtGO1Cg="; 1223 + version = "0.3.0"; 1224 + hash = "sha256-vQ0r1/DEfA6ebB4NmUciO5d4zRWS4pZeTXspWVRfe4g="; 1225 1225 }; 1226 1226 meta = { 1227 1227 license = lib.licenses.mit; ··· 1289 1289 mktplcRef = { 1290 1290 name = "languagetool-linter"; 1291 1291 publisher = "davidlday"; 1292 - version = "0.19.0"; 1293 - hash = "sha256-crq6CTXpzwHJL8FPIBneAGjDgUUNdpBt6rIaMCr1F1U="; 1292 + version = "0.25.1"; 1293 + hash = "sha256-rfBIHGRxCAzGZXSeWpMJzDsJxkBYYLpwdmUdEkwbM9I="; 1294 1294 }; 1295 1295 meta = { 1296 1296 description = "LanguageTool integration for VS Code"; ··· 1351 1351 mktplcRef = { 1352 1352 name = "composer-php-vscode"; 1353 1353 publisher = "devsense"; 1354 - version = "1.41.14332"; 1355 - hash = "sha256-qRgncn6u40Igd40OZShRHXqdgjFqRLNb0hPirwc+DoU="; 1354 + version = "1.57.17031"; 1355 + hash = "sha256-TY7cqUrbxNDS1JT+LgGGgs6mbseoQLq1+BBuybMQsVk="; 1356 1356 }; 1357 1357 meta = { 1358 1358 changelog = "https://marketplace.visualstudio.com/items/DEVSENSE.composer-php-vscode/changelog"; ··· 1482 1482 mktplcRef = { 1483 1483 publisher = "discloud"; 1484 1484 name = "discloud"; 1485 - version = "2.22.30"; 1486 - hash = "sha256-vXI/RiMZsr481uDolqsvauugoFa9nib24swmYPO2A6s="; 1485 + version = "2.22.36"; 1486 + hash = "sha256-SZ9cT5fowDS8NcWpZWU05+VEiDENs/vCikc8K6loRms="; 1487 1487 }; 1488 1488 meta = { 1489 1489 changelog = "https://marketplace.visualstudio.com/items/discloud.discloud/changelog"; ··· 1499 1499 mktplcRef = { 1500 1500 publisher = "disneystreaming"; 1501 1501 name = "smithy"; 1502 - version = "0.0.8"; 1503 - hash = "sha256-BQPiSxiPPjdNPtIJI8L+558DVKxngPAI9sscpcJSJUI="; 1502 + version = "0.0.14"; 1503 + hash = "sha256-dnHaJRlFd535Gi3T1+0YBOnytmf2W15Vta5H6HhzYZI="; 1504 1504 }; 1505 1505 meta = { 1506 1506 license = lib.licenses.asl20; ··· 1511 1511 mktplcRef = { 1512 1512 name = "competitive-programming-helper"; 1513 1513 publisher = "DivyanshuAgrawal"; 1514 - version = "2025.2.1739868073"; 1515 - hash = "sha256-W4APEDgURHNflJCaBRZ5O1mIuAHVSDjHbmhhgsziiGs="; 1514 + version = "2025.3.1742989763"; 1515 + hash = "sha256-e7pRhZOe+6UW7VE63yX+Il2YZToR4cwYqEar+aAPlkc="; 1516 1516 }; 1517 1517 meta = { 1518 1518 changelog = "https://marketplace.visualstudio.com/items/DivyanshuAgrawal.competitive-programming-helper/changelog"; ··· 1545 1545 mktplcRef = { 1546 1546 name = "dotenv-vscode"; 1547 1547 publisher = "dotenv"; 1548 - version = "0.28.0"; 1549 - hash = "sha256-KiQgFvbfLsA/ADROoG6y6c/i0XHuTNH2AN+6mWEm0P8="; 1548 + version = "0.28.1"; 1549 + hash = "sha256-Ye3T/u/2mmezAi1ErtJBX7M/3rAb7Mc3wvMGJaX3r5s="; 1550 1550 }; 1551 1551 meta = { 1552 1552 changelog = "https://marketplace.visualstudio.com/items/dotenv.dotenv-vscode/changelog"; ··· 1595 1595 # semver scheme, contrary to preview versions which are listed on 1596 1596 # the VSCode Marketplace and use a calver scheme. We should avoid 1597 1597 # using preview versions, because they expire after two weeks. 1598 - version = "16.3.2"; 1599 - hash = "sha256-+TYE2kwgSTYtg8V8M7VSxpxsm6agj8sFun79wIMT5gs="; 1598 + version = "16.3.3"; 1599 + hash = "sha256-nc/EaMhZSdpd3ZaRQLZkSh1p4Ai3CFN4GunI2+o/+ZI="; 1600 1600 }; 1601 1601 meta = { 1602 1602 changelog = "https://marketplace.visualstudio.com/items/eamodio.gitlens/changelog"; ··· 1692 1692 mktplcRef = { 1693 1693 name = "adwaita-github-theme"; 1694 1694 publisher = "egirlcatnip"; 1695 - version = "1.0.5"; 1696 - hash = "sha256-OvonS6137ICRUV5Tx4gD3we8nrza6ZgnRSs2SxFiCjU="; 1695 + version = "1.0.6"; 1696 + hash = "sha256-6xooF8petGLn8Zlh8rCXG2RJdAcdt8t8GPwhfgc5Gxs="; 1697 1697 }; 1698 1698 meta = { 1699 1699 description = "Adwaita VS Code theme with Github syntax highlighting"; ··· 1708 1708 mktplcRef = { 1709 1709 name = "elixir-ls"; 1710 1710 publisher = "JakeBecker"; 1711 - version = "0.27.1"; 1712 - hash = "sha256-QqQyNWkU4P0sJE9Hef9s84goIyN2g1326dDMz/P8UTU="; 1711 + version = "0.27.2"; 1712 + hash = "sha256-PXQiZOAAApsYLB3hztQcjAsnmkfDSDtYvUmMhFUfLxA="; 1713 1713 }; 1714 1714 meta = { 1715 1715 changelog = "https://marketplace.visualstudio.com/items/JakeBecker.elixir-ls/changelog"; ··· 1742 1742 mktplcRef = { 1743 1743 name = "vscode-great-icons"; 1744 1744 publisher = "emmanuelbeziat"; 1745 - version = "2.1.115"; 1746 - hash = "sha256-mEVvEagl+FMHq/TUISDub2yHMPhshKSM544RcPDBrlk="; 1745 + version = "2.1.116"; 1746 + hash = "sha256-gndGZwHEwFogPsBgzmQUq20dCMHFxgOROWhL6m1E5Aw="; 1747 1747 }; 1748 1748 meta = { 1749 1749 license = lib.licenses.mit; ··· 1770 1770 mktplcRef = { 1771 1771 name = "tokyo-night"; 1772 1772 publisher = "enkia"; 1773 - version = "1.0.0"; 1774 - hash = "sha256-/fM+aUDUzVJ6P38i+GrxhLv2eLJNa8OFkKsM4yPBy4c="; 1773 + version = "1.1.2"; 1774 + hash = "sha256-oW0bkLKimpcjzxTb/yjShagjyVTUFEg198oPbY5J2hM="; 1775 1775 }; 1776 1776 meta = { 1777 1777 changelog = "https://marketplace.visualstudio.com/items/enkia.tokyo-night/changelog"; ··· 1898 1898 mktplcRef = { 1899 1899 name = "vscode-jest-runner"; 1900 1900 publisher = "firsttris"; 1901 - version = "0.4.74"; 1902 - hash = "sha256-35Ix6B/vkYQIky9KYsMsxgmRh1LYzBoRs9pMe8M5/rI="; 1901 + version = "0.4.79"; 1902 + hash = "sha256-gcykn/mOvNzFKjKyY4fVhmIWR2kBKCo1ILpp1am0dIw="; 1903 1903 }; 1904 1904 meta = { 1905 1905 description = "Simple way to run or debug a single (or multiple) tests from context-menu"; ··· 1914 1914 mktplcRef = { 1915 1915 name = "foam-vscode"; 1916 1916 publisher = "foam"; 1917 - version = "0.26.7"; 1918 - hash = "sha256-n0UvauL1nzRAKiikhjROhzdH9f77QaQgVOzue736ooQ="; 1917 + version = "0.26.8"; 1918 + hash = "sha256-DI0iPx/Wan3cgUCWgRvXt0uESCIJBR6lF3y/TRgYFnc="; 1919 1919 }; 1920 1920 meta = { 1921 1921 changelog = "https://marketplace.visualstudio.com/items/foam.foam-vscode/changelog"; ··· 2105 2105 publisher = "github"; 2106 2106 name = "copilot"; 2107 2107 # Verify which version is available with nix run nixpkgs#vsce -- show github.copilot --json 2108 - version = "1.284.0"; 2109 - hash = "sha256-SoagiauSRbBjYouW1QDC9ZNgMl9lDH+UwtuITKsZAz8="; 2108 + version = "1.292.0"; 2109 + hash = "sha256-bgyDMEbIceTGtZ6CqUehkJLMAL8Osega6kMwb+buTAU="; 2110 2110 }; 2111 2111 2112 2112 meta = { ··· 2183 2183 mktplcRef = { 2184 2184 name = "gitlab-workflow"; 2185 2185 publisher = "gitlab"; 2186 - version = "6.2.2"; 2187 - hash = "sha256-vGzDDCykxO3gbAPnD6p+j7uZoMQzXt13xfQOpQ6s43k="; 2186 + version = "6.6.0"; 2187 + hash = "sha256-Tf1rsKK1KMBonwBR/2fZv2F6VLkPYXzX7sI3EipZvrQ="; 2188 2188 }; 2189 2189 meta = { 2190 2190 description = "GitLab extension for Visual Studio Code"; ··· 2247 2247 mktplcRef = { 2248 2248 name = "vscode-graphql"; 2249 2249 publisher = "GraphQL"; 2250 - version = "0.13.0"; 2251 - hash = "sha256-GeyA1HQ0izmJJ7UkKPv+J++8AF4p80ymbefj8jq1ssU="; 2250 + version = "0.13.2"; 2251 + hash = "sha256-9G6iIYjZE6s5EGRTc0Y6gUN1cK9Gm2ohnl3oYqBWGqs="; 2252 2252 }; 2253 2253 meta = { 2254 2254 description = "GraphQL extension for VSCode built with the aim to tightly integrate the GraphQL Ecosystem with VSCode for an awesome developer experience"; ··· 2369 2369 mktplcRef = { 2370 2370 name = "vscode-drawio"; 2371 2371 publisher = "hediet"; 2372 - version = "1.6.6"; 2373 - hash = "sha256-SPcSnS7LnRL5gdiJIVsFaN7eccrUHSj9uQYIQZllm0M="; 2372 + version = "1.9.0"; 2373 + hash = "sha256-gi3+mMJcUnkb0FFb6gmx9eI8BRLX3z/kTr7Rk0hudP4="; 2374 2374 }; 2375 2375 meta = { 2376 2376 description = "This unofficial extension integrates Draw.io into VS Code"; ··· 2501 2501 mktplcRef = { 2502 2502 name = "vscode-vibrancy-continued"; 2503 2503 publisher = "illixion"; 2504 - version = "1.1.44"; 2505 - hash = "sha256-1oEfnS7BBKPJ9cSu05S6GQsN76nk5JW7aBq/2O8raSY="; 2504 + version = "1.1.46"; 2505 + hash = "sha256-TcEPr2lpUDsx/G6WXePsS7FUEOKSYSjaapsPEI5xXNU="; 2506 2506 }; 2507 2507 meta = { 2508 2508 downloadPage = "https://marketplace.visualstudio.com/items?itemName=illixion.vscode-vibrancy-continued"; ··· 2550 2550 mktplcRef = { 2551 2551 name = "ionic"; 2552 2552 publisher = "ionic"; 2553 - version = "1.102.0"; 2554 - hash = "sha256-c1K4yQJt5f65T/GygX6i0w7Hbx5FyGaYdiwRjywYTic="; 2553 + version = "1.103.0"; 2554 + hash = "sha256-TjtMkFCKu30LUvYv7nKav9EZlnmm3iXb9LlRYPPfKB0="; 2555 2555 }; 2556 2556 meta = { 2557 2557 description = "Official VSCode extension for Ionic and Capacitor development"; ··· 2755 2755 mktplcRef = { 2756 2756 publisher = "jkillian"; 2757 2757 name = "custom-local-formatters"; 2758 - version = "0.0.6"; 2759 - hash = "sha256-FYDkOuoiF/N24BFG9GOqtTDwq84txmaa1acdzfskf/c="; 2758 + version = "0.1.1"; 2759 + hash = "sha256-Yxui136wK+C5d0h79nXpGQ+lEclmne8XNNxDgUEG6kM="; 2760 2760 }; 2761 2761 meta = { 2762 2762 license = lib.licenses.mit; ··· 2768 2768 mktplcRef = { 2769 2769 publisher = "jnoortheen"; 2770 2770 name = "nix-ide"; 2771 - version = "0.4.12"; 2772 - hash = "sha256-3pXypgAwg/iEBUqPeNsyoX2oYqlKMVdemEhmhy1PuGU="; 2771 + version = "0.4.16"; 2772 + hash = "sha256-MdFDOg9uTUzYtRW2Kk4L8V3T/87MRDy1HyXY9ikqDFY="; 2773 2773 }; 2774 2774 meta = { 2775 2775 changelog = "https://marketplace.visualstudio.com/items/jnoortheen.nix-ide/changelog"; ··· 2872 2872 mktplcRef = { 2873 2873 name = "intellij-idea-keybindings"; 2874 2874 publisher = "k--kato"; 2875 - version = "1.7.3"; 2876 - hash = "sha256-P2WJQJA9mulXvZZtYvIermBXU8O3C/2IwdU2D0ErfSY="; 2875 + version = "1.7.4"; 2876 + hash = "sha256-oyQS8c7Vzh61jtPuWBnTZ6qGUxGbz1b+z0GLvXOZtsU="; 2877 2877 }; 2878 2878 meta = { 2879 2879 changelog = "https://marketplace.visualstudio.com/items/k--kato.intellij-idea-keybindings/changelog"; ··· 2951 2951 mktplcRef = { 2952 2952 name = "vscode-cfn-lint"; 2953 2953 publisher = "kddejong"; 2954 - version = "0.25.1"; 2955 - hash = "sha256-IueXiN+077tiecAsVCzgYksWYTs00mZv6XJVMtRJ/PQ="; 2954 + version = "0.26.4"; 2955 + hash = "sha256-SeLkZurILFc6qVOgbr9epOhspqfOe8EQ+WerrGfh548="; 2956 2956 }; 2957 2957 2958 2958 nativeBuildInputs = [ ··· 2982 2982 mktplcRef = { 2983 2983 name = "vscode-publint"; 2984 2984 publisher = "Kravets"; 2985 - version = "0.0.3"; 2986 - hash = "sha256-1KVqfCVyCn5LJOdazp3W6FECRGOviVC4+FHn6vTn5DI="; 2985 + version = "0.1.0"; 2986 + hash = "sha256-GfIbQajdBpC0i8x7YlKYgpBwweWop4OBUU7dIDi9Yvk="; 2987 2987 }; 2988 2988 meta = { 2989 2989 changelog = "https://marketplace.visualstudio.com/items/Kravets.vscode-publint/changelog"; ··· 3119 3119 mktplcRef = { 3120 3120 name = "marp-vscode"; 3121 3121 publisher = "marp-team"; 3122 - version = "3.1.0"; 3123 - hash = "sha256-dEwwsRXxocJdZQ1Ks5sfTf6KKm8i16FqNr0ZwB/nJWM="; 3122 + version = "3.1.1"; 3123 + hash = "sha256-WRhLd5uTy3F2rBf/9emjm9JB5hvRv+dB66vhuqnedwc="; 3124 3124 }; 3125 3125 meta = { 3126 3126 license = lib.licenses.mit; ··· 3159 3159 mktplcRef = { 3160 3160 name = "caddyfile-support"; 3161 3161 publisher = "matthewpi"; 3162 - version = "0.3.0"; 3163 - hash = "sha256-1yiOnvC2w33kiPRdQYskee38Cid/GOj9becLadP1fUY="; 3162 + version = "0.4.0"; 3163 + hash = "sha256-J4O112VM3Ullyy39ZLw9ieBxVCJQ6yBxdiKtvXyOULo="; 3164 3164 }; 3165 3165 meta = { 3166 3166 description = "Rich Caddyfile support for Visual Studio Code"; ··· 3349 3349 mktplcRef = { 3350 3350 name = "vscode-dotnet-runtime"; 3351 3351 publisher = "ms-dotnettools"; 3352 - version = "2.2.8"; 3353 - hash = "sha256-1dwkkaGQC5CZjOmebzSSqkomhA0hOXiIv8jV+Vo8jcw="; 3352 + version = "2.3.0"; 3353 + hash = "sha256-KfWQpg+qSxrmL4z05pk239i8bY6EMJpu6F48mJbnK08="; 3354 3354 }; 3355 3355 meta = { 3356 3356 changelog = "https://marketplace.visualstudio.com/items/ms-dotnettools.vscode-dotnet-runtime/changelog"; ··· 3464 3464 mktplcRef = { 3465 3465 name = "jupyter-keymap"; 3466 3466 publisher = "ms-toolsai"; 3467 - version = "1.1.0"; 3468 - hash = "sha256-krDtR+ZJiJf1Kxcu5mdXOaSAiJb2bXC1H0XWWviWeMQ="; 3467 + version = "1.1.2"; 3468 + hash = "sha256-9BLyBZzZ0Z6QQ05QSxFJYNZmZDc5O3eYkCxe/UsmKws="; 3469 3469 }; 3470 3470 meta = { 3471 3471 license = lib.licenses.mit; ··· 3536 3536 mktplcRef = { 3537 3537 name = "cpptools-extension-pack"; 3538 3538 publisher = "ms-vscode"; 3539 - version = "1.3.0"; 3540 - hash = "sha256-rHST7CYCVins3fqXC+FYiS5Xgcjmi7QW7M4yFrUR04U="; 3539 + version = "1.3.1"; 3540 + hash = "sha256-HbI0UdN8uwHS2MPH1SGZhxNaN18cWzjMyWYcgVE7FjY="; 3541 3541 }; 3542 3542 meta = { 3543 3543 description = "Popular extensions for C++ development in Visual Studio Code"; ··· 3607 3607 mktplcRef = { 3608 3608 name = "test-adapter-converter"; 3609 3609 publisher = "ms-vscode"; 3610 - version = "0.1.9"; 3611 - hash = "sha256-M53jhAVawk2yCeSrLkWrUit3xbDc0zgCK2snbK+BaSs="; 3610 + version = "0.2.1"; 3611 + hash = "sha256-gyyl379atZLgtabbeo26xspdPjLvNud3cZ6kEmAbAjU="; 3612 3612 }; 3613 3613 meta = { 3614 3614 description = "Visual Studio Code extension that converts from the Test Explorer UI API into native VS Code testing"; ··· 3789 3789 mktplcRef = { 3790 3790 name = "vscode-just-syntax"; 3791 3791 publisher = "nefrob"; 3792 - version = "0.5.1"; 3793 - hash = "sha256-DacDGK8gqlt8u0ZKcVxZ7jiUFFEX3ixv3P7RKWJVluA="; 3792 + version = "0.8.0"; 3793 + hash = "sha256-zuDfIxhiUKRpVRxp9BceW6WPBq5NNCuS1Si0/6kfqF8="; 3794 3794 }; 3795 3795 meta = { 3796 3796 changelog = "https://marketplace.visualstudio.com/items/nefrob.vscode-just-syntax/changelog"; ··· 3823 3823 mktplcRef = { 3824 3824 name = "dark-molokai-theme"; 3825 3825 publisher = "nonylene"; 3826 - version = "1.0.5"; 3827 - hash = "sha256-2qjV6iSz8DDU1yP1II9sxGSgiETmEtotFvfNjm+cTuI="; 3826 + version = "1.0.8"; 3827 + hash = "sha256-GQNv3QWzb0xSnaR8GOnAOZF/wOg0LaWHN3goIYq7JmI="; 3828 3828 }; 3829 3829 meta = { 3830 3830 changelog = "https://marketplace.visualstudio.com/items/nonylene.dark-molokai-theme/changelog"; ··· 3864 3864 mktplcRef = { 3865 3865 name = "ocaml-platform"; 3866 3866 publisher = "ocamllabs"; 3867 - version = "1.28.1"; 3868 - hash = "sha256-UAKMSmvqcSMYPmRfdtNKKUem9bHMhVhkAhy9cxx2Zyg="; 3867 + version = "1.28.2"; 3868 + hash = "sha256-j49r7lhJkHZHkeFXTC/hQNLw4ICQ2JW/ahYUVYwLJd4="; 3869 3869 }; 3870 3870 }; 3871 3871 ··· 3918 3918 mktplcRef = { 3919 3919 name = "phoenix"; 3920 3920 publisher = "phoenixframework"; 3921 - version = "0.1.2"; 3922 - hash = "sha256-T+YNRR8jAzNagmoCDzjbytBDFtPhNn289Kywep/w8sw="; 3921 + version = "0.1.3"; 3922 + hash = "sha256-UuGqYLz/4lc5WngrRLkAbEXnOW5pvTlDhHO0aB+LRgk="; 3923 3923 }; 3924 3924 meta = { 3925 3925 description = "Syntax highlighting support for HEEx / Phoenix templates"; ··· 3962 3962 mktplcRef = { 3963 3963 name = "material-product-icons"; 3964 3964 publisher = "PKief"; 3965 - version = "1.5.0"; 3966 - hash = "sha256-gKU21OS2ZFyzCQVQ1fa3qlahLBAcJaHDEcz7xof3P4A="; 3965 + version = "1.7.1"; 3966 + hash = "sha256-knYRG4j8cU6frLXSpwvaSyE+EWFd1ne/ctYa5kqp5bw="; 3967 3967 }; 3968 3968 meta = { 3969 3969 license = lib.licenses.mit; ··· 3993 3993 mktplcRef = { 3994 3994 name = "prisma"; 3995 3995 publisher = "Prisma"; 3996 - version = "6.4.1"; 3997 - hash = "sha256-cftmEKH+nfGaSyNuDq2XxPYXmXV5ygWQgVZiNQaIgm4="; 3996 + version = "6.5.0"; 3997 + hash = "sha256-1aZW8FYFIHsRC3klVHt/0Pp5RteF8XBseuJZuLnRgJE="; 3998 3998 }; 3999 3999 meta = { 4000 4000 changelog = "https://marketplace.visualstudio.com/items/Prisma.prisma/changelog"; ··· 4055 4055 mktplcRef = { 4056 4056 name = "ansible"; 4057 4057 publisher = "redhat"; 4058 - version = "25.2.0"; 4059 - hash = "sha256-jgb12UJ+YtBKgdYWtZDq9KXWpsSq6NzMOIMNPGXwDe0="; 4058 + version = "25.3.1"; 4059 + hash = "sha256-1w4B5+WHDJzU4Fz5x2pXDAssRWjZPl79ykTNbk2rQXo="; 4060 4060 }; 4061 4061 meta = { 4062 4062 description = "Ansible language support"; ··· 4146 4146 mktplcRef = { 4147 4147 name = "commandOnAllFiles"; 4148 4148 publisher = "rioj7"; 4149 - version = "0.3.2"; 4150 - hash = "sha256-777jdBpWJ66ASeeETWevWF4mIAj4RWviNSTxzvqwl0U="; 4149 + version = "0.5.1"; 4150 + hash = "sha256-sv42eRZV32KW51KVadzlrScHQ6snNkBDTzAJ8BDtAvU="; 4151 4151 }; 4152 4152 meta = { 4153 4153 license = lib.licenses.mit; ··· 4329 4329 mktplcRef = { 4330 4330 name = "metals"; 4331 4331 publisher = "scalameta"; 4332 - version = "1.47.7"; 4333 - hash = "sha256-K1Er+0phNlWJhoQ1RtWt0/i2GzXcCdSFCy/JcgEukrQ="; 4332 + version = "1.48.0"; 4333 + hash = "sha256-GtlVj/XvnlsLQb8PwXl6S2OW0mOl8SCR3N76zhZBwxA="; 4334 4334 }; 4335 4335 meta = { 4336 4336 license = lib.licenses.asl20; ··· 4431 4431 mktplcRef = { 4432 4432 publisher = "shopify"; 4433 4433 name = "ruby-lsp"; 4434 - version = "0.9.7"; 4435 - hash = "sha256-7vLT5vvqqwT0Tlt/iHXW0ktp2It7l+lxUWNJEljIp4c="; 4434 + version = "0.9.12"; 4435 + hash = "sha256-ahfVRbTAKmmqOWV7vHK0+KLwYSUVgKqlIG1+lV3E5c4="; 4436 4436 }; 4437 4437 meta = { 4438 4438 description = "VS Code plugin for connecting with the Ruby LSP"; ··· 4548 4548 mktplcRef = { 4549 4549 publisher = "sonarsource"; 4550 4550 name = "sonarlint-vscode"; 4551 - version = "4.17.0"; 4552 - hash = "sha256-PPMjOxPKUB5+HrpWZYc1gBaF8z4UQBFdeSbd8dlw7GI="; 4551 + version = "4.18.0"; 4552 + hash = "sha256-+2aeJhIwH6oiRQcPK714u8IiU3QKwhQOB0xgmsf4DXw="; 4553 4553 }; 4554 4554 meta.license = lib.licenses.lgpl3Only; 4555 4555 }; ··· 4692 4692 4693 4693 supermaven.supermaven = buildVscodeMarketplaceExtension { 4694 4694 mktplcRef = { 4695 - hash = "sha256-O3AN8fy28ZSun+k6MJnJdFcmwDDE21ib+I9HtDE0JwU="; 4695 + hash = "sha256-/fZungx+wdtKo80KCGZa4WfHMTT6Imb5MBgQ8gAGhfQ="; 4696 4696 name = "supermaven"; 4697 4697 publisher = "supermaven"; 4698 - version = "0.1.42"; 4698 + version = "1.1.12"; 4699 4699 }; 4700 4700 meta = { 4701 4701 changelog = "https://marketplace.visualstudio.com/items/supermaven.supermaven/changelog"; ··· 4749 4749 mktplcRef = { 4750 4750 name = "tabnine-vscode"; 4751 4751 publisher = "tabnine"; 4752 - version = "3.241.0"; 4753 - hash = "sha256-pBnvSG3jgKHrmxi4R5UwyDZaLKTLPn4ZZcakHBy2oxM="; 4752 + version = "3.247.0"; 4753 + hash = "sha256-TOpdiqkOUmC+CXJn0H3+NYqTHkeuNf2Y37F0OgN6YzM="; 4754 4754 }; 4755 4755 meta = { 4756 4756 license = lib.licenses.mit; ··· 4966 4966 mktplcRef = { 4967 4967 name = "opa"; 4968 4968 publisher = "tsandall"; 4969 - version = "0.12.2"; 4970 - hash = "sha256-/eJzDhnQyvC9OBr4M03wLIWPiBeVtvX7ztSnO+YoCZM="; 4969 + version = "0.19.0"; 4970 + hash = "sha256-jRwZD4TwLMdwBdV59HonMkF2ds4heXHPtpw1sxq1RsA="; 4971 4971 }; 4972 4972 meta = { 4973 4973 changelog = "https://github.com/open-policy-agent/vscode-opa/blob/master/CHANGELOG.md"; ··· 4997 4997 mktplcRef = { 4998 4998 name = "vscode-testscript"; 4999 4999 publisher = "twpayne"; 5000 - version = "0.0.4"; 5001 - hash = "sha256-KOmcJlmmdUkC+q0AQ/Q/CQAeRgQPr6nVO0uccUxHmsY="; 5000 + version = "0.0.5"; 5001 + hash = "sha256-rAkwcEmonZArN7Vls8k5ey+6V1b5bICTJoOSxgtnv+A="; 5002 5002 }; 5003 5003 meta = { 5004 5004 description = "Syntax highlighting support for testscript"; ··· 5074 5074 mktplcRef = { 5075 5075 name = "vscode-mdx"; 5076 5076 publisher = "unifiedjs"; 5077 - version = "1.4.0"; 5078 - hash = "sha256-qqqq0QKTR0ZCLdPltsnQh5eTqGOh9fV1OSOZMjj4xXg="; 5077 + version = "1.8.13"; 5078 + hash = "sha256-QTIDs+HVnM+zJ3jqhiBhUTsrI44kaHInYDXLXMC1/9E="; 5079 5079 }; 5080 5080 meta = { 5081 5081 changelog = "https://marketplace.visualstudio.com/items/unifiedjs.vscode-mdx/changelog"; ··· 5199 5199 mktplcRef = { 5200 5200 name = "vstuc"; 5201 5201 publisher = "VisualStudioToolsForUnity"; 5202 - version = "1.0.4"; 5203 - hash = "sha256-LkLdXbXW91wMmaXpnRxSpff/zHCOE74nPP3aS0Ig3Gc="; 5202 + version = "1.1.0"; 5203 + hash = "sha256-86KDksbTKlPgKC1joUc7uQTsDe2w9AIL0fekZP0z6gE="; 5204 5204 }; 5205 5205 meta = { 5206 5206 description = "Integrates Visual Studio Code for Unity"; ··· 5566 5566 mktplcRef = { 5567 5567 publisher = "yzhang"; 5568 5568 name = "dictionary-completion"; 5569 - version = "1.2.2"; 5570 - hash = "sha256-dpJcJARRKzRNHfXs/qknud8OQ8xIyeaVnt/EcDq0k4E="; 5569 + version = "1.3.1"; 5570 + hash = "sha256-sin2kTx7aXFPhtraKUjsowuV8Z2z237RIePL4F/JiPM="; 5571 5571 }; 5572 5572 meta = { 5573 5573 description = "Visual Studio Code extension to help user easyly finish long words "; ··· 5603 5603 mktplcRef = { 5604 5604 name = "markdown-editor"; 5605 5605 publisher = "zaaack"; 5606 - version = "0.1.10"; 5607 - hash = "sha256-K1nczR059BsiHpT1xdtJjpFLl5krt4H9+CrEsIycq9U="; 5606 + version = "0.1.13"; 5607 + hash = "sha256-Si8/piNNktcyRY8o8o9my9sP9NEwrNuySVjlyadDjtU="; 5608 5608 }; 5609 5609 meta = { 5610 5610 description = "Visual Studio Code extension for WYSIWYG markdown editing";
+2 -2
pkgs/applications/editors/vscode/extensions/dendron.dendron-paste-image/default.nix
··· 4 4 mktplcRef = { 5 5 name = "dendron-paste-image"; 6 6 publisher = "dendron"; 7 - version = "1.1.1"; 8 - hash = "sha256-SlW8MEWBgf8cJsdSzeegqPiAlEvlnrxuvrJJdhHwq2E="; 7 + version = "1.1.3"; 8 + hash = "sha256-nnaHXQAOEblQRKqbDIsuTVrdh3BlDnWJGy9ai2bv02c="; 9 9 }; 10 10 meta = { 11 11 description = "Paste images directly from your clipboard to markdown/asciidoc(or other file)!";
+2 -2
pkgs/applications/editors/vscode/extensions/ms-python.vscode-pylance/default.nix
··· 8 8 mktplcRef = { 9 9 name = "vscode-pylance"; 10 10 publisher = "MS-python"; 11 - version = "2025.3.1"; 12 - hash = "sha256-W7+nwMwoux2m3ZWlgne8XQApsHsqynnTp4WgMa8RHvQ="; 11 + version = "2025.3.2"; 12 + hash = "sha256-Lv4HiFsYszThuGp6YyTWUqgi2o0+aiMGnsiBxu3vQWk="; 13 13 }; 14 14 15 15 buildInputs = [ pyright ];
+2 -2
pkgs/applications/editors/vscode/extensions/ms-toolsai.jupyter/default.nix
··· 9 9 mktplcRef = { 10 10 name = "jupyter"; 11 11 publisher = "ms-toolsai"; 12 - version = "2025.1.2025013001"; 13 - hash = "sha256-q9LYXw1LhEnc0RzUCpx83/TF1Shf6vqTbL0+BzU5O3U="; 12 + version = "2025.2.0"; 13 + hash = "sha256-YMvu8aEumV3VTdNZKiLK+5jmTL9y5tcMxrEBwEMcTI4="; 14 14 }; 15 15 16 16 nativeBuildInputs = [
+2 -2
pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix
··· 84 84 mktplcRef = { 85 85 name = "remote-ssh"; 86 86 publisher = "ms-vscode-remote"; 87 - version = "0.78.0"; 88 - hash = "sha256-vd+9d86Z8429QpQVCZm8gtiJDcMpD++aiFVwvCrPg5w="; 87 + version = "0.118.0"; 88 + hash = "sha256-LHsOjl5fIm4/ixlFs/yL/U2VRwRMigRk0Q3MtNdyzVE="; 89 89 }; 90 90 91 91 postPatch = ''
+2 -2
pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix
··· 7 7 mktplcRef = { 8 8 publisher = "RooVeterinaryInc"; 9 9 name = "roo-cline"; 10 - version = "3.9.2"; 11 - hash = "sha256-zRVppwnYpw03L+socmxAtLnkD72Ag7Wz9B4BbxpdFrk="; 10 + version = "3.10.5"; 11 + hash = "sha256-7A8BQHUu7CYA28fHv68Zvf6zhlJwwXZaNVLb+/cBAIg="; 12 12 }; 13 13 14 14 meta = {
+2 -2
pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix
··· 7 7 mktplcRef = { 8 8 name = "claude-dev"; 9 9 publisher = "saoudrizwan"; 10 - version = "3.8.0"; 11 - hash = "sha256-v3ejRGAvJm4nExQLMuQEB06Kf0IERVSivVxadovrboo="; 10 + version = "3.8.3"; 11 + hash = "sha256-0FAxQ67AKcSbCp8vQr2KUOIRw8LEQ3TQyJkfJwtmdoY="; 12 12 }; 13 13 14 14 meta = {
+9 -10
pkgs/applications/emulators/libretro/mkLibretroCore.nix
··· 33 33 "zlib" 34 34 35 35 "core" 36 - "makefile" 37 36 "extraBuildInputs" 38 37 "extraNativeBuildInputs" 39 38 "libretroCore" 39 + "makefile" 40 40 "normalizeCore" 41 + "passthru" 42 + "meta" 41 43 ]; 42 44 in 43 45 stdenv.mkDerivation ( ··· 88 90 updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; 89 91 } // (args.passthru or { }); 90 92 91 - meta = 92 - with lib; 93 - { 94 - inherit mainProgram; 95 - inherit (retroarch-bare.meta) platforms; 96 - homepage = "https://www.libretro.com/"; 97 - maintainers = with maintainers; teams.libretro.members; 98 - } 99 - // (args.meta or { }); 93 + meta = { 94 + inherit mainProgram; 95 + inherit (retroarch-bare.meta) platforms; 96 + homepage = "https://www.libretro.com/"; 97 + maintainers = with lib.maintainers; [ ] ++ lib.teams.libretro.members; 98 + } // (args.meta or { }); 100 99 } 101 100 // extraArgs 102 101 )
+3 -3
pkgs/applications/networking/cluster/kuma/default.nix
··· 15 15 16 16 buildGoModule rec { 17 17 inherit pname; 18 - version = "2.9.4"; 18 + version = "2.10.0"; 19 19 tags = lib.optionals enableGateway [ "gateway" ]; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "kumahq"; 23 23 repo = "kuma"; 24 24 rev = version; 25 - hash = "sha256-GSTM5djaGeZ8u82Ygkgg2iVOE5si8GKT2U2e8rwaFVY="; 25 + hash = "sha256-lxXD+q8EyBo4HdP+JjyVMiVPOwt1Y+EGxq9GDEEw2I4="; 26 26 }; 27 27 28 - vendorHash = "sha256-jAmrmYj4lKGAzEuIvfyQr4csZBfHpRSRs26sfs0K2K0="; 28 + vendorHash = "sha256-/mIiK95UIWszYK3YlhLJRpjgUaFO/pfIogLKLvjAAsk="; 29 29 30 30 # no test files 31 31 doCheck = false;
+60 -60
pkgs/applications/networking/cluster/rke2/1_29/images-versions.json
··· 1 1 { 2 2 "images-calico-linux-amd64-tar-gz": { 3 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-calico.linux-amd64.tar.gz", 4 - "sha256": "4b3743795b3fb431c53f183d43b004925ff06863bd95e9fbf3949c5c5092c7bd" 3 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-calico.linux-amd64.tar.gz", 4 + "sha256": "020d5dfa9f00591444e57223bd0cd236bb4ad8f0fae6e5cc19a60fa71b0096cd" 5 5 }, 6 6 "images-calico-linux-amd64-tar-zst": { 7 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-calico.linux-amd64.tar.zst", 8 - "sha256": "eca2ac2eda2fcaf055f54dfc1baf7f21a88f3454a84716d8d0f57574f2a36664" 7 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-calico.linux-amd64.tar.zst", 8 + "sha256": "004cb2dbd99b15a311a68697a89f3747de9dbf643654bf52db19b5ad12f809a7" 9 9 }, 10 10 "images-calico-linux-arm64-tar-gz": { 11 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-calico.linux-arm64.tar.gz", 12 - "sha256": "d2baf446c4ec832bf870d57bc7cfd496de6bd1df3cc26b83ea7853a8e6e85de9" 11 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-calico.linux-arm64.tar.gz", 12 + "sha256": "df9502035dfdca214a4c4ef7353ff6a9b003e14baf81d6c34a4d72ac85837062" 13 13 }, 14 14 "images-calico-linux-arm64-tar-zst": { 15 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-calico.linux-arm64.tar.zst", 16 - "sha256": "18922628e7c9a9045b60393fe049a01ec2137b80b3312ea09735bce978ae88c8" 15 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-calico.linux-arm64.tar.zst", 16 + "sha256": "acbc610d1def7f24c47832b5e93780e7cd0f8fd7ce74f8fd3ff29fab713feb32" 17 17 }, 18 18 "images-canal-linux-amd64-tar-gz": { 19 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-canal.linux-amd64.tar.gz", 20 - "sha256": "351c2c73acc9a88869735430b604a60237122e778f5eb95c503530e8cc42d790" 19 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-canal.linux-amd64.tar.gz", 20 + "sha256": "ba47ab111cda68836b36f1480d63b088d0de6a97d3ac511d1be57ed714ad0860" 21 21 }, 22 22 "images-canal-linux-amd64-tar-zst": { 23 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-canal.linux-amd64.tar.zst", 24 - "sha256": "a8b0825efd30f2e4ee0e82730d820b5ab0e2074b76d99a4662555726440a1542" 23 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-canal.linux-amd64.tar.zst", 24 + "sha256": "e0e8d9757a0f5445a33ce83c4c96d5c5023d70288fa4ee34103d3375e912b2b2" 25 25 }, 26 26 "images-canal-linux-arm64-tar-gz": { 27 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-canal.linux-arm64.tar.gz", 28 - "sha256": "5a43dd70e1efac0ee0deeb5637b8fd8b19c4f70b5854d9af69dde7299c7315c0" 27 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-canal.linux-arm64.tar.gz", 28 + "sha256": "e1411b8a65525573f36df2587829dd6ba2565ed5961f818bcef532fd8ad64296" 29 29 }, 30 30 "images-canal-linux-arm64-tar-zst": { 31 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-canal.linux-arm64.tar.zst", 32 - "sha256": "d42f6de81cc2a0ca8cb8716189c782c58de3ec7f6159ac240228755bfc586b4a" 31 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-canal.linux-arm64.tar.zst", 32 + "sha256": "7dd696507da2fbc4e6e4d7b730fc8df0cb2c216614020217d77f58d10703f11a" 33 33 }, 34 34 "images-cilium-linux-amd64-tar-gz": { 35 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-cilium.linux-amd64.tar.gz", 36 - "sha256": "b8ead14a0c131f9a91997635670cb03191c4f4e4b14bee77fe0da0b9629d5b01" 35 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-cilium.linux-amd64.tar.gz", 36 + "sha256": "9107d48dcc8b1839d2f910005737327d0f3c653472caf0588f0824f77603300f" 37 37 }, 38 38 "images-cilium-linux-amd64-tar-zst": { 39 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-cilium.linux-amd64.tar.zst", 40 - "sha256": "b89382ac45f36536ff8d458d74938f6558f510f7bed5cebbaf0834abbb81d03d" 39 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-cilium.linux-amd64.tar.zst", 40 + "sha256": "0ce5b126150c0d5f11529bb9cfb945cf2da342c06aa432e3df79cb896eceef9f" 41 41 }, 42 42 "images-cilium-linux-arm64-tar-gz": { 43 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-cilium.linux-arm64.tar.gz", 44 - "sha256": "f6918df76be1395bb193091d5a356555284da56294f0ab6ed6e2c5f11bf9ddbb" 43 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-cilium.linux-arm64.tar.gz", 44 + "sha256": "1d8870e6369bbb56cfbfa3bdcc5b81c329d021a4b2183654c301f82f4a6fe65e" 45 45 }, 46 46 "images-cilium-linux-arm64-tar-zst": { 47 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-cilium.linux-arm64.tar.zst", 48 - "sha256": "7715c4073dfbba766605ec16aa238a7e171b53def9933e9e3cd6c69780dc669c" 47 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-cilium.linux-arm64.tar.zst", 48 + "sha256": "eb1d54688eacadc97cf77a6e6cbb039182596d0b895cebfb40e71786944f0358" 49 49 }, 50 50 "images-core-linux-amd64-tar-gz": { 51 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-core.linux-amd64.tar.gz", 52 - "sha256": "2d138c9f5c08e0783bcec973de388e21cb0733a30a8f87123662f155e22d1cb6" 51 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-core.linux-amd64.tar.gz", 52 + "sha256": "98c366348a67572702c1332c71d81b98b14c3bf4ca4f1e0a5caedab462bf61b3" 53 53 }, 54 54 "images-core-linux-amd64-tar-zst": { 55 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-core.linux-amd64.tar.zst", 56 - "sha256": "2eaae797f44ab269b271fa9fb0f02ecaf14d1209c16d83b395d9549b736c149d" 55 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-core.linux-amd64.tar.zst", 56 + "sha256": "41616e68c3e456dea8d5e40158857c27bc786eade7a1c7dbb4621b372971f17e" 57 57 }, 58 58 "images-core-linux-arm64-tar-gz": { 59 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-core.linux-arm64.tar.gz", 60 - "sha256": "caee89bef5f95aa812de8314cc8612b525840b98e7e654c7b256277df7faaf07" 59 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-core.linux-arm64.tar.gz", 60 + "sha256": "ef4a9b0acaaac2341c54741107c653efb2610d3d443c03cb2947a7d9076415dc" 61 61 }, 62 62 "images-core-linux-arm64-tar-zst": { 63 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-core.linux-arm64.tar.zst", 64 - "sha256": "252cbe2f8f7d262a884094411b84a0e98b16886d2c0e13edea02b81993395283" 63 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-core.linux-arm64.tar.zst", 64 + "sha256": "d7f5ee3b12399082c4b52b4513f581c257123989dff1dbba822e9343ceb92139" 65 65 }, 66 66 "images-flannel-linux-amd64-tar-gz": { 67 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-flannel.linux-amd64.tar.gz", 68 - "sha256": "1495baefc0b8d727e5baf16b71a56f3d8a9dee414e614e7511fd9ca629e6146f" 67 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-flannel.linux-amd64.tar.gz", 68 + "sha256": "8c0e75adf064bd1cc37df4b6a0c01edebbd1381fcc49799b589d072f8919bb14" 69 69 }, 70 70 "images-flannel-linux-amd64-tar-zst": { 71 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-flannel.linux-amd64.tar.zst", 72 - "sha256": "925e1b36c1d1fd65e61de76f21816866dd539a3345e29ba9aca8a66b6aa1e135" 71 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-flannel.linux-amd64.tar.zst", 72 + "sha256": "a3b13a559f4ea866774e93d0c9883bea7ff2eb9fb4832529e8c7e7fee924ca2b" 73 73 }, 74 74 "images-flannel-linux-arm64-tar-gz": { 75 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-flannel.linux-arm64.tar.gz", 76 - "sha256": "fcf737645558c91d525fc8c855c3f674fa0c0dea2d2114b67d2df8236c1905ca" 75 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-flannel.linux-arm64.tar.gz", 76 + "sha256": "035142ddea7ce5ad3e30a485cda3091c86bda22c1f106614327a9ab4504a9ec3" 77 77 }, 78 78 "images-flannel-linux-arm64-tar-zst": { 79 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-flannel.linux-arm64.tar.zst", 80 - "sha256": "a1eda6aba79af9eb58614d656106196c9159253bb17f1418ee23c4eabf400410" 79 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-flannel.linux-arm64.tar.zst", 80 + "sha256": "28b1d7fc4544296724031007ae29415d7ee128354b8bcdc90bd13b328f3122d1" 81 81 }, 82 82 "images-harvester-linux-amd64-tar-gz": { 83 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-harvester.linux-amd64.tar.gz", 84 - "sha256": "3aff7d410d88fbffed80642c044958601e325a7fb3b5f11b7b989179659b8f14" 83 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-harvester.linux-amd64.tar.gz", 84 + "sha256": "b571e832903c6f9abe94bea4c4128eb4784d11c6b4a53030e29bccdb6205338d" 85 85 }, 86 86 "images-harvester-linux-amd64-tar-zst": { 87 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-harvester.linux-amd64.tar.zst", 88 - "sha256": "3d7a80dc64e96c27fd5fe4210c02357c7f2870d25b8067338f45b12c92d80d9f" 87 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-harvester.linux-amd64.tar.zst", 88 + "sha256": "b464b22d3fcd708f09b659f730773f6ca9340dc0b5c5e703ea9b69af4c9919b3" 89 89 }, 90 90 "images-harvester-linux-arm64-tar-gz": { 91 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-harvester.linux-arm64.tar.gz", 92 - "sha256": "4fbefae4e2fd15e97e81f4a6eaa1b407d39125caaf60feb766197b1914afbef6" 91 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-harvester.linux-arm64.tar.gz", 92 + "sha256": "99d014012b54a64bd9c0387fc81615bcc6a9095dca87ddf256a4d14cdf93c511" 93 93 }, 94 94 "images-harvester-linux-arm64-tar-zst": { 95 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-harvester.linux-arm64.tar.zst", 96 - "sha256": "d1644e15125da089225372f44d9c537f5c4ac3b298024ecda0b1537bc245f896" 95 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-harvester.linux-arm64.tar.zst", 96 + "sha256": "1e46a193719b2e1394f133b071a8bfe60081160c929d38973d34b600380a2080" 97 97 }, 98 98 "images-multus-linux-amd64-tar-gz": { 99 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-multus.linux-amd64.tar.gz", 100 - "sha256": "2327286a7d695c0596e7536018710373aff10c3f1adc847f07f820c33b68ad81" 99 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-multus.linux-amd64.tar.gz", 100 + "sha256": "ac1e5082d27473d81d7fa8f7765e4023878ca92c27878ed0cd99accfb8d8b38e" 101 101 }, 102 102 "images-multus-linux-amd64-tar-zst": { 103 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-multus.linux-amd64.tar.zst", 104 - "sha256": "2d5cb1b383aa2a6bb840d185e01a09e7d667b05c91e4be42a04dffa5cd6b4d92" 103 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-multus.linux-amd64.tar.zst", 104 + "sha256": "087148184e0e06ef58111ac336b58ad62c061189d0d0dd7c316a842732449c05" 105 105 }, 106 106 "images-multus-linux-arm64-tar-gz": { 107 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-multus.linux-arm64.tar.gz", 108 - "sha256": "9bbd253fdb9fd7913569b651c2591e2b97bdd3b98d0398bcc563a09f1387d6a3" 107 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-multus.linux-arm64.tar.gz", 108 + "sha256": "49d1914afe109bd6b1e5c56435cb3cd4ed79ae4688f11ade33b37f4e9a592f77" 109 109 }, 110 110 "images-multus-linux-arm64-tar-zst": { 111 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-multus.linux-arm64.tar.zst", 112 - "sha256": "ce929e823814cda57d187a219dc2719cbab390bf2a2d939e44d48d70f288d25c" 111 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-multus.linux-arm64.tar.zst", 112 + "sha256": "f14ab45b4d315ea27787f4741a0eb4bc0bff7a9ecb498da5694ce991097becd8" 113 113 }, 114 114 "images-vsphere-linux-amd64-tar-gz": { 115 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.gz", 116 - "sha256": "d405c544026e9aac8edad7cc64abcb4c20578a3abb8aff114910df3161aac28a" 115 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.gz", 116 + "sha256": "3ce2832234efde4dfc61d74debb380ac245ec9828aa7613e8ff9204207038069" 117 117 }, 118 118 "images-vsphere-linux-amd64-tar-zst": { 119 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.14%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.zst", 120 - "sha256": "d71d9dbc916988b2d9236c56ed46dfdd269db892bcbf8e5e11675d851ec7a3f6" 119 + "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.zst", 120 + "sha256": "b182062f8eff3e71d6e8afea8b5e2cbadfa3d02d092744cd05673803cb464746" 121 121 } 122 122 }
+7 -7
pkgs/applications/networking/cluster/rke2/1_29/versions.nix
··· 1 1 { 2 - rke2Version = "1.29.14+rke2r1"; 3 - rke2Commit = "700728b7c1efe5db28004c747819b635254e9a91"; 4 - rke2TarballHash = "sha256-K1Yn85NBl4t0OwaETfqgeZVIgAzbLevY0lyOHs5YwfM="; 5 - rke2VendorHash = "sha256-WG++RPbIhDNnd9BRbEop4qtDcaKJTUz+YzeygZfDxLI="; 6 - k8sImageTag = "v1.29.14-rke2r1-build20250213"; 7 - etcdVersion = "v3.5.18-k3s1-build20250210"; 2 + rke2Version = "1.29.15+rke2r1"; 3 + rke2Commit = "c228232895f83b6c3e17a9741e0c8d8e4439894d"; 4 + rke2TarballHash = "sha256-ZvujSxuTsM6oBNEehQSMmCkbSTsp8sBZd00vwJGx5Lk="; 5 + rke2VendorHash = "sha256-PhJgHvVCZAxWK78cn0pURC/Oy63/V41k0ZFn4sveCPY="; 6 + k8sImageTag = "v1.29.15-rke2r1-build20250312"; 7 + etcdVersion = "v3.5.19-k3s1-build20250306"; 8 8 pauseVersion = "3.6"; 9 9 ccmVersion = "v1.29.10-0.20241016053521-9510ac25fefb-build20241016"; 10 - dockerizedVersion = "v1.29.14-rke2r1"; 10 + dockerizedVersion = "v1.29.15-rke2r1"; 11 11 imagesVersions = with builtins; fromJSON (readFile ./images-versions.json); 12 12 }
+68 -68
pkgs/applications/networking/cluster/rke2/1_30/images-versions.json
··· 1 1 { 2 2 "images-calico-linux-amd64-tar-gz": { 3 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-calico.linux-amd64.tar.gz", 4 - "sha256": "ad47733ffcfa7194ff3f8e9b1aad4028868b6def24bfc613d30104dfbaa103d2" 3 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-calico.linux-amd64.tar.gz", 4 + "sha256": "7993ac9ba2faead011abdc06ab50842abf124ab260fb666d8e3f02b8e7f127e3" 5 5 }, 6 6 "images-calico-linux-amd64-tar-zst": { 7 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-calico.linux-amd64.tar.zst", 8 - "sha256": "fda9d7d50ed44dd15a31b74720fa71fa5d6d504091a47bfa6f766adbeaf5eb08" 7 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-calico.linux-amd64.tar.zst", 8 + "sha256": "eecb7dcd5026bbc6e9927fc6c7bf3fc3e882f57006b314e13616fbdb22b6ecca" 9 9 }, 10 10 "images-calico-linux-arm64-tar-gz": { 11 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-calico.linux-arm64.tar.gz", 12 - "sha256": "bb01eca1bb1a30e2ef83d4c528934a445e56e7e4c38d4ba795699827bcab1f79" 11 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-calico.linux-arm64.tar.gz", 12 + "sha256": "4aeb703f4b4051ca34aa034e933a967e316cc1d061d874ab656c4d6415abebcb" 13 13 }, 14 14 "images-calico-linux-arm64-tar-zst": { 15 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-calico.linux-arm64.tar.zst", 16 - "sha256": "020b55868818efbf5b27854416ad2f5c71a757c674a49e493f44c1b4146b16cf" 15 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-calico.linux-arm64.tar.zst", 16 + "sha256": "cd67c5182564ed2db427fa023613a53d84188338760f27efeab8908e4639b13b" 17 17 }, 18 18 "images-canal-linux-amd64-tar-gz": { 19 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-canal.linux-amd64.tar.gz", 20 - "sha256": "827fe2baa8ba2429cc5a6853c7447461e0452ad46bae46e47ab53d078c34856c" 19 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-canal.linux-amd64.tar.gz", 20 + "sha256": "1ba140457141372eaf757cf7a60996343188f53cabb61fc9fd4156a20f2f0245" 21 21 }, 22 22 "images-canal-linux-amd64-tar-zst": { 23 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-canal.linux-amd64.tar.zst", 24 - "sha256": "931a778ff65cfca3b76bddf65d71792422d6ffe0abc6feecc1ca8923555550a3" 23 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-canal.linux-amd64.tar.zst", 24 + "sha256": "ce90fcc460c45a6e3f36d21889c8b658d64dafc51101af86c2e14d0a9f119203" 25 25 }, 26 26 "images-canal-linux-arm64-tar-gz": { 27 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-canal.linux-arm64.tar.gz", 28 - "sha256": "49d4502fab5236c7b96f07636349f902d781c55d03ecd2e563a8f7e544fd30af" 27 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-canal.linux-arm64.tar.gz", 28 + "sha256": "bab5e11c3b5d826fdd494424fda237b15495ffc8383d52c3d35626ef0df6d0d1" 29 29 }, 30 30 "images-canal-linux-arm64-tar-zst": { 31 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-canal.linux-arm64.tar.zst", 32 - "sha256": "f75946b503600b0ca1b24f0da7355ece0a96380772fdc8c75f94ab6839bc559f" 31 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-canal.linux-arm64.tar.zst", 32 + "sha256": "12f1a513d58f7e5f60df5735b77bd950b51413875e3950052f8d35f2c39d5cd2" 33 33 }, 34 34 "images-cilium-linux-amd64-tar-gz": { 35 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-cilium.linux-amd64.tar.gz", 36 - "sha256": "000c57f474e1b70a81dc7f0b831fd01cb8d147664e00eff566ab8d89fa9caf8a" 35 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-cilium.linux-amd64.tar.gz", 36 + "sha256": "3c497fccdf586fadba9a737fa430f520448088a770f9f0eaa044bfba332ee06c" 37 37 }, 38 38 "images-cilium-linux-amd64-tar-zst": { 39 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-cilium.linux-amd64.tar.zst", 40 - "sha256": "00a5971a62c02e192de910f6c5f1cd230d23547335d94399fa306a355e23750f" 39 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-cilium.linux-amd64.tar.zst", 40 + "sha256": "095d379b88e9b012be66f5f61fd6fc8de9247a9db8d4aed2aa532cf711c67768" 41 41 }, 42 42 "images-cilium-linux-arm64-tar-gz": { 43 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-cilium.linux-arm64.tar.gz", 44 - "sha256": "da8793a53ac5c64387872db810d3b94f11ba063af6e11b48ac6df2a943ea8f79" 43 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-cilium.linux-arm64.tar.gz", 44 + "sha256": "0adfa32fc377386527bbfa9491538f02e1da8e96cdd53ecf624b99f9776eb817" 45 45 }, 46 46 "images-cilium-linux-arm64-tar-zst": { 47 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-cilium.linux-arm64.tar.zst", 48 - "sha256": "85e78feaeac5dba9ef18eac8dd42081afe4f0bffe11921dbfd6b7cc585ca1496" 47 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-cilium.linux-arm64.tar.zst", 48 + "sha256": "af6c6cd6d3b4171b0df9926f418f15907f63d4ae1447c0c88d214994fd5ae7ce" 49 49 }, 50 50 "images-core-linux-amd64-tar-gz": { 51 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-core.linux-amd64.tar.gz", 52 - "sha256": "c5c4c7389312642c6dc9ef3a07d954be5d3776a8fc1e6df90bb46eb95fd75513" 51 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-core.linux-amd64.tar.gz", 52 + "sha256": "55eba7fd7e4d5b30cc4c1702c71776d5e35928a42521cc813672d087af3e66ef" 53 53 }, 54 54 "images-core-linux-amd64-tar-zst": { 55 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-core.linux-amd64.tar.zst", 56 - "sha256": "8ec619a8b458c27f14bfdb796b1aa399ed34b7db176ea3ae64ba20189f529835" 55 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-core.linux-amd64.tar.zst", 56 + "sha256": "5b9077b87c28f66e4405d4b9af964d062da7dec9a70c359ca5cd8b74757224fb" 57 57 }, 58 58 "images-core-linux-arm64-tar-gz": { 59 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-core.linux-arm64.tar.gz", 60 - "sha256": "413566078e9315aa5d9339e6fb1f7859aea399a7f7934019aa7b1229e223e293" 59 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-core.linux-arm64.tar.gz", 60 + "sha256": "5ccfcf9b3842c9ffb8d965e34582b2afdc6004c69f2b134c82a460fd3aa2a113" 61 61 }, 62 62 "images-core-linux-arm64-tar-zst": { 63 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-core.linux-arm64.tar.zst", 64 - "sha256": "586a55ed0aff2bd149bd2a5ad586177ba78814a7da8acb0640365bffaa5c39bb" 63 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-core.linux-arm64.tar.zst", 64 + "sha256": "a023f4d48fb4fbafa91aa3876d676f6ab3abd127fac2304e44685a2400d6d6d7" 65 65 }, 66 66 "images-flannel-linux-amd64-tar-gz": { 67 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-flannel.linux-amd64.tar.gz", 68 - "sha256": "6eaa3a7f058abd192eab13533cc47a47d4571eee3f6f688f1c316c8a62c1f9d8" 67 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-flannel.linux-amd64.tar.gz", 68 + "sha256": "33adefa0c3b50f149aaff7df57a8230b754a603f424169c1542ddfdbbe587120" 69 69 }, 70 70 "images-flannel-linux-amd64-tar-zst": { 71 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-flannel.linux-amd64.tar.zst", 72 - "sha256": "42e2f3ce038d7262afcea8c5603f59bd501653e6dcbcbf571e71c8637a85297a" 71 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-flannel.linux-amd64.tar.zst", 72 + "sha256": "a2225caa30236c096c65a0c5851e6589f0210fd67869ff28a44e27924473274a" 73 73 }, 74 74 "images-flannel-linux-arm64-tar-gz": { 75 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-flannel.linux-arm64.tar.gz", 76 - "sha256": "e2a9164923bec9998879224c74edf36fa14e6534cddb20220f399679c28348ef" 75 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-flannel.linux-arm64.tar.gz", 76 + "sha256": "20ac728e807a36f2e3f9b36208bb8ad9ef5919e2b8102b03bac08162b40cc777" 77 77 }, 78 78 "images-flannel-linux-arm64-tar-zst": { 79 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-flannel.linux-arm64.tar.zst", 80 - "sha256": "8b49d5670be6794813d70fbebf1b681d8d0661ada1cd15d74bf08d6302a85898" 79 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-flannel.linux-arm64.tar.zst", 80 + "sha256": "d10f1489a5e0a2e219c4b2f83405e98f28992771394ed462f5c9fe4185361b29" 81 81 }, 82 82 "images-harvester-linux-amd64-tar-gz": { 83 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-harvester.linux-amd64.tar.gz", 84 - "sha256": "5c0e2ab04cf30e6e862f88d75cc2c5130da68d893be723f91212b9b49caa2a60" 83 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-harvester.linux-amd64.tar.gz", 84 + "sha256": "5691cd67f3ac5f9335cacaabf94bf5ead3cf7816a46fbc6f2b14817236b7f38e" 85 85 }, 86 86 "images-harvester-linux-amd64-tar-zst": { 87 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-harvester.linux-amd64.tar.zst", 88 - "sha256": "787ae168c950c6d5a10296511fc4a54d819f4587a8ffaaccafd766ea5252cc4d" 87 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-harvester.linux-amd64.tar.zst", 88 + "sha256": "f174710df0079872230f0b69919679767005daad7858c34276ca1bed95c88eb4" 89 89 }, 90 90 "images-harvester-linux-arm64-tar-gz": { 91 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-harvester.linux-arm64.tar.gz", 92 - "sha256": "89d2713b0843eb9638f3d242fd3d8f6a4ceb35d83c62067940d8624025fbfc0f" 91 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-harvester.linux-arm64.tar.gz", 92 + "sha256": "6f916cb1315ca6e1985e2cd4cc9ea64d5ee667949d693c82c99b8bd242fa57aa" 93 93 }, 94 94 "images-harvester-linux-arm64-tar-zst": { 95 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-harvester.linux-arm64.tar.zst", 96 - "sha256": "64c2a373c19ed7fc0254e24ce8d9dae4ae21826fea9094b14ece90471706b753" 95 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-harvester.linux-arm64.tar.zst", 96 + "sha256": "56431730158442f0d78a18c1a481fc0fb2c482e677e296fd45c54a7b16587ae7" 97 97 }, 98 98 "images-multus-linux-amd64-tar-gz": { 99 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-multus.linux-amd64.tar.gz", 100 - "sha256": "20e1811dae1c233a836162b432540cb3e2f974aecf0d1b57bcf79d4b269a8531" 99 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-multus.linux-amd64.tar.gz", 100 + "sha256": "880e2ef4894556fedb072eb6b712aafe4a49043a5d32d25a909ccf27e34e544f" 101 101 }, 102 102 "images-multus-linux-amd64-tar-zst": { 103 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-multus.linux-amd64.tar.zst", 104 - "sha256": "025ded7faf603991975c4f17708b0887bffbc265aa5546e6df96ab625ebb65ac" 103 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-multus.linux-amd64.tar.zst", 104 + "sha256": "9fe435e7a1864204b30eb11b7df93c26db96cc818964b150857c8e064140c018" 105 105 }, 106 106 "images-multus-linux-arm64-tar-gz": { 107 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-multus.linux-arm64.tar.gz", 108 - "sha256": "e8919421560a548576eed90c9d442d84ce1a3cfab0739cd98c400f7ed17876d9" 107 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-multus.linux-arm64.tar.gz", 108 + "sha256": "334a1e74320d6784c3b3604c3eadc0639706bf974649f0394a46d0b395bbbd2f" 109 109 }, 110 110 "images-multus-linux-arm64-tar-zst": { 111 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-multus.linux-arm64.tar.zst", 112 - "sha256": "55bb64bd256ac9a185db583d4dd178a609cb8a047123dbae5aadf9b56183f99b" 111 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-multus.linux-arm64.tar.zst", 112 + "sha256": "b8d0c3e00bf59bb1f2207b520c0e52861d6b3b1f10b45d56151b4e5f7dc233ee" 113 113 }, 114 114 "images-traefik-linux-amd64-tar-gz": { 115 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-traefik.linux-amd64.tar.gz", 116 - "sha256": "c219b1c1fb311b2e0981c2c280e0e51e7b0e2081f5521ed0dedcc25aeaf701f4" 115 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-traefik.linux-amd64.tar.gz", 116 + "sha256": "a40db73b00ce9644e248a9f6f41c2815cf966540baf56da8c67b3014ccdc571f" 117 117 }, 118 118 "images-traefik-linux-amd64-tar-zst": { 119 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-traefik.linux-amd64.tar.zst", 120 - "sha256": "5118c0fe338141c154eca5386db49b40d55f29a07d77486e6f82117c433176ae" 119 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-traefik.linux-amd64.tar.zst", 120 + "sha256": "9cf68a34212c9f7b466927fd275bab277eb9d8e7c361228986658d2385050452" 121 121 }, 122 122 "images-traefik-linux-arm64-tar-gz": { 123 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-traefik.linux-arm64.tar.gz", 124 - "sha256": "0b618a0a48ffb91d61dc0f685dc1a0859ed7824c5ac315b7a62856cdd1282a83" 123 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-traefik.linux-arm64.tar.gz", 124 + "sha256": "f1d2b155a18d67f8ef4a643635f7727c2e2b686cd727582d387d288788b3740b" 125 125 }, 126 126 "images-traefik-linux-arm64-tar-zst": { 127 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-traefik.linux-arm64.tar.zst", 128 - "sha256": "24f90b544f5b962ca35333b9ae6bb3b1b5ce0bf0d270d006cad7c8c6ffa3f011" 127 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-traefik.linux-arm64.tar.zst", 128 + "sha256": "4555469992095c312d3de159779d69e4d6d407c4c97f3ae9e991cdd8de506816" 129 129 }, 130 130 "images-vsphere-linux-amd64-tar-gz": { 131 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.gz", 132 - "sha256": "93f668a01a753c40b72ba9936909bf49bc2c6c857bdb900eef22f237a2600d07" 131 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.gz", 132 + "sha256": "e1e22a0b222d9cbbb86f19d7eb6d7aca9991176fd4ab778c56c266d71e208507" 133 133 }, 134 134 "images-vsphere-linux-amd64-tar-zst": { 135 - "url": "https://github.com/rancher/rke2/releases/download/v1.30.10%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.zst", 136 - "sha256": "e68ff9127360537ef0f351741fbbd27b6fe927cf792a0a80c25a9a78f1aeeab1" 135 + "url": "https://github.com/rancher/rke2/releases/download/v1.30.11%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.zst", 136 + "sha256": "1627e7b87b5c69cb8697e7b157615ab9e1c8b1f4a6a31091ea68de39d275beb7" 137 137 } 138 138 }
+7 -7
pkgs/applications/networking/cluster/rke2/1_30/versions.nix
··· 1 1 { 2 - rke2Version = "1.30.10+rke2r1"; 3 - rke2Commit = "b83bb8e150236c43aa3d52d31523feb879d09911"; 4 - rke2TarballHash = "sha256-YpF2SBIH3GwWOtSIbIZb88Nd1GNUvOmbgeyNDKAo+qU="; 5 - rke2VendorHash = "sha256-aExBaQuqW2ZNCniHjur5OcvBogC4zofn5UNQS8gHSrA="; 6 - k8sImageTag = "v1.30.10-rke2r1-build20250213"; 7 - etcdVersion = "v3.5.18-k3s1-build20250210"; 2 + rke2Version = "1.30.11+rke2r1"; 3 + rke2Commit = "406a7f6db944b045d8d3ba871b2481b2ebb3f68f"; 4 + rke2TarballHash = "sha256-j3Pp+YYS3j0noJ7K1Ub2tNL5JfQyvVgYVck1TCvQq/w="; 5 + rke2VendorHash = "sha256-RiJd4OS0gPICHzcv5brsxwl6FPqlt+HXYWI4xlFXLNU="; 6 + k8sImageTag = "v1.30.11-rke2r1-build20250312"; 7 + etcdVersion = "v3.5.19-k3s1-build20250306"; 8 8 pauseVersion = "3.6"; 9 9 ccmVersion = "v1.30.6-0.20241016053533-5ec454f50e7a-build20241016"; 10 - dockerizedVersion = "v1.30.10-rke2r1"; 10 + dockerizedVersion = "v1.30.11-rke2r1"; 11 11 imagesVersions = with builtins; fromJSON (readFile ./images-versions.json); 12 12 }
+68 -68
pkgs/applications/networking/cluster/rke2/1_31/images-versions.json
··· 1 1 { 2 2 "images-calico-linux-amd64-tar-gz": { 3 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-calico.linux-amd64.tar.gz", 4 - "sha256": "5a3b85760345b131e733be993b5a7fff7b244095d04d1f3b09085167eda5ec48" 3 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-calico.linux-amd64.tar.gz", 4 + "sha256": "6c788fede718e2956300456d0ef613ed6580ed2c23676082abb2afb3684d46d0" 5 5 }, 6 6 "images-calico-linux-amd64-tar-zst": { 7 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-calico.linux-amd64.tar.zst", 8 - "sha256": "3c4b349c4c5dcf77d5c064ac7d8e7cd17b86575f1861d423f02f5e5dde4bab2a" 7 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-calico.linux-amd64.tar.zst", 8 + "sha256": "1ee8177930320a5e5d66a92d22ccff04afad0f096f255023ff927f3e950e94b8" 9 9 }, 10 10 "images-calico-linux-arm64-tar-gz": { 11 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-calico.linux-arm64.tar.gz", 12 - "sha256": "11db0d5a766421ffd11009f78444d42f20fca5ddc35654aaadcc32aae31f487b" 11 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-calico.linux-arm64.tar.gz", 12 + "sha256": "e6b2f7f8e21bd5a13058d60b63382227e3f79d721c25be162efca1a09de911cf" 13 13 }, 14 14 "images-calico-linux-arm64-tar-zst": { 15 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-calico.linux-arm64.tar.zst", 16 - "sha256": "d1570a698616ee0f9dc430e6374f299fc93b0b53da7b61f9b0e0e66562ddb001" 15 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-calico.linux-arm64.tar.zst", 16 + "sha256": "18be964446d39f08a492823fcb8c0d1a0a4c7c22f8f396ad701580cc9e8a78d3" 17 17 }, 18 18 "images-canal-linux-amd64-tar-gz": { 19 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-canal.linux-amd64.tar.gz", 20 - "sha256": "d26574208df6e8196066620c12854c73ec3f9d92ae927ba401447f54bbd9bf65" 19 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-canal.linux-amd64.tar.gz", 20 + "sha256": "979c17a92e20bf0f003182529a509b6ac705cd1b4f4d37a9241631d1ca94c711" 21 21 }, 22 22 "images-canal-linux-amd64-tar-zst": { 23 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-canal.linux-amd64.tar.zst", 24 - "sha256": "b5945ac08d74bcc67415efc1c293b2af119befe04f377880eb045ca7dcf4276c" 23 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-canal.linux-amd64.tar.zst", 24 + "sha256": "de92213addb8bd49a34a53ad60e740e6d34f728fb82c0e6bc8f0e71669c82b0c" 25 25 }, 26 26 "images-canal-linux-arm64-tar-gz": { 27 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-canal.linux-arm64.tar.gz", 28 - "sha256": "8a63fe4069c811d94004132afa16fb21b8ca1548eba075529ef3d812b682119a" 27 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-canal.linux-arm64.tar.gz", 28 + "sha256": "f3416d8358e466b6bacc7a9a540531a0d17f24e27a96c3d34ea1a4bb8a44a439" 29 29 }, 30 30 "images-canal-linux-arm64-tar-zst": { 31 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-canal.linux-arm64.tar.zst", 32 - "sha256": "8cbb92e40590b372cb1b962de2c2e8d6b92d26bd5d9b71aee577865587e46e56" 31 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-canal.linux-arm64.tar.zst", 32 + "sha256": "bb1342a2d11109f645ea42d98e26d9a916a98aa9935254b12f45eb4156708450" 33 33 }, 34 34 "images-cilium-linux-amd64-tar-gz": { 35 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-cilium.linux-amd64.tar.gz", 36 - "sha256": "f989d984753b166cffbfaec8866ec9b28ca852978de737f5195cd8da929fbd31" 35 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-cilium.linux-amd64.tar.gz", 36 + "sha256": "c62954631ad1b2f0bb266195f56fbb5f175a33cd8bd6ae1ab31f526bc6f435f6" 37 37 }, 38 38 "images-cilium-linux-amd64-tar-zst": { 39 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-cilium.linux-amd64.tar.zst", 40 - "sha256": "784b5817f5f8ab4226cbce3d074d467d397dd0ed0ed6397e4c1be0a327423f13" 39 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-cilium.linux-amd64.tar.zst", 40 + "sha256": "21b00f62e907a17896c32f115faa11e65f49e0bdc22cf589dd5e17880a1481cf" 41 41 }, 42 42 "images-cilium-linux-arm64-tar-gz": { 43 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-cilium.linux-arm64.tar.gz", 44 - "sha256": "b4dc7787e43d3148cd45f56ba2197469b9901e710a844b49024e7d675862f1d8" 43 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-cilium.linux-arm64.tar.gz", 44 + "sha256": "df0fb3a5dd341b7cc62a993fc22bf1e379761a9f50117d064322f61049df1506" 45 45 }, 46 46 "images-cilium-linux-arm64-tar-zst": { 47 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-cilium.linux-arm64.tar.zst", 48 - "sha256": "209d566b382c6c8af5ddfd2350228ec0669b341ce503ac001cc79928add3accd" 47 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-cilium.linux-arm64.tar.zst", 48 + "sha256": "aeba65039851a7454670d6645027fcd511f63302da67a07cec1067ac7ec9f070" 49 49 }, 50 50 "images-core-linux-amd64-tar-gz": { 51 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-core.linux-amd64.tar.gz", 52 - "sha256": "e8e687f3063cfdc7e6f93feffc0a2e63b90f3228c4f6c85532d4e1f436fbaeb7" 51 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-core.linux-amd64.tar.gz", 52 + "sha256": "47735438a076be0aa2db843d4af903395c0ca542e94b8ef4480fd401f756d596" 53 53 }, 54 54 "images-core-linux-amd64-tar-zst": { 55 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-core.linux-amd64.tar.zst", 56 - "sha256": "2faf4f9ee2e77b7db6963147d3685197f32f6af5b3dd2305221273bcfefa5af9" 55 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-core.linux-amd64.tar.zst", 56 + "sha256": "b622e068c6102b437b57ffd921b565e8c0edace396e468324263477bdeed54c0" 57 57 }, 58 58 "images-core-linux-arm64-tar-gz": { 59 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-core.linux-arm64.tar.gz", 60 - "sha256": "1d514169c112dd295a03f22ba35905edd0c550e0b09ef5191b9389bb7fd1a945" 59 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-core.linux-arm64.tar.gz", 60 + "sha256": "0e4ab1ff25eb8d3611180be0aef7c3b06294cfae81298dec69629335346d69f0" 61 61 }, 62 62 "images-core-linux-arm64-tar-zst": { 63 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-core.linux-arm64.tar.zst", 64 - "sha256": "b4e3cfe5f250dcdb1daa02002d4caf9349add11c4392df644c9fb16c5605ffd9" 63 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-core.linux-arm64.tar.zst", 64 + "sha256": "3d94593d3b6cc35f9e723cbfd1540cafb6842d1b7eb66c42785952746def1bc3" 65 65 }, 66 66 "images-flannel-linux-amd64-tar-gz": { 67 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-flannel.linux-amd64.tar.gz", 68 - "sha256": "1f069844a35857e264065c2e5f9157b1005fda3eb7dcffd20e2218f7ab64c250" 67 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-flannel.linux-amd64.tar.gz", 68 + "sha256": "6202ccfeaf210273c87ffcf0bb4ccd2832ba6b5f9ef7c0cb3bd38530d3f379cf" 69 69 }, 70 70 "images-flannel-linux-amd64-tar-zst": { 71 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-flannel.linux-amd64.tar.zst", 72 - "sha256": "1bd4e97a5391916cf703d8503d51f05c8db1fe5e130a718fe8fefb4cf8d95e4b" 71 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-flannel.linux-amd64.tar.zst", 72 + "sha256": "204d7d7855fa404cb93c1ed553934edd91876ddf4e8a793ed809be1ffe8a252c" 73 73 }, 74 74 "images-flannel-linux-arm64-tar-gz": { 75 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-flannel.linux-arm64.tar.gz", 76 - "sha256": "c49971bcc55765e3ac036f59cb6df5158efcb664d4fc5a3e0f7f40e962e5b153" 75 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-flannel.linux-arm64.tar.gz", 76 + "sha256": "72a377849fc0ecd84df2542b2420a18cf4aa1dfbe2e71a4855369bae8bdfc8ad" 77 77 }, 78 78 "images-flannel-linux-arm64-tar-zst": { 79 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-flannel.linux-arm64.tar.zst", 80 - "sha256": "9dc874dc452cd3c28cb313c70b1cbfb465195b4c308d893555b1fb8b20296756" 79 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-flannel.linux-arm64.tar.zst", 80 + "sha256": "eb4bee33ce6dc54c8e8d08e742cfc3f0c34c8774a3f1666fdf3ee01878beff69" 81 81 }, 82 82 "images-harvester-linux-amd64-tar-gz": { 83 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-harvester.linux-amd64.tar.gz", 84 - "sha256": "4837a8c559fca6e31436128040b99e90f3ab2210022f02a618405ccfc7185e7a" 83 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-harvester.linux-amd64.tar.gz", 84 + "sha256": "a15bea59d65068ee778557ee5a363e922d3165bda7de092d0ab67e16a21d0202" 85 85 }, 86 86 "images-harvester-linux-amd64-tar-zst": { 87 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-harvester.linux-amd64.tar.zst", 88 - "sha256": "a38aa37f2f8362055ef5dfa16a3c4d9f85eaed6e1b56b928bb4888c52e96b76f" 87 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-harvester.linux-amd64.tar.zst", 88 + "sha256": "eee0abfc075c7666c4b736a9cf613652fe8b0cc51c663c1e857219a85ea8f411" 89 89 }, 90 90 "images-harvester-linux-arm64-tar-gz": { 91 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-harvester.linux-arm64.tar.gz", 92 - "sha256": "beea6e39cc1f522b59de42598a8431ee006292bb6568cb8a0b46ed614225264d" 91 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-harvester.linux-arm64.tar.gz", 92 + "sha256": "54dee049476dc85087931639ade92d40ca56268bd7e5ddf75d6864ffb654b081" 93 93 }, 94 94 "images-harvester-linux-arm64-tar-zst": { 95 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-harvester.linux-arm64.tar.zst", 96 - "sha256": "cf7f030fd86fcc2425a7a7819c523f6497eae59066fab04a56d8f1cf01c7aac2" 95 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-harvester.linux-arm64.tar.zst", 96 + "sha256": "81fca62544f6bbd3f38b3db704f9136099e3291adae51f2adf050b4516e75a43" 97 97 }, 98 98 "images-multus-linux-amd64-tar-gz": { 99 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-multus.linux-amd64.tar.gz", 100 - "sha256": "d473aee06f24d49d1d6b6baee9bfd2079036ef40c0cda126a83851078b0f7e40" 99 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-multus.linux-amd64.tar.gz", 100 + "sha256": "2fb7b1c3aabf06b976b66964c51abb48a81610de88cfa1bc35363c8051c53251" 101 101 }, 102 102 "images-multus-linux-amd64-tar-zst": { 103 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-multus.linux-amd64.tar.zst", 104 - "sha256": "18957569b6a5fa5aab5fd4dc180fec8b403cae2c07ee07b18505a5f6901d5e5b" 103 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-multus.linux-amd64.tar.zst", 104 + "sha256": "92e0f1d15116012f7e3582f49dcd1c405e02f3b701b96c7b9cd185b78802583d" 105 105 }, 106 106 "images-multus-linux-arm64-tar-gz": { 107 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-multus.linux-arm64.tar.gz", 108 - "sha256": "b5acbce9e9ccd2213807bd27896a6d6b29795dd2f55e5b2281a77dfa41366a60" 107 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-multus.linux-arm64.tar.gz", 108 + "sha256": "00e14b3c69e1238ba748ff780920d8250a14f370f1784687dd0a1c7f4cc45cd2" 109 109 }, 110 110 "images-multus-linux-arm64-tar-zst": { 111 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-multus.linux-arm64.tar.zst", 112 - "sha256": "eb7ea1b45d01cab215a1bba7bfc223ed03c16d1383a5e0df141e5ecee9708def" 111 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-multus.linux-arm64.tar.zst", 112 + "sha256": "379744d9011a9090ad950fae557770751b1f0c9927fb8a9a0a4c7aa0d937ce62" 113 113 }, 114 114 "images-traefik-linux-amd64-tar-gz": { 115 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-traefik.linux-amd64.tar.gz", 116 - "sha256": "2b29e30e1daac4277da7f6a27ad021e0380a4585278d7e8440b38b2e1207ee68" 115 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-traefik.linux-amd64.tar.gz", 116 + "sha256": "84baaa5cab336e8d160d1118eb8b9a17dd486d9f62ccffee7ff483d8ecc57b2c" 117 117 }, 118 118 "images-traefik-linux-amd64-tar-zst": { 119 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-traefik.linux-amd64.tar.zst", 120 - "sha256": "70147f487109bd7e4db5b525a8a2a01030f3a6e985e4ce06e8c28dd98e6ff131" 119 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-traefik.linux-amd64.tar.zst", 120 + "sha256": "a976b4ec4d6670ad644dcea521dff5ba0acac5adb4cc5d382575f563a9cda133" 121 121 }, 122 122 "images-traefik-linux-arm64-tar-gz": { 123 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-traefik.linux-arm64.tar.gz", 124 - "sha256": "15c03df525be312caac8431bfb9d0a3842834b25faf0551bc8e185337d623522" 123 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-traefik.linux-arm64.tar.gz", 124 + "sha256": "7d8e0df702e0cf70cc043e193cc333a6d7751cc6181e8461f79e740ff64b1650" 125 125 }, 126 126 "images-traefik-linux-arm64-tar-zst": { 127 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-traefik.linux-arm64.tar.zst", 128 - "sha256": "4b53b94f2dbdc142987718dff210d381cb6d38ad01846278654d77ec1f6f44f0" 127 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-traefik.linux-arm64.tar.zst", 128 + "sha256": "01de699c30c0de147129610f879928d4a395b226191e5e18522b2fe2ae788d38" 129 129 }, 130 130 "images-vsphere-linux-amd64-tar-gz": { 131 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.gz", 132 - "sha256": "169828a17efdd4a14682c49c0bed437bcec6cde27378d985e15ecbfdfa1523e4" 131 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.gz", 132 + "sha256": "57278b09ea6bc4d5ca0c159110c26ff45c07da8f4782183e435df5dab37f2717" 133 133 }, 134 134 "images-vsphere-linux-amd64-tar-zst": { 135 - "url": "https://github.com/rancher/rke2/releases/download/v1.31.6%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.zst", 136 - "sha256": "4f7663357f47f696eaf2de34d980ba3aebaa8e42de635e17736ae1ef6c58629c" 135 + "url": "https://github.com/rancher/rke2/releases/download/v1.31.7%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.zst", 136 + "sha256": "889c1d37331c2543e07ef0b8ccf6c2391c48e5c3cff340b63dff5ab3da197cf9" 137 137 } 138 138 }
+7 -7
pkgs/applications/networking/cluster/rke2/1_31/versions.nix
··· 1 1 { 2 - rke2Version = "1.31.6+rke2r1"; 3 - rke2Commit = "f75cdf813703af4bc224b91bfb3c48d10aeb9fd0"; 4 - rke2TarballHash = "sha256-6HMF3EngR2S8LTpMq4b3B1ZUiBUJO8D3fhwaNMuAuPc="; 5 - rke2VendorHash = "sha256-ug1dO4t/QfPpg3mobCIJWb8/MERUoP9tEMlKRKZigXo="; 6 - k8sImageTag = "v1.31.6-rke2r1-build20250213"; 7 - etcdVersion = "v3.5.18-k3s1-build20250210"; 2 + rke2Version = "1.31.7+rke2r1"; 3 + rke2Commit = "7b18bda1c5ec1e110cec206f9163f6aba3a2154d"; 4 + rke2TarballHash = "sha256-u7U5eGLTrm1mxatl3v4iCBzw/Rin8wlndSs/OKLWtiw="; 5 + rke2VendorHash = "sha256-UiFpAZHic2GVvdW4RDJxH2j5N2x8ec43YFfvBDR4fyM="; 6 + k8sImageTag = "v1.31.7-rke2r1-build20250312"; 7 + etcdVersion = "v3.5.19-k3s1-build20250306"; 8 8 pauseVersion = "3.6"; 9 9 ccmVersion = "v1.31.2-0.20241016053446-0955fa330f90-build20241016"; 10 - dockerizedVersion = "v1.31.6-rke2r1"; 10 + dockerizedVersion = "v1.31.7-rke2r1"; 11 11 imagesVersions = with builtins; fromJSON (readFile ./images-versions.json); 12 12 }
+68 -68
pkgs/applications/networking/cluster/rke2/1_32/images-versions.json
··· 1 1 { 2 2 "images-calico-linux-amd64-tar-gz": { 3 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-calico.linux-amd64.tar.gz", 4 - "sha256": "a5bbae876483eac841d0c86d07b9a2f681d14ceba49127d86f206c60416dea02" 3 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-calico.linux-amd64.tar.gz", 4 + "sha256": "366067329c363a39a6be97d4c656e99c0635ec6405ee3b646edb5cc8293b112c" 5 5 }, 6 6 "images-calico-linux-amd64-tar-zst": { 7 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-calico.linux-amd64.tar.zst", 8 - "sha256": "f5bb26e2d2c755b19459af960c5e06f45771f95c257aa40aa206d65712664784" 7 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-calico.linux-amd64.tar.zst", 8 + "sha256": "7414bd697172e552ab5e9e03c372bda45175830e342894cd9e563f7a97e00b83" 9 9 }, 10 10 "images-calico-linux-arm64-tar-gz": { 11 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-calico.linux-arm64.tar.gz", 12 - "sha256": "8a1854a27c1269628a2318ef9b200f861a3a9b390948ac50340d1fa2c338c22d" 11 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-calico.linux-arm64.tar.gz", 12 + "sha256": "382befa013b6c54f3f71da9e605f0e43424571d8fb46345f01d14e0839ea8fee" 13 13 }, 14 14 "images-calico-linux-arm64-tar-zst": { 15 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-calico.linux-arm64.tar.zst", 16 - "sha256": "844d7ed5be7525971de7612980a49f0c326be638dbd59146bf22d02b65687ac6" 15 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-calico.linux-arm64.tar.zst", 16 + "sha256": "19456c1a101869d52cdf80e90511f37819dc6e689ef3866cef5a2bcb5dae7b02" 17 17 }, 18 18 "images-canal-linux-amd64-tar-gz": { 19 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-canal.linux-amd64.tar.gz", 20 - "sha256": "052ffd11c271daf158361d6b2ad99b8c2a7b30d110e6530b3db1d08a809861b9" 19 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-canal.linux-amd64.tar.gz", 20 + "sha256": "a40740b169ba7aec34429468514020474a42572bed528f5e1116489d82959055" 21 21 }, 22 22 "images-canal-linux-amd64-tar-zst": { 23 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-canal.linux-amd64.tar.zst", 24 - "sha256": "c4f2434302fa287e13385d3c7f50ec0b3f9989cf8a16a70f5d0c85232570371a" 23 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-canal.linux-amd64.tar.zst", 24 + "sha256": "7d7326ccd8fc25005817768fba012e90afc16c7e017931b1305a5545fe3dfad4" 25 25 }, 26 26 "images-canal-linux-arm64-tar-gz": { 27 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-canal.linux-arm64.tar.gz", 28 - "sha256": "433d22412cdeadaf3dad899517af66aaf2167c096c95ef2462b0b2ed74bbd036" 27 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-canal.linux-arm64.tar.gz", 28 + "sha256": "cc4d0f98a24b073927f400baeb6f48465800a95922d9e0a35dd3a2431d3032ca" 29 29 }, 30 30 "images-canal-linux-arm64-tar-zst": { 31 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-canal.linux-arm64.tar.zst", 32 - "sha256": "445cd57b28cc69f487e95698c84c4339729a5a6f11fd36d57b37cc3ef49d11ab" 31 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-canal.linux-arm64.tar.zst", 32 + "sha256": "75f217b08f716c37e9ae7f44cfd089a055481e9c949e4086496bee4b49c06fc9" 33 33 }, 34 34 "images-cilium-linux-amd64-tar-gz": { 35 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-cilium.linux-amd64.tar.gz", 36 - "sha256": "e6facccbc711757982f5b625427e04e286671a14be7fed13647d7ce59fdd6f5b" 35 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-cilium.linux-amd64.tar.gz", 36 + "sha256": "d0a8c10104ef59304914400d6a1b8db34677277fb36514736a966662ea5398a0" 37 37 }, 38 38 "images-cilium-linux-amd64-tar-zst": { 39 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-cilium.linux-amd64.tar.zst", 40 - "sha256": "745216763991e712800edb5f04ba0a3a647a73e5076d28237cd44064da0254e8" 39 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-cilium.linux-amd64.tar.zst", 40 + "sha256": "f65f708ef3c5cca7db10e15981c1151c419ed8685d978b988d73773baae68a48" 41 41 }, 42 42 "images-cilium-linux-arm64-tar-gz": { 43 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-cilium.linux-arm64.tar.gz", 44 - "sha256": "3ab86ac3c021681ee1cb10d0d7bb4dd05f96830ea84e8bfdd1d5c239e1c1db00" 43 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-cilium.linux-arm64.tar.gz", 44 + "sha256": "b53ec98e53a5777f72317abdd4babd9f6b28e42e3e85598cdd464d5527034f64" 45 45 }, 46 46 "images-cilium-linux-arm64-tar-zst": { 47 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-cilium.linux-arm64.tar.zst", 48 - "sha256": "b160d69f45818dbc8526aa92784c935c471863d9d6ad5f83a434419cee0d1dd1" 47 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-cilium.linux-arm64.tar.zst", 48 + "sha256": "3c9e19a1dc354fbf0d9ec069696acd7948b132b68f426c9a3e0fd4e1a01d2fdf" 49 49 }, 50 50 "images-core-linux-amd64-tar-gz": { 51 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-core.linux-amd64.tar.gz", 52 - "sha256": "5da5bc70814ae25f55e75d194d3e56eed9d48d2e2bd50cce329f72a8658a2c71" 51 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-core.linux-amd64.tar.gz", 52 + "sha256": "e8153376693e466de9601d732487187eea8a1512d11c5a42775f042f940ff791" 53 53 }, 54 54 "images-core-linux-amd64-tar-zst": { 55 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-core.linux-amd64.tar.zst", 56 - "sha256": "9542793ad13822d02bc5b3aef237c21cb8ea807cde8c1f7edd50c9c8de3257a1" 55 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-core.linux-amd64.tar.zst", 56 + "sha256": "824f2b42e9c67828df7c33d98d518f6d77ecaae82cd7a33a2788b55b54d83a85" 57 57 }, 58 58 "images-core-linux-arm64-tar-gz": { 59 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-core.linux-arm64.tar.gz", 60 - "sha256": "b48c79e0e68d7c8ae3dd52f6647f4f859eb0a81e4cb81ca98a08788a3eeb208c" 59 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-core.linux-arm64.tar.gz", 60 + "sha256": "d10a37ec1573cfd7bb5e201a7e54a2dac66591de7d5b81062d9a75443ab19d8f" 61 61 }, 62 62 "images-core-linux-arm64-tar-zst": { 63 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-core.linux-arm64.tar.zst", 64 - "sha256": "97ebc6e37d73d2fefbd861ae9e44a97c649c5876def02fa0e99b136e4cc43834" 63 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-core.linux-arm64.tar.zst", 64 + "sha256": "b9305118151cefe643c248a314c73e5e89c98cc7d48c072a1e3f8dc0dc45c9b9" 65 65 }, 66 66 "images-flannel-linux-amd64-tar-gz": { 67 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-flannel.linux-amd64.tar.gz", 68 - "sha256": "cebc30d3648804c8f6a57de63b7a8c6dd131e2338e4c7e40bb4a3a4ec9962033" 67 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-flannel.linux-amd64.tar.gz", 68 + "sha256": "5d9721ceb39d454315857b04e73494614f53313ccbfc450da504149336040857" 69 69 }, 70 70 "images-flannel-linux-amd64-tar-zst": { 71 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-flannel.linux-amd64.tar.zst", 72 - "sha256": "2caa2ba283f683070cedfbcef4058a0172541c0675d2582cffc09a8ab97c3af8" 71 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-flannel.linux-amd64.tar.zst", 72 + "sha256": "972f09eee4d3b235196eb2e5ffb113e575c0e9b3f708b18c9c4e7dad9be13847" 73 73 }, 74 74 "images-flannel-linux-arm64-tar-gz": { 75 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-flannel.linux-arm64.tar.gz", 76 - "sha256": "cbbbadf33bb38b22340db52c7f72e2685ad20f64f27a31eb3c90ae2575ac676d" 75 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-flannel.linux-arm64.tar.gz", 76 + "sha256": "8d8240574c418cdfeec98f217b1fe265c28fea70b9cb8eb6d14b82aa29f368c3" 77 77 }, 78 78 "images-flannel-linux-arm64-tar-zst": { 79 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-flannel.linux-arm64.tar.zst", 80 - "sha256": "db13267b1bf8d27003f6056cea683e34af4ff3743d05de7f84bfb089cc2e28ad" 79 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-flannel.linux-arm64.tar.zst", 80 + "sha256": "5aa010ddd7213341050662e59bfeb1264fd8c5a73ff05119926e95a81fc11055" 81 81 }, 82 82 "images-harvester-linux-amd64-tar-gz": { 83 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-harvester.linux-amd64.tar.gz", 84 - "sha256": "b54b4ba783469334a492fdb4f2cfb68ce4a57a7f700d27d060d11213bb026a33" 83 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-harvester.linux-amd64.tar.gz", 84 + "sha256": "64dc08e0cfd53a6c1629360b1b61800c79df5bb73e5c0d338b7b295c768f59dd" 85 85 }, 86 86 "images-harvester-linux-amd64-tar-zst": { 87 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-harvester.linux-amd64.tar.zst", 88 - "sha256": "68e232d40c9ddb67ce17181e48e8accd6be6b55ee01d78937100ce3faf3f7042" 87 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-harvester.linux-amd64.tar.zst", 88 + "sha256": "6bec961937ddb448e23f2296f19031892ea1511e84f4e55618a223c17d30e41c" 89 89 }, 90 90 "images-harvester-linux-arm64-tar-gz": { 91 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-harvester.linux-arm64.tar.gz", 92 - "sha256": "3847f03a2351ed9182ae52b0b03f8cf7705123b301f1cc4d7da01cfd2359f743" 91 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-harvester.linux-arm64.tar.gz", 92 + "sha256": "cfe1da61b27791b3e539054481caae1348879beb9b8c136d2454efc251772805" 93 93 }, 94 94 "images-harvester-linux-arm64-tar-zst": { 95 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-harvester.linux-arm64.tar.zst", 96 - "sha256": "abdae17a19b8da8aeda83e434052c86e4be24bb37dc64c696e42ed59dac9d3c9" 95 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-harvester.linux-arm64.tar.zst", 96 + "sha256": "c7b660e9fd0a5f9b72e8bee2046fa56fa96c6619c188ecb5dd6960f7b9e6fcfb" 97 97 }, 98 98 "images-multus-linux-amd64-tar-gz": { 99 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-multus.linux-amd64.tar.gz", 100 - "sha256": "712ff37f4ea472c485fa887ab6b60df441ebda40c7b6bc66c28433b52f69a0d9" 99 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-multus.linux-amd64.tar.gz", 100 + "sha256": "3479003417146e9759e12e6182ba89f65049d0cdcf2f8243568f353be8b133ea" 101 101 }, 102 102 "images-multus-linux-amd64-tar-zst": { 103 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-multus.linux-amd64.tar.zst", 104 - "sha256": "e556ae1d1db3923e57a050da3a9176fa9e7c3a0378229f7dd7a1c34145e8b96e" 103 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-multus.linux-amd64.tar.zst", 104 + "sha256": "773a93fbc333911be9e1d090c4fb2d955cf97d271465038725f999aef3349338" 105 105 }, 106 106 "images-multus-linux-arm64-tar-gz": { 107 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-multus.linux-arm64.tar.gz", 108 - "sha256": "0308c83ee9f8affa237cc7b528639558e18b9fdbf5a914220f1c1818654c5874" 107 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-multus.linux-arm64.tar.gz", 108 + "sha256": "0bdd2f1d4a50bd5d4f467864d78eaf9949b3959c307723810e0fdfb552dc42ae" 109 109 }, 110 110 "images-multus-linux-arm64-tar-zst": { 111 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-multus.linux-arm64.tar.zst", 112 - "sha256": "d420a305e3d5b95f05da90177484df38b7178381acdb0806bd17aa2612a26583" 111 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-multus.linux-arm64.tar.zst", 112 + "sha256": "279e47d00d114af8ac80dd0fab3723414bd2623939edc4ea57c39a8dab8146b6" 113 113 }, 114 114 "images-traefik-linux-amd64-tar-gz": { 115 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-traefik.linux-amd64.tar.gz", 116 - "sha256": "39f6f02a012e24237b8ed0106d83f6248f133a6d83feaca2aaf4c692b31edd94" 115 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-traefik.linux-amd64.tar.gz", 116 + "sha256": "5e0823cfa2dd98005fabfbfc299e453e01f4d2202ddba88df1281dfee2c03673" 117 117 }, 118 118 "images-traefik-linux-amd64-tar-zst": { 119 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-traefik.linux-amd64.tar.zst", 120 - "sha256": "8608cd8d01fd2ad00fcc28bf7a9a54e89f96b2d0efe45ea6ce940fefc22ba36e" 119 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-traefik.linux-amd64.tar.zst", 120 + "sha256": "58c2b4fa7c51e5ed3794fcc44b719b071be0c3909c43eee3262447309da5d631" 121 121 }, 122 122 "images-traefik-linux-arm64-tar-gz": { 123 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-traefik.linux-arm64.tar.gz", 124 - "sha256": "3a47c3207fcf3e670f8b58262aecb777d63a56f744feb3b99612d86516f63f90" 123 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-traefik.linux-arm64.tar.gz", 124 + "sha256": "5a8bce4b36d32cf3379aced5097c7a518af155a61d382af79d46548f9c3e50cd" 125 125 }, 126 126 "images-traefik-linux-arm64-tar-zst": { 127 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-traefik.linux-arm64.tar.zst", 128 - "sha256": "afd2e4c6066fcbbde4d7cb2245cdc18542b9f510e8908c4ffe07181a459d6703" 127 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-traefik.linux-arm64.tar.zst", 128 + "sha256": "c6c6138940350e1cc1e5031fd509956a66f6b3615020a25082489af4c7c0ee5e" 129 129 }, 130 130 "images-vsphere-linux-amd64-tar-gz": { 131 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.gz", 132 - "sha256": "5c5531032ded256f0834169fe4db65e698ef4b44a76128b9aec174d8cc24d6e0" 131 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.gz", 132 + "sha256": "ed78e035f96b518e5b4fac85183855c61b969af542c7d0670b1847dd36c8cf6d" 133 133 }, 134 134 "images-vsphere-linux-amd64-tar-zst": { 135 - "url": "https://github.com/rancher/rke2/releases/download/v1.32.2%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.zst", 136 - "sha256": "5f38ba2a8060f82ee407edb77433afb53635798f1be6f1fa53fbe9921c2eb3a0" 135 + "url": "https://github.com/rancher/rke2/releases/download/v1.32.3%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.zst", 136 + "sha256": "020908204aeb40e64bd7b28281be2c7bb70d2c37d9ecbdbe2d5c01e4e52f77a5" 137 137 } 138 138 }
+7 -7
pkgs/applications/networking/cluster/rke2/1_32/versions.nix
··· 1 1 { 2 - rke2Version = "1.32.2+rke2r1"; 3 - rke2Commit = "8a5c3a23c25cc9b423a303be5f4f1c0e8b885726"; 4 - rke2TarballHash = "sha256-9sNlOkzPCTqHSqaphuSUsfRpS39QYcTDHgjMuYdircc="; 5 - rke2VendorHash = "sha256-fECmrfLayXRhACH7YkuIAUVFqSyPpy/JZb2ZPvITfqQ="; 6 - k8sImageTag = "v1.32.2-rke2r1-build20250213"; 7 - etcdVersion = "v3.5.18-k3s1-build20250210"; 2 + rke2Version = "1.32.3+rke2r1"; 3 + rke2Commit = "18005e93ee0b015b78be47cf6515ae6d3a9afd55"; 4 + rke2TarballHash = "sha256-rDqSq38WoNN+9dMPTg/iteqkfX/pnlRtzt1HmhkAbRI="; 5 + rke2VendorHash = "sha256-GwwNXW4JmhvO47V9SysOiKTfK2z55PkWpTDUE2qJgpA="; 6 + k8sImageTag = "v1.32.3-rke2r1-build20250312"; 7 + etcdVersion = "v3.5.19-k3s1-build20250306"; 8 8 pauseVersion = "3.6"; 9 9 ccmVersion = "v1.32.0-rc3.0.20241220224140-68fbd1a6b543-build20250101"; 10 - dockerizedVersion = "v1.32.2-rke2r1"; 10 + dockerizedVersion = "v1.32.3-rke2r1"; 11 11 imagesVersions = with builtins; fromJSON (readFile ./images-versions.json); 12 12 }
+22 -22
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 135 135 "vendorHash": null 136 136 }, 137 137 "azurerm": { 138 - "hash": "sha256-RyFHg/YG+8dDTRxHN8vI3NRCkrupENViPC0lrsZNo1o=", 138 + "hash": "sha256-wM/oWLOAB6EhtUVTP+gHn+hpqhrISAsd31ili2hmLyQ=", 139 139 "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", 140 140 "owner": "hashicorp", 141 141 "repo": "terraform-provider-azurerm", 142 - "rev": "v4.23.0", 142 + "rev": "v4.24.0", 143 143 "spdx": "MPL-2.0", 144 144 "vendorHash": null 145 145 }, ··· 180 180 "vendorHash": "sha256-iNY6Jz/SKOLynx33smDFbg371Wa31CouNtrOuV7lkcw=" 181 181 }, 182 182 "bitwarden": { 183 - "hash": "sha256-HcKdVhI/DWx7idWsTVzHSLwKrJV0Q4dC7EdFPjZEa1c=", 183 + "hash": "sha256-fUmwIfRiLpbhENPZwc9CWZsIugppfc68qGR1Iy1UyBE=", 184 184 "homepage": "https://registry.terraform.io/providers/maxlaverse/bitwarden", 185 185 "owner": "maxlaverse", 186 186 "repo": "terraform-provider-bitwarden", 187 - "rev": "v0.13.4", 187 + "rev": "v0.13.5", 188 188 "spdx": "MPL-2.0", 189 189 "vendorHash": "sha256-oO9+r/CSVSsD+xnJrAhNReWQjUNnHl6qCkoAQfD/VOg=" 190 190 }, ··· 198 198 "vendorHash": "sha256-/dOiXO2aPkuZaFiwv/6AXJdIADgx8T7eOwvJfBBoqg8=" 199 199 }, 200 200 "btp": { 201 - "hash": "sha256-mLW7PD7vtDecg4oN9KEB+fbFo7STGw7ftIH50VHtuRs=", 201 + "hash": "sha256-fny/kOPCJFySYPJwKpU5eCB6IClBE4KIjZoHpQplZHA=", 202 202 "homepage": "https://registry.terraform.io/providers/SAP/btp", 203 203 "owner": "SAP", 204 204 "repo": "terraform-provider-btp", 205 - "rev": "v1.10.0", 205 + "rev": "v1.11.0", 206 206 "spdx": "Apache-2.0", 207 - "vendorHash": "sha256-qFOfE4yWJfdPtGiGbk+oWzA06QvW0WCd6iUqEMTxBBk=" 207 + "vendorHash": "sha256-DUc06D22wqYG/O27NkOxJ2bu+dwirReAq9Y6p135ICY=" 208 208 }, 209 209 "buildkite": { 210 210 "hash": "sha256-Zlc82lncNf+jeYBck8QBJKuX4pmQmkkb4vYR+T8DoXU=", ··· 498 498 "vendorHash": null 499 499 }, 500 500 "gitlab": { 501 - "hash": "sha256-hl4IWZ2TdVaPze6jiFnokGSwFNYbQhNtVR+MTvFoc08=", 501 + "hash": "sha256-1TN37PZR2skkmKhRbv1Z1Kv45G9b8WQz9yDK14fs1TI=", 502 502 "homepage": "https://registry.terraform.io/providers/gitlabhq/gitlab", 503 503 "owner": "gitlabhq", 504 504 "repo": "terraform-provider-gitlab", 505 - "rev": "v17.9.0", 505 + "rev": "v17.10.0", 506 506 "spdx": "MPL-2.0", 507 - "vendorHash": "sha256-VPJ0ekrGEzhIZ6ExrU5sLb2meFHT9cak53BO7z6BCC4=" 507 + "vendorHash": "sha256-1KTU8nMYUfC+LJHFeIpK6m4RUPWvSHNSXGVJgcnsVl8=" 508 508 }, 509 509 "google": { 510 510 "hash": "sha256-9xieQT5yY1h52/tksEmX9iYXtDjYxkSL/pvC2XPXN/4=", ··· 732 732 "vendorHash": "sha256-slDHNiH5CTfzzj1y2BOt8JuL2iBS1irSZBIiP/4QDLE=" 733 733 }, 734 734 "launchdarkly": { 735 - "hash": "sha256-3Yiq/20qW1Emi3e9vqpyt/N/ZlN9sGzeI0W4c8zYAzA=", 735 + "hash": "sha256-Gr0E150u2NvAJ6QR+KrxwM19nuhevDXnPVS12MPP8fI=", 736 736 "homepage": "https://registry.terraform.io/providers/launchdarkly/launchdarkly", 737 737 "owner": "launchdarkly", 738 738 "repo": "terraform-provider-launchdarkly", 739 - "rev": "v2.24.0", 739 + "rev": "v2.25.0", 740 740 "spdx": "MPL-2.0", 741 - "vendorHash": "sha256-6lcLNoD/CNYpmwHuRsUCPoSii5ZXAlAjWSXVk9i0izU=" 741 + "vendorHash": "sha256-UngIdL0pIFljzX39k3ObVnE0MG1NWM3vKIyKgqClEXk=" 742 742 }, 743 743 "libvirt": { 744 744 "hash": "sha256-6wG6J6SQGxR74gbGZlW5/8zgIqsBUo0Xg/gN0wNppSg=", ··· 858 858 "vendorHash": null 859 859 }, 860 860 "newrelic": { 861 - "hash": "sha256-J+p9Ra1qi5BdoHdAnRfPtZQA+q/OXskhRm0i4he6eCg=", 861 + "hash": "sha256-KQqCckDXsxQrmRptttV9f7tSHBmKWE14aIppcR2dJrQ=", 862 862 "homepage": "https://registry.terraform.io/providers/newrelic/newrelic", 863 863 "owner": "newrelic", 864 864 "repo": "terraform-provider-newrelic", 865 - "rev": "v3.58.1", 865 + "rev": "v3.59.0", 866 866 "spdx": "MPL-2.0", 867 867 "vendorHash": "sha256-ZZtfVgxp7YXNRXpeUisLzweQhHzgYOuQDAp1MsxAVhg=" 868 868 }, ··· 913 913 "vendorHash": "sha256-LRIfxQGwG988HE5fftGl6JmBG7tTknvmgpm4Fu1NbWI=" 914 914 }, 915 915 "oci": { 916 - "hash": "sha256-N/KOGNBIX3eR2Pf5RnG5R6pgtIRKFT7JsvTEWF/VVH0=", 916 + "hash": "sha256-/tgZFUzJqBNTxJzmhcs9YyB55DNwC3oFr9nVyHsFGW4=", 917 917 "homepage": "https://registry.terraform.io/providers/oracle/oci", 918 918 "owner": "oracle", 919 919 "repo": "terraform-provider-oci", 920 - "rev": "v6.30.0", 920 + "rev": "v6.31.0", 921 921 "spdx": "MPL-2.0", 922 922 "vendorHash": null 923 923 }, ··· 1147 1147 "vendorHash": null 1148 1148 }, 1149 1149 "selectel": { 1150 - "hash": "sha256-iKli9pnotm388vUoLbAfBFz2MDpbWbfayOl2Cvm7qWU=", 1150 + "hash": "sha256-Raq7Yaa4yHqpR4JhvITN9Pf0mVvRSwWkpVsYXcHGCvo=", 1151 1151 "homepage": "https://registry.terraform.io/providers/selectel/selectel", 1152 1152 "owner": "selectel", 1153 1153 "repo": "terraform-provider-selectel", 1154 - "rev": "v6.3.0", 1154 + "rev": "v6.4.0", 1155 1155 "spdx": "MPL-2.0", 1156 - "vendorHash": "sha256-rfUNYAVt4eBKfZt5p26gNAi/2Lo+sH6a60rBwkTTwek=" 1156 + "vendorHash": "sha256-kCVJEIR+3DAOoDzqv1Dd2JUPmEpO3sGHcjbEbMZT4BM=" 1157 1157 }, 1158 1158 "sentry": { 1159 1159 "hash": "sha256-2JfzteVripOz96bAtQXC32wi8dWUQw8bry0HllNRQRA=", ··· 1174 1174 "vendorHash": "sha256-MIO0VHofPtKPtynbvjvEukMNr5NXHgk7BqwIhbc9+u0=" 1175 1175 }, 1176 1176 "signalfx": { 1177 - "hash": "sha256-C9QDCkyJ3zkkxSvc4W2tVzcYVpxUbfbShDhpy2+LuhY=", 1177 + "hash": "sha256-niwn969Bpw4NqNUCLf665b4W+NBKLwwwZWYWLA/4KXQ=", 1178 1178 "homepage": "https://registry.terraform.io/providers/splunk-terraform/signalfx", 1179 1179 "owner": "splunk-terraform", 1180 1180 "repo": "terraform-provider-signalfx", 1181 - "rev": "v9.8.0", 1181 + "rev": "v9.9.0", 1182 1182 "spdx": "MPL-2.0", 1183 1183 "vendorHash": "sha256-UCElzCPBGdl5IWCuN8g6BAzZnGfdVKSllH6pbVe1Aw8=" 1184 1184 },
+3 -3
pkgs/applications/office/libreoffice/darwin/default.nix
··· 9 9 let 10 10 appName = "LibreOffice.app"; 11 11 scriptName = "soffice"; 12 - version = "7.6.7"; 12 + version = "25.2.1"; 13 13 14 14 dist = { 15 15 aarch64-darwin = rec { 16 16 arch = "aarch64"; 17 17 archSuffix = arch; 18 18 url = "https://download.documentfoundation.org/libreoffice/stable/${version}/mac/${arch}/LibreOffice_${version}_MacOS_${archSuffix}.dmg"; 19 - sha256 = "17686aff42734ea4feef08e1189bab3011220000f7784061314c1ae9e5942531"; 19 + sha256 = "d0f8573dfc5d1a858061a9bc7889313cb6837db8a8f1b568d067ca156c03745e"; 20 20 }; 21 21 22 22 x86_64-darwin = rec { 23 23 arch = "x86_64"; 24 24 archSuffix = "x86-64"; 25 25 url = "https://download.documentfoundation.org/libreoffice/stable/${version}/mac/${arch}/LibreOffice_${version}_MacOS_${archSuffix}.dmg"; 26 - sha256 = "42d2eeaeee7bcb0e76e9decdcb8f5a4beebf133ad31f7d42a5e96ea770860110"; 26 + sha256 = "88746b5e46a72ae964ed2275399ee0fb2a0712f6d93a30b151358ffa0ea8349a"; 27 27 }; 28 28 }; 29 29 in
+6 -6
pkgs/applications/version-management/gitlab/data.json
··· 1 1 { 2 - "version": "17.9.2", 3 - "repo_hash": "08gkn3j4v75azb0fahlf4i8vllm5c26537li6vx0yir8ri249xzl", 2 + "version": "17.9.3", 3 + "repo_hash": "1g6j3yrb0hslz2p9fnby0801dn0nyi2mh6gygzkmrh5kj15vjbgd", 4 4 "yarn_hash": "1bvv79jr6d9p33h81mc0miwc7rw3irblmcqbig8ikpb589kr09yv", 5 5 "owner": "gitlab-org", 6 6 "repo": "gitlab", 7 - "rev": "v17.9.2-ee", 7 + "rev": "v17.9.3-ee", 8 8 "passthru": { 9 - "GITALY_SERVER_VERSION": "17.9.2", 10 - "GITLAB_PAGES_VERSION": "17.9.2", 9 + "GITALY_SERVER_VERSION": "17.9.3", 10 + "GITLAB_PAGES_VERSION": "17.9.3", 11 11 "GITLAB_SHELL_VERSION": "14.40.0", 12 12 "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.4.0", 13 - "GITLAB_WORKHORSE_VERSION": "17.9.2" 13 + "GITLAB_WORKHORSE_VERSION": "17.9.3" 14 14 } 15 15 }
+2 -2
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 5 5 buildGoModule rec { 6 6 pname = "gitlab-workhorse"; 7 7 8 - version = "17.9.2"; 8 + version = "17.9.3"; 9 9 10 10 # nixpkgs-update: no auto update 11 11 src = fetchFromGitLab { ··· 17 17 18 18 sourceRoot = "${src.name}/workhorse"; 19 19 20 - vendorHash = "sha256-bPabhQD19A3WrCC9D1r0TZOKM+CkoqBgOUj0pqLs3Bo="; 20 + vendorHash = "sha256-nqsZ0ac5NG2hCXgaJKd9J3AphzCHxF1eJ9Iypda9Uh0="; 21 21 buildInputs = [ git ]; 22 22 ldflags = [ "-X main.Version=${version}" ]; 23 23 doCheck = false;
+1 -1
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile
··· 265 265 gem 'asciidoctor-plantuml', '~> 0.0.16', feature_category: :markdown 266 266 gem 'asciidoctor-kroki', '~> 0.10.0', require: false, feature_category: :markdown 267 267 gem 'rouge', '~> 4.5.0', feature_category: :shared 268 - gem 'truncato', '~> 0.7.12', feature_category: :team_planning 268 + gem 'truncato', '~> 0.7.13', feature_category: :team_planning 269 269 gem 'nokogiri', '~> 1.18', feature_category: :shared 270 270 gem 'gitlab-glfm-markdown', '~> 0.0.21', feature_category: :markdown 271 271 gem 'tanuki_emoji', '~> 0.13', feature_category: :markdown
+4 -4
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock
··· 778 778 pg_query (>= 5.1.0, < 7.0) 779 779 redis (> 3.0.0, < 6.0.0) 780 780 gitlab-license (2.6.0) 781 - gitlab-mail_room (0.0.25) 781 + gitlab-mail_room (0.0.27) 782 782 jwt (>= 2.0) 783 783 net-imap (>= 0.2.1) 784 784 oauth2 (>= 1.4.4, < 3) ··· 1222 1222 nio4r (2.7.0) 1223 1223 nkf (0.2.0) 1224 1224 no_proxy_fix (0.1.2) 1225 - nokogiri (1.18.2) 1225 + nokogiri (1.18.3) 1226 1226 mini_portile2 (~> 2.8.2) 1227 1227 racc (~> 1.4) 1228 1228 notiffany (0.1.3) ··· 1885 1885 mixlib-shellout (>= 2.0, < 4.0) 1886 1886 net-scp (>= 1.2, < 5.0) 1887 1887 net-ssh (>= 2.9, < 8.0) 1888 - truncato (0.7.12) 1888 + truncato (0.7.13) 1889 1889 htmlentities (~> 4.3.1) 1890 1890 nokogiri (>= 1.7.0, <= 2.0) 1891 1891 tty-color (0.6.0) ··· 2347 2347 thrift (>= 0.16.0) 2348 2348 timfel-krb5-auth (~> 0.8) 2349 2349 toml-rb (~> 2.2.0) 2350 - truncato (~> 0.7.12) 2350 + truncato (~> 0.7.13) 2351 2351 tty-prompt (~> 0.23) 2352 2352 typhoeus (~> 1.4.0) 2353 2353 undercover (~> 0.5.0)
+6 -6
pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix
··· 2314 2314 platforms = []; 2315 2315 source = { 2316 2316 remotes = ["https://rubygems.org"]; 2317 - sha256 = "06ivc4cbr5lc6lja947flzlppp3d9s44fwd3x8an0yvrq31yfg12"; 2317 + sha256 = "05i3jvgjv3rqyiwyfjpk0mp419f5jl5gn2m0grsgak09jaw7vh05"; 2318 2318 type = "gem"; 2319 2319 }; 2320 - version = "0.0.25"; 2320 + version = "0.0.27"; 2321 2321 }; 2322 2322 gitlab-markup = { 2323 2323 groups = ["default"]; ··· 4226 4226 platforms = []; 4227 4227 source = { 4228 4228 remotes = ["https://rubygems.org"]; 4229 - sha256 = "1gzqcs1kkykj8lrnbxc1iwr1wqmmaml8l6wyxdvy0vqq6gxiqyck"; 4229 + sha256 = "0npx535cs8qc33n0lpbbwl0p9fi3a5bczn6ayqhxvknh9yqw77vb"; 4230 4230 type = "gem"; 4231 4231 }; 4232 - version = "1.18.2"; 4232 + version = "1.18.3"; 4233 4233 }; 4234 4234 notiffany = { 4235 4235 dependencies = ["nenv" "shellany"]; ··· 6944 6944 platforms = []; 6945 6945 source = { 6946 6946 remotes = ["https://rubygems.org"]; 6947 - sha256 = "0k4wdj2l6p4ax4y6qxbywkglmbhvfs4j1k868nkd2px39yhfingy"; 6947 + sha256 = "1073j47fypwmc4myqzcd9rbipf1250qx2mnki4iqksv7q11ijqil"; 6948 6948 type = "gem"; 6949 6949 }; 6950 - version = "0.7.12"; 6950 + version = "0.7.13"; 6951 6951 }; 6952 6952 tty-color = { 6953 6953 groups = ["default" "development" "test"];
+2 -2
pkgs/applications/video/jellyfin-media-player/default.nix
··· 27 27 28 28 mkDerivation rec { 29 29 pname = "jellyfin-media-player"; 30 - version = "1.11.1"; 30 + version = "1.12.0"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "jellyfin"; 34 34 repo = "jellyfin-media-player"; 35 35 rev = "v${version}"; 36 - sha256 = "sha256-Jsn4kWQzUaQI9MpbsLJr6JSJk9ZSnMEcrebQ2DYegSU="; 36 + sha256 = "sha256-IXinyenadnW+a+anQ9e61h+N8vG2r77JPboHm5dN4Iw="; 37 37 }; 38 38 39 39 patches = [
+2 -2
pkgs/applications/video/obs-studio/plugins/obs-source-record.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "obs-source-record"; 11 - version = "0.4.4"; 11 + version = "0.4.5"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "exeldro"; 15 15 repo = "obs-source-record"; 16 16 rev = version; 17 - sha256 = "sha256-ArvVBMQw3Po2QlDzSTPHZn1UNAi1tERrQeGcQKCM0CE="; 17 + sha256 = "sha256-wh5BVWKHelw/ry6algST4EFGmmqsKs+phmVacS77dqM="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/az/azure-storage-azcopy/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "azure-storage-azcopy"; 9 - version = "10.28.0"; 9 + version = "10.28.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Azure"; 13 13 repo = "azure-storage-azcopy"; 14 14 tag = "v${version}"; 15 - hash = "sha256-dRS96M4KMEQaKYVA0fNgmmfH2JYVFbEjH8C3xA9knes="; 15 + hash = "sha256-9TWccJYcQrl986GyLAvQPTubg7P6lT+OjdkTdjww7nU="; 16 16 }; 17 17 18 18 subPackages = [ "." ]; 19 19 20 - vendorHash = "sha256-TwzcjhL8STH8tASTp2kQjn6bYyn/Ab+EJwvIGOBT+1A="; 20 + vendorHash = "sha256-Cno1H6p4qr+0CDGSd6TyCVEi+lLGoruwGVkDe8lMg08="; 21 21 22 22 doCheck = false; 23 23
+66
pkgs/by-name/bu/buildbox/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitLab, 5 + bubblewrap, 6 + makeBinaryWrapper, 7 + cmake, 8 + pkg-config, 9 + ninja, 10 + grpc, 11 + gbenchmark, 12 + gtest, 13 + protobuf, 14 + glog, 15 + nlohmann_json, 16 + zlib, 17 + openssl, 18 + libuuid, 19 + tomlplusplus, 20 + fuse3, 21 + }: 22 + stdenv.mkDerivation (finalAttrs: { 23 + pname = "buildbox"; 24 + version = "1.3.7"; 25 + 26 + src = fetchFromGitLab { 27 + owner = "BuildGrid"; 28 + repo = "buildbox/buildbox"; 29 + tag = finalAttrs.version; 30 + hash = "sha256-US0qJrKoAYR4rMmolC8jx7IpQ2PiHZy7L2bog+I3G48="; 31 + }; 32 + 33 + nativeBuildInputs = [ 34 + cmake 35 + makeBinaryWrapper 36 + ninja 37 + pkg-config 38 + ]; 39 + 40 + buildInputs = [ 41 + bubblewrap 42 + fuse3 43 + gbenchmark 44 + glog 45 + grpc 46 + gtest 47 + libuuid 48 + nlohmann_json 49 + openssl 50 + protobuf 51 + tomlplusplus 52 + zlib 53 + ]; 54 + 55 + postFixup = '' 56 + makeWrapper $out/bin/buildbox-run-bubblewrap $out/bin/buildbox-run --prefix PATH : ${lib.makeBinPath [ bubblewrap ]} 57 + ''; 58 + 59 + meta = { 60 + description = "Set of tools for remote worker build execution"; 61 + homepage = "https://gitlab.com/BuildGrid/buildbox/"; 62 + license = lib.licenses.asl20; 63 + platforms = lib.platforms.linux; 64 + maintainers = with lib.maintainers; [ shymega ]; 65 + }; 66 + })
+3 -3
pkgs/by-name/bu/bump/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "bump"; 9 - version = "0.2.4"; 9 + version = "0.2.5"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mroth"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-DFgNx0H9/hZ+wUdPkEybRCIjnLsmuoYWruYgbDuFRhU="; 15 + sha256 = "sha256-a+vmpmWb/jICNdErkvCQKNIdaKtSrIJZ3BApLvKG/hg="; 16 16 }; 17 17 18 - vendorHash = "sha256-AiXbCS3RXd6KZwIo7qzz3yM28cJloLRR+gdWqEpyims="; 18 + vendorHash = "sha256-VHVChqQXmCcw2ymTJbQLDtzBycTeXkuHPz52vuKen0w="; 19 19 20 20 doCheck = false; 21 21
+7 -4
pkgs/by-name/cl/cliqr/package.nix
··· 2 2 lib, 3 3 buildGoModule, 4 4 fetchFromGitHub, 5 + nix-update-script, 5 6 }: 6 7 7 - buildGoModule rec { 8 + buildGoModule (finalAttrs: { 8 9 pname = "cliqr"; 9 10 version = "0.1.26"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "paepckehh"; 13 14 repo = "cliqr"; 14 - tag = "v${version}"; 15 + tag = "v${finalAttrs.version}"; 15 16 hash = "sha256-JM5sWVby8dSFz2YtNXgU9z5fc6EI5nnxmpQN/71kdjI="; 16 17 }; 17 18 ··· 22 23 "-w" 23 24 ]; 24 25 26 + passthru.updateScript = nix-update-script { }; 27 + 25 28 meta = { 26 - changelog = "https://github.com/paepckehh/cliqr/releases/tag/v${version}"; 29 + changelog = "https://github.com/paepckehh/cliqr/releases/tag/v${finalAttrs.version}"; 27 30 homepage = "https://paepcke.de/cliqr"; 28 31 description = "Transfer, share data & secrets via console qr codes"; 29 32 license = lib.licenses.bsd3; 30 33 mainProgram = "cliqr"; 31 34 maintainers = with lib.maintainers; [ paepcke ]; 32 35 }; 33 - } 36 + })
+2
pkgs/by-name/co/codec2/package.nix
··· 62 62 license = licenses.lgpl21Only; 63 63 platforms = platforms.unix; 64 64 maintainers = with maintainers; [ markuskowa ]; 65 + # generate_codebook only built for host platform 66 + broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform; 65 67 }; 66 68 }
+1 -1
pkgs/by-name/co/concord/package.nix
··· 25 25 homepage = "https://cogmasters.github.io/concord/"; 26 26 changelog = "https://github.com/Cogmasters/concord/releases/tag/v${finalAttrs.version}"; 27 27 license = lib.licenses.mit; 28 - maintainers = with lib.maintainers; [ emneo ]; 28 + maintainers = with lib.maintainers; [ sigmanificient ]; 29 29 platforms = lib.platforms.unix; 30 30 }; 31 31 })
+6 -4
pkgs/by-name/da/databricks-cli/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "databricks-cli"; 11 - version = "0.243.0"; 11 + version = "0.244.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "databricks"; 15 15 repo = "cli"; 16 16 rev = "v${version}"; 17 - hash = "sha256-U1ZQFRPL9iYtCHJXBdgCgaE1LZgKOWdYJ1gFAsgWPI8="; 17 + hash = "sha256-TGbmGAS3hS9m6CNTtHQ0N3Fz6Ei+ry06enfYtWK/xOw="; 18 18 }; 19 19 20 - vendorHash = "sha256-InVmtV3PH75exsftC3sxz9/xt9drJPlXgRYqvqnp+yM="; 20 + vendorHash = "sha256-W1tAFLSy5rX07Dkj+r+T6whbuTevpxxtakG2caUdWJQ="; 21 21 22 22 excludedPackages = [ 23 23 "bundle/internal" ··· 38 38 "TestExpandPipelineGlobPaths" 39 39 "TestRelativePathTranslationDefault" 40 40 "TestRelativePathTranslationOverride" 41 - # Use venv 41 + # Use uv venv which doesn't work with nix 42 + # https://github.com/astral-sh/uv/issues/4450 42 43 "TestVenvSuccess" 44 + "TestPatchWheel" 43 45 ]); 44 46 45 47 nativeCheckInputs = [
+2 -2
pkgs/by-name/do/do-agent/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "do-agent"; 9 - version = "3.17.0"; 9 + version = "3.17.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "digitalocean"; 13 13 repo = "do-agent"; 14 14 rev = version; 15 - sha256 = "sha256-UMS8OqU4wMZ6Y384pe+QixLlrNN30jk6XtdeqRN282w="; 15 + sha256 = "sha256-XzZ9UmEA45ipVU0AHLZ+HeW/rmlBtgLXgyyGF1O1nqE="; 16 16 }; 17 17 18 18 ldflags = [
+3 -3
pkgs/by-name/do/dolt/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dolt"; 5 - version = "1.50.5"; 5 + version = "1.50.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dolthub"; 9 9 repo = "dolt"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-dVBE2j+vr2BUBpXSFy9iM4hd6Q032J0v9UFEh+QRV/c="; 11 + sha256 = "sha256-d4n4Cz4FvSMznTqHs5cD18Y1xE6p8umGr7PqtI5k6Zg="; 12 12 }; 13 13 14 14 modRoot = "./go"; 15 15 subPackages = [ "cmd/dolt" ]; 16 - vendorHash = "sha256-5875DFFoR0Xq+5aORLpHklt+L53PbeoCVom/1LEmGpo="; 16 + vendorHash = "sha256-+UD1J1FSIfYtRY+0shCw/j5LPbc2V6Ydmc0bf8yj2EI="; 17 17 proxyVendor = true; 18 18 doCheck = false; 19 19
+4 -4
pkgs/by-name/ev/evcc/package.nix
··· 17 17 }: 18 18 19 19 let 20 - version = "0.202.0"; 20 + version = "0.202.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "evcc-io"; 24 24 repo = "evcc"; 25 25 tag = version; 26 - hash = "sha256-J2rYM+lQ9I3d9zK0Ez458+52V+h1VuX+zmTc1sPzlHU="; 26 + hash = "sha256-GMKhlNZLk6R0XZn5I3YP5Eav8wD6WbEr1DM+VVtQtjo="; 27 27 }; 28 28 29 - vendorHash = "sha256-QIFWrrF0Rl4N/Qac7yevf35tAPAAB9HUbiyth/mlI1U="; 29 + vendorHash = "sha256-K9X63dTWE+dC5yo8LX86pUezm8OHwEHNXwxXHn/4AwU="; 30 30 31 31 commonMeta = with lib; { 32 32 license = licenses.mit; ··· 52 52 53 53 npmDeps = fetchNpmDeps { 54 54 inherit src; 55 - hash = "sha256-xv7RG/Am/SXXMhETCpQZPzXIpi2uMwyE/TY/UXWJLsA="; 55 + hash = "sha256-iTrmgNmUoHQWL5tsqhUnd0t1t9qengb6ba9pxYrL9Ks="; 56 56 }; 57 57 58 58 nativeBuildInputs = [
+3 -3
pkgs/by-name/ex/expr/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "expr"; 9 - version = "1.17.0"; 9 + version = "1.17.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "expr-lang"; 13 13 repo = "expr"; 14 14 rev = "v${version}"; 15 - hash = "sha256-D5hMnihKcSXQUII9L0UmC/fMuFuyqBrgR4yXbYvakn0="; 15 + hash = "sha256-teP/14czczNiz0kxoLNmZQg/AvcDuB8K4jdQpJf5JLQ="; 16 16 }; 17 17 18 18 sourceRoot = "${src.name}/repl"; 19 19 20 - vendorHash = "sha256-YtYeAJI7J1nalVt4Phl06Xe/8YdU6egbMjYfbo91b/0="; 20 + vendorHash = "sha256-DamIlXTuuPifGgpbVXn7OPI97ppqlwiCtcZAnQ00YD0="; 21 21 22 22 ldflags = [ 23 23 "-s"
+47 -15
pkgs/by-name/fi/filen-cli/package.nix
··· 3 3 lib, 4 4 buildNpmPackage, 5 5 fetchFromGitHub, 6 - versionCheckHook, 6 + makeWrapper, 7 7 nix-update-script, 8 + versionCheckHook, 9 + darwin, 10 + libsecret, 11 + nodejs, 12 + perl, 13 + pkg-config, 8 14 }: 9 15 10 16 buildNpmPackage (finalAttrs: { 11 17 pname = "filen-cli"; 12 - version = "0.0.29"; 18 + version = "0.0.32"; 13 19 14 20 src = fetchFromGitHub { 15 21 owner = "FilenCloudDienste"; 16 22 repo = "filen-cli"; 17 23 tag = "v${finalAttrs.version}"; 18 - hash = "sha256-ftbRv75x6o1HgElY4oLBBe5SRuLtxdrjpjZznSCyroI="; 24 + hash = "sha256-sSwRgtjBfmvZ8jEzMoiqGNSaxE+bRvx1udGf9g8EwfM="; 19 25 }; 20 26 21 - npmDepsHash = "sha256-a+sq0vFsk4c7bl0Nn2KfBFxyq3ZF2HPvt8d1vxegnHg="; 27 + npmDepsHash = "sha256-RXA/kVvLrmrsxj6T6H2soTMYmC6VRWNjuQfefgVB/qY="; 28 + 29 + inherit nodejs; 30 + 31 + env.npm_config_build_from_source = "true"; 32 + 33 + nativeBuildInputs = 34 + [ 35 + makeWrapper 36 + pkg-config # for keytar 37 + ] 38 + ++ lib.optionals stdenv.buildPlatform.isDarwin [ 39 + # for utf-8-validate 40 + # https://github.com/websockets/utf-8-validate/blob/1439ad4cdf99d421084ae3a5f81e2cf43199a690/binding.gyp#L17 41 + perl 42 + ]; 43 + 44 + # for keytar 45 + buildInputs = 46 + lib.optionals stdenv.hostPlatform.isLinux [ libsecret ] 47 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 48 + darwin.apple_sdk.frameworks.AppKit 49 + darwin.apple_sdk.frameworks.Security 50 + ]; 22 51 23 52 postPatch = '' 24 - # The filen-cli repository does not contain the correct version string; 25 - # it is replaced during publishing in the same way: 53 + # The version string is substituted during publishing: 26 54 # https://github.com/FilenCloudDienste/filen-cli/blob/c7d5eb2a2cd6d514321992815f16475f6909af36/.github/workflows/build-and-publish.yml#L24 27 55 substituteInPlace package.json \ 28 - --replace-fail '"version": "0.0.0"' '"version": "${finalAttrs.version}"' 56 + --replace-fail '"version": "0.0.0"' '"version": "${finalAttrs.version}"' \ 57 + --replace-fail '\"--external:*keytar.node\" --external:keytar' \ 58 + '--loader:.node=copy' 29 59 ''; 30 60 31 - # A special random 256-bit string called CRYPTO_BASE_KEY has to be injected 32 - # during build. It can be randomly generated using the generateKey.mjs 33 - # script, however, generating a key here will invalidate the session on every 34 - # rebuild, and hence we need to provide a constant key. The key below is 35 - # extracted from the official filen-cli releases. Example: 36 - # $ strings filen-cli-v0.0.29-linux-x64 | grep checkInjectedBuildInfo -A 6 37 - # That also makes the session data compatible with the official distribution. 38 - env.FILEN_CLI_CRYPTO_BASE_KEY = "f47fb2011c90d8aad21f7415d19989cea2c1ac8bc674daf36af48de8697a83e0"; 61 + installPhase = '' 62 + runHook preInstall 63 + mkdir -p $out/bin $out/lib 64 + install -T -m755 dist/bundle.js $out/lib/index.js 65 + install -D -m755 dist/*.node $out/lib 66 + install -D -m644 package.json $out/lib 67 + makeWrapper "${lib.getExe nodejs}" $out/bin/filen \ 68 + --add-flags $out/lib/index.js 69 + runHook postInstall 70 + ''; 39 71 40 72 nativeInstallCheckInputs = [ versionCheckHook ]; 41 73 versionCheckProgram = "${placeholder "out"}/bin/filen";
+38
pkgs/by-name/gi/git-point/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "git-point"; 9 + version = "0.2.2"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "Qyriad"; 13 + repo = "git-point"; 14 + rev = "v0.2.2"; 15 + hash = "sha256-mH++Ddfv+OqjRTTGhagAtnNZpD13OtKhAiGxh7Mu0lY="; 16 + }; 17 + 18 + useFetchCargoVendor = true; 19 + cargoHash = "sha256-YwinEAJ8djCE2tHp8VcfcyHSa8rUn8RBnsdW0YqIM3o="; 20 + 21 + postInstall = '' 22 + mkdir -p "$out/share/man/man1" 23 + "$out/bin/git-point" --mangen > "$out/share/man/man1/git-point.1" 24 + ''; 25 + 26 + meta = { 27 + homepage = "https://github.com/Qyriad/git-point"; 28 + description = "Set arbitrary refs without shooting yourself in the foot, a procelain `git update-ref`"; 29 + maintainers = [ 30 + lib.maintainers.qyriad 31 + lib.maintainers.philiptaron 32 + ]; 33 + license = [ lib.licenses.mit ]; 34 + sourceProvenance = [ lib.sourceTypes.fromSource ]; 35 + platforms = lib.platforms.all; 36 + mainProgram = "git-point"; 37 + }; 38 + }
+2 -2
pkgs/by-name/gi/gitaly/package.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "17.9.2"; 10 + version = "17.9.3"; 11 11 package_version = "v${lib.versions.major version}"; 12 12 gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; 13 13 ··· 21 21 owner = "gitlab-org"; 22 22 repo = "gitaly"; 23 23 rev = "v${version}"; 24 - hash = "sha256-QoIM2I9dLFmN4dFbiFu1pWCGj4Yiel9HGUb7jYWc4Hg="; 24 + hash = "sha256-Xr5gZFPBmd64mfWsQM107jbCw43MOG1K7nN42TDTNHU="; 25 25 }; 26 26 27 27 vendorHash = "sha256-ZPxlv8jc3VWS1XzIyXs3W3aCxdTiDl8+Wx82exuYBDY=";
+3 -3
pkgs/by-name/gi/gitlab-container-registry/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gitlab-container-registry"; 9 - version = "4.17.1"; 9 + version = "4.19.0"; 10 10 rev = "v${version}-gitlab"; 11 11 12 12 # nixpkgs-update: no auto update ··· 14 14 owner = "gitlab-org"; 15 15 repo = "container-registry"; 16 16 inherit rev; 17 - hash = "sha256-zsrNu1Xdi2143i9po8UzEOtidwWjRlR5n0bOksz75FE="; 17 + hash = "sha256-WrijK/kQugCpiDbMw1+QTvG60SDsdJ5PDFGKGiLBsb8="; 18 18 }; 19 19 20 - vendorHash = "sha256-I/umXgVm9a+0Ay3ARuaa4Dua4Zhc5p2TONHvhCt3Qtk="; 20 + vendorHash = "sha256-0fvjnEm4NdIKexjTO/GijWy8WwBrLt3jZCwjfOKI4jA="; 21 21 22 22 checkFlags = 23 23 let
+2 -2
pkgs/by-name/gi/gitlab-pages/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gitlab-pages"; 9 - version = "17.9.2"; 9 + version = "17.9.3"; 10 10 11 11 # nixpkgs-update: no auto update 12 12 src = fetchFromGitLab { 13 13 owner = "gitlab-org"; 14 14 repo = "gitlab-pages"; 15 15 rev = "v${version}"; 16 - hash = "sha256-5LnFiuGq7RSPum0ctkz3YwK7ZLl9+tLJtKhxbEOs3ZE="; 16 + hash = "sha256-3lpwTGsLhFdfIjkFxRl+ed/yltmR/sjhXl7hAb8EGOs="; 17 17 }; 18 18 19 19 vendorHash = "sha256-2UtdooVoyoWr4yOPCRBAjkftn29DhJonpJSguHwfHNE=";
+36
pkgs/by-name/go/go-ecoflow-exporter/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + 8 + buildGoModule (finalAttrs: { 9 + pname = "go-ecoflow-exporter"; 10 + version = "1.4.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "tess1o"; 14 + repo = "go-ecoflow-exporter"; 15 + tag = "${finalAttrs.version}"; 16 + hash = "sha256-VCzMItYgnuDXDYdrk/ojzqUE2Fjr7KWGNnLhoQ+ZPYs="; 17 + }; 18 + 19 + vendorHash = "sha256-UbV6V06zxXMTd0v+rDPGoMFn9X5mMCiX41g49IGnoT8="; 20 + 21 + ldflags = [ 22 + "-s" 23 + "-w" 24 + ]; 25 + 26 + passthru.updateScript = nix-update-script { }; 27 + 28 + meta = { 29 + changelog = "https://github.com/tess1o/go-ecoflow-exporter/releases/tag/${finalAttrs.version}"; 30 + homepage = "https://github.com/tess1o/go-ecoflow-exporter"; 31 + description = "Ecoflow solar battery mqtt timescale, redis, prometheus metrics exporter"; 32 + license = lib.licenses.mit; 33 + mainProgram = "go-ecoflow-exporter"; 34 + maintainers = with lib.maintainers; [ paepcke ]; 35 + }; 36 + })
+3 -3
pkgs/by-name/go/goa/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "goa"; 9 - version = "3.20.0"; 9 + version = "3.20.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "goadesign"; 13 13 repo = "goa"; 14 14 rev = "v${version}"; 15 - hash = "sha256-nkL1os+evGy6L0Ura2PSDBhF25L6fLTnoYkT/5S9H9U="; 15 + hash = "sha256-+MAK/qRvwMfjifeXmBjDWKmQ75LAbIUjZ6rvqw1Xv3I="; 16 16 }; 17 - vendorHash = "sha256-lO5cI7h0xtWFbHbAiRnG6kFx/74E47Mw79AFMuNz6XU="; 17 + vendorHash = "sha256-/5tcIvJpJPVMOL6XBAjXbiHeCwpB0YOLv5hRhd5zG7Q="; 18 18 19 19 subPackages = [ "cmd/goa" ]; 20 20
+4 -3
pkgs/by-name/go/goose-cli/package.nix
··· 26 26 in 27 27 rustPlatform.buildRustPackage rec { 28 28 pname = "goose-cli"; 29 - version = "1.0.10"; 29 + version = "1.0.15"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "block"; 33 33 repo = "goose"; 34 34 tag = "v${version}"; 35 - hash = "sha256-GPlxA6ZIy+kLFicuqGqtom9iavNV+geKJIwVBLDg4KE="; 35 + hash = "sha256-9uIpwJaRpYvsWW8ysFQWgogp/4hh5b72+5dNwYQKrM8="; 36 36 }; 37 37 38 38 useFetchCargoVendor = true; 39 - cargoHash = "sha256-Ty1ygZ4BB1eHkMffRWXhfvXK5QtZXejYy0kXRPYXdME="; 39 + cargoHash = "sha256-5qMciAnX34fbiV5Oy/+V3o7S3NwubxyRRNFXWcQK+kE="; 40 40 41 41 nativeBuildInputs = [ pkg-config ]; 42 42 ··· 61 61 "--skip=config::base::tests::test_secret_management" 62 62 # Observer should be Some with both init project keys set 63 63 "--skip=tracing::langfuse_layer::tests::test_create_langfuse_observer" 64 + "--skip=providers::gcpauth::tests::test_token_refresh_race_condition" 64 65 ] 65 66 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 66 67 # Lazy instance has previously been poisoned
+3 -3
pkgs/by-name/ka/kakoune-lsp/package.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "kakoune-lsp"; 15 - version = "18.1.2"; 15 + version = "18.1.3"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "kakoune-lsp"; 19 19 repo = "kakoune-lsp"; 20 20 rev = "v${version}"; 21 - hash = "sha256-wIKAChmD6gVfrRguywiAnpT3kbCbRk2k2u4ckd1CNOw="; 21 + hash = "sha256-2jD0meehUNGvmywOY4D9CwP1qswD7QCPlctLBjngzvE="; 22 22 }; 23 23 24 24 patches = [ (replaceVars ./Hardcode-perl.patch { inherit perl; }) ]; 25 25 26 26 useFetchCargoVendor = true; 27 - cargoHash = "sha256-EQ6xB4He8cjJxg7tmJzqXmAITa5q9iq+ZokV0EyaUE0="; 27 + cargoHash = "sha256-fb6RDcOLtkrUqw+BX2oa43d84BGF8IA2HxhdGgB94iU="; 28 28 29 29 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 30 30 CoreServices
+3 -3
pkgs/by-name/ko/kor/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kor"; 9 - version = "0.5.9"; 9 + version = "0.6.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "yonahd"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-SMy7oAOKSvUrqIh11kdsREySsxJHmwSUhpW++DB0M2Y="; 15 + hash = "sha256-VK5G8J851rsIEt2ljrTWFPCxhIBTgLkMlEMVb9kJcOs="; 16 16 }; 17 17 18 - vendorHash = "sha256-OAPilV4/usbejE/e6vVjvyuIIHCRiomPeg8RfzAmwWc="; 18 + vendorHash = "sha256-iJtZ/t4VCVPqMKwV7jCKwqxitkZ/pTlP6mz9ElGcSsY="; 19 19 20 20 preCheck = '' 21 21 HOME=$(mktemp -d)
+3 -3
pkgs/by-name/ku/kubeseal/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kubeseal"; 9 - version = "0.28.0"; 9 + version = "0.29.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "bitnami-labs"; 13 13 repo = "sealed-secrets"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-YyiYryNLSY8XnrA+3AWeQR2p55YNHFfp/sWCevATdZ0="; 15 + sha256 = "sha256-unPqjheT8/2gVQAwvzOvHtG4qTqggf9o0M5iLwl1eh4="; 16 16 }; 17 17 18 - vendorHash = "sha256-jul74GJivJnL3wjHOqpweezMPZwf8RnLkqkYO44mtHo="; 18 + vendorHash = "sha256-4BseFdfJjR8Th+NJ82dYsz9Dym1hzDa4kB4bpy71q7Q="; 19 19 20 20 subPackages = [ "cmd/kubeseal" ]; 21 21
+64
pkgs/by-name/la/lakectl/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + 8 + buildGoModule (finalAttrs: { 9 + pname = "lakectl"; 10 + version = "1.53.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "treeverse"; 14 + repo = "lakeFS"; 15 + tag = "v${finalAttrs.version}"; 16 + hash = "sha256-AYFhkwnlK8RU/HPemJkoZiJ1DCSszIFybJRsUIGhs4g="; 17 + }; 18 + 19 + subPackages = [ "cmd/lakectl" ]; 20 + proxyVendor = true; 21 + vendorHash = "sha256-p5eHkVbUrcSC4i+R/HGh2nSTIWVkFNiN+TVh10rdWqs="; 22 + 23 + ldflags = [ 24 + "-s" 25 + "-w" 26 + "-X github.com/treeverse/lakefs/pkg/version.Version=${finalAttrs.version}" 27 + ]; 28 + 29 + preBuild = '' 30 + go generate ./pkg/api/apigen ./pkg/auth 31 + ''; 32 + 33 + doInstallCheck = true; 34 + 35 + # custom version test for install phase, 36 + # versionCheckHook doesn't work as it expects only version to be returned as output, here it's a string with version 37 + installCheckPhase = '' 38 + runHook preInstallCheck 39 + 40 + versionOutput=$($out/bin/lakectl --version) 41 + echo "Version output: $versionOutput" 42 + if [[ "$versionOutput" == *"lakectl version: ${finalAttrs.version}"* ]]; then 43 + echo "Version check passed!" 44 + else 45 + echo "Version check failed!" 46 + echo "Expected version: 'lakectl version: ${finalAttrs.version}'" 47 + echo "Got version: $versionOutput" 48 + exit 1 49 + fi 50 + 51 + runHook postInstallCheck 52 + ''; 53 + 54 + passthru.updateScript = nix-update-script { }; 55 + 56 + meta = { 57 + description = "Command line tool for LakeFS"; 58 + homepage = "https://docs.lakefs.io/reference/cli.html"; 59 + changelog = "https://github.com/treeverse/lakeFS/blob/v${finalAttrs.version}/CHANGELOG.md"; 60 + license = lib.licenses.asl20; 61 + maintainers = with lib.maintainers; [ daspk04 ]; 62 + mainProgram = "lakectl"; 63 + }; 64 + })
+3 -29
pkgs/by-name/lm/lms/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 - makeWrapper, 6 5 cmake, 7 6 pkg-config, 8 7 gtest, ··· 22 21 23 22 stdenv.mkDerivation rec { 24 23 pname = "lms"; 25 - version = "3.62.1"; 24 + version = "3.64.0"; 26 25 27 26 src = fetchFromGitHub { 28 27 owner = "epoupon"; 29 28 repo = "lms"; 30 29 rev = "v${version}"; 31 - hash = "sha256-LzDEK17Gh/r3tXGRItQfOeTCD9yGcRzIYMBX77MuwAU="; 30 + hash = "sha256-+DSMqe1TNFCjZrfuhLggymno9OjYONc5ZweREgMsh60="; 32 31 }; 33 32 34 33 strictDeps = true; 35 34 nativeBuildInputs = [ 36 35 cmake 37 36 pkg-config 38 - makeWrapper 39 37 ]; 40 38 buildInputs = [ 41 39 gtest ··· 58 56 ''; 59 57 60 58 postInstall = '' 61 - substituteInPlace $out/share/lms/lms.conf --replace-fail "/usr/bin/ffmpeg" "${ffmpeg}/bin/ffmpeg" 59 + substituteInPlace $out/share/lms/lms.conf --replace-fail "/usr/bin/ffmpeg" "${lib.getExe ffmpeg}" 62 60 substituteInPlace $out/share/lms/lms.conf --replace-fail "/usr/share/Wt/resources" "${wt}/share/Wt/resources" 63 61 substituteInPlace $out/share/lms/lms.conf --replace-fail "/usr/share/lms/docroot" "$out/share/lms/docroot" 64 62 substituteInPlace $out/share/lms/lms.conf --replace-fail "/usr/share/lms/approot" "$out/share/lms/approot" 65 63 substituteInPlace $out/share/lms/default.service --replace-fail "/usr/bin/lms" "$out/bin/lms" 66 64 install -Dm444 $out/share/lms/default.service -T $out/lib/systemd/system/lmsd.service 67 - ''; 68 - 69 - preFixup = '' 70 - wrapProgram $out/bin/lms \ 71 - --prefix LD_LIBRARY_PATH : "${ 72 - lib.strings.makeLibraryPath [ 73 - libSM 74 - libICE 75 - ] 76 - }" 77 - wrapProgram $out/bin/lms-metadata \ 78 - --prefix LD_LIBRARY_PATH : "${ 79 - lib.strings.makeLibraryPath [ 80 - libSM 81 - libICE 82 - ] 83 - }" 84 - wrapProgram $out/bin/lms-recommendation \ 85 - --prefix LD_LIBRARY_PATH : "${ 86 - lib.strings.makeLibraryPath [ 87 - libSM 88 - libICE 89 - ] 90 - }" 91 65 ''; 92 66 93 67 meta = {
+2 -2
pkgs/by-name/ma/marble-shell-theme/package.nix
··· 14 14 15 15 stdenvNoCC.mkDerivation (finalAttrs: { 16 16 pname = "marble-shell-theme"; 17 - version = "47.0"; 17 + version = "48.0.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "imarkoff"; 21 21 repo = "Marble-shell-theme"; 22 22 tag = finalAttrs.version; 23 - hash = "sha256-+uPjwOUwrdFfBvpWtuZhe789v2xvZG3XeFyYw8HP8QM="; 23 + hash = "sha256-t/p8/Phl+DXbSVT8l3fonZQeoUTtrcfe4HiKB3D8KXw="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/by-name/mi/mint/package.nix
··· 8 8 9 9 crystal.buildCrystalPackage rec { 10 10 pname = "mint"; 11 - version = "0.22.0"; 11 + version = "0.23.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "mint-lang"; 15 15 repo = "mint"; 16 16 rev = version; 17 - hash = "sha256-82Oi9UJ530rZNGa6XxC1hNvRfZQx3fTZxhfSQeZmz54="; 17 + hash = "sha256-oSDg/tOdF/nk164jl7OZOINNWfAZmjAT/HFFFJNr3pk="; 18 18 }; 19 19 20 20 format = "shards";
+3 -3
pkgs/by-name/mo/moonraker/package.nix
··· 35 35 in 36 36 stdenvNoCC.mkDerivation rec { 37 37 pname = "moonraker"; 38 - version = "0.9.3-unstable-2025-03-14"; 38 + version = "0.9.3-unstable-2025-03-26"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "Arksine"; 42 42 repo = "moonraker"; 43 - rev = "ebaa6645b2bcaa593d99e863530c52a84c69b470"; 44 - sha256 = "sha256-4SefHXWT/P4F/RSpnLwAu34f8qs7lKW7O7NqOR2k9cE="; 43 + rev = "b90c96524cd4aa5579ebc9899fd7812c1e756d86"; 44 + sha256 = "sha256-oXdZdSoxfDNGR2n1L41zAG1aRzxeLTHtTmIUe2nWu/I="; 45 45 }; 46 46 47 47 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/by-name/ms/msitools/package.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "msitools"; 22 - version = "0.103"; 22 + version = "0.106"; 23 23 24 24 src = fetchurl { 25 25 url = "mirror://gnome/sources/msitools/${lib.versions.majorMinor version}/msitools-${version}.tar.xz"; 26 - hash = "sha256-0XYi7rvzf6TAm1m+C8jbCLJr4wCmcxx02h684mK86Dk="; 26 + hash = "sha256-HtNCec+AgPFPG48Q5klHQSVJKgiZEufKcOWd+i5aZZs="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+3 -3
pkgs/by-name/ne/netbird/package.nix
··· 31 31 in 32 32 buildGoModule (finalAttrs: { 33 33 pname = "netbird"; 34 - version = "0.38.2"; 34 + version = "0.39.1"; 35 35 36 36 src = fetchFromGitHub { 37 37 owner = "netbirdio"; 38 38 repo = "netbird"; 39 39 tag = "v${finalAttrs.version}"; 40 - hash = "sha256-8uxRR8XkomUB9dMN9h1M4/K09wxy5E+XhXVbNc0g6xQ="; 40 + hash = "sha256-Tm7MIgLfPbt3MFetYebYW+aeOgg55+lBXU1rXRIDfms="; 41 41 }; 42 42 43 - vendorHash = "sha256-m5ou5p2/ubDDMLr0M2F+9qgkqKjhXRJ6HpizwxJhmtU="; 43 + vendorHash = "sha256-VpU1WCudjo6M2DOhz3F4k/VOedIE/RqlU9mHgBcLcXw="; 44 44 45 45 nativeBuildInputs = [ installShellFiles ] ++ lib.optional ui pkg-config; 46 46
+3 -3
pkgs/by-name/pi/pinniped/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "pinniped"; 10 - version = "0.37.0"; 10 + version = "0.38.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "vmware-tanzu"; 14 14 repo = "pinniped"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-8GMVJR3Rmn7z+EH6avbdSifcnEC6aH4eTEVacgyY1sE="; 16 + sha256 = "sha256-vnmH8zhjecghaNe7/oguCOs9OXmtBRGdZeH4n24oXsg="; 17 17 }; 18 18 19 19 subPackages = "cmd/pinniped"; 20 20 21 - vendorHash = "sha256-aejhRVW5Y0qsVEQbOBi75iQP9uAMS4U0tktatzagwIo="; 21 + vendorHash = "sha256-dX8bbUX6ya1S282677OqOlQT+dNW4dKpAX1Hw3B6fZU="; 22 22 23 23 ldflags = [ 24 24 "-s"
+36
pkgs/by-name/pr/prometheus-chrony-exporter/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + 8 + buildGoModule (finalAttrs: { 9 + pname = "prometheus-chrony-exporter"; 10 + version = "0.12.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "superq"; 14 + repo = "chrony_exporter"; 15 + tag = "v${finalAttrs.version}"; 16 + hash = "sha256-ZXqCZZx0UG8050SYgVwD+wnTX0N41Bjv1dhdQmOHmR4="; 17 + }; 18 + 19 + vendorHash = "sha256-3zL7BrCdMVnt7F1FiZ2eQnKVhmCeW3aYKKX9v01ms/k="; 20 + 21 + ldflags = [ 22 + "-s" 23 + "-w" 24 + ]; 25 + 26 + passthru.updateScript = nix-update-script { }; 27 + 28 + meta = { 29 + changelog = "https://github.com/superq/chrony_exporter/releases/tag/v${finalAttrs.version}"; 30 + homepage = "https://github.com/superq/chrony"; 31 + description = "Prometheus exporter for the chrony NTP service"; 32 + license = lib.licenses.asl20; 33 + mainProgram = "chrony_exporter"; 34 + maintainers = with lib.maintainers; [ paepcke ]; 35 + }; 36 + })
+3 -3
pkgs/by-name/pr/prqlc/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "prqlc"; 14 - version = "0.13.3"; 14 + version = "0.13.4"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "prql"; 18 18 repo = "prql"; 19 19 rev = version; 20 - hash = "sha256-PplIDbAWsFhfnhZ7G4XL7Y/+sfp6y1HQSbg5dAnZHHE="; 20 + hash = "sha256-lJkZXiwZUr/qACb9X52EGR0FBOicuPMmyA1105G7gZU="; 21 21 }; 22 22 23 23 useFetchCargoVendor = true; 24 - cargoHash = "sha256-iHXrizKT1vMR8rGxEtCYdzmcHCD5eiy2XqZjql0cKG0="; 24 + cargoHash = "sha256-Dq5jfj5Z4W9x43LncgWspOWVtGnsJPQ8xvC1gGYiPYw="; 25 25 26 26 nativeBuildInputs = [ 27 27 pkg-config
+2 -2
pkgs/by-name/qu/questdb/package.nix
··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "questdb"; 11 - version = "8.2.2"; 11 + version = "8.2.3"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/questdb/questdb/releases/download/${finalAttrs.version}/questdb-${finalAttrs.version}-no-jre-bin.tar.gz"; 15 - hash = "sha256-Lz3AbOGwPqTV2gbacaphMB9YXIuuMNd82sb1dXR777A="; 15 + hash = "sha256-hjx+SDqwl4wZaLitIP22wULUIAzAoaKYel5UWTZWvvE="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+3 -3
pkgs/by-name/ra/rainfrog/package.nix
··· 9 9 rainfrog, 10 10 }: 11 11 let 12 - version = "0.2.16"; 12 + version = "0.3.0"; 13 13 in 14 14 rustPlatform.buildRustPackage { 15 15 inherit version; ··· 19 19 owner = "achristmascarl"; 20 20 repo = "rainfrog"; 21 21 tag = "v${version}"; 22 - hash = "sha256-jolr2KIjmjriekATTQYqzHeBadQGYYj26aETZ2Dq0IU="; 22 + hash = "sha256-dBsL91BK/OkLimBUnqOQu/bBqxNIjnZY5oI0lwMkfDo="; 23 23 }; 24 24 25 25 useFetchCargoVendor = true; 26 - cargoHash = "sha256-Q6tsJhtNt6Ph3qW2VJ+l3gg2VN0sgQ175YFqgXWu/C4="; 26 + cargoHash = "sha256-C5Wn/Qe+VSCFEma7IAmxGK2t2xugWOt2BaF7izsCU+I="; 27 27 28 28 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( 29 29 with darwin.apple_sdk.frameworks;
+25 -29
pkgs/by-name/re/redmine/Gemfile
··· 1 1 source 'https://rubygems.org' 2 2 3 - ruby '>= 2.7.0', '< 3.3.0' 3 + ruby '>= 3.1.0', '< 3.4.0' 4 4 5 - gem 'rails', '6.1.7.10' 6 - gem 'rouge', '~> 4.2.0' 7 - gem 'request_store', '~> 1.5.0' 5 + gem 'rails', '7.2.2.1' 6 + gem 'rouge', '~> 4.5' 8 7 gem 'mini_mime', '~> 1.1.0' 9 8 gem "actionpack-xml_parser" 10 - gem 'roadie-rails', '~> 3.1.0' 9 + gem 'roadie-rails', '~> 3.2.0' 11 10 gem 'marcel' 12 11 gem 'mail', '~> 2.8.1' 13 - gem 'nokogiri', Gem.ruby_version >= Gem::Version.new('3.1') ? '1.18.3' : '~> 1.15.7' 12 + gem 'nokogiri', '~> 1.18.3' 14 13 gem 'i18n', '~> 1.14.1' 15 14 gem 'rbpdf', '~> 1.21.3' 16 15 gem 'addressable' 17 16 gem 'rubyzip', '~> 2.3.0' 17 + gem 'propshaft', '~> 1.1.0' 18 + gem 'rack', '>= 3.1.3' 18 19 19 20 # Ruby Standard Gems 20 - gem 'csv', '~> 3.2.6' 21 - gem 'net-imap', '~> 0.3.4' 21 + gem 'csv', '~> 3.2.8' 22 + gem 'net-imap', '~> 0.4.8' 22 23 gem 'net-pop', '~> 0.1.2' 23 - gem 'net-smtp', '~> 0.3.3' 24 - gem 'rexml', require: false if Gem.ruby_version >= Gem::Version.new('3.0') 24 + gem 'net-smtp', '~> 0.4.0' 25 25 26 26 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem 27 27 gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin] ··· 41 41 42 42 # Optional gem for exporting the gantt to a PNG file 43 43 group :minimagick do 44 - gem 'mini_magick', '~> 4.12.0' 45 - end 46 - 47 - # Optional Markdown support 48 - group :markdown do 49 - gem 'redcarpet', '~> 3.6.0' 44 + gem 'mini_magick', '~> 5.0.1' 50 45 end 51 46 52 47 # Optional CommonMark support, not for JRuby ··· 56 51 end 57 52 58 53 # Include database gems for the database adapters NixOS supports 59 - gem "mysql2", "~> 0.5.0", :platforms => [:mri, :mingw, :x64_mingw] 54 + gem 'mysql2', '~> 0.5.0' 60 55 gem "with_advisory_lock" 61 - gem 'pg', '~> 1.5.3', :platforms => [:mri, :mingw, :x64_mingw] 62 - gem 'sqlite3', '~> 1.6.0', :platforms => [:mri, :mingw, :x64_mingw] 56 + gem 'pg', '~> 1.5.3' 57 + gem 'sqlite3', '~> 1.7.0' 58 + 59 + group :development, :test do 60 + gem 'debug' 61 + end 63 62 64 63 group :development do 65 64 gem 'listen', '~> 3.3' 66 - gem "yard" 65 + gem 'yard', require: false 66 + gem 'svg_sprite', require: false 67 67 end 68 68 69 69 group :test do ··· 74 74 # For running system tests 75 75 gem 'puma' 76 76 gem "capybara", ">= 3.39" 77 - if Gem.ruby_version < Gem::Version.new('3.0') 78 - gem "selenium-webdriver", "<= 4.9.0" 79 - gem "webdrivers", require: false 80 - else 81 - gem "selenium-webdriver", ">= 4.11.0" 82 - end 77 + gem 'selenium-webdriver', '>= 4.11.0' 83 78 # RuboCop 84 - gem 'rubocop', '~> 1.57.0', require: false 85 - gem 'rubocop-performance', '~> 1.19.0', require: false 86 - gem 'rubocop-rails', '~> 2.22.1', require: false 79 + gem 'rubocop', '~> 1.68.0', require: false 80 + gem 'rubocop-performance', '~> 1.22.0', require: false 81 + gem 'rubocop-rails', '~> 2.27.0', require: false 82 + gem 'bundle-audit', require: false 87 83 end 88 84 89 85 gem "webrick"
+166 -117
pkgs/by-name/re/redmine/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - actioncable (6.1.7.10) 5 - actionpack (= 6.1.7.10) 6 - activesupport (= 6.1.7.10) 4 + actioncable (7.2.2.1) 5 + actionpack (= 7.2.2.1) 6 + activesupport (= 7.2.2.1) 7 7 nio4r (~> 2.0) 8 8 websocket-driver (>= 0.6.1) 9 - actionmailbox (6.1.7.10) 10 - actionpack (= 6.1.7.10) 11 - activejob (= 6.1.7.10) 12 - activerecord (= 6.1.7.10) 13 - activestorage (= 6.1.7.10) 14 - activesupport (= 6.1.7.10) 15 - mail (>= 2.7.1) 16 - actionmailer (6.1.7.10) 17 - actionpack (= 6.1.7.10) 18 - actionview (= 6.1.7.10) 19 - activejob (= 6.1.7.10) 20 - activesupport (= 6.1.7.10) 21 - mail (~> 2.5, >= 2.5.4) 22 - rails-dom-testing (~> 2.0) 23 - actionpack (6.1.7.10) 24 - actionview (= 6.1.7.10) 25 - activesupport (= 6.1.7.10) 26 - rack (~> 2.0, >= 2.0.9) 9 + zeitwerk (~> 2.6) 10 + actionmailbox (7.2.2.1) 11 + actionpack (= 7.2.2.1) 12 + activejob (= 7.2.2.1) 13 + activerecord (= 7.2.2.1) 14 + activestorage (= 7.2.2.1) 15 + activesupport (= 7.2.2.1) 16 + mail (>= 2.8.0) 17 + actionmailer (7.2.2.1) 18 + actionpack (= 7.2.2.1) 19 + actionview (= 7.2.2.1) 20 + activejob (= 7.2.2.1) 21 + activesupport (= 7.2.2.1) 22 + mail (>= 2.8.0) 23 + rails-dom-testing (~> 2.2) 24 + actionpack (7.2.2.1) 25 + actionview (= 7.2.2.1) 26 + activesupport (= 7.2.2.1) 27 + nokogiri (>= 1.8.5) 28 + racc 29 + rack (>= 2.2.4, < 3.2) 30 + rack-session (>= 1.0.1) 27 31 rack-test (>= 0.6.3) 28 - rails-dom-testing (~> 2.0) 29 - rails-html-sanitizer (~> 1.0, >= 1.2.0) 32 + rails-dom-testing (~> 2.2) 33 + rails-html-sanitizer (~> 1.6) 34 + useragent (~> 0.16) 30 35 actionpack-xml_parser (2.0.1) 31 36 actionpack (>= 5.0) 32 37 railties (>= 5.0) 33 - actiontext (6.1.7.10) 34 - actionpack (= 6.1.7.10) 35 - activerecord (= 6.1.7.10) 36 - activestorage (= 6.1.7.10) 37 - activesupport (= 6.1.7.10) 38 + actiontext (7.2.2.1) 39 + actionpack (= 7.2.2.1) 40 + activerecord (= 7.2.2.1) 41 + activestorage (= 7.2.2.1) 42 + activesupport (= 7.2.2.1) 43 + globalid (>= 0.6.0) 38 44 nokogiri (>= 1.8.5) 39 - actionview (6.1.7.10) 40 - activesupport (= 6.1.7.10) 45 + actionview (7.2.2.1) 46 + activesupport (= 7.2.2.1) 41 47 builder (~> 3.1) 42 - erubi (~> 1.4) 43 - rails-dom-testing (~> 2.0) 44 - rails-html-sanitizer (~> 1.1, >= 1.2.0) 45 - activejob (6.1.7.10) 46 - activesupport (= 6.1.7.10) 48 + erubi (~> 1.11) 49 + rails-dom-testing (~> 2.2) 50 + rails-html-sanitizer (~> 1.6) 51 + activejob (7.2.2.1) 52 + activesupport (= 7.2.2.1) 47 53 globalid (>= 0.3.6) 48 - activemodel (6.1.7.10) 49 - activesupport (= 6.1.7.10) 50 - activerecord (6.1.7.10) 51 - activemodel (= 6.1.7.10) 52 - activesupport (= 6.1.7.10) 53 - activestorage (6.1.7.10) 54 - actionpack (= 6.1.7.10) 55 - activejob (= 6.1.7.10) 56 - activerecord (= 6.1.7.10) 57 - activesupport (= 6.1.7.10) 54 + activemodel (7.2.2.1) 55 + activesupport (= 7.2.2.1) 56 + activerecord (7.2.2.1) 57 + activemodel (= 7.2.2.1) 58 + activesupport (= 7.2.2.1) 59 + timeout (>= 0.4.0) 60 + activestorage (7.2.2.1) 61 + actionpack (= 7.2.2.1) 62 + activejob (= 7.2.2.1) 63 + activerecord (= 7.2.2.1) 64 + activesupport (= 7.2.2.1) 58 65 marcel (~> 1.0) 59 - mini_mime (>= 1.1.0) 60 - activesupport (6.1.7.10) 61 - concurrent-ruby (~> 1.0, >= 1.0.2) 66 + activesupport (7.2.2.1) 67 + base64 68 + benchmark (>= 0.3) 69 + bigdecimal 70 + concurrent-ruby (~> 1.0, >= 1.3.1) 71 + connection_pool (>= 2.2.5) 72 + drb 62 73 i18n (>= 1.6, < 2) 74 + logger (>= 1.4.2) 63 75 minitest (>= 5.1) 64 - tzinfo (~> 2.0) 65 - zeitwerk (~> 2.3) 76 + securerandom (>= 0.3) 77 + tzinfo (~> 2.0, >= 2.0.5) 66 78 addressable (2.8.7) 67 79 public_suffix (>= 2.0.2, < 7.0) 68 80 ast (2.4.2) 69 81 base64 (0.2.0) 82 + benchmark (0.4.0) 83 + bigdecimal (3.1.9) 70 84 builder (3.3.0) 85 + bundle-audit (0.1.0) 86 + bundler-audit 87 + bundler-audit (0.9.2) 88 + bundler (>= 1.2.0, < 3) 89 + thor (~> 1.0) 71 90 capybara (3.40.0) 72 91 addressable 73 92 matrix ··· 80 99 chunky_png (1.4.0) 81 100 commonmarker (0.23.11) 82 101 concurrent-ruby (1.3.5) 102 + connection_pool (2.5.0) 83 103 crass (1.0.6) 84 104 css_parser (1.21.1) 85 105 addressable 86 106 csv (3.2.9) 87 107 date (3.4.1) 108 + debug (1.10.0) 109 + irb (~> 1.10) 110 + reline (>= 0.3.8) 88 111 deckar01-task_list (2.3.2) 89 112 html-pipeline 90 113 docile (1.4.1) 114 + drb (2.2.1) 91 115 erubi (1.13.1) 92 116 ffi (1.17.1) 93 117 globalid (1.2.1) ··· 98 122 htmlentities (4.3.4) 99 123 i18n (1.14.7) 100 124 concurrent-ruby (~> 1.0) 101 - json (2.10.1) 125 + io-console (0.8.0) 126 + irb (1.15.1) 127 + pp (>= 0.6.0) 128 + rdoc (>= 4.0.0) 129 + reline (>= 0.4.2) 130 + json (2.10.2) 102 131 language_server-protocol (3.17.0.4) 103 132 listen (3.9.0) 104 133 rb-fsevent (~> 0.10, >= 0.10.3) ··· 114 143 net-smtp 115 144 marcel (1.0.4) 116 145 matrix (0.4.2) 117 - method_source (1.1.0) 118 - mini_magick (4.12.0) 146 + mini_magick (5.0.1) 119 147 mini_mime (1.1.5) 120 148 mini_portile2 (2.8.8) 121 - minitest (5.25.4) 149 + minitest (5.25.5) 122 150 mocha (2.7.1) 123 151 ruby2_keywords (>= 0.0.5) 124 152 mysql2 (0.5.6) 125 - net-imap (0.3.8) 153 + net-imap (0.4.19) 126 154 date 127 155 net-protocol 128 156 net-ldap (0.17.1) ··· 130 158 net-protocol 131 159 net-protocol (0.2.2) 132 160 timeout 133 - net-smtp (0.3.4) 161 + net-smtp (0.4.0.1) 134 162 net-protocol 135 163 nio4r (2.7.4) 136 - nokogiri (1.18.3) 164 + nokogiri (1.18.4) 137 165 mini_portile2 (~> 2.8.2) 138 166 racc (~> 1.4) 139 167 parallel (1.26.3) ··· 141 169 ast (~> 2.4.1) 142 170 racc 143 171 pg (1.5.9) 172 + pp (0.6.2) 173 + prettyprint 174 + prettyprint (0.2.0) 175 + propshaft (1.1.0) 176 + actionpack (>= 7.0.0) 177 + activesupport (>= 7.0.0) 178 + rack 179 + railties (>= 7.0.0) 180 + psych (5.2.3) 181 + date 182 + stringio 144 183 public_suffix (6.0.1) 145 184 puma (6.6.0) 146 185 nio4r (~> 2.0) 147 186 racc (1.8.1) 148 - rack (2.2.13) 187 + rack (3.1.12) 188 + rack-session (2.1.0) 189 + base64 (>= 0.1.0) 190 + rack (>= 3.0.0) 149 191 rack-test (2.2.0) 150 192 rack (>= 1.3) 151 - rails (6.1.7.10) 152 - actioncable (= 6.1.7.10) 153 - actionmailbox (= 6.1.7.10) 154 - actionmailer (= 6.1.7.10) 155 - actionpack (= 6.1.7.10) 156 - actiontext (= 6.1.7.10) 157 - actionview (= 6.1.7.10) 158 - activejob (= 6.1.7.10) 159 - activemodel (= 6.1.7.10) 160 - activerecord (= 6.1.7.10) 161 - activestorage (= 6.1.7.10) 162 - activesupport (= 6.1.7.10) 193 + rackup (2.2.1) 194 + rack (>= 3) 195 + rails (7.2.2.1) 196 + actioncable (= 7.2.2.1) 197 + actionmailbox (= 7.2.2.1) 198 + actionmailer (= 7.2.2.1) 199 + actionpack (= 7.2.2.1) 200 + actiontext (= 7.2.2.1) 201 + actionview (= 7.2.2.1) 202 + activejob (= 7.2.2.1) 203 + activemodel (= 7.2.2.1) 204 + activerecord (= 7.2.2.1) 205 + activestorage (= 7.2.2.1) 206 + activesupport (= 7.2.2.1) 163 207 bundler (>= 1.15.0) 164 - railties (= 6.1.7.10) 165 - sprockets-rails (>= 2.0.0) 208 + railties (= 7.2.2.1) 166 209 rails-dom-testing (2.2.0) 167 210 activesupport (>= 5.0.0) 168 211 minitest ··· 170 213 rails-html-sanitizer (1.6.2) 171 214 loofah (~> 2.21) 172 215 nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) 173 - railties (6.1.7.10) 174 - actionpack (= 6.1.7.10) 175 - activesupport (= 6.1.7.10) 176 - method_source 216 + railties (7.2.2.1) 217 + actionpack (= 7.2.2.1) 218 + activesupport (= 7.2.2.1) 219 + irb (~> 1.13) 220 + rackup (>= 1.0.0) 177 221 rake (>= 12.2) 178 - thor (~> 1.0) 222 + thor (~> 1.0, >= 1.2.2) 223 + zeitwerk (~> 2.6) 179 224 rainbow (3.1.1) 180 225 rake (13.2.1) 181 226 rb-fsevent (0.11.2) ··· 185 230 htmlentities 186 231 rbpdf-font (~> 1.19.0) 187 232 rbpdf-font (1.19.1) 188 - redcarpet (3.6.1) 233 + rdoc (6.12.0) 234 + psych (>= 4.0.0) 189 235 regexp_parser (2.10.0) 190 - request_store (1.5.1) 191 - rack (>= 1.4) 236 + reline (0.6.0) 237 + io-console (~> 0.5) 192 238 rexml (3.4.1) 193 239 roadie (5.2.1) 194 240 css_parser (~> 1.4) 195 241 nokogiri (~> 1.15) 196 - roadie-rails (3.1.0) 242 + roadie-rails (3.2.0) 197 243 railties (>= 5.1, < 8.0) 198 244 roadie (~> 5.0) 199 245 rotp (6.3.0) 200 - rouge (4.2.1) 246 + rouge (4.5.1) 201 247 rqrcode (2.2.0) 202 248 chunky_png (~> 1.0) 203 249 rqrcode_core (~> 1.0) 204 250 rqrcode_core (1.2.0) 205 - rubocop (1.57.2) 251 + rubocop (1.68.0) 206 252 json (~> 2.3) 207 253 language_server-protocol (>= 3.17.0) 208 254 parallel (~> 1.10) 209 - parser (>= 3.2.2.4) 255 + parser (>= 3.3.0.2) 210 256 rainbow (>= 2.2.2, < 4.0) 211 - regexp_parser (>= 1.8, < 3.0) 212 - rexml (>= 3.2.5, < 4.0) 213 - rubocop-ast (>= 1.28.1, < 2.0) 257 + regexp_parser (>= 2.4, < 3.0) 258 + rubocop-ast (>= 1.32.2, < 2.0) 214 259 ruby-progressbar (~> 1.7) 215 260 unicode-display_width (>= 2.4.0, < 3.0) 216 - rubocop-ast (1.38.1) 261 + rubocop-ast (1.39.0) 217 262 parser (>= 3.3.1.0) 218 - rubocop-performance (1.19.1) 219 - rubocop (>= 1.7.0, < 2.0) 220 - rubocop-ast (>= 0.4.0) 221 - rubocop-rails (2.22.2) 263 + rubocop-performance (1.22.1) 264 + rubocop (>= 1.48.1, < 2.0) 265 + rubocop-ast (>= 1.31.1, < 2.0) 266 + rubocop-rails (2.27.0) 222 267 activesupport (>= 4.2.0) 223 268 rack (>= 1.1) 224 - rubocop (>= 1.33.0, < 2.0) 225 - rubocop-ast (>= 1.30.0, < 2.0) 269 + rubocop (>= 1.52.0, < 2.0) 270 + rubocop-ast (>= 1.31.1, < 2.0) 226 271 ruby-progressbar (1.13.0) 227 272 ruby2_keywords (0.0.5) 228 273 rubyzip (2.3.2) 229 274 sanitize (6.1.3) 230 275 crass (~> 1.0.2) 231 276 nokogiri (>= 1.12.0) 277 + securerandom (0.4.1) 232 278 selenium-webdriver (4.29.1) 233 279 base64 (~> 0.2) 234 280 logger (~> 1.4) ··· 241 287 simplecov_json_formatter (~> 0.1) 242 288 simplecov-html (0.13.1) 243 289 simplecov_json_formatter (0.1.4) 244 - sprockets (4.2.1) 245 - concurrent-ruby (~> 1.0) 246 - rack (>= 2.2.4, < 4) 247 - sprockets-rails (3.5.2) 248 - actionpack (>= 6.1) 249 - activesupport (>= 6.1) 250 - sprockets (>= 3.0.0) 251 - sqlite3 (1.6.9) 290 + sqlite3 (1.7.3) 252 291 mini_portile2 (~> 2.8.0) 292 + stringio (3.1.5) 293 + svg_optimizer (0.3.0) 294 + nokogiri 295 + svg_sprite (1.0.3) 296 + nokogiri 297 + svg_optimizer 298 + thor 253 299 thor (1.3.2) 254 300 timeout (0.4.3) 255 301 tzinfo (2.0.6) 256 302 concurrent-ruby (~> 1.0) 257 303 unicode-display_width (2.6.0) 304 + useragent (0.16.11) 258 305 webrick (1.9.1) 259 306 websocket (1.2.11) 260 307 websocket-driver (0.7.7) ··· 275 322 DEPENDENCIES 276 323 actionpack-xml_parser 277 324 addressable 325 + bundle-audit 278 326 capybara (>= 3.39) 279 327 commonmarker (~> 0.23.8) 280 - csv (~> 3.2.6) 328 + csv (~> 3.2.8) 329 + debug 281 330 deckar01-task_list (= 2.3.2) 282 331 ffi 283 332 html-pipeline (~> 2.13.2) ··· 285 334 listen (~> 3.3) 286 335 mail (~> 2.8.1) 287 336 marcel 288 - mini_magick (~> 4.12.0) 337 + mini_magick (~> 5.0.1) 289 338 mini_mime (~> 1.1.0) 290 339 mocha (>= 2.0.1) 291 340 mysql2 (~> 0.5.0) 292 - net-imap (~> 0.3.4) 341 + net-imap (~> 0.4.8) 293 342 net-ldap (~> 0.17.0) 294 343 net-pop (~> 0.1.2) 295 - net-smtp (~> 0.3.3) 296 - nokogiri (= 1.18.3) 344 + net-smtp (~> 0.4.0) 345 + nokogiri (~> 1.18.3) 297 346 pg (~> 1.5.3) 347 + propshaft (~> 1.1.0) 298 348 puma 299 - rails (= 6.1.7.10) 349 + rack (>= 3.1.3) 350 + rails (= 7.2.2.1) 300 351 rails-dom-testing 301 352 rbpdf (~> 1.21.3) 302 - redcarpet (~> 3.6.0) 303 - request_store (~> 1.5.0) 304 - rexml 305 - roadie-rails (~> 3.1.0) 353 + roadie-rails (~> 3.2.0) 306 354 rotp (>= 5.0.0) 307 - rouge (~> 4.2.0) 355 + rouge (~> 4.5) 308 356 rqrcode 309 - rubocop (~> 1.57.0) 310 - rubocop-performance (~> 1.19.0) 311 - rubocop-rails (~> 2.22.1) 357 + rubocop (~> 1.68.0) 358 + rubocop-performance (~> 1.22.0) 359 + rubocop-rails (~> 2.27.0) 312 360 rubyzip (~> 2.3.0) 313 361 sanitize (~> 6.0) 314 362 selenium-webdriver (>= 4.11.0) 315 363 simplecov (~> 0.22.0) 316 - sqlite3 (~> 1.6.0) 364 + sqlite3 (~> 1.7.0) 365 + svg_sprite 317 366 tzinfo-data 318 367 webrick 319 368 with_advisory_lock
+286 -138
pkgs/by-name/re/redmine/gemset.nix
··· 1 1 { 2 2 actioncable = { 3 - dependencies = ["actionpack" "activesupport" "nio4r" "websocket-driver"]; 3 + dependencies = ["actionpack" "activesupport" "nio4r" "websocket-driver" "zeitwerk"]; 4 4 groups = ["default"]; 5 5 platforms = []; 6 6 source = { 7 7 remotes = ["https://rubygems.org"]; 8 - sha256 = "0a2rn3ygh50d7p29zvd0yfcd0q7kf4c2n2kf1kjgxf3qlyi5036h"; 8 + sha256 = "1d7z3fqanmzr6d99idvm2qj6lil2pxn5haxz7kb6f1x8fm88hfsv"; 9 9 type = "gem"; 10 10 }; 11 - version = "6.1.7.10"; 11 + version = "7.2.2.1"; 12 12 }; 13 13 actionmailbox = { 14 14 dependencies = ["actionpack" "activejob" "activerecord" "activestorage" "activesupport" "mail"]; ··· 16 16 platforms = []; 17 17 source = { 18 18 remotes = ["https://rubygems.org"]; 19 - sha256 = "19f6kc470ahwmnrpc302wdkw8c6yw15q442g6cq4wccmkdarflz9"; 19 + sha256 = "098f12d19q64d0svzgz73w23mv2y3zmccryybp3hfi8gab14fsl9"; 20 20 type = "gem"; 21 21 }; 22 - version = "6.1.7.10"; 22 + version = "7.2.2.1"; 23 23 }; 24 24 actionmailer = { 25 25 dependencies = ["actionpack" "actionview" "activejob" "activesupport" "mail" "rails-dom-testing"]; ··· 27 27 platforms = []; 28 28 source = { 29 29 remotes = ["https://rubygems.org"]; 30 - sha256 = "1nyzqnl6wz7qxynbwwra7vlajm6hi5swfk52zrp6x1c62zj4blrd"; 30 + sha256 = "07xjqxmwif57wxz28ch10c3c2261ydv1x56vsiidg2icqciyaamh"; 31 31 type = "gem"; 32 32 }; 33 - version = "6.1.7.10"; 33 + version = "7.2.2.1"; 34 34 }; 35 35 actionpack = { 36 - dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; 36 + dependencies = ["actionview" "activesupport" "nokogiri" "racc" "rack" "rack-session" "rack-test" "rails-dom-testing" "rails-html-sanitizer" "useragent"]; 37 37 groups = ["default"]; 38 38 platforms = []; 39 39 source = { 40 40 remotes = ["https://rubygems.org"]; 41 - sha256 = "0vnmynck11qwzzza8knx63a8djsrz0f2cibdnk463nr19ghjdmbx"; 41 + sha256 = "0d7pq6fsf041fvskzmqm12xcgk5m9d5fa6kbs1lsbmfbgc51dchp"; 42 42 type = "gem"; 43 43 }; 44 - version = "6.1.7.10"; 44 + version = "7.2.2.1"; 45 45 }; 46 46 actionpack-xml_parser = { 47 47 dependencies = ["actionpack" "railties"]; ··· 55 55 version = "2.0.1"; 56 56 }; 57 57 actiontext = { 58 - dependencies = ["actionpack" "activerecord" "activestorage" "activesupport" "nokogiri"]; 58 + dependencies = ["actionpack" "activerecord" "activestorage" "activesupport" "globalid" "nokogiri"]; 59 59 groups = ["default"]; 60 60 platforms = []; 61 61 source = { 62 62 remotes = ["https://rubygems.org"]; 63 - sha256 = "1r2bdsbm6zl85fy9kaqspq34cfh4da69hxag5ahbncq5cicdvpn0"; 63 + sha256 = "1mphlcvnfba3gd1sydcrr2i7brfwlcbxjmwjpybvcx363bjcwsgk"; 64 64 type = "gem"; 65 65 }; 66 - version = "6.1.7.10"; 66 + version = "7.2.2.1"; 67 67 }; 68 68 actionview = { 69 69 dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; ··· 71 71 platforms = []; 72 72 source = { 73 73 remotes = ["https://rubygems.org"]; 74 - sha256 = "1hmw0ymn4f0x4yxb1wrbycjan0z72x1wgq9g9ljfmv3fd66a7dr3"; 74 + sha256 = "19arngl1nshasvbh90gzc23z1vpid2xzg3043grbmcfqyc68iz39"; 75 75 type = "gem"; 76 76 }; 77 - version = "6.1.7.10"; 77 + version = "7.2.2.1"; 78 78 }; 79 79 activejob = { 80 80 dependencies = ["activesupport" "globalid"]; ··· 82 82 platforms = []; 83 83 source = { 84 84 remotes = ["https://rubygems.org"]; 85 - sha256 = "1k0nmq5djwmhk61px5749x9i9m5cginz6z4kzz6ncifhmrc0q47i"; 85 + sha256 = "0nryqb19i3frxhanykf6lmrw0rb09863z114gi7sm55kff2mmygj"; 86 86 type = "gem"; 87 87 }; 88 - version = "6.1.7.10"; 88 + version = "7.2.2.1"; 89 89 }; 90 90 activemodel = { 91 91 dependencies = ["activesupport"]; ··· 93 93 platforms = []; 94 94 source = { 95 95 remotes = ["https://rubygems.org"]; 96 - sha256 = "132bbnhkax3fqxx26yswrr60fgizn506bkf7gr1m1x4p0lfrnban"; 96 + sha256 = "1bzxvccj8349slymls7navb5y14anglkkasphcd6gi72kqgqd643"; 97 97 type = "gem"; 98 98 }; 99 - version = "6.1.7.10"; 99 + version = "7.2.2.1"; 100 100 }; 101 101 activerecord = { 102 - dependencies = ["activemodel" "activesupport"]; 102 + dependencies = ["activemodel" "activesupport" "timeout"]; 103 103 groups = ["default"]; 104 104 platforms = []; 105 105 source = { 106 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "06mkkxbcqsyahmqc775niyc8bfbxvashy7davjx3fm1s8kpij5yv"; 107 + sha256 = "1fgscw775wj4l7f5pj274a984paz23zy0111giqkhl9dqdqiz8vr"; 108 108 type = "gem"; 109 109 }; 110 - version = "6.1.7.10"; 110 + version = "7.2.2.1"; 111 111 }; 112 112 activestorage = { 113 - dependencies = ["actionpack" "activejob" "activerecord" "activesupport" "marcel" "mini_mime"]; 113 + dependencies = ["actionpack" "activejob" "activerecord" "activesupport" "marcel"]; 114 114 groups = ["default"]; 115 115 platforms = []; 116 116 source = { 117 117 remotes = ["https://rubygems.org"]; 118 - sha256 = "1p6l6nk7krnvn7gz15v40w3m71d9avf5sw1n38xl2r95s3zy4fjv"; 118 + sha256 = "0psjqn03irbfk79x57ylaaaj83pqqcwy8b4mwrp6bmnljkzkbv5l"; 119 119 type = "gem"; 120 120 }; 121 - version = "6.1.7.10"; 121 + version = "7.2.2.1"; 122 122 }; 123 123 activesupport = { 124 - dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo" "zeitwerk"]; 124 + dependencies = ["base64" "benchmark" "bigdecimal" "concurrent-ruby" "connection_pool" "drb" "i18n" "logger" "minitest" "securerandom" "tzinfo"]; 125 125 groups = ["common_mark" "default" "test"]; 126 126 platforms = []; 127 127 source = { 128 128 remotes = ["https://rubygems.org"]; 129 - sha256 = "0w6l6fzi4nin364hfr5qbjrr70mgf3phk9cvjmjzgyvvg9w1z3iz"; 129 + sha256 = "1xa7hr4gp2p86ly6n1j2skyx8pfg6yi621kmnh7zhxr9m7wcnaw4"; 130 130 type = "gem"; 131 131 }; 132 - version = "6.1.7.10"; 132 + version = "7.2.2.1"; 133 133 }; 134 134 addressable = { 135 135 dependencies = ["public_suffix"]; ··· 153 153 version = "2.4.2"; 154 154 }; 155 155 base64 = { 156 - groups = ["default" "test"]; 156 + groups = ["common_mark" "default" "test"]; 157 157 platforms = []; 158 158 source = { 159 159 remotes = ["https://rubygems.org"]; ··· 162 162 }; 163 163 version = "0.2.0"; 164 164 }; 165 + benchmark = { 166 + groups = ["common_mark" "default" "test"]; 167 + platforms = []; 168 + source = { 169 + remotes = ["https://rubygems.org"]; 170 + sha256 = "0jl71qcgamm96dzyqk695j24qszhcc7liw74qc83fpjljp2gh4hg"; 171 + type = "gem"; 172 + }; 173 + version = "0.4.0"; 174 + }; 175 + bigdecimal = { 176 + groups = ["common_mark" "default" "test"]; 177 + platforms = []; 178 + source = { 179 + remotes = ["https://rubygems.org"]; 180 + sha256 = "1k6qzammv9r6b2cw3siasaik18i6wjc5m0gw5nfdc6jj64h79z1g"; 181 + type = "gem"; 182 + }; 183 + version = "3.1.9"; 184 + }; 165 185 builder = { 166 186 groups = ["default"]; 167 187 platforms = []; ··· 172 192 }; 173 193 version = "3.3.0"; 174 194 }; 195 + bundle-audit = { 196 + dependencies = ["bundler-audit"]; 197 + groups = ["test"]; 198 + platforms = []; 199 + source = { 200 + remotes = ["https://rubygems.org"]; 201 + sha256 = "0hvs3blinwd1ngqpf27p8rzim32r11xwhsdy6yl1ns6y1j98bw68"; 202 + type = "gem"; 203 + }; 204 + version = "0.1.0"; 205 + }; 206 + bundler-audit = { 207 + dependencies = ["thor"]; 208 + groups = ["default" "test"]; 209 + platforms = []; 210 + source = { 211 + remotes = ["https://rubygems.org"]; 212 + sha256 = "0j0h5cgnzk0ms17ssjkzfzwz65ggrs3lsp53a1j46p4616m1s1bk"; 213 + type = "gem"; 214 + }; 215 + version = "0.9.2"; 216 + }; 175 217 capybara = { 176 218 dependencies = ["addressable" "matrix" "mini_mime" "nokogiri" "rack" "rack-test" "regexp_parser" "xpath"]; 177 219 groups = ["test"]; ··· 213 255 }; 214 256 version = "1.3.5"; 215 257 }; 258 + connection_pool = { 259 + groups = ["common_mark" "default" "test"]; 260 + platforms = []; 261 + source = { 262 + remotes = ["https://rubygems.org"]; 263 + sha256 = "1z7bag6zb2vwi7wp2bkdkmk7swkj6zfnbsnc949qq0wfsgw94fr3"; 264 + type = "gem"; 265 + }; 266 + version = "2.5.0"; 267 + }; 216 268 crass = { 217 269 groups = ["default"]; 218 270 platforms = []; ··· 245 297 version = "3.2.9"; 246 298 }; 247 299 date = { 248 - groups = ["default"]; 300 + groups = ["default" "development" "test"]; 249 301 platforms = []; 250 302 source = { 251 303 remotes = ["https://rubygems.org"]; ··· 254 306 }; 255 307 version = "3.4.1"; 256 308 }; 309 + debug = { 310 + dependencies = ["irb" "reline"]; 311 + groups = ["development" "test"]; 312 + platforms = []; 313 + source = { 314 + remotes = ["https://rubygems.org"]; 315 + sha256 = "1977s95s9ns6mpbhg68pg6ggnpxxf8wly4244ihrx5vm92kqrqhi"; 316 + type = "gem"; 317 + }; 318 + version = "1.10.0"; 319 + }; 257 320 deckar01-task_list = { 258 321 dependencies = ["html-pipeline"]; 259 322 groups = ["common_mark"]; ··· 274 337 type = "gem"; 275 338 }; 276 339 version = "1.4.1"; 340 + }; 341 + drb = { 342 + groups = ["common_mark" "default" "test"]; 343 + platforms = []; 344 + source = { 345 + remotes = ["https://rubygems.org"]; 346 + sha256 = "0h5kbj9hvg5hb3c7l425zpds0vb42phvln2knab8nmazg2zp5m79"; 347 + type = "gem"; 348 + }; 349 + version = "2.2.1"; 277 350 }; 278 351 erubi = { 279 352 groups = ["default"]; ··· 348 421 }; 349 422 version = "1.14.7"; 350 423 }; 424 + io-console = { 425 + groups = ["default" "development" "test"]; 426 + platforms = []; 427 + source = { 428 + remotes = ["https://rubygems.org"]; 429 + sha256 = "18pgvl7lfjpichdfh1g50rpz0zpaqrpr52ybn9liv1v9pjn9ysnd"; 430 + type = "gem"; 431 + }; 432 + version = "0.8.0"; 433 + }; 434 + irb = { 435 + dependencies = ["pp" "rdoc" "reline"]; 436 + groups = ["default" "development" "test"]; 437 + platforms = []; 438 + source = { 439 + remotes = ["https://rubygems.org"]; 440 + sha256 = "1478m97wiy6nwg6lnl0szy39p46acsvrhax552vsh1s2mi2sgg6r"; 441 + type = "gem"; 442 + }; 443 + version = "1.15.1"; 444 + }; 351 445 json = { 352 446 groups = ["default" "test"]; 353 447 platforms = []; 354 448 source = { 355 449 remotes = ["https://rubygems.org"]; 356 - sha256 = "1p4l5ycdxfsr8b51gnvlvhq6s21vmx9z4x617003zbqv3bcqmj6x"; 450 + sha256 = "01lbdaizhkxmrw4y8j3wpvsryvnvzmg0pfs56c52laq2jgdfmq1l"; 357 451 type = "gem"; 358 452 }; 359 - version = "2.10.1"; 453 + version = "2.10.2"; 360 454 }; 361 455 language_server-protocol = { 362 456 groups = ["default" "test"]; ··· 380 474 version = "3.9.0"; 381 475 }; 382 476 logger = { 383 - groups = ["default" "test"]; 477 + groups = ["common_mark" "default" "test"]; 384 478 platforms = []; 385 479 source = { 386 480 remotes = ["https://rubygems.org"]; ··· 431 525 }; 432 526 version = "0.4.2"; 433 527 }; 434 - method_source = { 435 - groups = ["default"]; 436 - platforms = []; 437 - source = { 438 - remotes = ["https://rubygems.org"]; 439 - sha256 = "1igmc3sq9ay90f8xjvfnswd1dybj1s3fi0dwd53inwsvqk4h24qq"; 440 - type = "gem"; 441 - }; 442 - version = "1.1.0"; 443 - }; 444 528 mini_magick = { 445 529 groups = ["minimagick"]; 446 530 platforms = []; 447 531 source = { 448 532 remotes = ["https://rubygems.org"]; 449 - sha256 = "0slh78f9z6n0l1i2km7m48yz7l4fjrk88sj1f4mh1wb39sl2yc37"; 533 + sha256 = "1ig7gl9q0qf5c54f9gvg8mqzi15dy6p71q25j80mb4bdnj9v6sz6"; 450 534 type = "gem"; 451 535 }; 452 - version = "4.12.0"; 536 + version = "5.0.1"; 453 537 }; 454 538 mini_mime = { 455 539 groups = ["default" "test"]; ··· 462 546 version = "1.1.5"; 463 547 }; 464 548 mini_portile2 = { 465 - groups = ["common_mark" "default" "test"]; 466 - platforms = [{ 467 - engine = "maglev"; 468 - } { 469 - engine = "mingw"; 470 - } { 471 - engine = "mingw"; 472 - } { 473 - engine = "ruby"; 474 - }]; 549 + groups = ["common_mark" "default" "development" "test"]; 550 + platforms = []; 475 551 source = { 476 552 remotes = ["https://rubygems.org"]; 477 553 sha256 = "0x8asxl83msn815lwmb2d7q5p29p7drhjv5va0byhk60v9n16iwf"; ··· 484 560 platforms = []; 485 561 source = { 486 562 remotes = ["https://rubygems.org"]; 487 - sha256 = "0izrg03wn2yj3gd76ck7ifbm9h2kgy8kpg4fk06ckpy4bbicmwlw"; 563 + sha256 = "0mn7q9yzrwinvfvkyjiz548a4rmcwbmz2fn9nyzh4j1snin6q6rr"; 488 564 type = "gem"; 489 565 }; 490 - version = "5.25.4"; 566 + version = "5.25.5"; 491 567 }; 492 568 mocha = { 493 569 dependencies = ["ruby2_keywords"]; ··· 502 578 }; 503 579 mysql2 = { 504 580 groups = ["default"]; 505 - platforms = [{ 506 - engine = "maglev"; 507 - } { 508 - engine = "mingw"; 509 - } { 510 - engine = "mingw"; 511 - } { 512 - engine = "ruby"; 513 - }]; 581 + platforms = []; 514 582 source = { 515 583 remotes = ["https://rubygems.org"]; 516 584 sha256 = "0cysv1wdfdbizwkd0d9s16s832khdwv31pgp01mw2g3bbpa4gx3h"; ··· 524 592 platforms = []; 525 593 source = { 526 594 remotes = ["https://rubygems.org"]; 527 - sha256 = "1wbpydx11bmhi3vv3p4q5yr25xaifq175b2qcvrn66dvc9h8bks7"; 595 + sha256 = "19cq7hbddq23yhyqysds2ic89mg3h8ngvmvjf0sj6k25cgwrlnc9"; 528 596 type = "gem"; 529 597 }; 530 - version = "0.3.8"; 598 + version = "0.4.19"; 531 599 }; 532 600 net-ldap = { 533 601 groups = ["ldap"]; ··· 567 635 platforms = []; 568 636 source = { 569 637 remotes = ["https://rubygems.org"]; 570 - sha256 = "0hwiqplhi29kfjl8jm0rhl51qv6wmxfynl4qap1dhv9xdwc4bm1x"; 638 + sha256 = "0csspzqrg7s2v2wdp6vqqs1rra6w5ilpgnps5h52ig6rp7x2i389"; 571 639 type = "gem"; 572 640 }; 573 - version = "0.3.4"; 641 + version = "0.4.0.1"; 574 642 }; 575 643 nio4r = { 576 644 groups = ["default" "test"]; ··· 584 652 }; 585 653 nokogiri = { 586 654 dependencies = ["mini_portile2" "racc"]; 587 - groups = ["common_mark" "default" "test"]; 655 + groups = ["common_mark" "default" "development" "test"]; 588 656 platforms = []; 589 657 source = { 590 658 remotes = ["https://rubygems.org"]; 591 - sha256 = "0npx535cs8qc33n0lpbbwl0p9fi3a5bczn6ayqhxvknh9yqw77vb"; 659 + sha256 = "1b34gaa6fiby5fb0zn1p5f8h1rx84wxz0bq9w39y3fhv3i920y5v"; 592 660 type = "gem"; 593 661 }; 594 - version = "1.18.3"; 662 + version = "1.18.4"; 595 663 }; 596 664 parallel = { 597 665 groups = ["default" "test"]; ··· 616 684 }; 617 685 pg = { 618 686 groups = ["default"]; 619 - platforms = [{ 620 - engine = "maglev"; 621 - } { 622 - engine = "mingw"; 623 - } { 624 - engine = "mingw"; 625 - } { 626 - engine = "ruby"; 627 - }]; 687 + platforms = []; 628 688 source = { 629 689 remotes = ["https://rubygems.org"]; 630 690 sha256 = "1p2gqqrm895fzr9vi8d118zhql67bm8ydjvgqbq1crdnfggzn7kn"; ··· 632 692 }; 633 693 version = "1.5.9"; 634 694 }; 695 + pp = { 696 + dependencies = ["prettyprint"]; 697 + groups = ["default" "development" "test"]; 698 + platforms = []; 699 + source = { 700 + remotes = ["https://rubygems.org"]; 701 + sha256 = "1zxnfxjni0r9l2x42fyq0sqpnaf5nakjbap8irgik4kg1h9c6zll"; 702 + type = "gem"; 703 + }; 704 + version = "0.6.2"; 705 + }; 706 + prettyprint = { 707 + groups = ["default" "development" "test"]; 708 + platforms = []; 709 + source = { 710 + remotes = ["https://rubygems.org"]; 711 + sha256 = "14zicq3plqi217w6xahv7b8f7aj5kpxv1j1w98344ix9h5ay3j9b"; 712 + type = "gem"; 713 + }; 714 + version = "0.2.0"; 715 + }; 716 + propshaft = { 717 + dependencies = ["actionpack" "activesupport" "rack" "railties"]; 718 + groups = ["default"]; 719 + platforms = []; 720 + source = { 721 + remotes = ["https://rubygems.org"]; 722 + sha256 = "0sqg0xf46xd47zdpm8d12kfnwl0y5jb2hj10imzb3bk6mwgkd2fk"; 723 + type = "gem"; 724 + }; 725 + version = "1.1.0"; 726 + }; 727 + psych = { 728 + dependencies = ["date" "stringio"]; 729 + groups = ["default" "development" "test"]; 730 + platforms = []; 731 + source = { 732 + remotes = ["https://rubygems.org"]; 733 + sha256 = "1vjrx3yd596zzi42dcaq5xw7hil1921r769dlbz08iniaawlp9c4"; 734 + type = "gem"; 735 + }; 736 + version = "5.2.3"; 737 + }; 635 738 public_suffix = { 636 739 groups = ["default" "test"]; 637 740 platforms = []; ··· 654 757 version = "6.6.0"; 655 758 }; 656 759 racc = { 657 - groups = ["common_mark" "default" "test"]; 760 + groups = ["common_mark" "default" "development" "test"]; 658 761 platforms = []; 659 762 source = { 660 763 remotes = ["https://rubygems.org"]; ··· 668 771 platforms = []; 669 772 source = { 670 773 remotes = ["https://rubygems.org"]; 671 - sha256 = "1yzhcwvfkrlb8l79w24yjclv636jn6rnznp95shmssk934bi1vnc"; 774 + sha256 = "0h65a1f9gsqx2ryisdy4lrd9a9l8gdv65dcscw9ynwwjr1ak1n00"; 775 + type = "gem"; 776 + }; 777 + version = "3.1.12"; 778 + }; 779 + rack-session = { 780 + dependencies = ["base64" "rack"]; 781 + groups = ["default"]; 782 + platforms = []; 783 + source = { 784 + remotes = ["https://rubygems.org"]; 785 + sha256 = "1452c1bhh6fdnv17s1z65ajwh08axqnlmkhnr1qyyn2vacb3jz23"; 672 786 type = "gem"; 673 787 }; 674 - version = "2.2.13"; 788 + version = "2.1.0"; 675 789 }; 676 790 rack-test = { 677 791 dependencies = ["rack"]; ··· 684 798 }; 685 799 version = "2.2.0"; 686 800 }; 801 + rackup = { 802 + dependencies = ["rack"]; 803 + groups = ["default"]; 804 + platforms = []; 805 + source = { 806 + remotes = ["https://rubygems.org"]; 807 + sha256 = "13brkq5xkj6lcdxj3f0k7v28hgrqhqxjlhd4y2vlicy5slgijdzp"; 808 + type = "gem"; 809 + }; 810 + version = "2.2.1"; 811 + }; 687 812 rails = { 688 - dependencies = ["actioncable" "actionmailbox" "actionmailer" "actionpack" "actiontext" "actionview" "activejob" "activemodel" "activerecord" "activestorage" "activesupport" "railties" "sprockets-rails"]; 813 + dependencies = ["actioncable" "actionmailbox" "actionmailer" "actionpack" "actiontext" "actionview" "activejob" "activemodel" "activerecord" "activestorage" "activesupport" "railties"]; 689 814 groups = ["default"]; 690 815 platforms = []; 691 816 source = { 692 817 remotes = ["https://rubygems.org"]; 693 - sha256 = "1lc8j6b4nvsxa5m86nxw4ydv3h21xw1m5rk0n43i9zlixjrr55l0"; 818 + sha256 = "0h5vr7wd15s4zlhrnrm97b1h5bjdlcd5lvh6x2sl6khgnh21dnxf"; 694 819 type = "gem"; 695 820 }; 696 - version = "6.1.7.10"; 821 + version = "7.2.2.1"; 697 822 }; 698 823 rails-dom-testing = { 699 824 dependencies = ["activesupport" "minitest" "nokogiri"]; ··· 718 843 version = "1.6.2"; 719 844 }; 720 845 railties = { 721 - dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor"]; 846 + dependencies = ["actionpack" "activesupport" "irb" "rackup" "rake" "thor" "zeitwerk"]; 722 847 groups = ["default"]; 723 848 platforms = []; 724 849 source = { 725 850 remotes = ["https://rubygems.org"]; 726 - sha256 = "02szdqfif0s34k2lwfj9pm06m2h6dkhc5ni021s2q5val4c7lvny"; 851 + sha256 = "07zy8b88qxx493pc5sfkzvxqj3zcf363r1128n3hsvfx2vqipwg3"; 727 852 type = "gem"; 728 853 }; 729 - version = "6.1.7.10"; 854 + version = "7.2.2.1"; 730 855 }; 731 856 rainbow = { 732 857 groups = ["default" "test"]; ··· 790 915 }; 791 916 version = "1.19.1"; 792 917 }; 793 - redcarpet = { 794 - groups = ["markdown"]; 918 + rdoc = { 919 + dependencies = ["psych"]; 920 + groups = ["default" "development" "test"]; 795 921 platforms = []; 796 922 source = { 797 923 remotes = ["https://rubygems.org"]; 798 - sha256 = "0iglapqs4av4za9yfaac0lna7s16fq2xn36wpk380m55d8792i6l"; 924 + sha256 = "1q2nkyk6r3m15a2an7lwm4ilkcxzdh3j93s4ib8sbzqb0xp70vvx"; 799 925 type = "gem"; 800 926 }; 801 - version = "3.6.1"; 927 + version = "6.12.0"; 802 928 }; 803 929 regexp_parser = { 804 930 groups = ["default" "test"]; ··· 810 936 }; 811 937 version = "2.10.0"; 812 938 }; 813 - request_store = { 814 - dependencies = ["rack"]; 815 - groups = ["default"]; 939 + reline = { 940 + dependencies = ["io-console"]; 941 + groups = ["default" "development" "test"]; 816 942 platforms = []; 817 943 source = { 818 944 remotes = ["https://rubygems.org"]; 819 - sha256 = "13ppgmsbrqah08j06bybd3cddv6dml79yzyjn7r8j1src78h98h7"; 945 + sha256 = "1lirwlw59apc8m1wjk85y2xidiv0fkxjn6f7p84yqmmyvish6qjp"; 820 946 type = "gem"; 821 947 }; 822 - version = "1.5.1"; 948 + version = "0.6.0"; 823 949 }; 824 950 rexml = { 825 951 groups = ["default" "test"]; ··· 848 974 platforms = []; 849 975 source = { 850 976 remotes = ["https://rubygems.org"]; 851 - sha256 = "08fycjfbg9rqksk3bch8qv76g7acd1jbxy2y68lsqz1gxfky2ias"; 977 + sha256 = "0gs3axi7nsmsh3y7ix1n9wn4ccsxgv2dpgwy9yzgvsfggy2k99ch"; 852 978 type = "gem"; 853 979 }; 854 - version = "3.1.0"; 980 + version = "3.2.0"; 855 981 }; 856 982 rotp = { 857 983 groups = ["default"]; ··· 868 994 platforms = []; 869 995 source = { 870 996 remotes = ["https://rubygems.org"]; 871 - sha256 = "1zd1pdldi6h8x27dqim7cy8m69xr01aw5c8k1zhkz497n4np6wgk"; 997 + sha256 = "1pchwrkr0994v7mh054lcp0na3bk3mj2sk0dc33bn6bhxrnirj1a"; 872 998 type = "gem"; 873 999 }; 874 - version = "4.2.1"; 1000 + version = "4.5.1"; 875 1001 }; 876 1002 rqrcode = { 877 1003 dependencies = ["chunky_png" "rqrcode_core"]; ··· 895 1021 version = "1.2.0"; 896 1022 }; 897 1023 rubocop = { 898 - dependencies = ["json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; 1024 + dependencies = ["json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; 899 1025 groups = ["test"]; 900 1026 platforms = []; 901 1027 source = { 902 1028 remotes = ["https://rubygems.org"]; 903 - sha256 = "06qnp5zs233j4f59yyqrg8al6hr9n4a7vcdg3p31v0np8bz9srwg"; 1029 + sha256 = "0ay1lrz3ffrznjfr65c6xvkinb6m4l7h68cd9qbrf7nq0j2m1pq7"; 904 1030 type = "gem"; 905 1031 }; 906 - version = "1.57.2"; 1032 + version = "1.68.0"; 907 1033 }; 908 1034 rubocop-ast = { 909 1035 dependencies = ["parser"]; ··· 911 1037 platforms = []; 912 1038 source = { 913 1039 remotes = ["https://rubygems.org"]; 914 - sha256 = "1zjpv3kw4ciwk0dh43zj17ws318vnirby1clmcy6j9mvr4mbxv40"; 1040 + sha256 = "0v13m0ckd80mbvdbhwn52qqrdx1ii6n0b566h4xh7vgcgikhzfmn"; 915 1041 type = "gem"; 916 1042 }; 917 - version = "1.38.1"; 1043 + version = "1.39.0"; 918 1044 }; 919 1045 rubocop-performance = { 920 1046 dependencies = ["rubocop" "rubocop-ast"]; ··· 922 1048 platforms = []; 923 1049 source = { 924 1050 remotes = ["https://rubygems.org"]; 925 - sha256 = "1pzsrnjmrachdjxzl9jpw47cydicn3408vgdg3a4bss4v5r42rjj"; 1051 + sha256 = "0yd616imfjvlpwsk7lw5kq9h4iz6qkmf10xlaib6b47fy5x77ncy"; 926 1052 type = "gem"; 927 1053 }; 928 - version = "1.19.1"; 1054 + version = "1.22.1"; 929 1055 }; 930 1056 rubocop-rails = { 931 1057 dependencies = ["activesupport" "rack" "rubocop" "rubocop-ast"]; ··· 933 1059 platforms = []; 934 1060 source = { 935 1061 remotes = ["https://rubygems.org"]; 936 - sha256 = "0ym0h2w97b8c2h6zl44m22lzg253qkmim0ali32aiy58ddvbj0mm"; 1062 + sha256 = "1zplyab5n8gh7zzbwrrxrkzb2406afrjm6a3a3zdx72k17swx9n3"; 937 1063 type = "gem"; 938 1064 }; 939 - version = "2.22.2"; 1065 + version = "2.27.0"; 940 1066 }; 941 1067 ruby-progressbar = { 942 1068 groups = ["default" "test"]; ··· 979 1105 }; 980 1106 version = "6.1.3"; 981 1107 }; 1108 + securerandom = { 1109 + groups = ["common_mark" "default" "test"]; 1110 + platforms = []; 1111 + source = { 1112 + remotes = ["https://rubygems.org"]; 1113 + sha256 = "1cd0iriqfsf1z91qg271sm88xjnfd92b832z49p1nd542ka96lfc"; 1114 + type = "gem"; 1115 + }; 1116 + version = "0.4.1"; 1117 + }; 982 1118 selenium-webdriver = { 983 1119 dependencies = ["base64" "logger" "rexml" "rubyzip" "websocket"]; 984 1120 groups = ["test"]; ··· 1021 1157 }; 1022 1158 version = "0.1.4"; 1023 1159 }; 1024 - sprockets = { 1025 - dependencies = ["concurrent-ruby" "rack"]; 1160 + sqlite3 = { 1161 + dependencies = ["mini_portile2"]; 1026 1162 groups = ["default"]; 1027 1163 platforms = []; 1028 1164 source = { 1029 1165 remotes = ["https://rubygems.org"]; 1030 - sha256 = "15rzfzd9dca4v0mr0bbhsbwhygl0k9l24iqqlx0fijig5zfi66wm"; 1166 + sha256 = "073hd24qwx9j26cqbk0jma0kiajjv9fb8swv9rnz8j4mf0ygcxzs"; 1031 1167 type = "gem"; 1032 1168 }; 1033 - version = "4.2.1"; 1169 + version = "1.7.3"; 1034 1170 }; 1035 - sprockets-rails = { 1036 - dependencies = ["actionpack" "activesupport" "sprockets"]; 1037 - groups = ["default"]; 1171 + stringio = { 1172 + groups = ["default" "development" "test"]; 1173 + platforms = []; 1174 + source = { 1175 + remotes = ["https://rubygems.org"]; 1176 + sha256 = "1j1mgvrgkxhadi6nb6pz1kcff7gsb5aivj1vfhsia4ssa5hj9adw"; 1177 + type = "gem"; 1178 + }; 1179 + version = "3.1.5"; 1180 + }; 1181 + svg_optimizer = { 1182 + dependencies = ["nokogiri"]; 1183 + groups = ["default" "development"]; 1038 1184 platforms = []; 1039 1185 source = { 1040 1186 remotes = ["https://rubygems.org"]; 1041 - sha256 = "17hiqkdpcjyyhlm997mgdcr45v35j5802m5a979i5jgqx5n8xs59"; 1187 + sha256 = "0v0i24l0aphc9rcpnz40hyxd8a68jlki74xpncxcyrlr80fnsx6q"; 1042 1188 type = "gem"; 1043 1189 }; 1044 - version = "3.5.2"; 1190 + version = "0.3.0"; 1045 1191 }; 1046 - sqlite3 = { 1047 - dependencies = ["mini_portile2"]; 1048 - groups = ["default"]; 1049 - platforms = [{ 1050 - engine = "maglev"; 1051 - } { 1052 - engine = "mingw"; 1053 - } { 1054 - engine = "mingw"; 1055 - } { 1056 - engine = "ruby"; 1057 - }]; 1192 + svg_sprite = { 1193 + dependencies = ["nokogiri" "svg_optimizer" "thor"]; 1194 + groups = ["development"]; 1195 + platforms = []; 1058 1196 source = { 1059 1197 remotes = ["https://rubygems.org"]; 1060 - sha256 = "08irz5llz31im8pmkk5k0kw433jyyji1qa98xkdmpphncdjr38am"; 1198 + sha256 = "1jdf1nq6z3c3fwkq45hsjkwhr1b5lfqs9378zswlg6l5ry9vzpn6"; 1061 1199 type = "gem"; 1062 1200 }; 1063 - version = "1.6.9"; 1201 + version = "1.0.3"; 1064 1202 }; 1065 1203 thor = { 1066 - groups = ["default"]; 1204 + groups = ["default" "development" "test"]; 1067 1205 platforms = []; 1068 1206 source = { 1069 1207 remotes = ["https://rubygems.org"]; ··· 1102 1240 type = "gem"; 1103 1241 }; 1104 1242 version = "2.6.0"; 1243 + }; 1244 + useragent = { 1245 + groups = ["default"]; 1246 + platforms = []; 1247 + source = { 1248 + remotes = ["https://rubygems.org"]; 1249 + sha256 = "0i1q2xdjam4d7gwwc35lfnz0wyyzvnca0zslcfxm9fabml9n83kh"; 1250 + type = "gem"; 1251 + }; 1252 + version = "0.16.11"; 1105 1253 }; 1106 1254 webrick = { 1107 1255 groups = ["default"]; ··· 1177 1325 version = "0.9.37"; 1178 1326 }; 1179 1327 zeitwerk = { 1180 - groups = ["common_mark" "default" "test"]; 1328 + groups = ["default"]; 1181 1329 platforms = []; 1182 1330 source = { 1183 1331 remotes = ["https://rubygems.org"];
+7 -7
pkgs/by-name/re/redmine/package.nix
··· 1 - { lib, stdenv, fetchurl, bundlerEnv, ruby_3_2, makeWrapper, nixosTests }: 1 + { lib, stdenv, fetchurl, bundlerEnv, ruby, makeWrapper, nixosTests }: 2 2 3 3 let 4 - version = "5.1.7"; 4 + version = "6.0.4"; 5 5 rubyEnv = bundlerEnv { 6 6 name = "redmine-env-${version}"; 7 7 8 - ruby = ruby_3_2; 8 + inherit ruby; 9 9 gemdir = ./.; 10 10 groups = [ "development" "ldap" "markdown" "common_mark" "minimagick" "test" ]; 11 11 }; ··· 16 16 17 17 src = fetchurl { 18 18 url = "https://www.redmine.org/releases/redmine-${version}.tar.gz"; 19 - hash = "sha256-x1x94iWzyekg298u3dpse0VCIamYiQdxGnENg+UCcx4="; 19 + hash = "sha256-vr+Ky0/RhD+I5fQoX/C0l/q0MyDDPngKXDThEkxeF3o="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ makeWrapper ]; ··· 28 28 29 29 buildPhase = '' 30 30 mv config config.dist 31 - mv public/themes public/themes.dist 31 + mv themes themes.dist 32 32 ''; 33 33 34 34 installPhase = '' 35 35 mkdir -p $out/bin $out/share 36 36 cp -r . $out/share/redmine 37 - for i in config files log plugins public/plugin_assets public/themes tmp; do 37 + mkdir $out/share/redmine/public/assets 38 + for i in config files log plugins public/assets public/plugin_assets themes tmp; do 38 39 rm -rf $out/share/redmine/$i 39 40 ln -fs /run/redmine/$i $out/share/redmine/$i 40 41 done ··· 50 51 platforms = platforms.linux; 51 52 maintainers = with maintainers; [ aanderse felixsinger megheaiulian ]; 52 53 license = licenses.gpl2; 53 - knownVulnerabilities = [ "CVE-2024-54133" ]; 54 54 }; 55 55 }
+3 -3
pkgs/by-name/sc/scaleway-cli/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "scaleway-cli"; 9 - version = "2.37.0"; 9 + version = "2.38.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "scaleway"; 13 13 repo = "scaleway-cli"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-lxeFocCoTJIpJb5su8dvJy5LOlAQaqtxbtAy0pCQCUk="; 15 + sha256 = "sha256-3yte4gNl8uBSHfDp11HH+l3trN+d5YcEYajpruyOrKc="; 16 16 }; 17 17 18 - vendorHash = "sha256-X8Lfvaz6S378IbyhEpC6m5eoIlxYkIynd62wD0Uk1WY="; 18 + vendorHash = "sha256-BYWuAzsfqNtswiNHWzNWusgh0SyxlEBEHdOrGjpd1/8="; 19 19 20 20 ldflags = [ 21 21 "-w"
+3 -3
pkgs/by-name/si/signal-desktop/signal-desktop-aarch64.nix
··· 1 1 { callPackage }: 2 2 callPackage ./generic.nix { } { 3 3 pname = "signal-desktop"; 4 - version = "7.46.0-1"; 4 + version = "7.47.0-1"; 5 5 6 6 libdir = "usr/lib64/signal-desktop"; 7 7 bindir = "usr/bin"; ··· 10 10 bsdtar -xf $downloadedFile -C "$out" 11 11 ''; 12 12 13 - url = "https://download.copr.fedorainfracloud.org/results/useidel/signal-desktop/fedora-42-aarch64/08759579-signal-desktop/signal-desktop-7.46.0-1.fc42.aarch64.rpm"; 14 - hash = "sha256-kiNwaB+jNOgkfkJ4V5Fj23RNILP3IOZfKWKAehMmtZ0="; 13 + url = "https://download.copr.fedorainfracloud.org/results/useidel/signal-desktop/fedora-42-aarch64/08795262-signal-desktop/signal-desktop-7.47.0-1.fc42.aarch64.rpm"; 14 + hash = "sha256-CDj9OX6OfEzbP8kusqnWN+MCPPEi9u2Hj1LkpsCg3vI="; 15 15 }
+2 -2
pkgs/by-name/si/signal-desktop/signal-desktop-darwin.nix
··· 6 6 }: 7 7 stdenv.mkDerivation (finalAttrs: { 8 8 pname = "signal-desktop"; 9 - version = "7.46.0"; 9 + version = "7.47.0"; 10 10 11 11 src = fetchurl { 12 12 url = "https://updates.signal.org/desktop/signal-desktop-mac-universal-${finalAttrs.version}.dmg"; 13 - hash = "sha256-3ELg9mEa/CZd4ih42/Zo2phEkCekzUortKrxloBKhXc="; 13 + hash = "sha256-PP8D6D/DJiONJp0UNUSoy8zDwWGVWRRMsqfPTWQCgs8="; 14 14 }; 15 15 sourceRoot = "."; 16 16
+2 -2
pkgs/by-name/si/signal-desktop/signal-desktop.nix
··· 1 1 { callPackage }: 2 2 callPackage ./generic.nix { } rec { 3 3 pname = "signal-desktop"; 4 - version = "7.46.0"; 4 + version = "7.47.0"; 5 5 6 6 libdir = "opt/Signal"; 7 7 bindir = libdir; 8 8 extractPkg = "dpkg-deb -x $downloadedFile $out"; 9 9 10 10 url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 11 - hash = "sha256-HbmyivfhvZfXdtcL/Cjzl4v0Ck/fJCD517iTjIeidgc="; 11 + hash = "sha256-rH1iuyVYoUNFvj2Z9DI5MXcX+sXjN2NSW2uaKafTO9M="; 12 12 }
+3 -3
pkgs/by-name/si/sing-box/package.nix
··· 12 12 13 13 buildGoModule rec { 14 14 pname = "sing-box"; 15 - version = "1.11.5"; 15 + version = "1.11.6"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "SagerNet"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - hash = "sha256-fU7GnkLGeJVA0YagV4faMRIf8t6t/w6u4OnYMio34Sk="; 21 + hash = "sha256-/RTpdbDFCDk1sq7lBIXQ3ElgYqflDumffZy1DVP0zOY="; 22 22 }; 23 23 24 - vendorHash = "sha256-PZ4V1R3St7MZ5bH9m6wDa192alLbhpC203lsprn0pNc="; 24 + vendorHash = "sha256-+XDkza0rymQAWUCmHhKas7FFS8lRPSmGHwAV/072aeo="; 25 25 26 26 tags = [ 27 27 "with_quic"
+3 -3
pkgs/by-name/ss/sshuttle/package.nix
··· 15 15 16 16 python3Packages.buildPythonApplication rec { 17 17 pname = "sshuttle"; 18 - version = "1.3.0"; 18 + version = "1.3.1"; 19 19 pyproject = true; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "sshuttle"; 23 23 repo = "sshuttle"; 24 24 tag = "v${version}"; 25 - hash = "sha256-6RNH2S4GXlAWBQSSmgHFcpYECYJoQtZVScrhLMM0gEk="; 25 + hash = "sha256-/ThWsPtFuUo41+Xw23UigZup1fq6/SAzDpxIaT0Vhvg="; 26 26 }; 27 27 28 - build-system = [ python3Packages.poetry-core ]; 28 + build-system = [ python3Packages.hatchling ]; 29 29 30 30 nativeBuildInputs = [ 31 31 installShellFiles
+3 -3
pkgs/by-name/st/star-history/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "star-history"; 13 - version = "1.0.28"; 13 + version = "1.0.29"; 14 14 15 15 src = fetchCrate { 16 16 inherit pname version; 17 - hash = "sha256-OtXNJtpTyR3qEz9D/3WjvLjY5Taa4rcLmTaxJMhuSUY="; 17 + hash = "sha256-RpGR4DlAvSuaecHPiD367rRR7H5zQs0JOgtvh/PXgpM="; 18 18 }; 19 19 20 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-yJ0w5+qQn1Kys5MPTG3Z+vdT8bQUmD77I+0VkEKIlyc="; 21 + cargoHash = "sha256-lVwH8NnmBl3ZakVbFYslvH39mjAOhmPRmXdshbwkx1Y="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24
+3 -3
pkgs/by-name/su/supabase-cli/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "supabase-cli"; 13 - version = "2.20.1"; 13 + version = "2.20.5"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "supabase"; 17 17 repo = "cli"; 18 18 rev = "v${version}"; 19 - hash = "sha256-AfRO1dFXy5uvMJR09OWc+TfK6PUQi+fC1ZC5FATKmoU="; 19 + hash = "sha256-350b+79Jmrk8wsVQdE3gRAP3JZbgAtL1Cw46sOCyaok="; 20 20 }; 21 21 22 - vendorHash = "sha256-3n2j8zGWudnYLOWn8p/vc4sD/WB7rQxNzZU6CY4Ybik="; 22 + vendorHash = "sha256-7AilsV/TBvY/n1gR5SSc6+d68n0rhclo5hqDTC/VrkY="; 23 23 24 24 ldflags = [ 25 25 "-s"
+34 -27
pkgs/by-name/su/sus-compiler/Cargo.lock
··· 63 63 64 64 [[package]] 65 65 name = "ariadne" 66 - version = "0.4.1" 66 + version = "0.5.1" 67 67 source = "registry+https://github.com/rust-lang/crates.io-index" 68 - checksum = "44055e597c674aef7cb903b2b9f6e4cba1277ed0d2d61dae7cd52d7ffa81f8e2" 68 + checksum = "36f5e3dca4e09a6f340a61a0e9c7b61e030c69fc27bf29d73218f7e5e3b7638f" 69 69 dependencies = [ 70 70 "unicode-width", 71 71 "yansi", ··· 90 90 checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" 91 91 92 92 [[package]] 93 + name = "bitvector" 94 + version = "0.1.5" 95 + source = "registry+https://github.com/rust-lang/crates.io-index" 96 + checksum = "4de5fdcad0b12d843c0b535976ba5f5110ecde436161a7f3cda255674cfc28cb" 97 + 98 + [[package]] 93 99 name = "cc" 94 - version = "1.2.16" 100 + version = "1.2.17" 95 101 source = "registry+https://github.com/rust-lang/crates.io-index" 96 - checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c" 102 + checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a" 97 103 dependencies = [ 98 104 "shlex", 99 105 ] ··· 106 112 107 113 [[package]] 108 114 name = "clap" 109 - version = "4.5.32" 115 + version = "4.5.33" 110 116 source = "registry+https://github.com/rust-lang/crates.io-index" 111 - checksum = "6088f3ae8c3608d19260cd7445411865a485688711b78b5be70d78cd96136f83" 117 + checksum = "e2c80cae4c3350dd8f1272c73e83baff9a6ba550b8bfbe651b3c45b78cd1751e" 112 118 dependencies = [ 113 119 "clap_builder", 114 120 "clap_derive", ··· 116 122 117 123 [[package]] 118 124 name = "clap_builder" 119 - version = "4.5.32" 125 + version = "4.5.33" 120 126 source = "registry+https://github.com/rust-lang/crates.io-index" 121 - checksum = "22a7ef7f676155edfb82daa97f99441f3ebf4a58d5e32f295a56259f1b6facc8" 127 + checksum = "0123e386f691c90aa228219b5b1ee72d465e8e231c79e9c82324f016a62a741c" 122 128 dependencies = [ 123 129 "anstream", 124 130 "anstyle", ··· 275 281 276 282 [[package]] 277 283 name = "icu_locid_transform_data" 278 - version = "1.5.0" 284 + version = "1.5.1" 279 285 source = "registry+https://github.com/rust-lang/crates.io-index" 280 - checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 286 + checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d" 281 287 282 288 [[package]] 283 289 name = "icu_normalizer" ··· 299 305 300 306 [[package]] 301 307 name = "icu_normalizer_data" 302 - version = "1.5.0" 308 + version = "1.5.1" 303 309 source = "registry+https://github.com/rust-lang/crates.io-index" 304 - checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 310 + checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7" 305 311 306 312 [[package]] 307 313 name = "icu_properties" ··· 320 326 321 327 [[package]] 322 328 name = "icu_properties_data" 323 - version = "1.5.0" 329 + version = "1.5.1" 324 330 source = "registry+https://github.com/rust-lang/crates.io-index" 325 - checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 331 + checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2" 326 332 327 333 [[package]] 328 334 name = "icu_provider" ··· 387 393 388 394 [[package]] 389 395 name = "libc" 390 - version = "0.2.170" 396 + version = "0.2.171" 391 397 source = "registry+https://github.com/rust-lang/crates.io-index" 392 - checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" 398 + checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" 393 399 394 400 [[package]] 395 401 name = "libredox" ··· 403 409 404 410 [[package]] 405 411 name = "linux-raw-sys" 406 - version = "0.9.2" 412 + version = "0.9.3" 407 413 source = "registry+https://github.com/rust-lang/crates.io-index" 408 - checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9" 414 + checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413" 409 415 410 416 [[package]] 411 417 name = "litemap" ··· 415 421 416 422 [[package]] 417 423 name = "log" 418 - version = "0.4.26" 424 + version = "0.4.27" 419 425 source = "registry+https://github.com/rust-lang/crates.io-index" 420 - checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e" 426 + checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 421 427 422 428 [[package]] 423 429 name = "lsp-server" ··· 526 532 527 533 [[package]] 528 534 name = "once_cell" 529 - version = "1.21.0" 535 + version = "1.21.1" 530 536 source = "registry+https://github.com/rust-lang/crates.io-index" 531 - checksum = "cde51589ab56b20a6f686b2c68f7a0bd6add753d697abf720d63f8db3ab7b1ad" 537 + checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc" 532 538 533 539 [[package]] 534 540 name = "percent-encoding" ··· 547 553 548 554 [[package]] 549 555 name = "quote" 550 - version = "1.0.39" 556 + version = "1.0.40" 551 557 source = "registry+https://github.com/rust-lang/crates.io-index" 552 - checksum = "c1f1914ce909e1658d9907913b4b91947430c7d9be598b15a1912935b8c04801" 558 + checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 553 559 dependencies = [ 554 560 "proc-macro2", 555 561 ] ··· 596 602 597 603 [[package]] 598 604 name = "rustix" 599 - version = "1.0.2" 605 + version = "1.0.3" 600 606 source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "f7178faa4b75a30e269c71e61c353ce2748cf3d76f0c44c393f4e60abf49b825" 607 + checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96" 602 608 dependencies = [ 603 609 "bitflags 2.9.0", 604 610 "errno", ··· 699 705 700 706 [[package]] 701 707 name = "sus_compiler" 702 - version = "0.2.0" 708 + version = "0.2.1" 703 709 dependencies = [ 704 710 "ariadne", 711 + "bitvector", 705 712 "clap", 706 713 "dirs-next", 707 714 "lsp-server",
+2 -2
pkgs/by-name/su/sus-compiler/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage (finalAttrs: { 10 10 pname = "sus-compiler"; 11 - version = "0.2.0"; 11 + version = "0.2.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pc2"; 15 15 repo = "sus-compiler"; 16 16 rev = "v${finalAttrs.version}"; 17 - hash = "sha256-0OZPBdilNknGCjWzXjyUAW57cpyyyV80EEo6pDlpG3g="; 17 + hash = "sha256-dQef5TiOV33lnNl7XKl7TlCY0E2sEclehWOmy2uvISY="; 18 18 fetchSubmodules = true; 19 19 }; 20 20
+3 -3
pkgs/by-name/sv/svix-server/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "svix-server"; 14 - version = "1.40.0"; 14 + version = "1.62.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "svix"; 18 18 repo = "svix-webhooks"; 19 19 rev = "v${version}"; 20 - hash = "sha256-3rUyfFtsDOqJYwTipor1YSCdP+9ORYWmzl5Tt3/Kung="; 20 + hash = "sha256-ft08skfLASgfZo3lrlN+nuF2FK78kEm2geRVg8cO5hM="; 21 21 }; 22 22 23 23 sourceRoot = "${src.name}/server"; 24 24 25 25 useFetchCargoVendor = true; 26 - cargoHash = "sha256-0HxKL59IQFrospD/IkTP7+16u5ZEtOMiDn8cK1DpLXA="; 26 + cargoHash = "sha256-0GuTIGWGeP7CG+CijjlRW9SPKfp7rPuZVuClLZC25dk="; 27 27 28 28 nativeBuildInputs = [ pkg-config ]; 29 29
+5 -4
pkgs/by-name/sw/swego/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "swego"; 10 - version = "1.12"; 10 + version = "1.13"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "nodauf"; 14 14 repo = "Swego"; 15 15 tag = "v${version}"; 16 - hash = "sha256-roaAzh6Mncu4qtaxEoXk41Mrmz/l7X1+n+Yh5skA65A="; 16 + hash = "sha256-JILdtmTdDZzcjsDfH0rZo4HpTp26EPP8WKPbHhQeNN8="; 17 17 }; 18 18 19 - vendorHash = "sha256-mJWJdwbZq042//hM3WWp2rnLC1GebckUnsIopbF858Q="; 19 + vendorHash = "sha256-w2OhZq7vaVDVoRfnWPH0bFO85yGTFcO6KpDo5ulTifo="; 20 20 21 21 postInstall = '' 22 22 mv $out/bin/src $out/bin/$pname ··· 34 34 SimpleHTTPServer but with many features. 35 35 ''; 36 36 homepage = "https://github.com/nodauf/Swego"; 37 - license = with licenses; [ gpl2Only ]; 37 + changelog = "https://github.com/nodauf/Swego/releases/tag/${src.tag}"; 38 + license = licenses.gpl2Only; 38 39 maintainers = with maintainers; [ fab ]; 39 40 # darwin crashes with: 40 41 # src/controllers/parsingArgs.go:130:4: undefined: PrintEmbeddedFiles
+3 -3
pkgs/by-name/te/telepresence2/package.nix
··· 31 31 in 32 32 buildGoModule rec { 33 33 pname = "telepresence2"; 34 - version = "2.22.0"; 34 + version = "2.22.1"; 35 35 36 36 src = fetchFromGitHub { 37 37 owner = "telepresenceio"; 38 38 repo = "telepresence"; 39 39 rev = "v${version}"; 40 - hash = "sha256-SSzZ54grTt9VJL3avugb3FiKkaF6I+42DUorpmHkhlE="; 40 + hash = "sha256-Bae77Kzc2cWxIb1yYKXctffuiC3ICPfi0qYP6fgaqvQ="; 41 41 }; 42 42 43 43 propagatedBuildInputs = [ ··· 51 51 export CGO_ENABLED=0 52 52 ''; 53 53 54 - vendorHash = "sha256-THMWbN/wlBPphQeoZgeSlkI06dbA2/FmqxKn3LgtbPg="; 54 + vendorHash = "sha256-toqQDa3hY2EvWjYpFXWafV9yj1U5CZXZOqQAQtOMITo="; 55 55 56 56 ldflags = [ 57 57 "-s"
+3 -3
pkgs/by-name/te/terraformer/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "terraformer"; 9 - version = "0.8.24"; 9 + version = "0.8.30"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "GoogleCloudPlatform"; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "sha256-paBj2vaBicXHMEei2HPW+d4fXWf8VnVhvcanXmo/5KI="; 15 + sha256 = "sha256-xbZm0FOa/W6/qXMnJHuGgJhgu2NWtKrMoP0Ttd+hhdw="; 16 16 }; 17 17 18 - vendorHash = "sha256-Rh2ZGSfa95Yw8GGjsZjwmj0o4qKpygbPsLCbzUTOBxQ="; 18 + vendorHash = "sha256-TsJ8r0be38680sCP8ot3NKhW9ZT03eHrF/1UpYQuDWo="; 19 19 20 20 subPackages = [ "." ]; 21 21
+2 -2
pkgs/by-name/te/texturepacker/package.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "texturepacker"; 12 - version = "7.6.0"; 12 + version = "7.6.1"; 13 13 14 14 src = fetchurl { 15 15 url = "https://www.codeandweb.com/download/texturepacker/${finalAttrs.version}/TexturePacker-${finalAttrs.version}.deb"; 16 - hash = "sha256-7xEIXgrMAV/MUGd+STjRtUAftVF2jj2OuH7SnSMpXk0="; 16 + hash = "sha256-e824tHi9vTxhGbIxg5BPWgb3nBt5ZA2XgtkM7g3Y5Rw="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+2 -2
pkgs/by-name/zi/zimfw/package.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "zimfw"; 9 - version = "1.17.1"; 9 + version = "1.18.0"; 10 10 src = fetchFromGitHub { 11 11 owner = "zimfw"; 12 12 repo = "zimfw"; 13 13 rev = "v${version}"; 14 14 ## zim only needs this one file to be installed. 15 15 sparseCheckout = [ "zimfw.zsh" ]; 16 - hash = "sha256-W0yjDebHyhsjPQF8CZMAUv+nJ/oLx/mxolxiCNvAs00="; 16 + hash = "sha256-qQViaQOpLp8F4zvJETbNp0lxpdVhM1Meg7WcMKkjJRQ="; 17 17 }; 18 18 strictDeps = true; 19 19 dontConfigure = true;
+2 -2
pkgs/development/compilers/kotlin/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "kotlin"; 5 - version = "2.1.10"; 5 + version = "2.1.20"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/JetBrains/kotlin/releases/download/v${finalAttrs.version}/kotlin-compiler-${finalAttrs.version}.zip"; 9 - sha256 = "sha256-xuniY2iJgo4ZyIEdWriQhiU4yJ3CoxAZVt/uPCqLprE="; 9 + sha256 = "sha256-oRgZew3lX/qyvI1c0DpeOQM8+1M4PWkxvHYd7AeEiRo="; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ jre ] ;
+1 -1
pkgs/development/libraries/audio/libbass/default.nix
··· 103 103 homepage = "https://www.un4seen.com/"; 104 104 license = licenses.unfreeRedistributable; 105 105 platforms = builtins.attrNames bass.so; 106 - maintainers = with maintainers; [ jacekpoz ]; 106 + maintainers = with maintainers; [ poz ]; 107 107 }; 108 108 }; 109 109
+2 -2
pkgs/development/python-modules/array-api-compat/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "array-api-compat"; 21 - version = "1.11.1"; 21 + version = "1.11.2"; 22 22 pyproject = true; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "data-apis"; 26 26 repo = "array-api-compat"; 27 27 tag = version; 28 - hash = "sha256-TB1aBad6Pl687nGblSraHmWl/tnnkoo1g6DDZHKhOaM="; 28 + hash = "sha256-qGf1XDhRx9hJJP0LcZF7lA8tl+LKYNCw0xTqGjsZYj8="; 29 29 }; 30 30 31 31 build-system = [ setuptools ];
+3 -3
pkgs/development/python-modules/ayla-iot-unofficial/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "ayla-iot-unofficial"; 15 - version = "1.4.7"; 15 + version = "1.4.8"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "rewardone"; 20 20 repo = "ayla-iot-unofficial"; 21 21 tag = "v${version}"; 22 - hash = "sha256-N3xgtqb6QL58FgG7kv7vD8wwNxqZZWAcz2E1NvPwcfI="; 22 + hash = "sha256-XFLNt+TwkowNoDcJJpaX9kKi+Gcx4JnzEU1JikpbzZ0="; 23 23 }; 24 24 25 25 build-system = [ setuptools ]; ··· 43 43 doCheck = false; 44 44 45 45 meta = { 46 - changelog = "https://github.com/rewardone/ayla-iot-unofficial/releases/tag/v${version}"; 46 + changelog = "https://github.com/rewardone/ayla-iot-unofficial/releases/tag/${src.tag}"; 47 47 description = "Unofficial python library for interacting with the Ayla IoT API"; 48 48 homepage = "https://github.com/rewardone/ayla-iot-unofficial"; 49 49 license = lib.licenses.mit;
+2 -2
pkgs/development/python-modules/bundlewrap/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "bundlewrap"; 21 - version = "4.21.0"; 21 + version = "4.22.0"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.8"; ··· 27 27 owner = "bundlewrap"; 28 28 repo = "bundlewrap"; 29 29 tag = version; 30 - hash = "sha256-e9gpWLOiTUZYIybLIfcR5x/NzhJSBFsU0I8LzY9sI5k="; 30 + hash = "sha256-F3Ipoep9ZmAqkh8mFLXpaEcYb4dpV9Dt/VgMa9X24Hw="; 31 31 }; 32 32 33 33 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pynput/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "pynput"; 25 - version = "1.7.7"; 25 + version = "1.8.1"; 26 26 pyproject = true; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "moses-palmer"; 30 30 repo = "pynput"; 31 31 tag = "v${version}"; 32 - hash = "sha256-6PwfFU1f/osEamSX9kxpOl2wDnrQk5qq1kHi2BgSHes="; 32 + hash = "sha256-rOkUyreS3JqEyubQUdNLJf5lDuFassDKrQrUXKrKlgI="; 33 33 }; 34 34 passthru.updateScript = gitUpdater { 35 35 rev-prefix = "v";
+2 -2
pkgs/development/python-modules/tencentcloud-sdk-python/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "tencentcloud-sdk-python"; 13 - version = "3.0.1348"; 13 + version = "3.0.1349"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.9"; ··· 19 19 owner = "TencentCloud"; 20 20 repo = "tencentcloud-sdk-python"; 21 21 tag = version; 22 - hash = "sha256-cKSeey6erm+iXwPwaS/lan+5UDOxMTJVoJErDFCikWI="; 22 + hash = "sha256-7vVFKqr3QLSp5/6IRQVmCKYi+GYWsRPXT1xBmLrG1CU="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/wat/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "wat"; 13 - version = "0.5.1"; 13 + version = "0.6.0"; 14 14 pyproject = true; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "igrek51"; 18 18 repo = "wat"; 19 19 rev = version; 20 - hash = "sha256-I6SKmaSrY/fev2NVcZ2FVTKKS85jmEzw7OzTg3U1MFo="; 20 + hash = "sha256-vTq+R/EBkBm27qWR4S9Za6/ppfWD9CLE21SXhTabkhc="; 21 21 }; 22 22 23 23 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/x-transformers/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "x-transformers"; 22 - version = "2.1.36"; 22 + version = "2.1.37"; 23 23 pyproject = true; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "lucidrains"; 27 27 repo = "x-transformers"; 28 28 tag = version; 29 - hash = "sha256-/L0nzpOG6kbBiujaHsZvb6iakA22BIccvnTvYy1NAa8="; 29 + hash = "sha256-Bykx/A7qmS6RraRfDYNufbRsOnESp8DQRltQVwT0tAY="; 30 30 }; 31 31 32 32 build-system = [ hatchling ];
pkgs/development/tools/cadre/Gemfile pkgs/by-name/ca/cadre/Gemfile
+2 -2
pkgs/development/tools/cadre/Gemfile.lock pkgs/by-name/ca/cadre/Gemfile.lock
··· 6 6 tilt (> 1.0) 7 7 valise (~> 1.2) 8 8 thor (0.20.3) 9 - tilt (2.0.9) 9 + tilt (2.6.0) 10 10 valise (1.2.1) 11 11 12 12 PLATFORMS ··· 16 16 cadre (= 1.0.4) 17 17 18 18 BUNDLED WITH 19 - 2.1.4 19 + 2.6.2
pkgs/development/tools/cadre/default.nix pkgs/by-name/ca/cadre/package.nix
+10 -2
pkgs/development/tools/cadre/gemset.nix pkgs/by-name/ca/cadre/gemset.nix
··· 5 5 "tilt" 6 6 "valise" 7 7 ]; 8 + groups = [ "default" ]; 9 + platforms = [ ]; 8 10 source = { 9 11 remotes = [ "https://rubygems.org" ]; 10 12 sha256 = "07q60s1bm2xar46g00ls5fjkn6dm2kfxhsz9ayblc31x5kr8d83a"; ··· 13 15 version = "1.0.4"; 14 16 }; 15 17 thor = { 18 + groups = [ "default" ]; 19 + platforms = [ ]; 16 20 source = { 17 21 remotes = [ "https://rubygems.org" ]; 18 22 sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29"; ··· 21 25 version = "0.20.3"; 22 26 }; 23 27 tilt = { 28 + groups = [ "default" ]; 29 + platforms = [ ]; 24 30 source = { 25 31 remotes = [ "https://rubygems.org" ]; 26 - sha256 = "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz"; 32 + sha256 = "0szpapi229v3scrvw1pgy0vpjm7z3qlf58m1198kxn70cs278g96"; 27 33 type = "gem"; 28 34 }; 29 - version = "2.0.9"; 35 + version = "2.6.0"; 30 36 }; 31 37 valise = { 38 + groups = [ "default" ]; 39 + platforms = [ ]; 32 40 source = { 33 41 remotes = [ "https://rubygems.org" ]; 34 42 sha256 = "1arsbmk2gifrhv244qrld7s3202xrnxy6vlc5gqklg70dpsinbn5";
pkgs/development/tools/coder/default.nix pkgs/by-name/co/coder/package.nix
pkgs/development/tools/coder/update.sh pkgs/by-name/co/coder/update.sh
+1 -1
pkgs/development/tools/infisical/default.nix
··· 21 21 buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json); 22 22 23 23 # the version of infisical 24 - version = "0.36.19"; 24 + version = "0.36.21"; 25 25 26 26 # the platform-specific, statically linked binary 27 27 src =
+4 -4
pkgs/development/tools/infisical/hashes.json
··· 1 1 { "_comment": "@generated by pkgs/development/tools/infisical/update.sh" 2 - , "x86_64-linux": "sha256-vR7XBHplTNrUkX+cJT93wsWieLWm36Q8QYd3PXTONmU=" 3 - , "x86_64-darwin": "sha256-+RbKuywsLwWIDVvkXQOaxOUNwI7pYt/sbFM/OHTJ3G0=" 4 - , "aarch64-linux": "sha256-KlRcuX4V2BiGVYxZocCXS9X6TVnlfcAQcXzVcwf5zKg=" 5 - , "aarch64-darwin": "sha256-lTb9JiMYW1EjSLilF9TtmAoz54wnDHxqcnO7UeAsbpE=" 2 + , "x86_64-linux": "sha256-S5g75RojEfakvlKj/6R3AJC5wBy5O6S3b0x5EEF7PtU=" 3 + , "x86_64-darwin": "sha256-iwL6pKR16onk9uFN6v8M12puZIG76oVV3KDMMYGcTnE=" 4 + , "aarch64-linux": "sha256-9ARniR4/OSBteYhq6Ajpz0Lp7Zq+jWr2wKL3AhYIUk8=" 5 + , "aarch64-darwin": "sha256-T0jT2S7biOmXoTJkzNpv03f5sTDJkd8H1TO2mYRzsMc=" 6 6 }
pkgs/development/tools/misc/blackfire/default.nix pkgs/by-name/bl/blackfire/package.nix
pkgs/development/tools/misc/blackfire/php-probe.nix pkgs/by-name/bl/blackfire/php-probe.nix
pkgs/development/tools/misc/stlink/default.nix pkgs/by-name/st/stlink/package.nix
pkgs/development/tools/misc/usb-modeswitch/configurable-usb-modeswitch.patch pkgs/by-name/us/usb-modeswitch/configurable-usb-modeswitch.patch
pkgs/development/tools/misc/usb-modeswitch/data.nix pkgs/by-name/us/usb-modeswitch/data.nix
pkgs/development/tools/misc/usb-modeswitch/default.nix pkgs/by-name/us/usb-modeswitch/package.nix
pkgs/development/tools/misc/usb-modeswitch/pkg-config.patch pkgs/by-name/us/usb-modeswitch/pkg-config.patch
+5
pkgs/development/tools/rust/cargo-pgrx/buildPgrxExtension.nix
··· 178 178 (args.checkFeatures or [ ]) 179 179 ++ (lib.optionals usePgTestCheckFeature [ "pg_test" ]) 180 180 ++ [ "pg${pgrxPostgresMajor}" ]; 181 + 182 + meta = (args.meta or { }) // { 183 + # See comment in postgresql's generic.nix doInstallCheck section 184 + broken = (args.meta.broken or false) || stdenv.hostPlatform.isDarwin; 185 + }; 181 186 }; 182 187 in 183 188 rustPlatform.buildRustPackage finalArgs
pkgs/development/tools/xcode-install/Gemfile pkgs/by-name/xc/xcode-install/Gemfile
+5 -3
pkgs/development/tools/xcode-install/Gemfile.lock pkgs/by-name/xc/xcode-install/Gemfile.lock
··· 11 11 artifactory (3.0.17) 12 12 atomos (0.1.3) 13 13 aws-eventstream (1.3.2) 14 - aws-partitions (1.1068.0) 15 - aws-sdk-core (3.220.1) 14 + aws-partitions (1.1075.0) 15 + aws-sdk-core (3.221.0) 16 16 aws-eventstream (~> 1, >= 1.3.0) 17 17 aws-partitions (~> 1, >= 1.992.0) 18 18 aws-sigv4 (~> 1.9) 19 19 base64 20 20 jmespath (~> 1, >= 1.6.1) 21 + logger 21 22 aws-sdk-kms (1.99.0) 22 23 aws-sdk-core (~> 3, >= 3.216.0) 23 24 aws-sigv4 (~> 1.5) ··· 160 161 json (2.10.2) 161 162 jwt (2.10.1) 162 163 base64 164 + logger (1.7.0) 163 165 mini_magick (4.13.2) 164 166 mini_mime (1.1.5) 165 167 multi_json (1.15.0) ··· 213 215 colored2 (~> 3.1) 214 216 nanaimo (~> 0.4.0) 215 217 rexml (>= 3.3.6, < 4.0) 216 - xcpretty (0.4.0) 218 + xcpretty (0.4.1) 217 219 rouge (~> 3.28.0) 218 220 xcpretty-travis-formatter (1.0.1) 219 221 xcpretty (~> 0.2, >= 0.0.7)
pkgs/development/tools/xcode-install/default.nix pkgs/by-name/xc/xcode-install/package.nix
+17 -6
pkgs/development/tools/xcode-install/gemset.nix pkgs/by-name/xc/xcode-install/gemset.nix
··· 55 55 platforms = [ ]; 56 56 source = { 57 57 remotes = [ "https://rubygems.org" ]; 58 - sha256 = "0lmnx4sa9wm9ffqsjbybxzlgz6h4clf96s694sdn2lz1qcx0fq2i"; 58 + sha256 = "1jb72jj18a9l98ghmi8ny9nys4w3hcny0xyi0dzl3ms0knsrrn3i"; 59 59 type = "gem"; 60 60 }; 61 - version = "1.1068.0"; 61 + version = "1.1075.0"; 62 62 }; 63 63 aws-sdk-core = { 64 64 dependencies = [ ··· 67 67 "aws-sigv4" 68 68 "base64" 69 69 "jmespath" 70 + "logger" 70 71 ]; 71 72 groups = [ "default" ]; 72 73 platforms = [ ]; 73 74 source = { 74 75 remotes = [ "https://rubygems.org" ]; 75 - sha256 = "0cjdqmy5hjbgzc0iac1i143va76qgp7jc7hg1aviy1n8cgywq44y"; 76 + sha256 = "0jmd8rf68jf99ksklwaflym07issvr1il1qpzmpaf59avhcxgjjy"; 76 77 type = "gem"; 77 78 }; 78 - version = "3.220.1"; 79 + version = "3.221.0"; 79 80 }; 80 81 aws-sdk-kms = { 81 82 dependencies = [ ··· 683 684 }; 684 685 version = "2.10.1"; 685 686 }; 687 + logger = { 688 + groups = [ "default" ]; 689 + platforms = [ ]; 690 + source = { 691 + remotes = [ "https://rubygems.org" ]; 692 + sha256 = "00q2zznygpbls8asz5knjvvj2brr3ghmqxgr83xnrdj4rk3xwvhr"; 693 + type = "gem"; 694 + }; 695 + version = "1.7.0"; 696 + }; 686 697 mini_magick = { 687 698 groups = [ "default" ]; 688 699 platforms = [ ]; ··· 1058 1069 platforms = [ ]; 1059 1070 source = { 1060 1071 remotes = [ "https://rubygems.org" ]; 1061 - sha256 = "1lbwk77g28jjhin3qjrh7ldfsgf7aszi9j60mp8yz10i3wyqgvqj"; 1072 + sha256 = "14iqgwrdfzc00b3dc5pal4gm9n7w5hn3wdgmsvirwn7n47km0k5i"; 1062 1073 type = "gem"; 1063 1074 }; 1064 - version = "0.4.0"; 1075 + version = "0.4.1"; 1065 1076 }; 1066 1077 xcpretty-travis-formatter = { 1067 1078 dependencies = [ "xcpretty" ];
pkgs/development/tools/xcpretty/Gemfile pkgs/by-name/xc/xcpretty/Gemfile
+1 -1
pkgs/development/tools/xcpretty/Gemfile.lock pkgs/by-name/xc/xcpretty/Gemfile.lock
··· 2 2 remote: https://rubygems.org/ 3 3 specs: 4 4 rouge (3.28.0) 5 - xcpretty (0.4.0) 5 + xcpretty (0.4.1) 6 6 rouge (~> 3.28.0) 7 7 8 8 PLATFORMS
pkgs/development/tools/xcpretty/default.nix pkgs/by-name/xc/xcpretty/package.nix
+2 -2
pkgs/development/tools/xcpretty/gemset.nix pkgs/by-name/xc/xcpretty/gemset.nix
··· 15 15 platforms = [ ]; 16 16 source = { 17 17 remotes = [ "https://rubygems.org" ]; 18 - sha256 = "1lbwk77g28jjhin3qjrh7ldfsgf7aszi9j60mp8yz10i3wyqgvqj"; 18 + sha256 = "14iqgwrdfzc00b3dc5pal4gm9n7w5hn3wdgmsvirwn7n47km0k5i"; 19 19 type = "gem"; 20 20 }; 21 - version = "0.4.0"; 21 + version = "0.4.1"; 22 22 }; 23 23 }
+2 -2
pkgs/os-specific/linux/ena/default.nix
··· 8 8 }: 9 9 let 10 10 rev-prefix = "ena_linux_"; 11 - version = "2.13.2"; 11 + version = "2.13.3"; 12 12 in 13 13 stdenv.mkDerivation { 14 14 inherit version; ··· 18 18 owner = "amzn"; 19 19 repo = "amzn-drivers"; 20 20 rev = "${rev-prefix}${version}"; 21 - hash = "sha256-v4S23lG3DGcsLcxwl4F11UlN7xD69mg0yS4fWs89+kM="; 21 + hash = "sha256-rxogTQ2zNyzuOY5P87NGZQHVJPvv1T+g5nwh6SLLf50="; 22 22 }; 23 23 24 24 hardeningDisable = [ "pic" ];
+596 -297
pkgs/tools/text/autocorrect/Cargo.lock
··· 1 1 # This file is automatically @generated by Cargo. 2 2 # It is not intended for manual editing. 3 - version = 3 3 + version = 4 4 4 5 5 [[package]] 6 6 name = "addr2line" ··· 34 34 35 35 [[package]] 36 36 name = "anstream" 37 - version = "0.6.17" 37 + version = "0.6.18" 38 38 source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "23a1e53f0f5d86382dafe1cf314783b2044280f406e7e1506368220ad11b1338" 39 + checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" 40 40 dependencies = [ 41 41 "anstyle", 42 42 "anstyle-parse", ··· 49 49 50 50 [[package]] 51 51 name = "anstyle" 52 - version = "1.0.9" 52 + version = "1.0.10" 53 53 source = "registry+https://github.com/rust-lang/crates.io-index" 54 - checksum = "8365de52b16c035ff4fcafe0092ba9390540e3e352870ac09933bebcaa2c8c56" 54 + checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" 55 55 56 56 [[package]] 57 57 name = "anstyle-parse" ··· 73 73 74 74 [[package]] 75 75 name = "anstyle-wincon" 76 - version = "3.0.6" 76 + version = "3.0.7" 77 77 source = "registry+https://github.com/rust-lang/crates.io-index" 78 - checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125" 78 + checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" 79 79 dependencies = [ 80 80 "anstyle", 81 + "once_cell", 81 82 "windows-sys 0.59.0", 82 83 ] 83 84 84 85 [[package]] 85 86 name = "async-trait" 86 - version = "0.1.83" 87 + version = "0.1.88" 87 88 source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" 89 + checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" 89 90 dependencies = [ 90 91 "proc-macro2", 91 92 "quote", 92 - "syn 2.0.85", 93 + "syn 2.0.100", 93 94 ] 94 95 95 96 [[package]] 96 97 name = "auto_impl" 97 - version = "1.2.0" 98 + version = "1.2.1" 98 99 source = "registry+https://github.com/rust-lang/crates.io-index" 99 - checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" 100 + checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" 100 101 dependencies = [ 101 102 "proc-macro2", 102 103 "quote", 103 - "syn 2.0.85", 104 + "syn 2.0.100", 104 105 ] 105 106 106 107 [[package]] ··· 111 112 112 113 [[package]] 113 114 name = "autocorrect" 114 - version = "2.13.0" 115 + version = "2.13.3" 115 116 dependencies = [ 116 117 "autocorrect-derive 0.3.0", 117 118 "criterion", 118 119 "diff", 119 120 "ignore", 120 - "indoc", 121 + "indoc 2.0.6", 121 122 "lazy_static", 122 123 "owo-colors", 123 124 "pest", ··· 132 133 133 134 [[package]] 134 135 name = "autocorrect" 135 - version = "2.13.0" 136 + version = "2.13.3" 136 137 source = "registry+https://github.com/rust-lang/crates.io-index" 137 - checksum = "f3dbfcf450a8941768e27de85c70a9288328f6e829e90b7479ba63b8deb02004" 138 + checksum = "8d3233bd0fc45f3bb1227ad0ab58dcdfac43b3a435199ef91e1259d342dc345f" 138 139 dependencies = [ 139 140 "autocorrect-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 140 141 "diff", ··· 152 153 153 154 [[package]] 154 155 name = "autocorrect-cli" 155 - version = "2.13.0" 156 + version = "2.13.3" 156 157 dependencies = [ 157 - "autocorrect 2.13.0", 158 + "autocorrect 2.13.3", 158 159 "autocorrect-lsp", 159 160 "clap", 160 161 "ignore", ··· 188 189 189 190 [[package]] 190 191 name = "autocorrect-java" 191 - version = "2.13.0" 192 + version = "2.13.3" 192 193 dependencies = [ 193 - "autocorrect 2.13.0", 194 + "autocorrect 2.13.3", 194 195 "jni", 195 196 ] 196 197 ··· 198 199 name = "autocorrect-lsp" 199 200 version = "2.9.4" 200 201 dependencies = [ 201 - "autocorrect 2.13.0", 202 + "autocorrect 2.13.3", 202 203 "tokio", 203 204 "tower-lsp", 204 205 ] 205 206 206 207 [[package]] 207 208 name = "autocorrect-node" 208 - version = "2.13.0" 209 + version = "2.13.3" 209 210 dependencies = [ 210 - "autocorrect 2.13.0", 211 + "autocorrect 2.13.3", 211 212 "autocorrect-cli", 212 213 "napi", 213 214 "napi-build", ··· 216 217 217 218 [[package]] 218 219 name = "autocorrect-py" 219 - version = "2.13.0" 220 + version = "2.13.3" 220 221 dependencies = [ 221 - "autocorrect 2.13.0", 222 + "autocorrect 2.13.3", 222 223 "pyo3", 223 224 ] 224 225 225 226 [[package]] 226 227 name = "autocorrect-rb" 227 - version = "2.13.0" 228 + version = "2.13.3" 228 229 dependencies = [ 229 - "autocorrect 2.13.0 (registry+https://github.com/rust-lang/crates.io-index)", 230 + "autocorrect 2.13.3 (registry+https://github.com/rust-lang/crates.io-index)", 230 231 "magnus", 231 232 ] 232 233 233 234 [[package]] 234 235 name = "autocorrect-wasm" 235 - version = "2.13.0" 236 + version = "2.13.3" 236 237 dependencies = [ 237 - "autocorrect 2.13.0", 238 + "autocorrect 2.13.3", 238 239 "serde_json", 239 240 "wasm-bindgen", 240 241 ] ··· 266 267 source = "registry+https://github.com/rust-lang/crates.io-index" 267 268 checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" 268 269 dependencies = [ 269 - "bitflags 2.6.0", 270 + "bitflags 2.9.0", 270 271 "cexpr", 271 272 "clang-sys", 272 273 "itertools 0.12.1", ··· 277 278 "regex", 278 279 "rustc-hash", 279 280 "shlex", 280 - "syn 2.0.85", 281 + "syn 2.0.100", 281 282 ] 282 283 283 284 [[package]] ··· 288 289 289 290 [[package]] 290 291 name = "bitflags" 291 - version = "2.6.0" 292 + version = "2.9.0" 292 293 source = "registry+https://github.com/rust-lang/crates.io-index" 293 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 294 + checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" 294 295 295 296 [[package]] 296 297 name = "block-buffer" ··· 303 304 304 305 [[package]] 305 306 name = "bstr" 306 - version = "1.10.0" 307 + version = "1.11.3" 307 308 source = "registry+https://github.com/rust-lang/crates.io-index" 308 - checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c" 309 + checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" 309 310 dependencies = [ 310 311 "memchr", 311 312 "serde", ··· 313 314 314 315 [[package]] 315 316 name = "bumpalo" 316 - version = "3.16.0" 317 + version = "3.17.0" 317 318 source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 319 + checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" 319 320 320 321 [[package]] 321 322 name = "bytes" 322 - version = "1.8.0" 323 + version = "1.10.1" 323 324 source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" 325 + checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 325 326 326 327 [[package]] 327 328 name = "cast" ··· 331 332 332 333 [[package]] 333 334 name = "cc" 334 - version = "1.1.31" 335 + version = "1.2.17" 335 336 source = "registry+https://github.com/rust-lang/crates.io-index" 336 - checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f" 337 + checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a" 337 338 dependencies = [ 338 339 "shlex", 339 340 ] ··· 399 400 400 401 [[package]] 401 402 name = "clap" 402 - version = "4.5.20" 403 + version = "4.5.34" 403 404 source = "registry+https://github.com/rust-lang/crates.io-index" 404 - checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" 405 + checksum = "e958897981290da2a852763fe9cdb89cd36977a5d729023127095fa94d95e2ff" 405 406 dependencies = [ 406 407 "clap_builder", 407 408 "clap_derive", ··· 409 410 410 411 [[package]] 411 412 name = "clap_builder" 412 - version = "4.5.20" 413 + version = "4.5.34" 413 414 source = "registry+https://github.com/rust-lang/crates.io-index" 414 - checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" 415 + checksum = "83b0f35019843db2160b5bb19ae09b4e6411ac33fc6a712003c33e03090e2489" 415 416 dependencies = [ 416 417 "anstream", 417 418 "anstyle", ··· 421 422 422 423 [[package]] 423 424 name = "clap_derive" 424 - version = "4.5.18" 425 + version = "4.5.32" 425 426 source = "registry+https://github.com/rust-lang/crates.io-index" 426 - checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" 427 + checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7" 427 428 dependencies = [ 428 429 "heck", 429 430 "proc-macro2", 430 431 "quote", 431 - "syn 2.0.85", 432 + "syn 2.0.100", 432 433 ] 433 434 434 435 [[package]] 435 436 name = "clap_lex" 436 - version = "0.7.2" 437 + version = "0.7.4" 437 438 source = "registry+https://github.com/rust-lang/crates.io-index" 438 - checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 439 + checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" 439 440 440 441 [[package]] 441 442 name = "colorchoice" ··· 455 456 456 457 [[package]] 457 458 name = "console" 458 - version = "0.15.8" 459 + version = "0.15.11" 459 460 source = "registry+https://github.com/rust-lang/crates.io-index" 460 - checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 461 + checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" 461 462 dependencies = [ 462 463 "encode_unicode", 463 - "lazy_static", 464 464 "libc", 465 - "windows-sys 0.52.0", 465 + "once_cell", 466 + "windows-sys 0.59.0", 466 467 ] 467 468 468 469 [[package]] ··· 492 493 493 494 [[package]] 494 495 name = "cpufeatures" 495 - version = "0.2.14" 496 + version = "0.2.17" 496 497 source = "registry+https://github.com/rust-lang/crates.io-index" 497 - checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" 498 + checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 498 499 dependencies = [ 499 500 "libc", 500 501 ] ··· 546 547 547 548 [[package]] 548 549 name = "crossbeam-deque" 549 - version = "0.8.5" 550 + version = "0.8.6" 550 551 source = "registry+https://github.com/rust-lang/crates.io-index" 551 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 552 + checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 552 553 dependencies = [ 553 554 "crossbeam-epoch", 554 555 "crossbeam-utils", ··· 565 566 566 567 [[package]] 567 568 name = "crossbeam-utils" 568 - version = "0.8.20" 569 + version = "0.8.21" 569 570 source = "registry+https://github.com/rust-lang/crates.io-index" 570 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 571 + checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 571 572 572 573 [[package]] 573 574 name = "crunchy" 574 - version = "0.2.2" 575 + version = "0.2.3" 575 576 source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 577 + checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929" 577 578 578 579 [[package]] 579 580 name = "crypto-common" ··· 587 588 588 589 [[package]] 589 590 name = "ctor" 590 - version = "0.2.8" 591 + version = "0.2.9" 591 592 source = "registry+https://github.com/rust-lang/crates.io-index" 592 - checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f" 593 + checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" 593 594 dependencies = [ 594 595 "quote", 595 - "syn 2.0.85", 596 + "syn 2.0.100", 596 597 ] 597 598 598 599 [[package]] ··· 625 626 ] 626 627 627 628 [[package]] 629 + name = "displaydoc" 630 + version = "0.2.5" 631 + source = "registry+https://github.com/rust-lang/crates.io-index" 632 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 633 + dependencies = [ 634 + "proc-macro2", 635 + "quote", 636 + "syn 2.0.100", 637 + ] 638 + 639 + [[package]] 628 640 name = "either" 629 - version = "1.13.0" 641 + version = "1.15.0" 630 642 source = "registry+https://github.com/rust-lang/crates.io-index" 631 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 643 + checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 632 644 633 645 [[package]] 634 646 name = "encode_unicode" 635 - version = "0.3.6" 647 + version = "1.0.0" 636 648 source = "registry+https://github.com/rust-lang/crates.io-index" 637 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 649 + checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" 638 650 639 651 [[package]] 640 652 name = "encoding_rs" ··· 647 659 648 660 [[package]] 649 661 name = "equivalent" 650 - version = "1.0.1" 662 + version = "1.0.2" 651 663 source = "registry+https://github.com/rust-lang/crates.io-index" 652 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 664 + checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 653 665 654 666 [[package]] 655 667 name = "errno" 656 - version = "0.3.9" 668 + version = "0.3.10" 657 669 source = "registry+https://github.com/rust-lang/crates.io-index" 658 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 670 + checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" 659 671 dependencies = [ 660 672 "libc", 661 - "windows-sys 0.52.0", 673 + "windows-sys 0.59.0", 662 674 ] 663 675 664 676 [[package]] 665 677 name = "fastrand" 666 - version = "2.1.1" 678 + version = "2.3.0" 667 679 source = "registry+https://github.com/rust-lang/crates.io-index" 668 - checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 680 + checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 669 681 670 682 [[package]] 671 683 name = "filetime" ··· 681 693 682 694 [[package]] 683 695 name = "flate2" 684 - version = "1.0.34" 696 + version = "1.1.0" 685 697 source = "registry+https://github.com/rust-lang/crates.io-index" 686 - checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" 698 + checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc" 687 699 dependencies = [ 688 700 "crc32fast", 689 701 "miniz_oxide", ··· 748 760 dependencies = [ 749 761 "proc-macro2", 750 762 "quote", 751 - "syn 2.0.85", 763 + "syn 2.0.100", 752 764 ] 753 765 754 766 [[package]] ··· 799 811 dependencies = [ 800 812 "cfg-if", 801 813 "libc", 802 - "wasi", 814 + "wasi 0.11.0+wasi-snapshot-preview1", 815 + ] 816 + 817 + [[package]] 818 + name = "getrandom" 819 + version = "0.3.2" 820 + source = "registry+https://github.com/rust-lang/crates.io-index" 821 + checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" 822 + dependencies = [ 823 + "cfg-if", 824 + "libc", 825 + "r-efi", 826 + "wasi 0.14.2+wasi-0.2.4", 803 827 ] 804 828 805 829 [[package]] ··· 810 834 811 835 [[package]] 812 836 name = "glob" 813 - version = "0.3.1" 837 + version = "0.3.2" 814 838 source = "registry+https://github.com/rust-lang/crates.io-index" 815 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 839 + checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 816 840 817 841 [[package]] 818 842 name = "globset" 819 - version = "0.4.15" 843 + version = "0.4.16" 820 844 source = "registry+https://github.com/rust-lang/crates.io-index" 821 - checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19" 845 + checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5" 822 846 dependencies = [ 823 847 "aho-corasick", 824 848 "bstr", ··· 848 872 849 873 [[package]] 850 874 name = "half" 851 - version = "2.4.1" 875 + version = "2.5.0" 852 876 source = "registry+https://github.com/rust-lang/crates.io-index" 853 - checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 877 + checksum = "7db2ff139bba50379da6aa0766b52fdcb62cb5b263009b09ed58ba604e14bbd1" 854 878 dependencies = [ 855 879 "cfg-if", 856 880 "crunchy", ··· 864 888 865 889 [[package]] 866 890 name = "hashbrown" 867 - version = "0.15.0" 891 + version = "0.15.2" 868 892 source = "registry+https://github.com/rust-lang/crates.io-index" 869 - checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 893 + checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 870 894 871 895 [[package]] 872 896 name = "heck" ··· 882 906 883 907 [[package]] 884 908 name = "hermit-abi" 885 - version = "0.4.0" 909 + version = "0.5.0" 886 910 source = "registry+https://github.com/rust-lang/crates.io-index" 887 - checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 911 + checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e" 888 912 889 913 [[package]] 890 914 name = "http" ··· 910 934 911 935 [[package]] 912 936 name = "httparse" 913 - version = "1.9.5" 937 + version = "1.10.1" 914 938 source = "registry+https://github.com/rust-lang/crates.io-index" 915 - checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" 939 + checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 916 940 917 941 [[package]] 918 942 name = "httpdate" ··· 922 946 923 947 [[package]] 924 948 name = "hyper" 925 - version = "0.14.31" 949 + version = "0.14.32" 926 950 source = "registry+https://github.com/rust-lang/crates.io-index" 927 - checksum = "8c08302e8fa335b151b788c775ff56e7a03ae64ff85c548ee820fecb70356e85" 951 + checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" 928 952 dependencies = [ 929 953 "bytes", 930 954 "futures-channel", ··· 959 983 ] 960 984 961 985 [[package]] 986 + name = "icu_collections" 987 + version = "1.5.0" 988 + source = "registry+https://github.com/rust-lang/crates.io-index" 989 + checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 990 + dependencies = [ 991 + "displaydoc", 992 + "yoke", 993 + "zerofrom", 994 + "zerovec", 995 + ] 996 + 997 + [[package]] 998 + name = "icu_locid" 999 + version = "1.5.0" 1000 + source = "registry+https://github.com/rust-lang/crates.io-index" 1001 + checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 1002 + dependencies = [ 1003 + "displaydoc", 1004 + "litemap", 1005 + "tinystr", 1006 + "writeable", 1007 + "zerovec", 1008 + ] 1009 + 1010 + [[package]] 1011 + name = "icu_locid_transform" 1012 + version = "1.5.0" 1013 + source = "registry+https://github.com/rust-lang/crates.io-index" 1014 + checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 1015 + dependencies = [ 1016 + "displaydoc", 1017 + "icu_locid", 1018 + "icu_locid_transform_data", 1019 + "icu_provider", 1020 + "tinystr", 1021 + "zerovec", 1022 + ] 1023 + 1024 + [[package]] 1025 + name = "icu_locid_transform_data" 1026 + version = "1.5.1" 1027 + source = "registry+https://github.com/rust-lang/crates.io-index" 1028 + checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d" 1029 + 1030 + [[package]] 1031 + name = "icu_normalizer" 1032 + version = "1.5.0" 1033 + source = "registry+https://github.com/rust-lang/crates.io-index" 1034 + checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 1035 + dependencies = [ 1036 + "displaydoc", 1037 + "icu_collections", 1038 + "icu_normalizer_data", 1039 + "icu_properties", 1040 + "icu_provider", 1041 + "smallvec", 1042 + "utf16_iter", 1043 + "utf8_iter", 1044 + "write16", 1045 + "zerovec", 1046 + ] 1047 + 1048 + [[package]] 1049 + name = "icu_normalizer_data" 1050 + version = "1.5.1" 1051 + source = "registry+https://github.com/rust-lang/crates.io-index" 1052 + checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7" 1053 + 1054 + [[package]] 1055 + name = "icu_properties" 1056 + version = "1.5.1" 1057 + source = "registry+https://github.com/rust-lang/crates.io-index" 1058 + checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 1059 + dependencies = [ 1060 + "displaydoc", 1061 + "icu_collections", 1062 + "icu_locid_transform", 1063 + "icu_properties_data", 1064 + "icu_provider", 1065 + "tinystr", 1066 + "zerovec", 1067 + ] 1068 + 1069 + [[package]] 1070 + name = "icu_properties_data" 1071 + version = "1.5.1" 1072 + source = "registry+https://github.com/rust-lang/crates.io-index" 1073 + checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2" 1074 + 1075 + [[package]] 1076 + name = "icu_provider" 1077 + version = "1.5.0" 1078 + source = "registry+https://github.com/rust-lang/crates.io-index" 1079 + checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 1080 + dependencies = [ 1081 + "displaydoc", 1082 + "icu_locid", 1083 + "icu_provider_macros", 1084 + "stable_deref_trait", 1085 + "tinystr", 1086 + "writeable", 1087 + "yoke", 1088 + "zerofrom", 1089 + "zerovec", 1090 + ] 1091 + 1092 + [[package]] 1093 + name = "icu_provider_macros" 1094 + version = "1.5.0" 1095 + source = "registry+https://github.com/rust-lang/crates.io-index" 1096 + checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 1097 + dependencies = [ 1098 + "proc-macro2", 1099 + "quote", 1100 + "syn 2.0.100", 1101 + ] 1102 + 1103 + [[package]] 962 1104 name = "idna" 963 - version = "0.5.0" 1105 + version = "1.0.3" 1106 + source = "registry+https://github.com/rust-lang/crates.io-index" 1107 + checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 1108 + dependencies = [ 1109 + "idna_adapter", 1110 + "smallvec", 1111 + "utf8_iter", 1112 + ] 1113 + 1114 + [[package]] 1115 + name = "idna_adapter" 1116 + version = "1.2.0" 964 1117 source = "registry+https://github.com/rust-lang/crates.io-index" 965 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1118 + checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" 966 1119 dependencies = [ 967 - "unicode-bidi", 968 - "unicode-normalization", 1120 + "icu_normalizer", 1121 + "icu_properties", 969 1122 ] 970 1123 971 1124 [[package]] ··· 986 1139 987 1140 [[package]] 988 1141 name = "indexmap" 989 - version = "2.6.0" 1142 + version = "2.8.0" 990 1143 source = "registry+https://github.com/rust-lang/crates.io-index" 991 - checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 1144 + checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058" 992 1145 dependencies = [ 993 1146 "equivalent", 994 - "hashbrown 0.15.0", 1147 + "hashbrown 0.15.2", 995 1148 ] 996 1149 997 1150 [[package]] ··· 1013 1166 checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 1014 1167 1015 1168 [[package]] 1169 + name = "indoc" 1170 + version = "2.0.6" 1171 + source = "registry+https://github.com/rust-lang/crates.io-index" 1172 + checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" 1173 + 1174 + [[package]] 1016 1175 name = "ipnet" 1017 - version = "2.10.1" 1176 + version = "2.11.0" 1018 1177 source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708" 1178 + checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1020 1179 1021 1180 [[package]] 1022 1181 name = "is-terminal" 1023 - version = "0.4.13" 1182 + version = "0.4.16" 1024 1183 source = "registry+https://github.com/rust-lang/crates.io-index" 1025 - checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" 1184 + checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" 1026 1185 dependencies = [ 1027 - "hermit-abi 0.4.0", 1186 + "hermit-abi 0.5.0", 1028 1187 "libc", 1029 - "windows-sys 0.52.0", 1188 + "windows-sys 0.59.0", 1030 1189 ] 1031 1190 1032 1191 [[package]] ··· 1055 1214 1056 1215 [[package]] 1057 1216 name = "itoa" 1058 - version = "1.0.11" 1217 + version = "1.0.15" 1059 1218 source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1219 + checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1061 1220 1062 1221 [[package]] 1063 1222 name = "jni" ··· 1069 1228 "combine", 1070 1229 "jni-sys", 1071 1230 "log", 1072 - "thiserror", 1231 + "thiserror 1.0.69", 1073 1232 "walkdir", 1074 1233 ] 1075 1234 ··· 1081 1240 1082 1241 [[package]] 1083 1242 name = "js-sys" 1084 - version = "0.3.72" 1243 + version = "0.3.77" 1085 1244 source = "registry+https://github.com/rust-lang/crates.io-index" 1086 - checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9" 1245 + checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 1087 1246 dependencies = [ 1247 + "once_cell", 1088 1248 "wasm-bindgen", 1089 1249 ] 1090 1250 ··· 1102 1262 1103 1263 [[package]] 1104 1264 name = "libc" 1105 - version = "0.2.161" 1265 + version = "0.2.171" 1106 1266 source = "registry+https://github.com/rust-lang/crates.io-index" 1107 - checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 1267 + checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" 1108 1268 1109 1269 [[package]] 1110 1270 name = "libloading" 1111 - version = "0.8.5" 1271 + version = "0.8.6" 1112 1272 source = "registry+https://github.com/rust-lang/crates.io-index" 1113 - checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" 1273 + checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" 1114 1274 dependencies = [ 1115 1275 "cfg-if", 1116 1276 "windows-targets 0.52.6", ··· 1122 1282 source = "registry+https://github.com/rust-lang/crates.io-index" 1123 1283 checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 1124 1284 dependencies = [ 1125 - "bitflags 2.6.0", 1285 + "bitflags 2.9.0", 1126 1286 "libc", 1127 1287 "redox_syscall", 1128 1288 ] 1129 1289 1130 1290 [[package]] 1131 1291 name = "linux-raw-sys" 1132 - version = "0.4.14" 1292 + version = "0.9.3" 1133 1293 source = "registry+https://github.com/rust-lang/crates.io-index" 1134 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1294 + checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413" 1295 + 1296 + [[package]] 1297 + name = "litemap" 1298 + version = "0.7.5" 1299 + source = "registry+https://github.com/rust-lang/crates.io-index" 1300 + checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856" 1135 1301 1136 1302 [[package]] 1137 1303 name = "lock_api" ··· 1145 1311 1146 1312 [[package]] 1147 1313 name = "log" 1148 - version = "0.4.22" 1314 + version = "0.4.27" 1149 1315 source = "registry+https://github.com/rust-lang/crates.io-index" 1150 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 1316 + checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 1151 1317 1152 1318 [[package]] 1153 1319 name = "lsp-types" ··· 1164 1330 1165 1331 [[package]] 1166 1332 name = "magnus" 1167 - version = "0.6.4" 1333 + version = "0.7.1" 1168 1334 source = "registry+https://github.com/rust-lang/crates.io-index" 1169 - checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479" 1335 + checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab" 1170 1336 dependencies = [ 1171 1337 "magnus-macros", 1172 1338 "rb-sys", ··· 1182 1348 dependencies = [ 1183 1349 "proc-macro2", 1184 1350 "quote", 1185 - "syn 2.0.85", 1351 + "syn 2.0.100", 1186 1352 ] 1187 1353 1188 1354 [[package]] ··· 1214 1380 1215 1381 [[package]] 1216 1382 name = "miniz_oxide" 1217 - version = "0.8.0" 1383 + version = "0.8.5" 1218 1384 source = "registry+https://github.com/rust-lang/crates.io-index" 1219 - checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 1385 + checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5" 1220 1386 dependencies = [ 1221 1387 "adler2", 1222 1388 ] 1223 1389 1224 1390 [[package]] 1225 1391 name = "mio" 1226 - version = "1.0.2" 1392 + version = "1.0.3" 1227 1393 source = "registry+https://github.com/rust-lang/crates.io-index" 1228 - checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 1394 + checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" 1229 1395 dependencies = [ 1230 - "hermit-abi 0.3.9", 1231 1396 "libc", 1232 - "wasi", 1397 + "wasi 0.11.0+wasi-snapshot-preview1", 1233 1398 "windows-sys 0.52.0", 1234 1399 ] 1235 1400 1236 1401 [[package]] 1237 1402 name = "napi" 1238 - version = "2.16.13" 1403 + version = "2.16.17" 1239 1404 source = "registry+https://github.com/rust-lang/crates.io-index" 1240 - checksum = "214f07a80874bb96a8433b3cdfc84980d56c7b02e1a0d7ba4ba0db5cef785e2b" 1405 + checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3" 1241 1406 dependencies = [ 1242 - "bitflags 2.6.0", 1407 + "bitflags 2.9.0", 1243 1408 "ctor", 1244 1409 "napi-derive", 1245 1410 "napi-sys", ··· 1249 1414 1250 1415 [[package]] 1251 1416 name = "napi-build" 1252 - version = "2.1.3" 1417 + version = "2.1.6" 1253 1418 source = "registry+https://github.com/rust-lang/crates.io-index" 1254 - checksum = "e1c0f5d67ee408a4685b61f5ab7e58605c8ae3f2b4189f0127d804ff13d5560a" 1419 + checksum = "e28acfa557c083f6e254a786e01ba253fc56f18ee000afcd4f79af735f73a6da" 1255 1420 1256 1421 [[package]] 1257 1422 name = "napi-derive" 1258 - version = "2.16.12" 1423 + version = "2.16.13" 1259 1424 source = "registry+https://github.com/rust-lang/crates.io-index" 1260 - checksum = "17435f7a00bfdab20b0c27d9c56f58f6499e418252253081bfff448099da31d1" 1425 + checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c" 1261 1426 dependencies = [ 1262 1427 "cfg-if", 1263 1428 "convert_case", 1264 1429 "napi-derive-backend", 1265 1430 "proc-macro2", 1266 1431 "quote", 1267 - "syn 2.0.85", 1432 + "syn 2.0.100", 1268 1433 ] 1269 1434 1270 1435 [[package]] 1271 1436 name = "napi-derive-backend" 1272 - version = "1.0.74" 1437 + version = "1.0.75" 1273 1438 source = "registry+https://github.com/rust-lang/crates.io-index" 1274 - checksum = "967c485e00f0bf3b1bdbe510a38a4606919cf1d34d9a37ad41f25a81aa077abe" 1439 + checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf" 1275 1440 dependencies = [ 1276 1441 "convert_case", 1277 1442 "once_cell", ··· 1279 1444 "quote", 1280 1445 "regex", 1281 1446 "semver", 1282 - "syn 2.0.85", 1447 + "syn 2.0.100", 1283 1448 ] 1284 1449 1285 1450 [[package]] ··· 1328 1493 1329 1494 [[package]] 1330 1495 name = "object" 1331 - version = "0.36.5" 1496 + version = "0.36.7" 1332 1497 source = "registry+https://github.com/rust-lang/crates.io-index" 1333 - checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" 1498 + checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 1334 1499 dependencies = [ 1335 1500 "memchr", 1336 1501 ] 1337 1502 1338 1503 [[package]] 1339 1504 name = "once_cell" 1340 - version = "1.20.2" 1505 + version = "1.21.1" 1341 1506 source = "registry+https://github.com/rust-lang/crates.io-index" 1342 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 1507 + checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc" 1343 1508 1344 1509 [[package]] 1345 1510 name = "oorandom" 1346 - version = "11.1.4" 1511 + version = "11.1.5" 1347 1512 source = "registry+https://github.com/rust-lang/crates.io-index" 1348 - checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" 1513 + checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" 1349 1514 1350 1515 [[package]] 1351 1516 name = "owo-colors" 1352 - version = "3.5.0" 1517 + version = "4.2.0" 1353 1518 source = "registry+https://github.com/rust-lang/crates.io-index" 1354 - checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 1519 + checksum = "1036865bb9422d3300cf723f657c2851d0e9ab12567854b1f4eba3d77decf564" 1355 1520 1356 1521 [[package]] 1357 1522 name = "parking_lot" ··· 1384 1549 1385 1550 [[package]] 1386 1551 name = "pest" 1387 - version = "2.7.14" 1552 + version = "2.8.0" 1388 1553 source = "registry+https://github.com/rust-lang/crates.io-index" 1389 - checksum = "879952a81a83930934cbf1786752d6dedc3b1f29e8f8fb2ad1d0a36f377cf442" 1554 + checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6" 1390 1555 dependencies = [ 1391 1556 "memchr", 1392 - "thiserror", 1557 + "thiserror 2.0.12", 1393 1558 "ucd-trie", 1394 1559 ] 1395 1560 1396 1561 [[package]] 1397 1562 name = "pest_derive" 1398 - version = "2.7.14" 1563 + version = "2.8.0" 1399 1564 source = "registry+https://github.com/rust-lang/crates.io-index" 1400 - checksum = "d214365f632b123a47fd913301e14c946c61d1c183ee245fa76eb752e59a02dd" 1565 + checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5" 1401 1566 dependencies = [ 1402 1567 "pest", 1403 1568 "pest_generator", ··· 1405 1570 1406 1571 [[package]] 1407 1572 name = "pest_generator" 1408 - version = "2.7.14" 1573 + version = "2.8.0" 1409 1574 source = "registry+https://github.com/rust-lang/crates.io-index" 1410 - checksum = "eb55586734301717aea2ac313f50b2eb8f60d2fc3dc01d190eefa2e625f60c4e" 1575 + checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841" 1411 1576 dependencies = [ 1412 1577 "pest", 1413 1578 "pest_meta", 1414 1579 "proc-macro2", 1415 1580 "quote", 1416 - "syn 2.0.85", 1581 + "syn 2.0.100", 1417 1582 ] 1418 1583 1419 1584 [[package]] 1420 1585 name = "pest_meta" 1421 - version = "2.7.14" 1586 + version = "2.8.0" 1422 1587 source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "b75da2a70cf4d9cb76833c990ac9cd3923c9a8905a8929789ce347c84564d03d" 1588 + checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0" 1424 1589 dependencies = [ 1425 1590 "once_cell", 1426 1591 "pest", ··· 1429 1594 1430 1595 [[package]] 1431 1596 name = "pin-project" 1432 - version = "1.1.7" 1597 + version = "1.1.10" 1433 1598 source = "registry+https://github.com/rust-lang/crates.io-index" 1434 - checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95" 1599 + checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" 1435 1600 dependencies = [ 1436 1601 "pin-project-internal", 1437 1602 ] 1438 1603 1439 1604 [[package]] 1440 1605 name = "pin-project-internal" 1441 - version = "1.1.7" 1606 + version = "1.1.10" 1442 1607 source = "registry+https://github.com/rust-lang/crates.io-index" 1443 - checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" 1608 + checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" 1444 1609 dependencies = [ 1445 1610 "proc-macro2", 1446 1611 "quote", 1447 - "syn 2.0.85", 1612 + "syn 2.0.100", 1448 1613 ] 1449 1614 1450 1615 [[package]] 1451 1616 name = "pin-project-lite" 1452 - version = "0.2.15" 1617 + version = "0.2.16" 1453 1618 source = "registry+https://github.com/rust-lang/crates.io-index" 1454 - checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" 1619 + checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1455 1620 1456 1621 [[package]] 1457 1622 name = "pin-utils" ··· 1499 1664 1500 1665 [[package]] 1501 1666 name = "proc-macro2" 1502 - version = "1.0.89" 1667 + version = "1.0.94" 1503 1668 source = "registry+https://github.com/rust-lang/crates.io-index" 1504 - checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" 1669 + checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" 1505 1670 dependencies = [ 1506 1671 "unicode-ident", 1507 1672 ] ··· 1513 1678 checksum = "268be0c73583c183f2b14052337465768c07726936a260f480f0857cb95ba543" 1514 1679 dependencies = [ 1515 1680 "cfg-if", 1516 - "indoc", 1681 + "indoc 1.0.9", 1517 1682 "libc", 1518 1683 "memoffset", 1519 1684 "parking_lot", ··· 1577 1742 1578 1743 [[package]] 1579 1744 name = "quote" 1580 - version = "1.0.37" 1745 + version = "1.0.40" 1581 1746 source = "registry+https://github.com/rust-lang/crates.io-index" 1582 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 1747 + checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 1583 1748 dependencies = [ 1584 1749 "proc-macro2", 1585 1750 ] 1751 + 1752 + [[package]] 1753 + name = "r-efi" 1754 + version = "5.2.0" 1755 + source = "registry+https://github.com/rust-lang/crates.io-index" 1756 + checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" 1586 1757 1587 1758 [[package]] 1588 1759 name = "rayon" ··· 1606 1777 1607 1778 [[package]] 1608 1779 name = "rb-sys" 1609 - version = "0.9.102" 1780 + version = "0.9.111" 1610 1781 source = "registry+https://github.com/rust-lang/crates.io-index" 1611 - checksum = "df4dec4b1d304c3b308a2cd86b1216ea45dd4361f4e9fa056f108332d0a450c1" 1782 + checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af" 1612 1783 dependencies = [ 1613 1784 "rb-sys-build", 1614 1785 ] 1615 1786 1616 1787 [[package]] 1617 1788 name = "rb-sys-build" 1618 - version = "0.9.102" 1789 + version = "0.9.111" 1619 1790 source = "registry+https://github.com/rust-lang/crates.io-index" 1620 - checksum = "1d71de3e29d174b8fb17b5d4470f27d7aa2605f8a9d05fda0d3aeff30e05a570" 1791 + checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29" 1621 1792 dependencies = [ 1622 1793 "bindgen", 1623 1794 "lazy_static", ··· 1625 1796 "quote", 1626 1797 "regex", 1627 1798 "shell-words", 1628 - "syn 2.0.85", 1799 + "syn 2.0.100", 1629 1800 ] 1630 1801 1631 1802 [[package]] ··· 1636 1807 1637 1808 [[package]] 1638 1809 name = "redox_syscall" 1639 - version = "0.5.7" 1810 + version = "0.5.10" 1640 1811 source = "registry+https://github.com/rust-lang/crates.io-index" 1641 - checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" 1812 + checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1" 1642 1813 dependencies = [ 1643 - "bitflags 2.6.0", 1814 + "bitflags 2.9.0", 1644 1815 ] 1645 1816 1646 1817 [[package]] ··· 1657 1828 1658 1829 [[package]] 1659 1830 name = "regex-automata" 1660 - version = "0.4.8" 1831 + version = "0.4.9" 1661 1832 source = "registry+https://github.com/rust-lang/crates.io-index" 1662 - checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 1833 + checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 1663 1834 dependencies = [ 1664 1835 "aho-corasick", 1665 1836 "memchr", ··· 1715 1886 1716 1887 [[package]] 1717 1888 name = "ring" 1718 - version = "0.17.8" 1889 + version = "0.17.14" 1719 1890 source = "registry+https://github.com/rust-lang/crates.io-index" 1720 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 1891 + checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 1721 1892 dependencies = [ 1722 1893 "cc", 1723 1894 "cfg-if", 1724 - "getrandom", 1895 + "getrandom 0.2.15", 1725 1896 "libc", 1726 - "spin", 1727 1897 "untrusted", 1728 1898 "windows-sys 0.52.0", 1729 1899 ] ··· 1742 1912 1743 1913 [[package]] 1744 1914 name = "rustix" 1745 - version = "0.38.38" 1915 + version = "1.0.3" 1746 1916 source = "registry+https://github.com/rust-lang/crates.io-index" 1747 - checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a" 1917 + checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96" 1748 1918 dependencies = [ 1749 - "bitflags 2.6.0", 1919 + "bitflags 2.9.0", 1750 1920 "errno", 1751 1921 "libc", 1752 1922 "linux-raw-sys", 1753 - "windows-sys 0.52.0", 1923 + "windows-sys 0.59.0", 1754 1924 ] 1755 1925 1756 1926 [[package]] ··· 1785 1955 ] 1786 1956 1787 1957 [[package]] 1958 + name = "rustversion" 1959 + version = "1.0.20" 1960 + source = "registry+https://github.com/rust-lang/crates.io-index" 1961 + checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" 1962 + 1963 + [[package]] 1788 1964 name = "ryu" 1789 - version = "1.0.18" 1965 + version = "1.0.20" 1790 1966 source = "registry+https://github.com/rust-lang/crates.io-index" 1791 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1967 + checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1792 1968 1793 1969 [[package]] 1794 1970 name = "same-file" ··· 1837 2013 1838 2014 [[package]] 1839 2015 name = "semver" 1840 - version = "1.0.23" 2016 + version = "1.0.26" 1841 2017 source = "registry+https://github.com/rust-lang/crates.io-index" 1842 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 2018 + checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" 1843 2019 1844 2020 [[package]] 1845 2021 name = "seq-macro" 1846 - version = "0.3.5" 2022 + version = "0.3.6" 1847 2023 source = "registry+https://github.com/rust-lang/crates.io-index" 1848 - checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" 2024 + checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc" 1849 2025 1850 2026 [[package]] 1851 2027 name = "serde" 1852 - version = "1.0.213" 2028 + version = "1.0.219" 1853 2029 source = "registry+https://github.com/rust-lang/crates.io-index" 1854 - checksum = "3ea7893ff5e2466df8d720bb615088341b295f849602c6956047f8f80f0e9bc1" 2030 + checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 1855 2031 dependencies = [ 1856 2032 "serde_derive", 1857 2033 ] 1858 2034 1859 2035 [[package]] 1860 2036 name = "serde_derive" 1861 - version = "1.0.213" 2037 + version = "1.0.219" 1862 2038 source = "registry+https://github.com/rust-lang/crates.io-index" 1863 - checksum = "7e85ad2009c50b58e87caa8cd6dac16bdf511bbfb7af6c33df902396aa480fa5" 2039 + checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 1864 2040 dependencies = [ 1865 2041 "proc-macro2", 1866 2042 "quote", 1867 - "syn 2.0.85", 2043 + "syn 2.0.100", 1868 2044 ] 1869 2045 1870 2046 [[package]] 1871 2047 name = "serde_json" 1872 - version = "1.0.132" 2048 + version = "1.0.140" 1873 2049 source = "registry+https://github.com/rust-lang/crates.io-index" 1874 - checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" 2050 + checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 1875 2051 dependencies = [ 1876 2052 "itoa", 1877 2053 "memchr", ··· 1881 2057 1882 2058 [[package]] 1883 2059 name = "serde_repr" 1884 - version = "0.1.19" 2060 + version = "0.1.20" 1885 2061 source = "registry+https://github.com/rust-lang/crates.io-index" 1886 - checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 2062 + checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 1887 2063 dependencies = [ 1888 2064 "proc-macro2", 1889 2065 "quote", 1890 - "syn 2.0.85", 2066 + "syn 2.0.100", 1891 2067 ] 1892 2068 1893 2069 [[package]] ··· 1949 2125 1950 2126 [[package]] 1951 2127 name = "smallvec" 1952 - version = "1.13.2" 2128 + version = "1.14.0" 1953 2129 source = "registry+https://github.com/rust-lang/crates.io-index" 1954 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2130 + checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd" 1955 2131 1956 2132 [[package]] 1957 2133 name = "socket2" 1958 - version = "0.5.7" 2134 + version = "0.5.8" 1959 2135 source = "registry+https://github.com/rust-lang/crates.io-index" 1960 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 2136 + checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" 1961 2137 dependencies = [ 1962 2138 "libc", 1963 2139 "windows-sys 0.52.0", 1964 2140 ] 1965 2141 1966 2142 [[package]] 1967 - name = "spin" 1968 - version = "0.9.8" 2143 + name = "stable_deref_trait" 2144 + version = "1.2.0" 1969 2145 source = "registry+https://github.com/rust-lang/crates.io-index" 1970 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2146 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1971 2147 1972 2148 [[package]] 1973 2149 name = "strsim" ··· 1998 2174 1999 2175 [[package]] 2000 2176 name = "syn" 2001 - version = "2.0.85" 2177 + version = "2.0.100" 2002 2178 source = "registry+https://github.com/rust-lang/crates.io-index" 2003 - checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56" 2179 + checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0" 2004 2180 dependencies = [ 2005 2181 "proc-macro2", 2006 2182 "quote", ··· 2014 2190 checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 2015 2191 2016 2192 [[package]] 2193 + name = "synstructure" 2194 + version = "0.13.1" 2195 + source = "registry+https://github.com/rust-lang/crates.io-index" 2196 + checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 2197 + dependencies = [ 2198 + "proc-macro2", 2199 + "quote", 2200 + "syn 2.0.100", 2201 + ] 2202 + 2203 + [[package]] 2017 2204 name = "system-configuration" 2018 2205 version = "0.5.1" 2019 2206 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2036 2223 2037 2224 [[package]] 2038 2225 name = "tar" 2039 - version = "0.4.42" 2226 + version = "0.4.44" 2040 2227 source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020" 2228 + checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" 2042 2229 dependencies = [ 2043 2230 "filetime", 2044 2231 "libc", ··· 2053 2240 2054 2241 [[package]] 2055 2242 name = "tempfile" 2056 - version = "3.13.0" 2243 + version = "3.19.1" 2057 2244 source = "registry+https://github.com/rust-lang/crates.io-index" 2058 - checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 2245 + checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf" 2059 2246 dependencies = [ 2060 - "cfg-if", 2061 2247 "fastrand", 2248 + "getrandom 0.3.2", 2062 2249 "once_cell", 2063 2250 "rustix", 2064 2251 "windows-sys 0.59.0", ··· 2066 2253 2067 2254 [[package]] 2068 2255 name = "thiserror" 2069 - version = "1.0.65" 2256 + version = "1.0.69" 2257 + source = "registry+https://github.com/rust-lang/crates.io-index" 2258 + checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2259 + dependencies = [ 2260 + "thiserror-impl 1.0.69", 2261 + ] 2262 + 2263 + [[package]] 2264 + name = "thiserror" 2265 + version = "2.0.12" 2266 + source = "registry+https://github.com/rust-lang/crates.io-index" 2267 + checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" 2268 + dependencies = [ 2269 + "thiserror-impl 2.0.12", 2270 + ] 2271 + 2272 + [[package]] 2273 + name = "thiserror-impl" 2274 + version = "1.0.69" 2070 2275 source = "registry+https://github.com/rust-lang/crates.io-index" 2071 - checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5" 2276 + checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2072 2277 dependencies = [ 2073 - "thiserror-impl", 2278 + "proc-macro2", 2279 + "quote", 2280 + "syn 2.0.100", 2074 2281 ] 2075 2282 2076 2283 [[package]] 2077 2284 name = "thiserror-impl" 2078 - version = "1.0.65" 2285 + version = "2.0.12" 2079 2286 source = "registry+https://github.com/rust-lang/crates.io-index" 2080 - checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602" 2287 + checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" 2081 2288 dependencies = [ 2082 2289 "proc-macro2", 2083 2290 "quote", 2084 - "syn 2.0.85", 2291 + "syn 2.0.100", 2085 2292 ] 2086 2293 2087 2294 [[package]] ··· 2094 2301 ] 2095 2302 2096 2303 [[package]] 2097 - name = "tinytemplate" 2098 - version = "1.2.1" 2304 + name = "tinystr" 2305 + version = "0.7.6" 2099 2306 source = "registry+https://github.com/rust-lang/crates.io-index" 2100 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 2307 + checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 2101 2308 dependencies = [ 2102 - "serde", 2103 - "serde_json", 2309 + "displaydoc", 2310 + "zerovec", 2104 2311 ] 2105 2312 2106 2313 [[package]] 2107 - name = "tinyvec" 2108 - version = "1.8.0" 2314 + name = "tinytemplate" 2315 + version = "1.2.1" 2109 2316 source = "registry+https://github.com/rust-lang/crates.io-index" 2110 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 2317 + checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 2111 2318 dependencies = [ 2112 - "tinyvec_macros", 2319 + "serde", 2320 + "serde_json", 2113 2321 ] 2114 - 2115 - [[package]] 2116 - name = "tinyvec_macros" 2117 - version = "0.1.1" 2118 - source = "registry+https://github.com/rust-lang/crates.io-index" 2119 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2120 2322 2121 2323 [[package]] 2122 2324 name = "tokio" 2123 - version = "1.41.0" 2325 + version = "1.44.1" 2124 2326 source = "registry+https://github.com/rust-lang/crates.io-index" 2125 - checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" 2327 + checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a" 2126 2328 dependencies = [ 2127 2329 "backtrace", 2128 2330 "bytes", ··· 2136 2338 2137 2339 [[package]] 2138 2340 name = "tokio-macros" 2139 - version = "2.4.0" 2341 + version = "2.5.0" 2140 2342 source = "registry+https://github.com/rust-lang/crates.io-index" 2141 - checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 2343 + checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 2142 2344 dependencies = [ 2143 2345 "proc-macro2", 2144 2346 "quote", 2145 - "syn 2.0.85", 2347 + "syn 2.0.100", 2146 2348 ] 2147 2349 2148 2350 [[package]] ··· 2157 2359 2158 2360 [[package]] 2159 2361 name = "tokio-util" 2160 - version = "0.7.12" 2362 + version = "0.7.14" 2161 2363 source = "registry+https://github.com/rust-lang/crates.io-index" 2162 - checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" 2364 + checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034" 2163 2365 dependencies = [ 2164 2366 "bytes", 2165 2367 "futures-core", ··· 2219 2421 dependencies = [ 2220 2422 "proc-macro2", 2221 2423 "quote", 2222 - "syn 2.0.85", 2424 + "syn 2.0.100", 2223 2425 ] 2224 2426 2225 2427 [[package]] ··· 2230 2432 2231 2433 [[package]] 2232 2434 name = "tracing" 2233 - version = "0.1.40" 2435 + version = "0.1.41" 2234 2436 source = "registry+https://github.com/rust-lang/crates.io-index" 2235 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2437 + checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 2236 2438 dependencies = [ 2237 2439 "pin-project-lite", 2238 2440 "tracing-attributes", ··· 2241 2443 2242 2444 [[package]] 2243 2445 name = "tracing-attributes" 2244 - version = "0.1.27" 2446 + version = "0.1.28" 2245 2447 source = "registry+https://github.com/rust-lang/crates.io-index" 2246 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 2448 + checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" 2247 2449 dependencies = [ 2248 2450 "proc-macro2", 2249 2451 "quote", 2250 - "syn 2.0.85", 2452 + "syn 2.0.100", 2251 2453 ] 2252 2454 2253 2455 [[package]] 2254 2456 name = "tracing-core" 2255 - version = "0.1.32" 2457 + version = "0.1.33" 2256 2458 source = "registry+https://github.com/rust-lang/crates.io-index" 2257 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2459 + checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 2258 2460 dependencies = [ 2259 2461 "once_cell", 2260 2462 ] ··· 2267 2469 2268 2470 [[package]] 2269 2471 name = "typenum" 2270 - version = "1.17.0" 2472 + version = "1.18.0" 2271 2473 source = "registry+https://github.com/rust-lang/crates.io-index" 2272 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 2474 + checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" 2273 2475 2274 2476 [[package]] 2275 2477 name = "ucd-trie" ··· 2278 2480 checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" 2279 2481 2280 2482 [[package]] 2281 - name = "unicode-bidi" 2282 - version = "0.3.17" 2283 - source = "registry+https://github.com/rust-lang/crates.io-index" 2284 - checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" 2285 - 2286 - [[package]] 2287 2483 name = "unicode-ident" 2288 - version = "1.0.13" 2289 - source = "registry+https://github.com/rust-lang/crates.io-index" 2290 - checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 2291 - 2292 - [[package]] 2293 - name = "unicode-normalization" 2294 - version = "0.1.24" 2484 + version = "1.0.18" 2295 2485 source = "registry+https://github.com/rust-lang/crates.io-index" 2296 - checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 2297 - dependencies = [ 2298 - "tinyvec", 2299 - ] 2486 + checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 2300 2487 2301 2488 [[package]] 2302 2489 name = "unicode-segmentation" ··· 2324 2511 2325 2512 [[package]] 2326 2513 name = "url" 2327 - version = "2.5.2" 2514 + version = "2.5.4" 2328 2515 source = "registry+https://github.com/rust-lang/crates.io-index" 2329 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 2516 + checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 2330 2517 dependencies = [ 2331 2518 "form_urlencoded", 2332 2519 "idna", 2333 2520 "percent-encoding", 2334 2521 "serde", 2335 2522 ] 2523 + 2524 + [[package]] 2525 + name = "utf16_iter" 2526 + version = "1.0.5" 2527 + source = "registry+https://github.com/rust-lang/crates.io-index" 2528 + checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 2529 + 2530 + [[package]] 2531 + name = "utf8_iter" 2532 + version = "1.0.4" 2533 + source = "registry+https://github.com/rust-lang/crates.io-index" 2534 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2336 2535 2337 2536 [[package]] 2338 2537 name = "utf8parse" ··· 2372 2571 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2373 2572 2374 2573 [[package]] 2574 + name = "wasi" 2575 + version = "0.14.2+wasi-0.2.4" 2576 + source = "registry+https://github.com/rust-lang/crates.io-index" 2577 + checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 2578 + dependencies = [ 2579 + "wit-bindgen-rt", 2580 + ] 2581 + 2582 + [[package]] 2375 2583 name = "wasm-bindgen" 2376 - version = "0.2.95" 2584 + version = "0.2.100" 2377 2585 source = "registry+https://github.com/rust-lang/crates.io-index" 2378 - checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" 2586 + checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 2379 2587 dependencies = [ 2380 2588 "cfg-if", 2381 2589 "once_cell", 2590 + "rustversion", 2382 2591 "serde", 2383 2592 "serde_json", 2384 2593 "wasm-bindgen-macro", ··· 2386 2595 2387 2596 [[package]] 2388 2597 name = "wasm-bindgen-backend" 2389 - version = "0.2.95" 2598 + version = "0.2.100" 2390 2599 source = "registry+https://github.com/rust-lang/crates.io-index" 2391 - checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" 2600 + checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 2392 2601 dependencies = [ 2393 2602 "bumpalo", 2394 2603 "log", 2395 - "once_cell", 2396 2604 "proc-macro2", 2397 2605 "quote", 2398 - "syn 2.0.85", 2606 + "syn 2.0.100", 2399 2607 "wasm-bindgen-shared", 2400 2608 ] 2401 2609 2402 2610 [[package]] 2403 2611 name = "wasm-bindgen-futures" 2404 - version = "0.4.45" 2612 + version = "0.4.50" 2405 2613 source = "registry+https://github.com/rust-lang/crates.io-index" 2406 - checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b" 2614 + checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 2407 2615 dependencies = [ 2408 2616 "cfg-if", 2409 2617 "js-sys", 2618 + "once_cell", 2410 2619 "wasm-bindgen", 2411 2620 "web-sys", 2412 2621 ] 2413 2622 2414 2623 [[package]] 2415 2624 name = "wasm-bindgen-macro" 2416 - version = "0.2.95" 2625 + version = "0.2.100" 2417 2626 source = "registry+https://github.com/rust-lang/crates.io-index" 2418 - checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" 2627 + checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 2419 2628 dependencies = [ 2420 2629 "quote", 2421 2630 "wasm-bindgen-macro-support", ··· 2423 2632 2424 2633 [[package]] 2425 2634 name = "wasm-bindgen-macro-support" 2426 - version = "0.2.95" 2635 + version = "0.2.100" 2427 2636 source = "registry+https://github.com/rust-lang/crates.io-index" 2428 - checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" 2637 + checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 2429 2638 dependencies = [ 2430 2639 "proc-macro2", 2431 2640 "quote", 2432 - "syn 2.0.85", 2641 + "syn 2.0.100", 2433 2642 "wasm-bindgen-backend", 2434 2643 "wasm-bindgen-shared", 2435 2644 ] 2436 2645 2437 2646 [[package]] 2438 2647 name = "wasm-bindgen-shared" 2439 - version = "0.2.95" 2648 + version = "0.2.100" 2440 2649 source = "registry+https://github.com/rust-lang/crates.io-index" 2441 - checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" 2650 + checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 2651 + dependencies = [ 2652 + "unicode-ident", 2653 + ] 2442 2654 2443 2655 [[package]] 2444 2656 name = "web-sys" 2445 - version = "0.3.72" 2657 + version = "0.3.77" 2446 2658 source = "registry+https://github.com/rust-lang/crates.io-index" 2447 - checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112" 2659 + checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 2448 2660 dependencies = [ 2449 2661 "js-sys", 2450 2662 "wasm-bindgen", ··· 2624 2836 ] 2625 2837 2626 2838 [[package]] 2839 + name = "wit-bindgen-rt" 2840 + version = "0.39.0" 2841 + source = "registry+https://github.com/rust-lang/crates.io-index" 2842 + checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 2843 + dependencies = [ 2844 + "bitflags 2.9.0", 2845 + ] 2846 + 2847 + [[package]] 2848 + name = "write16" 2849 + version = "1.0.0" 2850 + source = "registry+https://github.com/rust-lang/crates.io-index" 2851 + checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 2852 + 2853 + [[package]] 2854 + name = "writeable" 2855 + version = "0.5.5" 2856 + source = "registry+https://github.com/rust-lang/crates.io-index" 2857 + checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 2858 + 2859 + [[package]] 2627 2860 name = "xattr" 2628 - version = "1.3.1" 2861 + version = "1.5.0" 2629 2862 source = "registry+https://github.com/rust-lang/crates.io-index" 2630 - checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 2863 + checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e" 2631 2864 dependencies = [ 2632 2865 "libc", 2633 - "linux-raw-sys", 2634 2866 "rustix", 2635 2867 ] 2636 2868 ··· 2639 2871 version = "1.0.1" 2640 2872 source = "registry+https://github.com/rust-lang/crates.io-index" 2641 2873 checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 2874 + 2875 + [[package]] 2876 + name = "yoke" 2877 + version = "0.7.5" 2878 + source = "registry+https://github.com/rust-lang/crates.io-index" 2879 + checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 2880 + dependencies = [ 2881 + "serde", 2882 + "stable_deref_trait", 2883 + "yoke-derive", 2884 + "zerofrom", 2885 + ] 2886 + 2887 + [[package]] 2888 + name = "yoke-derive" 2889 + version = "0.7.5" 2890 + source = "registry+https://github.com/rust-lang/crates.io-index" 2891 + checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 2892 + dependencies = [ 2893 + "proc-macro2", 2894 + "quote", 2895 + "syn 2.0.100", 2896 + "synstructure", 2897 + ] 2898 + 2899 + [[package]] 2900 + name = "zerofrom" 2901 + version = "0.1.6" 2902 + source = "registry+https://github.com/rust-lang/crates.io-index" 2903 + checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 2904 + dependencies = [ 2905 + "zerofrom-derive", 2906 + ] 2907 + 2908 + [[package]] 2909 + name = "zerofrom-derive" 2910 + version = "0.1.6" 2911 + source = "registry+https://github.com/rust-lang/crates.io-index" 2912 + checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 2913 + dependencies = [ 2914 + "proc-macro2", 2915 + "quote", 2916 + "syn 2.0.100", 2917 + "synstructure", 2918 + ] 2919 + 2920 + [[package]] 2921 + name = "zerovec" 2922 + version = "0.10.4" 2923 + source = "registry+https://github.com/rust-lang/crates.io-index" 2924 + checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 2925 + dependencies = [ 2926 + "yoke", 2927 + "zerofrom", 2928 + "zerovec-derive", 2929 + ] 2930 + 2931 + [[package]] 2932 + name = "zerovec-derive" 2933 + version = "0.10.3" 2934 + source = "registry+https://github.com/rust-lang/crates.io-index" 2935 + checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 2936 + dependencies = [ 2937 + "proc-macro2", 2938 + "quote", 2939 + "syn 2.0.100", 2940 + ]
+2 -2
pkgs/tools/text/autocorrect/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "autocorrect"; 12 - version = "2.13.0"; 12 + version = "2.13.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "huacnlee"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-12Ell1C5sKj+0HHmlZ3U2Vx5hXvMl/DqAXnfhcfLeF8="; 18 + sha256 = "sha256-fwq+Q2GpPXWfIQjfSACBjdyjrmYwVKSSZxCy3+NIKNI="; 19 19 }; 20 20 21 21 cargoLock = {
+2 -14
pkgs/top-level/all-packages.nix
··· 2701 2701 2702 2702 inherit (nodePackages) uppy-companion; 2703 2703 2704 - usb-modeswitch = callPackage ../development/tools/misc/usb-modeswitch { }; 2705 - usb-modeswitch-data = callPackage ../development/tools/misc/usb-modeswitch/data.nix { }; 2704 + usb-modeswitch-data = callPackage ../by-name/us/usb-modeswitch/data.nix { }; 2706 2705 2707 2706 persistent-evdev = python3Packages.callPackage ../servers/persistent-evdev { }; 2708 2707 ··· 7438 7437 7439 7438 black = with python3Packages; toPythonApplication black; 7440 7439 7441 - blackfire = callPackage ../development/tools/misc/blackfire { }; 7442 - 7443 7440 black-macchiato = with python3Packages; toPythonApplication black-macchiato; 7444 7441 7445 7442 buck = callPackage ../development/tools/build-managers/buck { ··· 7473 7470 libbpf_0 = callPackage ../os-specific/linux/libbpf/0.x.nix { }; 7474 7471 7475 7472 bundlewrap = with python3.pkgs; toPythonApplication bundlewrap; 7476 - 7477 - cadre = callPackage ../development/tools/cadre { }; 7478 7473 7479 7474 # Wrapper that works as gcc or g++ 7480 7475 # It can be used by setting in nixpkgs config like this, for example: ··· 7523 7518 chruby = callPackage ../development/tools/misc/chruby { rubies = null; }; 7524 7519 7525 7520 cloudcompare = libsForQt5.callPackage ../applications/graphics/cloudcompare { }; 7526 - 7527 - coder = callPackage ../development/tools/coder { }; 7528 7521 7529 7522 cookiecutter = with python3Packages; toPythonApplication cookiecutter; 7530 7523 ··· 8129 8122 inherit (darwin.apple_sdk_11_0.frameworks) CoreServices; 8130 8123 }; 8131 8124 8132 - xcode-install = callPackage ../development/tools/xcode-install { }; 8133 - 8134 8125 xcbuild = callPackage ../by-name/xc/xcbuild/package.nix { 8135 8126 stdenv = 8136 8127 # xcbuild is included in the SDK. Avoid an infinite recursion by using a bootstrap stdenv. ··· 8146 8137 } ../by-name/xc/xcbuild/setup-hook.sh; 8147 8138 8148 8139 xcodebuild = xcbuild; 8149 - 8150 - xcpretty = callPackage ../development/tools/xcpretty { }; 8151 8140 8152 8141 xxdiff = libsForQt5.callPackage ../development/tools/misc/xxdiff { }; 8153 8142 ··· 10338 10327 10339 10328 sqlite-interactive = (sqlite.override { interactive = true; }).bin; 10340 10329 10341 - stlink = callPackage ../development/tools/misc/stlink { }; 10342 - stlink-gui = callPackage ../development/tools/misc/stlink { withGUI = true; }; 10330 + stlink-gui = callPackage ../by-name/st/stlink/package.nix { withGUI = true; }; 10343 10331 10344 10332 streamlink-twitch-gui-bin = callPackage ../applications/video/streamlink-twitch-gui/bin.nix { }; 10345 10333
+1 -1
pkgs/top-level/php-packages.nix
··· 280 280 281 281 ast = callPackage ../development/php-packages/ast { }; 282 282 283 - blackfire = callPackage ../development/tools/misc/blackfire/php-probe.nix { }; 283 + blackfire = callPackage ../by-name/bl/blackfire/php-probe.nix { }; 284 284 285 285 couchbase = callPackage ../development/php-packages/couchbase { }; 286 286
+716 -1069
pkgs/top-level/python-packages.nix
··· 27 27 28 28 setuptools = callPackage ../development/python-modules/setuptools { }; 29 29 30 - # keep-sorted start block=yes newline_separated=yes 30 + # by_regex ensures inherit statements are sorted after the (first) attribute name that is inherited. 31 + # keep-sorted start block=yes newline_separated=yes by_regex=["(?:inherit\\s+\\([^)]+\\)\\n?\\s*)?(.+)"] 31 32 a2wsgi = callPackage ../development/python-modules/a2wsgi { }; 32 33 33 34 aafigure = callPackage ../development/python-modules/aafigure { }; ··· 6627 6628 6628 6629 inform = callPackage ../development/python-modules/inform { }; 6629 6630 6630 - inherit (callPackage ../development/python-modules/mypy-boto3 { }) 6631 - mypy-boto3-accessanalyzer 6632 - mypy-boto3-account 6633 - mypy-boto3-acm 6634 - mypy-boto3-acm-pca 6635 - mypy-boto3-amp 6636 - mypy-boto3-amplify 6637 - mypy-boto3-amplifybackend 6638 - mypy-boto3-amplifyuibuilder 6639 - mypy-boto3-apigateway 6640 - mypy-boto3-apigatewaymanagementapi 6641 - mypy-boto3-apigatewayv2 6642 - mypy-boto3-appconfig 6643 - mypy-boto3-appconfigdata 6644 - mypy-boto3-appfabric 6645 - mypy-boto3-appflow 6646 - mypy-boto3-appintegrations 6647 - mypy-boto3-application-autoscaling 6648 - mypy-boto3-application-insights 6649 - mypy-boto3-applicationcostprofiler 6650 - mypy-boto3-appmesh 6651 - mypy-boto3-apprunner 6652 - mypy-boto3-appstream 6653 - mypy-boto3-appsync 6654 - mypy-boto3-arc-zonal-shift 6655 - mypy-boto3-athena 6656 - mypy-boto3-auditmanager 6657 - mypy-boto3-autoscaling 6658 - mypy-boto3-autoscaling-plans 6659 - mypy-boto3-backup 6660 - mypy-boto3-backup-gateway 6661 - mypy-boto3-batch 6662 - mypy-boto3-billingconductor 6663 - mypy-boto3-braket 6664 - mypy-boto3-budgets 6665 - mypy-boto3-ce 6666 - mypy-boto3-chime 6667 - mypy-boto3-chime-sdk-identity 6668 - mypy-boto3-chime-sdk-media-pipelines 6669 - mypy-boto3-chime-sdk-meetings 6670 - mypy-boto3-chime-sdk-messaging 6671 - mypy-boto3-chime-sdk-voice 6672 - mypy-boto3-cleanrooms 6673 - mypy-boto3-cloud9 6674 - mypy-boto3-cloudcontrol 6675 - mypy-boto3-clouddirectory 6676 - mypy-boto3-cloudformation 6677 - mypy-boto3-cloudfront 6678 - mypy-boto3-cloudhsm 6679 - mypy-boto3-cloudhsmv2 6680 - mypy-boto3-cloudsearch 6681 - mypy-boto3-cloudsearchdomain 6682 - mypy-boto3-cloudtrail 6683 - mypy-boto3-cloudtrail-data 6684 - mypy-boto3-cloudwatch 6685 - mypy-boto3-codeartifact 6686 - mypy-boto3-codebuild 6687 - mypy-boto3-codecatalyst 6688 - mypy-boto3-codecommit 6689 - mypy-boto3-codedeploy 6690 - mypy-boto3-codeguru-reviewer 6691 - mypy-boto3-codeguru-security 6692 - mypy-boto3-codeguruprofiler 6693 - mypy-boto3-codepipeline 6694 - mypy-boto3-codestar 6695 - mypy-boto3-codestar-connections 6696 - mypy-boto3-codestar-notifications 6697 - mypy-boto3-cognito-identity 6698 - mypy-boto3-cognito-idp 6699 - mypy-boto3-cognito-sync 6700 - mypy-boto3-comprehend 6701 - mypy-boto3-comprehendmedical 6702 - mypy-boto3-compute-optimizer 6703 - mypy-boto3-config 6704 - mypy-boto3-connect 6705 - mypy-boto3-connect-contact-lens 6706 - mypy-boto3-connectcampaigns 6707 - mypy-boto3-connectcases 6708 - mypy-boto3-connectparticipant 6709 - mypy-boto3-controltower 6710 - mypy-boto3-cur 6711 - mypy-boto3-customer-profiles 6712 - mypy-boto3-databrew 6713 - mypy-boto3-dataexchange 6714 - mypy-boto3-datapipeline 6715 - mypy-boto3-datasync 6716 - mypy-boto3-dax 6717 - mypy-boto3-detective 6718 - mypy-boto3-devicefarm 6719 - mypy-boto3-devops-guru 6720 - mypy-boto3-directconnect 6721 - mypy-boto3-discovery 6722 - mypy-boto3-dlm 6723 - mypy-boto3-dms 6724 - mypy-boto3-docdb 6725 - mypy-boto3-docdb-elastic 6726 - mypy-boto3-drs 6727 - mypy-boto3-ds 6728 - mypy-boto3-dynamodb 6729 - mypy-boto3-dynamodbstreams 6730 - mypy-boto3-ebs 6731 - mypy-boto3-ec2 6732 - mypy-boto3-ec2-instance-connect 6733 - mypy-boto3-ecr 6734 - mypy-boto3-ecr-public 6735 - mypy-boto3-ecs 6736 - mypy-boto3-efs 6737 - mypy-boto3-eks 6738 - mypy-boto3-elastic-inference 6739 - mypy-boto3-elasticache 6740 - mypy-boto3-elasticbeanstalk 6741 - mypy-boto3-elastictranscoder 6742 - mypy-boto3-elb 6743 - mypy-boto3-elbv2 6744 - mypy-boto3-emr 6745 - mypy-boto3-emr-containers 6746 - mypy-boto3-emr-serverless 6747 - mypy-boto3-entityresolution 6748 - mypy-boto3-es 6749 - mypy-boto3-events 6750 - mypy-boto3-evidently 6751 - mypy-boto3-finspace 6752 - mypy-boto3-finspace-data 6753 - mypy-boto3-firehose 6754 - mypy-boto3-fis 6755 - mypy-boto3-fms 6756 - mypy-boto3-forecast 6757 - mypy-boto3-forecastquery 6758 - mypy-boto3-frauddetector 6759 - mypy-boto3-fsx 6760 - mypy-boto3-gamelift 6761 - mypy-boto3-glacier 6762 - mypy-boto3-globalaccelerator 6763 - mypy-boto3-glue 6764 - mypy-boto3-grafana 6765 - mypy-boto3-greengrass 6766 - mypy-boto3-greengrassv2 6767 - mypy-boto3-groundstation 6768 - mypy-boto3-guardduty 6769 - mypy-boto3-health 6770 - mypy-boto3-healthlake 6771 - mypy-boto3-iam 6772 - mypy-boto3-identitystore 6773 - mypy-boto3-imagebuilder 6774 - mypy-boto3-importexport 6775 - mypy-boto3-inspector 6776 - mypy-boto3-inspector2 6777 - mypy-boto3-internetmonitor 6778 - mypy-boto3-iot 6779 - mypy-boto3-iot-data 6780 - mypy-boto3-iot-jobs-data 6781 - mypy-boto3-iot1click-devices 6782 - mypy-boto3-iot1click-projects 6783 - mypy-boto3-iotanalytics 6784 - mypy-boto3-iotdeviceadvisor 6785 - mypy-boto3-iotevents 6786 - mypy-boto3-iotevents-data 6787 - mypy-boto3-iotfleethub 6788 - mypy-boto3-iotfleetwise 6789 - mypy-boto3-iotsecuretunneling 6790 - mypy-boto3-iotsitewise 6791 - mypy-boto3-iotthingsgraph 6792 - mypy-boto3-iottwinmaker 6793 - mypy-boto3-iotwireless 6794 - mypy-boto3-ivs 6795 - mypy-boto3-ivs-realtime 6796 - mypy-boto3-ivschat 6797 - mypy-boto3-kafka 6798 - mypy-boto3-kafkaconnect 6799 - mypy-boto3-kendra 6800 - mypy-boto3-kendra-ranking 6801 - mypy-boto3-keyspaces 6802 - mypy-boto3-kinesis 6803 - mypy-boto3-kinesis-video-archived-media 6804 - mypy-boto3-kinesis-video-media 6805 - mypy-boto3-kinesis-video-signaling 6806 - mypy-boto3-kinesis-video-webrtc-storage 6807 - mypy-boto3-kinesisanalytics 6808 - mypy-boto3-kinesisanalyticsv2 6809 - mypy-boto3-kinesisvideo 6810 - mypy-boto3-kms 6811 - mypy-boto3-lakeformation 6812 - mypy-boto3-lambda 6813 - mypy-boto3-lex-models 6814 - mypy-boto3-lex-runtime 6815 - mypy-boto3-lexv2-models 6816 - mypy-boto3-lexv2-runtime 6817 - mypy-boto3-license-manager 6818 - mypy-boto3-license-manager-linux-subscriptions 6819 - mypy-boto3-license-manager-user-subscriptions 6820 - mypy-boto3-lightsail 6821 - mypy-boto3-location 6822 - mypy-boto3-logs 6823 - mypy-boto3-lookoutequipment 6824 - mypy-boto3-lookoutmetrics 6825 - mypy-boto3-lookoutvision 6826 - mypy-boto3-m2 6827 - mypy-boto3-machinelearning 6828 - mypy-boto3-macie2 6829 - mypy-boto3-managedblockchain 6830 - mypy-boto3-managedblockchain-query 6831 - mypy-boto3-marketplace-catalog 6832 - mypy-boto3-marketplace-entitlement 6833 - mypy-boto3-marketplacecommerceanalytics 6834 - mypy-boto3-mediaconnect 6835 - mypy-boto3-mediaconvert 6836 - mypy-boto3-medialive 6837 - mypy-boto3-mediapackage 6838 - mypy-boto3-mediapackage-vod 6839 - mypy-boto3-mediapackagev2 6840 - mypy-boto3-mediastore 6841 - mypy-boto3-mediastore-data 6842 - mypy-boto3-mediatailor 6843 - mypy-boto3-medical-imaging 6844 - mypy-boto3-memorydb 6845 - mypy-boto3-meteringmarketplace 6846 - mypy-boto3-mgh 6847 - mypy-boto3-mgn 6848 - mypy-boto3-migration-hub-refactor-spaces 6849 - mypy-boto3-migrationhub-config 6850 - mypy-boto3-migrationhuborchestrator 6851 - mypy-boto3-migrationhubstrategy 6852 - mypy-boto3-mq 6853 - mypy-boto3-mturk 6854 - mypy-boto3-mwaa 6855 - mypy-boto3-neptune 6856 - mypy-boto3-neptunedata 6857 - mypy-boto3-network-firewall 6858 - mypy-boto3-networkmanager 6859 - mypy-boto3-nimble 6860 - mypy-boto3-oam 6861 - mypy-boto3-omics 6862 - mypy-boto3-opensearch 6863 - mypy-boto3-opensearchserverless 6864 - mypy-boto3-opsworks 6865 - mypy-boto3-opsworkscm 6866 - mypy-boto3-organizations 6867 - mypy-boto3-osis 6868 - mypy-boto3-outposts 6869 - mypy-boto3-panorama 6870 - mypy-boto3-payment-cryptography 6871 - mypy-boto3-payment-cryptography-data 6872 - mypy-boto3-pca-connector-ad 6873 - mypy-boto3-personalize 6874 - mypy-boto3-personalize-events 6875 - mypy-boto3-personalize-runtime 6876 - mypy-boto3-pi 6877 - mypy-boto3-pinpoint 6878 - mypy-boto3-pinpoint-email 6879 - mypy-boto3-pinpoint-sms-voice 6880 - mypy-boto3-pinpoint-sms-voice-v2 6881 - mypy-boto3-pipes 6882 - mypy-boto3-polly 6883 - mypy-boto3-pricing 6884 - mypy-boto3-privatenetworks 6885 - mypy-boto3-proton 6886 - mypy-boto3-qldb 6887 - mypy-boto3-qldb-session 6888 - mypy-boto3-quicksight 6889 - mypy-boto3-ram 6890 - mypy-boto3-rbin 6891 - mypy-boto3-rds 6892 - mypy-boto3-rds-data 6893 - mypy-boto3-redshift 6894 - mypy-boto3-redshift-data 6895 - mypy-boto3-redshift-serverless 6896 - mypy-boto3-rekognition 6897 - mypy-boto3-resiliencehub 6898 - mypy-boto3-resource-explorer-2 6899 - mypy-boto3-resource-groups 6900 - mypy-boto3-resourcegroupstaggingapi 6901 - mypy-boto3-robomaker 6902 - mypy-boto3-rolesanywhere 6903 - mypy-boto3-route53 6904 - mypy-boto3-route53-recovery-cluster 6905 - mypy-boto3-route53-recovery-control-config 6906 - mypy-boto3-route53-recovery-readiness 6907 - mypy-boto3-route53domains 6908 - mypy-boto3-route53resolver 6909 - mypy-boto3-rum 6910 - mypy-boto3-s3 6911 - mypy-boto3-s3control 6912 - mypy-boto3-s3outposts 6913 - mypy-boto3-sagemaker 6914 - mypy-boto3-sagemaker-a2i-runtime 6915 - mypy-boto3-sagemaker-edge 6916 - mypy-boto3-sagemaker-featurestore-runtime 6917 - mypy-boto3-sagemaker-geospatial 6918 - mypy-boto3-sagemaker-metrics 6919 - mypy-boto3-sagemaker-runtime 6920 - mypy-boto3-savingsplans 6921 - mypy-boto3-scheduler 6922 - mypy-boto3-schemas 6923 - mypy-boto3-sdb 6924 - mypy-boto3-secretsmanager 6925 - mypy-boto3-securityhub 6926 - mypy-boto3-securitylake 6927 - mypy-boto3-serverlessrepo 6928 - mypy-boto3-service-quotas 6929 - mypy-boto3-servicecatalog 6930 - mypy-boto3-servicecatalog-appregistry 6931 - mypy-boto3-servicediscovery 6932 - mypy-boto3-ses 6933 - mypy-boto3-sesv2 6934 - mypy-boto3-shield 6935 - mypy-boto3-signer 6936 - mypy-boto3-simspaceweaver 6937 - mypy-boto3-sms 6938 - mypy-boto3-sms-voice 6939 - mypy-boto3-snow-device-management 6940 - mypy-boto3-snowball 6941 - mypy-boto3-sns 6942 - mypy-boto3-sqs 6943 - mypy-boto3-ssm 6944 - mypy-boto3-ssm-contacts 6945 - mypy-boto3-ssm-incidents 6946 - mypy-boto3-ssm-sap 6947 - mypy-boto3-sso 6948 - mypy-boto3-sso-admin 6949 - mypy-boto3-sso-oidc 6950 - mypy-boto3-stepfunctions 6951 - mypy-boto3-storagegateway 6952 - mypy-boto3-sts 6953 - mypy-boto3-support 6954 - mypy-boto3-support-app 6955 - mypy-boto3-swf 6956 - mypy-boto3-synthetics 6957 - mypy-boto3-textract 6958 - mypy-boto3-timestream-query 6959 - mypy-boto3-timestream-write 6960 - mypy-boto3-tnb 6961 - mypy-boto3-transcribe 6962 - mypy-boto3-transfer 6963 - mypy-boto3-translate 6964 - mypy-boto3-verifiedpermissions 6965 - mypy-boto3-voice-id 6966 - mypy-boto3-vpc-lattice 6967 - mypy-boto3-waf 6968 - mypy-boto3-waf-regional 6969 - mypy-boto3-wafv2 6970 - mypy-boto3-wellarchitected 6971 - mypy-boto3-wisdom 6972 - mypy-boto3-workdocs 6973 - mypy-boto3-worklink 6974 - mypy-boto3-workmail 6975 - mypy-boto3-workmailmessageflow 6976 - mypy-boto3-workspaces 6977 - mypy-boto3-workspaces-web 6978 - mypy-boto3-xray 6979 - ; 6980 - 6981 - inherit (callPackage ../development/python-modules/types-aiobotocore-packages { }) 6982 - 6983 - types-aiobotocore-accessanalyzer 6984 - 6985 - types-aiobotocore-account 6986 - 6987 - types-aiobotocore-acm 6988 - 6989 - types-aiobotocore-acm-pca 6990 - 6991 - types-aiobotocore-alexaforbusiness 6992 - 6993 - types-aiobotocore-amp 6994 - 6995 - types-aiobotocore-amplify 6996 - 6997 - types-aiobotocore-amplifybackend 6998 - 6999 - types-aiobotocore-amplifyuibuilder 7000 - 7001 - types-aiobotocore-apigateway 7002 - 7003 - types-aiobotocore-apigatewaymanagementapi 7004 - 7005 - types-aiobotocore-apigatewayv2 7006 - 7007 - types-aiobotocore-appconfig 7008 - 7009 - types-aiobotocore-appconfigdata 7010 - 7011 - types-aiobotocore-appfabric 7012 - 7013 - types-aiobotocore-appflow 7014 - 7015 - types-aiobotocore-appintegrations 7016 - 7017 - types-aiobotocore-application-autoscaling 7018 - 7019 - types-aiobotocore-application-insights 7020 - 7021 - types-aiobotocore-applicationcostprofiler 7022 - 7023 - types-aiobotocore-appmesh 7024 - 7025 - types-aiobotocore-apprunner 7026 - 7027 - types-aiobotocore-appstream 7028 - 7029 - types-aiobotocore-appsync 7030 - 7031 - types-aiobotocore-arc-zonal-shift 7032 - 7033 - types-aiobotocore-athena 7034 - 7035 - types-aiobotocore-auditmanager 7036 - 7037 - types-aiobotocore-autoscaling 7038 - 7039 - types-aiobotocore-autoscaling-plans 7040 - 7041 - types-aiobotocore-backup 7042 - 7043 - types-aiobotocore-backup-gateway 7044 - 7045 - types-aiobotocore-backupstorage 7046 - 7047 - types-aiobotocore-batch 7048 - 7049 - types-aiobotocore-billingconductor 7050 - 7051 - types-aiobotocore-braket 7052 - 7053 - types-aiobotocore-budgets 7054 - 7055 - types-aiobotocore-ce 7056 - 7057 - types-aiobotocore-chime 7058 - 7059 - types-aiobotocore-chime-sdk-identity 7060 - 7061 - types-aiobotocore-chime-sdk-media-pipelines 7062 - 7063 - types-aiobotocore-chime-sdk-meetings 7064 - 7065 - types-aiobotocore-chime-sdk-messaging 7066 - 7067 - types-aiobotocore-chime-sdk-voice 7068 - 7069 - types-aiobotocore-cleanrooms 7070 - 7071 - types-aiobotocore-cloud9 7072 - 7073 - types-aiobotocore-cloudcontrol 7074 - 7075 - types-aiobotocore-clouddirectory 7076 - 7077 - types-aiobotocore-cloudformation 7078 - 7079 - types-aiobotocore-cloudfront 7080 - 7081 - types-aiobotocore-cloudhsm 7082 - 7083 - types-aiobotocore-cloudhsmv2 7084 - 7085 - types-aiobotocore-cloudsearch 7086 - 7087 - types-aiobotocore-cloudsearchdomain 7088 - 7089 - types-aiobotocore-cloudtrail 7090 - 7091 - types-aiobotocore-cloudtrail-data 7092 - 7093 - types-aiobotocore-cloudwatch 7094 - 7095 - types-aiobotocore-codeartifact 7096 - 7097 - types-aiobotocore-codebuild 7098 - 7099 - types-aiobotocore-codecatalyst 7100 - 7101 - types-aiobotocore-codecommit 7102 - 7103 - types-aiobotocore-codedeploy 7104 - 7105 - types-aiobotocore-codeguru-reviewer 7106 - 7107 - types-aiobotocore-codeguru-security 7108 - 7109 - types-aiobotocore-codeguruprofiler 7110 - 7111 - types-aiobotocore-codepipeline 7112 - 7113 - types-aiobotocore-codestar 7114 - 7115 - types-aiobotocore-codestar-connections 7116 - 7117 - types-aiobotocore-codestar-notifications 7118 - 7119 - types-aiobotocore-cognito-identity 7120 - 7121 - types-aiobotocore-cognito-idp 7122 - 7123 - types-aiobotocore-cognito-sync 7124 - 7125 - types-aiobotocore-comprehend 7126 - 7127 - types-aiobotocore-comprehendmedical 7128 - 7129 - types-aiobotocore-compute-optimizer 7130 - 7131 - types-aiobotocore-config 7132 - 7133 - types-aiobotocore-connect 7134 - 7135 - types-aiobotocore-connect-contact-lens 7136 - 7137 - types-aiobotocore-connectcampaigns 7138 - 7139 - types-aiobotocore-connectcases 7140 - 7141 - types-aiobotocore-connectparticipant 7142 - 7143 - types-aiobotocore-controltower 7144 - 7145 - types-aiobotocore-cur 7146 - 7147 - types-aiobotocore-customer-profiles 7148 - 7149 - types-aiobotocore-databrew 7150 - 7151 - types-aiobotocore-dataexchange 7152 - 7153 - types-aiobotocore-datapipeline 7154 - 7155 - types-aiobotocore-datasync 7156 - 7157 - types-aiobotocore-dax 7158 - 7159 - types-aiobotocore-detective 7160 - 7161 - types-aiobotocore-devicefarm 7162 - 7163 - types-aiobotocore-devops-guru 7164 - 7165 - types-aiobotocore-directconnect 7166 - 7167 - types-aiobotocore-discovery 7168 - 7169 - types-aiobotocore-dlm 7170 - 7171 - types-aiobotocore-dms 7172 - 7173 - types-aiobotocore-docdb 7174 - 7175 - types-aiobotocore-docdb-elastic 7176 - 7177 - types-aiobotocore-drs 7178 - 7179 - types-aiobotocore-ds 7180 - 7181 - types-aiobotocore-dynamodb 7182 - 7183 - types-aiobotocore-dynamodbstreams 7184 - 7185 - types-aiobotocore-ebs 7186 - 7187 - types-aiobotocore-ec2 7188 - 7189 - types-aiobotocore-ec2-instance-connect 7190 - 7191 - types-aiobotocore-ecr 7192 - 7193 - types-aiobotocore-ecr-public 7194 - 7195 - types-aiobotocore-ecs 7196 - 7197 - types-aiobotocore-efs 7198 - 7199 - types-aiobotocore-eks 7200 - 7201 - types-aiobotocore-elastic-inference 7202 - 7203 - types-aiobotocore-elasticache 7204 - 7205 - types-aiobotocore-elasticbeanstalk 7206 - 7207 - types-aiobotocore-elastictranscoder 7208 - 7209 - types-aiobotocore-elb 7210 - 7211 - types-aiobotocore-elbv2 7212 - 7213 - types-aiobotocore-emr 7214 - 7215 - types-aiobotocore-emr-containers 7216 - 7217 - types-aiobotocore-emr-serverless 7218 - 7219 - types-aiobotocore-entityresolution 7220 - 7221 - types-aiobotocore-es 7222 - 7223 - types-aiobotocore-events 7224 - 7225 - types-aiobotocore-evidently 7226 - 7227 - types-aiobotocore-finspace 7228 - 7229 - types-aiobotocore-finspace-data 7230 - 7231 - types-aiobotocore-firehose 7232 - 7233 - types-aiobotocore-fis 7234 - 7235 - types-aiobotocore-fms 7236 - 7237 - types-aiobotocore-forecast 7238 - 7239 - types-aiobotocore-forecastquery 7240 - 7241 - types-aiobotocore-frauddetector 7242 - 7243 - types-aiobotocore-fsx 7244 - 7245 - types-aiobotocore-gamelift 7246 - 7247 - types-aiobotocore-gamesparks 7248 - 7249 - types-aiobotocore-glacier 7250 - 7251 - types-aiobotocore-globalaccelerator 7252 - 7253 - types-aiobotocore-glue 7254 - 7255 - types-aiobotocore-grafana 7256 - 7257 - types-aiobotocore-greengrass 7258 - 7259 - types-aiobotocore-greengrassv2 7260 - 7261 - types-aiobotocore-groundstation 7262 - 7263 - types-aiobotocore-guardduty 7264 - 7265 - types-aiobotocore-health 7266 - 7267 - types-aiobotocore-healthlake 7268 - 7269 - types-aiobotocore-honeycode 7270 - 7271 - types-aiobotocore-iam 7272 - 7273 - types-aiobotocore-identitystore 7274 - 7275 - types-aiobotocore-imagebuilder 7276 - 7277 - types-aiobotocore-importexport 7278 - 7279 - types-aiobotocore-inspector 7280 - 7281 - types-aiobotocore-inspector2 7282 - 7283 - types-aiobotocore-internetmonitor 7284 - 7285 - types-aiobotocore-iot 7286 - 7287 - types-aiobotocore-iot-data 7288 - 7289 - types-aiobotocore-iot-jobs-data 7290 - 7291 - types-aiobotocore-iot-roborunner 7292 - 7293 - types-aiobotocore-iot1click-devices 7294 - 7295 - types-aiobotocore-iot1click-projects 7296 - 7297 - types-aiobotocore-iotanalytics 7298 - 7299 - types-aiobotocore-iotdeviceadvisor 7300 - 7301 - types-aiobotocore-iotevents 7302 - 7303 - types-aiobotocore-iotevents-data 7304 - 7305 - types-aiobotocore-iotfleethub 7306 - 7307 - types-aiobotocore-iotfleetwise 7308 - 7309 - types-aiobotocore-iotsecuretunneling 7310 - 7311 - types-aiobotocore-iotsitewise 7312 - 7313 - types-aiobotocore-iotthingsgraph 7314 - 7315 - types-aiobotocore-iottwinmaker 7316 - 7317 - types-aiobotocore-iotwireless 7318 - 7319 - types-aiobotocore-ivs 7320 - 7321 - types-aiobotocore-ivs-realtime 7322 - 7323 - types-aiobotocore-ivschat 7324 - 7325 - types-aiobotocore-kafka 7326 - 7327 - types-aiobotocore-kafkaconnect 7328 - 7329 - types-aiobotocore-kendra 7330 - 7331 - types-aiobotocore-kendra-ranking 7332 - 7333 - types-aiobotocore-keyspaces 7334 - 7335 - types-aiobotocore-kinesis 7336 - 7337 - types-aiobotocore-kinesis-video-archived-media 7338 - 7339 - types-aiobotocore-kinesis-video-media 7340 - 7341 - types-aiobotocore-kinesis-video-signaling 7342 - 7343 - types-aiobotocore-kinesis-video-webrtc-storage 7344 - 7345 - types-aiobotocore-kinesisanalytics 7346 - 7347 - types-aiobotocore-kinesisanalyticsv2 7348 - 7349 - types-aiobotocore-kinesisvideo 7350 - 7351 - types-aiobotocore-kms 7352 - 7353 - types-aiobotocore-lakeformation 7354 - 7355 - types-aiobotocore-lambda 7356 - 7357 - types-aiobotocore-lex-models 7358 - 7359 - types-aiobotocore-lex-runtime 7360 - 7361 - types-aiobotocore-lexv2-models 7362 - 7363 - types-aiobotocore-lexv2-runtime 7364 - 7365 - types-aiobotocore-license-manager 7366 - 7367 - types-aiobotocore-license-manager-linux-subscriptions 7368 - 7369 - types-aiobotocore-license-manager-user-subscriptions 7370 - 7371 - types-aiobotocore-lightsail 7372 - 7373 - types-aiobotocore-location 7374 - 7375 - types-aiobotocore-logs 7376 - 7377 - types-aiobotocore-lookoutequipment 7378 - 7379 - types-aiobotocore-lookoutmetrics 7380 - 7381 - types-aiobotocore-lookoutvision 7382 - 7383 - types-aiobotocore-m2 7384 - 7385 - types-aiobotocore-machinelearning 7386 - 7387 - types-aiobotocore-macie 7388 - 7389 - types-aiobotocore-macie2 7390 - 7391 - types-aiobotocore-managedblockchain 7392 - 7393 - types-aiobotocore-managedblockchain-query 7394 - 7395 - types-aiobotocore-marketplace-catalog 7396 - 7397 - types-aiobotocore-marketplace-entitlement 7398 - 7399 - types-aiobotocore-marketplacecommerceanalytics 7400 - 7401 - types-aiobotocore-mediaconnect 7402 - 7403 - types-aiobotocore-mediaconvert 7404 - 7405 - types-aiobotocore-medialive 7406 - 7407 - types-aiobotocore-mediapackage 7408 - 7409 - types-aiobotocore-mediapackage-vod 7410 - 7411 - types-aiobotocore-mediapackagev2 7412 - 7413 - types-aiobotocore-mediastore 7414 - 7415 - types-aiobotocore-mediastore-data 7416 - 7417 - types-aiobotocore-mediatailor 7418 - 7419 - types-aiobotocore-medical-imaging 7420 - 7421 - types-aiobotocore-memorydb 7422 - 7423 - types-aiobotocore-meteringmarketplace 7424 - 7425 - types-aiobotocore-mgh 7426 - 7427 - types-aiobotocore-mgn 7428 - 7429 - types-aiobotocore-migration-hub-refactor-spaces 7430 - 7431 - types-aiobotocore-migrationhub-config 7432 - 7433 - types-aiobotocore-migrationhuborchestrator 7434 - 7435 - types-aiobotocore-migrationhubstrategy 7436 - 7437 - types-aiobotocore-mobile 7438 - 7439 - types-aiobotocore-mq 7440 - 7441 - types-aiobotocore-mturk 7442 - 7443 - types-aiobotocore-mwaa 7444 - 7445 - types-aiobotocore-neptune 7446 - 7447 - types-aiobotocore-network-firewall 7448 - 7449 - types-aiobotocore-networkmanager 7450 - 7451 - types-aiobotocore-nimble 7452 - 7453 - types-aiobotocore-oam 7454 - 7455 - types-aiobotocore-omics 7456 - 7457 - types-aiobotocore-opensearch 7458 - 7459 - types-aiobotocore-opensearchserverless 7460 - 7461 - types-aiobotocore-opsworks 7462 - 7463 - types-aiobotocore-opsworkscm 7464 - 7465 - types-aiobotocore-organizations 7466 - 7467 - types-aiobotocore-osis 7468 - 7469 - types-aiobotocore-outposts 7470 - 7471 - types-aiobotocore-panorama 7472 - 7473 - types-aiobotocore-payment-cryptography 7474 - 7475 - types-aiobotocore-payment-cryptography-data 7476 - 7477 - types-aiobotocore-personalize 7478 - 7479 - types-aiobotocore-personalize-events 7480 - 7481 - types-aiobotocore-personalize-runtime 7482 - 7483 - types-aiobotocore-pi 7484 - 7485 - types-aiobotocore-pinpoint 7486 - 7487 - types-aiobotocore-pinpoint-email 7488 - 7489 - types-aiobotocore-pinpoint-sms-voice 7490 - 7491 - types-aiobotocore-pinpoint-sms-voice-v2 7492 - 7493 - types-aiobotocore-pipes 7494 - 7495 - types-aiobotocore-polly 7496 - 7497 - types-aiobotocore-pricing 7498 - 7499 - types-aiobotocore-privatenetworks 7500 - 7501 - types-aiobotocore-proton 7502 - 7503 - types-aiobotocore-qldb 7504 - 7505 - types-aiobotocore-qldb-session 7506 - 7507 - types-aiobotocore-quicksight 7508 - 7509 - types-aiobotocore-ram 7510 - 7511 - types-aiobotocore-rbin 7512 - 7513 - types-aiobotocore-rds 7514 - 7515 - types-aiobotocore-rds-data 7516 - 7517 - types-aiobotocore-redshift 7518 - 7519 - types-aiobotocore-redshift-data 7520 - 7521 - types-aiobotocore-redshift-serverless 7522 - 7523 - types-aiobotocore-rekognition 7524 - 7525 - types-aiobotocore-resiliencehub 7526 - 7527 - types-aiobotocore-resource-explorer-2 7528 - 7529 - types-aiobotocore-resource-groups 7530 - 7531 - types-aiobotocore-resourcegroupstaggingapi 7532 - 7533 - types-aiobotocore-robomaker 7534 - 7535 - types-aiobotocore-rolesanywhere 7536 - 7537 - types-aiobotocore-route53 7538 - 7539 - types-aiobotocore-route53-recovery-cluster 7540 - 7541 - types-aiobotocore-route53-recovery-control-config 7542 - 7543 - types-aiobotocore-route53-recovery-readiness 7544 - 7545 - types-aiobotocore-route53domains 7546 - 7547 - types-aiobotocore-route53resolver 7548 - 7549 - types-aiobotocore-rum 7550 - 7551 - types-aiobotocore-s3 7552 - 7553 - types-aiobotocore-s3control 7554 - 7555 - types-aiobotocore-s3outposts 7556 - 7557 - types-aiobotocore-sagemaker 7558 - 7559 - types-aiobotocore-sagemaker-a2i-runtime 7560 - 7561 - types-aiobotocore-sagemaker-edge 7562 - 7563 - types-aiobotocore-sagemaker-featurestore-runtime 7564 - 7565 - types-aiobotocore-sagemaker-geospatial 7566 - 7567 - types-aiobotocore-sagemaker-metrics 7568 - 7569 - types-aiobotocore-sagemaker-runtime 7570 - 7571 - types-aiobotocore-savingsplans 7572 - 7573 - types-aiobotocore-scheduler 7574 - 7575 - types-aiobotocore-schemas 7576 - 7577 - types-aiobotocore-sdb 7578 - 7579 - types-aiobotocore-secretsmanager 7580 - 7581 - types-aiobotocore-securityhub 7582 - 7583 - types-aiobotocore-securitylake 7584 - 7585 - types-aiobotocore-serverlessrepo 7586 - 7587 - types-aiobotocore-service-quotas 7588 - 7589 - types-aiobotocore-servicecatalog 7590 - 7591 - types-aiobotocore-servicecatalog-appregistry 7592 - 7593 - types-aiobotocore-servicediscovery 7594 - 7595 - types-aiobotocore-ses 7596 - 7597 - types-aiobotocore-sesv2 7598 - 7599 - types-aiobotocore-shield 7600 - 7601 - types-aiobotocore-signer 7602 - 7603 - types-aiobotocore-simspaceweaver 7604 - 7605 - types-aiobotocore-sms 7606 - 7607 - types-aiobotocore-sms-voice 7608 - 7609 - types-aiobotocore-snow-device-management 7610 - 7611 - types-aiobotocore-snowball 7612 - 7613 - types-aiobotocore-sns 7614 - 7615 - types-aiobotocore-sqs 7616 - 7617 - types-aiobotocore-ssm 7618 - 7619 - types-aiobotocore-ssm-contacts 7620 - 7621 - types-aiobotocore-ssm-incidents 7622 - 7623 - types-aiobotocore-ssm-sap 7624 - 7625 - types-aiobotocore-sso 7626 - 7627 - types-aiobotocore-sso-admin 7628 - 7629 - types-aiobotocore-sso-oidc 7630 - 7631 - types-aiobotocore-stepfunctions 7632 - 7633 - types-aiobotocore-storagegateway 7634 - 7635 - types-aiobotocore-sts 7636 - 7637 - types-aiobotocore-support 7638 - 7639 - types-aiobotocore-support-app 7640 - 7641 - types-aiobotocore-swf 7642 - 7643 - types-aiobotocore-synthetics 7644 - 7645 - types-aiobotocore-textract 7646 - 7647 - types-aiobotocore-timestream-query 7648 - 7649 - types-aiobotocore-timestream-write 7650 - 7651 - types-aiobotocore-tnb 7652 - 7653 - types-aiobotocore-transcribe 7654 - 7655 - types-aiobotocore-transfer 7656 - 7657 - types-aiobotocore-translate 7658 - 7659 - types-aiobotocore-verifiedpermissions 7660 - 7661 - types-aiobotocore-voice-id 7662 - 7663 - types-aiobotocore-vpc-lattice 7664 - 7665 - types-aiobotocore-waf 7666 - 7667 - types-aiobotocore-waf-regional 7668 - 7669 - types-aiobotocore-wafv2 7670 - 7671 - types-aiobotocore-wellarchitected 7672 - 7673 - types-aiobotocore-wisdom 7674 - 7675 - types-aiobotocore-workdocs 7676 - 7677 - types-aiobotocore-worklink 7678 - 7679 - types-aiobotocore-workmail 7680 - 7681 - types-aiobotocore-workmailmessageflow 7682 - 7683 - types-aiobotocore-workspaces 7684 - 7685 - types-aiobotocore-workspaces-web 7686 - 7687 - types-aiobotocore-xray 7688 - 7689 - ; 7690 - 7691 - inherit (self.wasmerPackages) 7692 - wasmer 7693 - wasmer-compiler-cranelift 7694 - wasmer-compiler-llvm 7695 - wasmer-compiler-singlepass 7696 - ; 7697 - 7698 6631 iniconfig = callPackage ../development/python-modules/iniconfig { }; 7699 6632 7700 6633 inifile = callPackage ../development/python-modules/inifile { }; ··· 10216 9149 mypermobil = callPackage ../development/python-modules/mypermobil { }; 10217 9150 10218 9151 mypy = callPackage ../development/python-modules/mypy { }; 9152 + 9153 + inherit (callPackage ../development/python-modules/mypy-boto3 { }) 9154 + mypy-boto3-accessanalyzer 9155 + mypy-boto3-account 9156 + mypy-boto3-acm 9157 + mypy-boto3-acm-pca 9158 + mypy-boto3-amp 9159 + mypy-boto3-amplify 9160 + mypy-boto3-amplifybackend 9161 + mypy-boto3-amplifyuibuilder 9162 + mypy-boto3-apigateway 9163 + mypy-boto3-apigatewaymanagementapi 9164 + mypy-boto3-apigatewayv2 9165 + mypy-boto3-appconfig 9166 + mypy-boto3-appconfigdata 9167 + mypy-boto3-appfabric 9168 + mypy-boto3-appflow 9169 + mypy-boto3-appintegrations 9170 + mypy-boto3-application-autoscaling 9171 + mypy-boto3-application-insights 9172 + mypy-boto3-applicationcostprofiler 9173 + mypy-boto3-appmesh 9174 + mypy-boto3-apprunner 9175 + mypy-boto3-appstream 9176 + mypy-boto3-appsync 9177 + mypy-boto3-arc-zonal-shift 9178 + mypy-boto3-athena 9179 + mypy-boto3-auditmanager 9180 + mypy-boto3-autoscaling 9181 + mypy-boto3-autoscaling-plans 9182 + mypy-boto3-backup 9183 + mypy-boto3-backup-gateway 9184 + mypy-boto3-batch 9185 + mypy-boto3-billingconductor 9186 + mypy-boto3-braket 9187 + mypy-boto3-budgets 9188 + mypy-boto3-ce 9189 + mypy-boto3-chime 9190 + mypy-boto3-chime-sdk-identity 9191 + mypy-boto3-chime-sdk-media-pipelines 9192 + mypy-boto3-chime-sdk-meetings 9193 + mypy-boto3-chime-sdk-messaging 9194 + mypy-boto3-chime-sdk-voice 9195 + mypy-boto3-cleanrooms 9196 + mypy-boto3-cloud9 9197 + mypy-boto3-cloudcontrol 9198 + mypy-boto3-clouddirectory 9199 + mypy-boto3-cloudformation 9200 + mypy-boto3-cloudfront 9201 + mypy-boto3-cloudhsm 9202 + mypy-boto3-cloudhsmv2 9203 + mypy-boto3-cloudsearch 9204 + mypy-boto3-cloudsearchdomain 9205 + mypy-boto3-cloudtrail 9206 + mypy-boto3-cloudtrail-data 9207 + mypy-boto3-cloudwatch 9208 + mypy-boto3-codeartifact 9209 + mypy-boto3-codebuild 9210 + mypy-boto3-codecatalyst 9211 + mypy-boto3-codecommit 9212 + mypy-boto3-codedeploy 9213 + mypy-boto3-codeguru-reviewer 9214 + mypy-boto3-codeguru-security 9215 + mypy-boto3-codeguruprofiler 9216 + mypy-boto3-codepipeline 9217 + mypy-boto3-codestar 9218 + mypy-boto3-codestar-connections 9219 + mypy-boto3-codestar-notifications 9220 + mypy-boto3-cognito-identity 9221 + mypy-boto3-cognito-idp 9222 + mypy-boto3-cognito-sync 9223 + mypy-boto3-comprehend 9224 + mypy-boto3-comprehendmedical 9225 + mypy-boto3-compute-optimizer 9226 + mypy-boto3-config 9227 + mypy-boto3-connect 9228 + mypy-boto3-connect-contact-lens 9229 + mypy-boto3-connectcampaigns 9230 + mypy-boto3-connectcases 9231 + mypy-boto3-connectparticipant 9232 + mypy-boto3-controltower 9233 + mypy-boto3-cur 9234 + mypy-boto3-customer-profiles 9235 + mypy-boto3-databrew 9236 + mypy-boto3-dataexchange 9237 + mypy-boto3-datapipeline 9238 + mypy-boto3-datasync 9239 + mypy-boto3-dax 9240 + mypy-boto3-detective 9241 + mypy-boto3-devicefarm 9242 + mypy-boto3-devops-guru 9243 + mypy-boto3-directconnect 9244 + mypy-boto3-discovery 9245 + mypy-boto3-dlm 9246 + mypy-boto3-dms 9247 + mypy-boto3-docdb 9248 + mypy-boto3-docdb-elastic 9249 + mypy-boto3-drs 9250 + mypy-boto3-ds 9251 + mypy-boto3-dynamodb 9252 + mypy-boto3-dynamodbstreams 9253 + mypy-boto3-ebs 9254 + mypy-boto3-ec2 9255 + mypy-boto3-ec2-instance-connect 9256 + mypy-boto3-ecr 9257 + mypy-boto3-ecr-public 9258 + mypy-boto3-ecs 9259 + mypy-boto3-efs 9260 + mypy-boto3-eks 9261 + mypy-boto3-elastic-inference 9262 + mypy-boto3-elasticache 9263 + mypy-boto3-elasticbeanstalk 9264 + mypy-boto3-elastictranscoder 9265 + mypy-boto3-elb 9266 + mypy-boto3-elbv2 9267 + mypy-boto3-emr 9268 + mypy-boto3-emr-containers 9269 + mypy-boto3-emr-serverless 9270 + mypy-boto3-entityresolution 9271 + mypy-boto3-es 9272 + mypy-boto3-events 9273 + mypy-boto3-evidently 9274 + mypy-boto3-finspace 9275 + mypy-boto3-finspace-data 9276 + mypy-boto3-firehose 9277 + mypy-boto3-fis 9278 + mypy-boto3-fms 9279 + mypy-boto3-forecast 9280 + mypy-boto3-forecastquery 9281 + mypy-boto3-frauddetector 9282 + mypy-boto3-fsx 9283 + mypy-boto3-gamelift 9284 + mypy-boto3-glacier 9285 + mypy-boto3-globalaccelerator 9286 + mypy-boto3-glue 9287 + mypy-boto3-grafana 9288 + mypy-boto3-greengrass 9289 + mypy-boto3-greengrassv2 9290 + mypy-boto3-groundstation 9291 + mypy-boto3-guardduty 9292 + mypy-boto3-health 9293 + mypy-boto3-healthlake 9294 + mypy-boto3-iam 9295 + mypy-boto3-identitystore 9296 + mypy-boto3-imagebuilder 9297 + mypy-boto3-importexport 9298 + mypy-boto3-inspector 9299 + mypy-boto3-inspector2 9300 + mypy-boto3-internetmonitor 9301 + mypy-boto3-iot 9302 + mypy-boto3-iot-data 9303 + mypy-boto3-iot-jobs-data 9304 + mypy-boto3-iot1click-devices 9305 + mypy-boto3-iot1click-projects 9306 + mypy-boto3-iotanalytics 9307 + mypy-boto3-iotdeviceadvisor 9308 + mypy-boto3-iotevents 9309 + mypy-boto3-iotevents-data 9310 + mypy-boto3-iotfleethub 9311 + mypy-boto3-iotfleetwise 9312 + mypy-boto3-iotsecuretunneling 9313 + mypy-boto3-iotsitewise 9314 + mypy-boto3-iotthingsgraph 9315 + mypy-boto3-iottwinmaker 9316 + mypy-boto3-iotwireless 9317 + mypy-boto3-ivs 9318 + mypy-boto3-ivs-realtime 9319 + mypy-boto3-ivschat 9320 + mypy-boto3-kafka 9321 + mypy-boto3-kafkaconnect 9322 + mypy-boto3-kendra 9323 + mypy-boto3-kendra-ranking 9324 + mypy-boto3-keyspaces 9325 + mypy-boto3-kinesis 9326 + mypy-boto3-kinesis-video-archived-media 9327 + mypy-boto3-kinesis-video-media 9328 + mypy-boto3-kinesis-video-signaling 9329 + mypy-boto3-kinesis-video-webrtc-storage 9330 + mypy-boto3-kinesisanalytics 9331 + mypy-boto3-kinesisanalyticsv2 9332 + mypy-boto3-kinesisvideo 9333 + mypy-boto3-kms 9334 + mypy-boto3-lakeformation 9335 + mypy-boto3-lambda 9336 + mypy-boto3-lex-models 9337 + mypy-boto3-lex-runtime 9338 + mypy-boto3-lexv2-models 9339 + mypy-boto3-lexv2-runtime 9340 + mypy-boto3-license-manager 9341 + mypy-boto3-license-manager-linux-subscriptions 9342 + mypy-boto3-license-manager-user-subscriptions 9343 + mypy-boto3-lightsail 9344 + mypy-boto3-location 9345 + mypy-boto3-logs 9346 + mypy-boto3-lookoutequipment 9347 + mypy-boto3-lookoutmetrics 9348 + mypy-boto3-lookoutvision 9349 + mypy-boto3-m2 9350 + mypy-boto3-machinelearning 9351 + mypy-boto3-macie2 9352 + mypy-boto3-managedblockchain 9353 + mypy-boto3-managedblockchain-query 9354 + mypy-boto3-marketplace-catalog 9355 + mypy-boto3-marketplace-entitlement 9356 + mypy-boto3-marketplacecommerceanalytics 9357 + mypy-boto3-mediaconnect 9358 + mypy-boto3-mediaconvert 9359 + mypy-boto3-medialive 9360 + mypy-boto3-mediapackage 9361 + mypy-boto3-mediapackage-vod 9362 + mypy-boto3-mediapackagev2 9363 + mypy-boto3-mediastore 9364 + mypy-boto3-mediastore-data 9365 + mypy-boto3-mediatailor 9366 + mypy-boto3-medical-imaging 9367 + mypy-boto3-memorydb 9368 + mypy-boto3-meteringmarketplace 9369 + mypy-boto3-mgh 9370 + mypy-boto3-mgn 9371 + mypy-boto3-migration-hub-refactor-spaces 9372 + mypy-boto3-migrationhub-config 9373 + mypy-boto3-migrationhuborchestrator 9374 + mypy-boto3-migrationhubstrategy 9375 + mypy-boto3-mq 9376 + mypy-boto3-mturk 9377 + mypy-boto3-mwaa 9378 + mypy-boto3-neptune 9379 + mypy-boto3-neptunedata 9380 + mypy-boto3-network-firewall 9381 + mypy-boto3-networkmanager 9382 + mypy-boto3-nimble 9383 + mypy-boto3-oam 9384 + mypy-boto3-omics 9385 + mypy-boto3-opensearch 9386 + mypy-boto3-opensearchserverless 9387 + mypy-boto3-opsworks 9388 + mypy-boto3-opsworkscm 9389 + mypy-boto3-organizations 9390 + mypy-boto3-osis 9391 + mypy-boto3-outposts 9392 + mypy-boto3-panorama 9393 + mypy-boto3-payment-cryptography 9394 + mypy-boto3-payment-cryptography-data 9395 + mypy-boto3-pca-connector-ad 9396 + mypy-boto3-personalize 9397 + mypy-boto3-personalize-events 9398 + mypy-boto3-personalize-runtime 9399 + mypy-boto3-pi 9400 + mypy-boto3-pinpoint 9401 + mypy-boto3-pinpoint-email 9402 + mypy-boto3-pinpoint-sms-voice 9403 + mypy-boto3-pinpoint-sms-voice-v2 9404 + mypy-boto3-pipes 9405 + mypy-boto3-polly 9406 + mypy-boto3-pricing 9407 + mypy-boto3-privatenetworks 9408 + mypy-boto3-proton 9409 + mypy-boto3-qldb 9410 + mypy-boto3-qldb-session 9411 + mypy-boto3-quicksight 9412 + mypy-boto3-ram 9413 + mypy-boto3-rbin 9414 + mypy-boto3-rds 9415 + mypy-boto3-rds-data 9416 + mypy-boto3-redshift 9417 + mypy-boto3-redshift-data 9418 + mypy-boto3-redshift-serverless 9419 + mypy-boto3-rekognition 9420 + mypy-boto3-resiliencehub 9421 + mypy-boto3-resource-explorer-2 9422 + mypy-boto3-resource-groups 9423 + mypy-boto3-resourcegroupstaggingapi 9424 + mypy-boto3-robomaker 9425 + mypy-boto3-rolesanywhere 9426 + mypy-boto3-route53 9427 + mypy-boto3-route53-recovery-cluster 9428 + mypy-boto3-route53-recovery-control-config 9429 + mypy-boto3-route53-recovery-readiness 9430 + mypy-boto3-route53domains 9431 + mypy-boto3-route53resolver 9432 + mypy-boto3-rum 9433 + mypy-boto3-s3 9434 + mypy-boto3-s3control 9435 + mypy-boto3-s3outposts 9436 + mypy-boto3-sagemaker 9437 + mypy-boto3-sagemaker-a2i-runtime 9438 + mypy-boto3-sagemaker-edge 9439 + mypy-boto3-sagemaker-featurestore-runtime 9440 + mypy-boto3-sagemaker-geospatial 9441 + mypy-boto3-sagemaker-metrics 9442 + mypy-boto3-sagemaker-runtime 9443 + mypy-boto3-savingsplans 9444 + mypy-boto3-scheduler 9445 + mypy-boto3-schemas 9446 + mypy-boto3-sdb 9447 + mypy-boto3-secretsmanager 9448 + mypy-boto3-securityhub 9449 + mypy-boto3-securitylake 9450 + mypy-boto3-serverlessrepo 9451 + mypy-boto3-service-quotas 9452 + mypy-boto3-servicecatalog 9453 + mypy-boto3-servicecatalog-appregistry 9454 + mypy-boto3-servicediscovery 9455 + mypy-boto3-ses 9456 + mypy-boto3-sesv2 9457 + mypy-boto3-shield 9458 + mypy-boto3-signer 9459 + mypy-boto3-simspaceweaver 9460 + mypy-boto3-sms 9461 + mypy-boto3-sms-voice 9462 + mypy-boto3-snow-device-management 9463 + mypy-boto3-snowball 9464 + mypy-boto3-sns 9465 + mypy-boto3-sqs 9466 + mypy-boto3-ssm 9467 + mypy-boto3-ssm-contacts 9468 + mypy-boto3-ssm-incidents 9469 + mypy-boto3-ssm-sap 9470 + mypy-boto3-sso 9471 + mypy-boto3-sso-admin 9472 + mypy-boto3-sso-oidc 9473 + mypy-boto3-stepfunctions 9474 + mypy-boto3-storagegateway 9475 + mypy-boto3-sts 9476 + mypy-boto3-support 9477 + mypy-boto3-support-app 9478 + mypy-boto3-swf 9479 + mypy-boto3-synthetics 9480 + mypy-boto3-textract 9481 + mypy-boto3-timestream-query 9482 + mypy-boto3-timestream-write 9483 + mypy-boto3-tnb 9484 + mypy-boto3-transcribe 9485 + mypy-boto3-transfer 9486 + mypy-boto3-translate 9487 + mypy-boto3-verifiedpermissions 9488 + mypy-boto3-voice-id 9489 + mypy-boto3-vpc-lattice 9490 + mypy-boto3-waf 9491 + mypy-boto3-waf-regional 9492 + mypy-boto3-wafv2 9493 + mypy-boto3-wellarchitected 9494 + mypy-boto3-wisdom 9495 + mypy-boto3-workdocs 9496 + mypy-boto3-worklink 9497 + mypy-boto3-workmail 9498 + mypy-boto3-workmailmessageflow 9499 + mypy-boto3-workspaces 9500 + mypy-boto3-workspaces-web 9501 + mypy-boto3-xray 9502 + ; 10219 9503 10220 9504 mypy-boto3-builder = callPackage ../development/python-modules/mypy-boto3-builder { }; 10221 9505 ··· 18288 17572 18289 17573 types-aiobotocore = callPackage ../development/python-modules/types-aiobotocore { }; 18290 17574 17575 + inherit (callPackage ../development/python-modules/types-aiobotocore-packages { }) 17576 + types-aiobotocore-accessanalyzer 17577 + types-aiobotocore-account 17578 + types-aiobotocore-acm 17579 + types-aiobotocore-acm-pca 17580 + types-aiobotocore-alexaforbusiness 17581 + types-aiobotocore-amp 17582 + types-aiobotocore-amplify 17583 + types-aiobotocore-amplifybackend 17584 + types-aiobotocore-amplifyuibuilder 17585 + types-aiobotocore-apigateway 17586 + types-aiobotocore-apigatewaymanagementapi 17587 + types-aiobotocore-apigatewayv2 17588 + types-aiobotocore-appconfig 17589 + types-aiobotocore-appconfigdata 17590 + types-aiobotocore-appfabric 17591 + types-aiobotocore-appflow 17592 + types-aiobotocore-appintegrations 17593 + types-aiobotocore-application-autoscaling 17594 + types-aiobotocore-application-insights 17595 + types-aiobotocore-applicationcostprofiler 17596 + types-aiobotocore-appmesh 17597 + types-aiobotocore-apprunner 17598 + types-aiobotocore-appstream 17599 + types-aiobotocore-appsync 17600 + types-aiobotocore-arc-zonal-shift 17601 + types-aiobotocore-athena 17602 + types-aiobotocore-auditmanager 17603 + types-aiobotocore-autoscaling 17604 + types-aiobotocore-autoscaling-plans 17605 + types-aiobotocore-backup 17606 + types-aiobotocore-backup-gateway 17607 + types-aiobotocore-backupstorage 17608 + types-aiobotocore-batch 17609 + types-aiobotocore-billingconductor 17610 + types-aiobotocore-braket 17611 + types-aiobotocore-budgets 17612 + types-aiobotocore-ce 17613 + types-aiobotocore-chime 17614 + types-aiobotocore-chime-sdk-identity 17615 + types-aiobotocore-chime-sdk-media-pipelines 17616 + types-aiobotocore-chime-sdk-meetings 17617 + types-aiobotocore-chime-sdk-messaging 17618 + types-aiobotocore-chime-sdk-voice 17619 + types-aiobotocore-cleanrooms 17620 + types-aiobotocore-cloud9 17621 + types-aiobotocore-cloudcontrol 17622 + types-aiobotocore-clouddirectory 17623 + types-aiobotocore-cloudformation 17624 + types-aiobotocore-cloudfront 17625 + types-aiobotocore-cloudhsm 17626 + types-aiobotocore-cloudhsmv2 17627 + types-aiobotocore-cloudsearch 17628 + types-aiobotocore-cloudsearchdomain 17629 + types-aiobotocore-cloudtrail 17630 + types-aiobotocore-cloudtrail-data 17631 + types-aiobotocore-cloudwatch 17632 + types-aiobotocore-codeartifact 17633 + types-aiobotocore-codebuild 17634 + types-aiobotocore-codecatalyst 17635 + types-aiobotocore-codecommit 17636 + types-aiobotocore-codedeploy 17637 + types-aiobotocore-codeguru-reviewer 17638 + types-aiobotocore-codeguru-security 17639 + types-aiobotocore-codeguruprofiler 17640 + types-aiobotocore-codepipeline 17641 + types-aiobotocore-codestar 17642 + types-aiobotocore-codestar-connections 17643 + types-aiobotocore-codestar-notifications 17644 + types-aiobotocore-cognito-identity 17645 + types-aiobotocore-cognito-idp 17646 + types-aiobotocore-cognito-sync 17647 + types-aiobotocore-comprehend 17648 + types-aiobotocore-comprehendmedical 17649 + types-aiobotocore-compute-optimizer 17650 + types-aiobotocore-config 17651 + types-aiobotocore-connect 17652 + types-aiobotocore-connect-contact-lens 17653 + types-aiobotocore-connectcampaigns 17654 + types-aiobotocore-connectcases 17655 + types-aiobotocore-connectparticipant 17656 + types-aiobotocore-controltower 17657 + types-aiobotocore-cur 17658 + types-aiobotocore-customer-profiles 17659 + types-aiobotocore-databrew 17660 + types-aiobotocore-dataexchange 17661 + types-aiobotocore-datapipeline 17662 + types-aiobotocore-datasync 17663 + types-aiobotocore-dax 17664 + types-aiobotocore-detective 17665 + types-aiobotocore-devicefarm 17666 + types-aiobotocore-devops-guru 17667 + types-aiobotocore-directconnect 17668 + types-aiobotocore-discovery 17669 + types-aiobotocore-dlm 17670 + types-aiobotocore-dms 17671 + types-aiobotocore-docdb 17672 + types-aiobotocore-docdb-elastic 17673 + types-aiobotocore-drs 17674 + types-aiobotocore-ds 17675 + types-aiobotocore-dynamodb 17676 + types-aiobotocore-dynamodbstreams 17677 + types-aiobotocore-ebs 17678 + types-aiobotocore-ec2 17679 + types-aiobotocore-ec2-instance-connect 17680 + types-aiobotocore-ecr 17681 + types-aiobotocore-ecr-public 17682 + types-aiobotocore-ecs 17683 + types-aiobotocore-efs 17684 + types-aiobotocore-eks 17685 + types-aiobotocore-elastic-inference 17686 + types-aiobotocore-elasticache 17687 + types-aiobotocore-elasticbeanstalk 17688 + types-aiobotocore-elastictranscoder 17689 + types-aiobotocore-elb 17690 + types-aiobotocore-elbv2 17691 + types-aiobotocore-emr 17692 + types-aiobotocore-emr-containers 17693 + types-aiobotocore-emr-serverless 17694 + types-aiobotocore-entityresolution 17695 + types-aiobotocore-es 17696 + types-aiobotocore-events 17697 + types-aiobotocore-evidently 17698 + types-aiobotocore-finspace 17699 + types-aiobotocore-finspace-data 17700 + types-aiobotocore-firehose 17701 + types-aiobotocore-fis 17702 + types-aiobotocore-fms 17703 + types-aiobotocore-forecast 17704 + types-aiobotocore-forecastquery 17705 + types-aiobotocore-frauddetector 17706 + types-aiobotocore-fsx 17707 + types-aiobotocore-gamelift 17708 + types-aiobotocore-gamesparks 17709 + types-aiobotocore-glacier 17710 + types-aiobotocore-globalaccelerator 17711 + types-aiobotocore-glue 17712 + types-aiobotocore-grafana 17713 + types-aiobotocore-greengrass 17714 + types-aiobotocore-greengrassv2 17715 + types-aiobotocore-groundstation 17716 + types-aiobotocore-guardduty 17717 + types-aiobotocore-health 17718 + types-aiobotocore-healthlake 17719 + types-aiobotocore-honeycode 17720 + types-aiobotocore-iam 17721 + types-aiobotocore-identitystore 17722 + types-aiobotocore-imagebuilder 17723 + types-aiobotocore-importexport 17724 + types-aiobotocore-inspector 17725 + types-aiobotocore-inspector2 17726 + types-aiobotocore-internetmonitor 17727 + types-aiobotocore-iot 17728 + types-aiobotocore-iot-data 17729 + types-aiobotocore-iot-jobs-data 17730 + types-aiobotocore-iot-roborunner 17731 + types-aiobotocore-iot1click-devices 17732 + types-aiobotocore-iot1click-projects 17733 + types-aiobotocore-iotanalytics 17734 + types-aiobotocore-iotdeviceadvisor 17735 + types-aiobotocore-iotevents 17736 + types-aiobotocore-iotevents-data 17737 + types-aiobotocore-iotfleethub 17738 + types-aiobotocore-iotfleetwise 17739 + types-aiobotocore-iotsecuretunneling 17740 + types-aiobotocore-iotsitewise 17741 + types-aiobotocore-iotthingsgraph 17742 + types-aiobotocore-iottwinmaker 17743 + types-aiobotocore-iotwireless 17744 + types-aiobotocore-ivs 17745 + types-aiobotocore-ivs-realtime 17746 + types-aiobotocore-ivschat 17747 + types-aiobotocore-kafka 17748 + types-aiobotocore-kafkaconnect 17749 + types-aiobotocore-kendra 17750 + types-aiobotocore-kendra-ranking 17751 + types-aiobotocore-keyspaces 17752 + types-aiobotocore-kinesis 17753 + types-aiobotocore-kinesis-video-archived-media 17754 + types-aiobotocore-kinesis-video-media 17755 + types-aiobotocore-kinesis-video-signaling 17756 + types-aiobotocore-kinesis-video-webrtc-storage 17757 + types-aiobotocore-kinesisanalytics 17758 + types-aiobotocore-kinesisanalyticsv2 17759 + types-aiobotocore-kinesisvideo 17760 + types-aiobotocore-kms 17761 + types-aiobotocore-lakeformation 17762 + types-aiobotocore-lambda 17763 + types-aiobotocore-lex-models 17764 + types-aiobotocore-lex-runtime 17765 + types-aiobotocore-lexv2-models 17766 + types-aiobotocore-lexv2-runtime 17767 + types-aiobotocore-license-manager 17768 + types-aiobotocore-license-manager-linux-subscriptions 17769 + types-aiobotocore-license-manager-user-subscriptions 17770 + types-aiobotocore-lightsail 17771 + types-aiobotocore-location 17772 + types-aiobotocore-logs 17773 + types-aiobotocore-lookoutequipment 17774 + types-aiobotocore-lookoutmetrics 17775 + types-aiobotocore-lookoutvision 17776 + types-aiobotocore-m2 17777 + types-aiobotocore-machinelearning 17778 + types-aiobotocore-macie 17779 + types-aiobotocore-macie2 17780 + types-aiobotocore-managedblockchain 17781 + types-aiobotocore-managedblockchain-query 17782 + types-aiobotocore-marketplace-catalog 17783 + types-aiobotocore-marketplace-entitlement 17784 + types-aiobotocore-marketplacecommerceanalytics 17785 + types-aiobotocore-mediaconnect 17786 + types-aiobotocore-mediaconvert 17787 + types-aiobotocore-medialive 17788 + types-aiobotocore-mediapackage 17789 + types-aiobotocore-mediapackage-vod 17790 + types-aiobotocore-mediapackagev2 17791 + types-aiobotocore-mediastore 17792 + types-aiobotocore-mediastore-data 17793 + types-aiobotocore-mediatailor 17794 + types-aiobotocore-medical-imaging 17795 + types-aiobotocore-memorydb 17796 + types-aiobotocore-meteringmarketplace 17797 + types-aiobotocore-mgh 17798 + types-aiobotocore-mgn 17799 + types-aiobotocore-migration-hub-refactor-spaces 17800 + types-aiobotocore-migrationhub-config 17801 + types-aiobotocore-migrationhuborchestrator 17802 + types-aiobotocore-migrationhubstrategy 17803 + types-aiobotocore-mobile 17804 + types-aiobotocore-mq 17805 + types-aiobotocore-mturk 17806 + types-aiobotocore-mwaa 17807 + types-aiobotocore-neptune 17808 + types-aiobotocore-network-firewall 17809 + types-aiobotocore-networkmanager 17810 + types-aiobotocore-nimble 17811 + types-aiobotocore-oam 17812 + types-aiobotocore-omics 17813 + types-aiobotocore-opensearch 17814 + types-aiobotocore-opensearchserverless 17815 + types-aiobotocore-opsworks 17816 + types-aiobotocore-opsworkscm 17817 + types-aiobotocore-organizations 17818 + types-aiobotocore-osis 17819 + types-aiobotocore-outposts 17820 + types-aiobotocore-panorama 17821 + types-aiobotocore-payment-cryptography 17822 + types-aiobotocore-payment-cryptography-data 17823 + types-aiobotocore-personalize 17824 + types-aiobotocore-personalize-events 17825 + types-aiobotocore-personalize-runtime 17826 + types-aiobotocore-pi 17827 + types-aiobotocore-pinpoint 17828 + types-aiobotocore-pinpoint-email 17829 + types-aiobotocore-pinpoint-sms-voice 17830 + types-aiobotocore-pinpoint-sms-voice-v2 17831 + types-aiobotocore-pipes 17832 + types-aiobotocore-polly 17833 + types-aiobotocore-pricing 17834 + types-aiobotocore-privatenetworks 17835 + types-aiobotocore-proton 17836 + types-aiobotocore-qldb 17837 + types-aiobotocore-qldb-session 17838 + types-aiobotocore-quicksight 17839 + types-aiobotocore-ram 17840 + types-aiobotocore-rbin 17841 + types-aiobotocore-rds 17842 + types-aiobotocore-rds-data 17843 + types-aiobotocore-redshift 17844 + types-aiobotocore-redshift-data 17845 + types-aiobotocore-redshift-serverless 17846 + types-aiobotocore-rekognition 17847 + types-aiobotocore-resiliencehub 17848 + types-aiobotocore-resource-explorer-2 17849 + types-aiobotocore-resource-groups 17850 + types-aiobotocore-resourcegroupstaggingapi 17851 + types-aiobotocore-robomaker 17852 + types-aiobotocore-rolesanywhere 17853 + types-aiobotocore-route53 17854 + types-aiobotocore-route53-recovery-cluster 17855 + types-aiobotocore-route53-recovery-control-config 17856 + types-aiobotocore-route53-recovery-readiness 17857 + types-aiobotocore-route53domains 17858 + types-aiobotocore-route53resolver 17859 + types-aiobotocore-rum 17860 + types-aiobotocore-s3 17861 + types-aiobotocore-s3control 17862 + types-aiobotocore-s3outposts 17863 + types-aiobotocore-sagemaker 17864 + types-aiobotocore-sagemaker-a2i-runtime 17865 + types-aiobotocore-sagemaker-edge 17866 + types-aiobotocore-sagemaker-featurestore-runtime 17867 + types-aiobotocore-sagemaker-geospatial 17868 + types-aiobotocore-sagemaker-metrics 17869 + types-aiobotocore-sagemaker-runtime 17870 + types-aiobotocore-savingsplans 17871 + types-aiobotocore-scheduler 17872 + types-aiobotocore-schemas 17873 + types-aiobotocore-sdb 17874 + types-aiobotocore-secretsmanager 17875 + types-aiobotocore-securityhub 17876 + types-aiobotocore-securitylake 17877 + types-aiobotocore-serverlessrepo 17878 + types-aiobotocore-service-quotas 17879 + types-aiobotocore-servicecatalog 17880 + types-aiobotocore-servicecatalog-appregistry 17881 + types-aiobotocore-servicediscovery 17882 + types-aiobotocore-ses 17883 + types-aiobotocore-sesv2 17884 + types-aiobotocore-shield 17885 + types-aiobotocore-signer 17886 + types-aiobotocore-simspaceweaver 17887 + types-aiobotocore-sms 17888 + types-aiobotocore-sms-voice 17889 + types-aiobotocore-snow-device-management 17890 + types-aiobotocore-snowball 17891 + types-aiobotocore-sns 17892 + types-aiobotocore-sqs 17893 + types-aiobotocore-ssm 17894 + types-aiobotocore-ssm-contacts 17895 + types-aiobotocore-ssm-incidents 17896 + types-aiobotocore-ssm-sap 17897 + types-aiobotocore-sso 17898 + types-aiobotocore-sso-admin 17899 + types-aiobotocore-sso-oidc 17900 + types-aiobotocore-stepfunctions 17901 + types-aiobotocore-storagegateway 17902 + types-aiobotocore-sts 17903 + types-aiobotocore-support 17904 + types-aiobotocore-support-app 17905 + types-aiobotocore-swf 17906 + types-aiobotocore-synthetics 17907 + types-aiobotocore-textract 17908 + types-aiobotocore-timestream-query 17909 + types-aiobotocore-timestream-write 17910 + types-aiobotocore-tnb 17911 + types-aiobotocore-transcribe 17912 + types-aiobotocore-transfer 17913 + types-aiobotocore-translate 17914 + types-aiobotocore-verifiedpermissions 17915 + types-aiobotocore-voice-id 17916 + types-aiobotocore-vpc-lattice 17917 + types-aiobotocore-waf 17918 + types-aiobotocore-waf-regional 17919 + types-aiobotocore-wafv2 17920 + types-aiobotocore-wellarchitected 17921 + types-aiobotocore-wisdom 17922 + types-aiobotocore-workdocs 17923 + types-aiobotocore-worklink 17924 + types-aiobotocore-workmail 17925 + types-aiobotocore-workmailmessageflow 17926 + types-aiobotocore-workspaces 17927 + types-aiobotocore-workspaces-web 17928 + types-aiobotocore-xray 17929 + ; 17930 + 18291 17931 types-appdirs = callPackage ../development/python-modules/types-appdirs { }; 18292 17932 18293 17933 types-awscrt = callPackage ../development/python-modules/types-awscrt { }; ··· 18894 18534 warrant-lite = callPackage ../development/python-modules/warrant-lite { }; 18895 18535 18896 18536 wasabi = callPackage ../development/python-modules/wasabi { }; 18537 + 18538 + inherit (self.wasmerPackages) 18539 + wasmer 18540 + wasmer-compiler-cranelift 18541 + wasmer-compiler-llvm 18542 + wasmer-compiler-singlepass 18543 + ; 18897 18544 18898 18545 wasmerPackages = pkgs.recurseIntoAttrs (callPackage ../development/python-modules/wasmer { }); 18899 18546