| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | python3Packages.azure-core: 1.31.0 -> 1.32.0•••https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.32.0/sdk/core/azure-core/CHANGELOG.md | Martin Weinelt | 2025-01-27 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.30.2 -> 1.31.0•••https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.31.0/sdk/core/azure-core/CHANGELOG.md | Martin Weinelt | 2024-10-13 | 1 | -3/+4 |
| * | treewide: replace passthru.optional-dependencies with optional-dependencies | Robert Schütz | 2024-09-29 | 1 | -2/+2 |
| * | treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ``` | Artturin | 2024-09-25 | 1 | -1/+1 |
| * | treewide: remove unused with statements from maintainer lists•••$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!' | Jörg Thalheim | 2024-07-29 | 1 | -1/+1 |
| * | Merge master into staging-next | github-actions[bot] | 2024-06-25 | 1 | -1/+1 |
| |\ | |||||
| | * | treewide: remove jonringer as package maintainer•••Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> | Paul Meyer | 2024-06-25 | 1 | -1/+1 |
| * | | python3Packages.azure-core: 1.30.1 -> 1.30.2•••https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.30.2/sdk/core/azure-core/CHANGELOG.md | Martin Weinelt | 2024-06-24 | 1 | -2/+2 |
| |/ | |||||
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -33/+26 |
| * | python311Packages.azure-core: 1.30.0 -> 1.30.1•••Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.30.1/sdk/core/azure-core/CHANGELOG.md | Fabian Affolter | 2024-03-05 | 1 | -2/+2 |
| * | python311Packages.azure-core: 1.28.0 -> 1.30.0•••Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.30.0/sdk/core/azure-core/CHANGELOG.md | Fabian Affolter | 2024-02-23 | 1 | -6/+10 |
| * | python311Packages.azure-core: 1.26.3 -> 1.28.0•••Changelog: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CHANGELOG.md | Fabian Affolter | 2023-07-14 | 1 | -7/+20 |
| * | python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. | Martin Weinelt | 2023-03-03 | 1 | -1/+1 |
| * | python3Packages.azure-core: 1.26.2 -> 1.26.3 | Nick Cao | 2023-02-05 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.26.1 -> 1.26.2 | Nick Cao | 2023-02-05 | 1 | -2/+2 |
| * | treewide: switch to nativeCheckInputs•••checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs. | Guillaume Girol | 2023-01-21 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.25.1 -> 1.26.1 | Martin Weinelt | 2023-01-05 | 1 | -2/+2 |
| * | Merge pull request #188241 from centromere/fix-azure-core•••python3Packages.azure-core: Fix sandboxed build on Darwin | Jörg Thalheim | 2022-12-01 | 1 | -0/+2 |
| |\ | |||||
| | * | python3Packages.azure-core: Fix sandboxed build on Darwin | Alex Wied | 2022-10-19 | 1 | -0/+2 |
| * | | treewide: optional -> optionals where the argument is a list•••the argument to optional should not be list | Artturin | 2022-10-10 | 1 | -1/+1 |
| |/ | |||||
| * | python3Packages.azure-core: remove msrest as dependency•••- fixes circular dependency introduced my updating msrest to 0.7.1 Signed-off-by: Florian Brandes <florian.brandes@posteo.de> | Florian Brandes | 2022-10-01 | 1 | -2/+5 |
| * | python3Packages.azure-core: 1.24.2 -> 1.25.1 | Martin Weinelt | 2022-09-18 | 1 | -2/+2 |
| * | Merge master into staging-next | github-actions[bot] | 2022-07-27 | 1 | -15/+8 |
| |\ | |||||
| | * | python310Packages.azure-core: 1.24.0 -> 1.24.2 | Jonas Heinrich | 2022-07-27 | 1 | -15/+8 |
| * | | python3Packages.azure-core: disable transport tests | Jonathan Ringer | 2022-07-21 | 1 | -0/+2 |
| |/ | |||||
| * | python310Packages.azure-core: update disabled | Sandro Jäckel | 2022-05-16 | 1 | -2/+2 |
| * | python*Packages.azure-core: 1.23.1 -> 1.24.0, fix tests•••Upstream PR: https://github.com/Azure/azure-sdk-for-python/pull/24450 | K900 | 2022-05-15 | 1 | -3/+13 |
| * | python3Packages.azure-core: propagate typing-extensions | Martin Weinelt | 2022-04-15 | 1 | -1/+1 |
| * | python3Packages.azure-core: 1.23.0 -> 1.23.1 | Martin Weinelt | 2022-04-15 | 1 | -2/+4 |
| * | python3Packages.azure-core: 1.22.1 -> 1.23.0 | Martin Weinelt | 2022-04-13 | 1 | -2/+2 |
| * | Merge branch 'staging-next' into staging | Vladimír Čunát | 2022-03-21 | 1 | -2/+13 |
| |\ | |||||
| | * | python3Packages.azure-core: disable test failing on some darwin systems | Malo Bourgon | 2022-03-20 | 1 | -2/+13 |
| * | | python3Packages.azure-core: 1.21.1 -> 1.22.1 | Martin Weinelt | 2022-03-14 | 1 | -2/+2 |
| |/ | |||||
| * | python3Packages.azure-core: 1.20.1 -> 1.21.1 | Jonathan Ringer | 2021-12-14 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.17.0 -> 1.20.1 | Jonathan Ringer | 2021-11-23 | 1 | -2/+2 |
| * | python3Packages.azure-core: fix tests | Jonathan Ringer | 2021-10-10 | 1 | -0/+5 |
| * | python3Packages.azure-core: 1.16.0 -> 1.17.0 | Martin Weinelt | 2021-09-01 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.15.0 -> 1.16.0 | Jonathan Ringer | 2021-07-05 | 1 | -2/+6 |
| * | python3Packages.azure-core: 1.14.0 -> 1.15.0 | Jonathan Ringer | 2021-06-09 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.13.0 -> 1.14.0 | Jonathan Ringer | 2021-05-20 | 1 | -4/+9 |
| * | python3Packages.azure-core: 1.12.0 -> 1.13.0 | Jonathan Ringer | 2021-05-06 | 1 | -2/+4 |
| * | python3Packages.azure-core: 1.10.0 -> 1.12.0 | Jonathan Ringer | 2021-03-14 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.9.0 -> 1.10.0 | Jonathan Ringer | 2021-01-12 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.8.2 -> 1.9.0 | Jonathan Ringer | 2020-11-29 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.8.1 -> 1.8.2 | Jonathan Ringer | 2020-11-02 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.8.0 -> 1.8.1 | Jonathan Ringer | 2020-09-29 | 1 | -2/+2 |
| * | python3Packages.azure-core: 1.7.0 -> 1.8.0 | Jonathan Ringer | 2020-08-16 | 1 | -2/+2 |
| * | python3Packages.azure-core: fix tests | Jonathan Ringer | 2020-08-09 | 1 | -1/+6 |
| * | python37Packages.azure-core: 1.6.0 -> 1.7.0 | R. RyanTM | 2020-07-14 | 1 | -2/+2 |
| * | python: azure-core: 1.5.0 -> 1.6.0 | Frederik Rietdijk | 2020-06-11 | 1 | -2/+2 |
