python3Packages.django_5_2: 5.2.1 -> 5.2.2 (#414119)

authored by Martin Weinelt and committed by GitHub c3f363fb 38b1b87e

+7 -7
+1 -1
nixos/tests/atticd.nix
··· 78 78 s3.wait_for_unit("minio.service") 79 79 s3.wait_for_open_port(9000) 80 80 s3.succeed( 81 - "mc config host add minio " 81 + "mc alias set minio " 82 82 + "http://localhost:9000 " 83 83 + "${accessKey} ${secretKey} --api s3v4", 84 84 "mc mb minio/attic",
+1 -1
nixos/tests/nextcloud/with-objectstore.nix
··· 126 126 127 127 with subtest("Check if file is in S3"): 128 128 nextcloud.succeed( 129 - "mc config host add minio https://acme.test ${accessKey} ${secretKey} --api s3v4" 129 + "mc alias set minio https://acme.test ${accessKey} ${secretKey} --api s3v4" 130 130 ) 131 131 files = nextcloud.succeed('mc ls minio/nextcloud|sort').strip().split('\n') 132 132
+1 -1
nixos/tests/outline.nix
··· 44 44 45 45 # Create a test bucket on the server 46 46 machine.succeed( 47 - "mc config host add minio http://localhost:9000 ${accessKey} ${secretKey} --api s3v4" 47 + "mc alias set minio http://localhost:9000 ${accessKey} ${secretKey} --api s3v4" 48 48 ) 49 49 machine.succeed("mc mb minio/outline") 50 50
+1 -1
nixos/tests/thanos.nix
··· 234 234 s3.wait_for_unit("minio.service") 235 235 s3.wait_for_open_port(${toString minioPort}) 236 236 s3.succeed( 237 - "mc config host add minio " 237 + "mc alias set minio " 238 238 + "http://localhost:${toString minioPort} " 239 239 + "${s3.accessKey} ${s3.secretKey} --api s3v4", 240 240 "mc mb minio/thanos-bucket",
+1 -1
nixos/tests/web-apps/lasuite-docs.nix
··· 141 141 machine.wait_for_unit("lasuite-docs-collaboration-server.service") 142 142 143 143 with subtest("Create S3 bucket"): 144 - machine.succeed("mc config host add minio http://${s3Domain} ${minioAccessKey} ${minioSecretKey} --api s3v4") 144 + machine.succeed("mc alias set minio http://${s3Domain} ${minioAccessKey} ${minioSecretKey} --api s3v4") 145 145 machine.succeed("mc mb lasuite-docs") 146 146 147 147 with subtest("Wait for web servers to start"):
+2 -2
pkgs/development/python-modules/django/5_2.nix
··· 44 44 45 45 buildPythonPackage rec { 46 46 pname = "django"; 47 - version = "5.2.1"; 47 + version = "5.2.2"; 48 48 pyproject = true; 49 49 50 50 disabled = pythonOlder "3.10"; ··· 53 53 owner = "django"; 54 54 repo = "django"; 55 55 rev = "refs/tags/${version}"; 56 - hash = "sha256-JmO2IEWrpA7/FXOwESLvIIuHmi2HQgvg28LVNmBXgLA="; 56 + hash = "sha256-x5PTE8oYA1VzErYXfuRzT4xNiMRnfEd6H9lEtB+HBkc="; 57 57 }; 58 58 59 59 patches =