Commit Graph

373 Commits

Author SHA1 Message Date
Martin Weinelt
2146326272
pretalx: 2024.2.0 -> 2024.2.1
https://docs.pretalx.org/en/latest/changelog.html
2024-08-09 13:27:24 +02:00
Guilhem Saurel
8b807a89ff proxsuite: init at 0.6.6 2024-08-08 00:26:44 +02:00
R. Ryantm
86a0d7e08e prrte: 3.0.5 -> 3.0.6 2024-08-07 13:56:57 +00:00
Doron Behar
9d67f432e2
Merge pull request #327438 from doronbehar/pkg/openmpi
openmpi: 4.1.6 -> 5.0.3
2024-08-07 06:13:56 +00:00
Martin Weinelt
a622c107de
pretalx: add missing django[argon2] extra
Breaks the login flow, since passwords will be migrated to argon2, but
the dependency is missing.
2024-08-07 01:39:05 +02:00
Martin Weinelt
a2bfc940e7
Merge pull request #332813 from mweinelt/pretix-banktool
pretix-banktool: init at 1.0.0
2024-08-06 23:15:08 +02:00
Martin Weinelt
a30d7bea2c
pretix-banktool: init at 1.0.0
Import bank transaction from FinTS into Pretix.
2024-08-06 23:10:56 +02:00
Martin Weinelt
00013f5001
pretalx.plugins.youtube: 2.1.0 -> 2.2.0
https://github.com/pretalx/pretalx-youtube/compare/v2.1.0...v2.2.0
2024-08-06 19:54:07 +02:00
Martin Weinelt
61d7da10e2
pretalx.plugins.vimeo: 2.2.0 -> 2.3.0
https://github.com/pretalx/pretalx-vimeo/compare/v2.2.0...v2.3.0
2024-08-06 19:54:06 +02:00
Martin Weinelt
dff5dd7d72
pretalx.plugins.venueless: 1.3.0 -> 1.4.0
https://github.com/pretalx/pretalx-venueless/compare/v1.3.0...v1.4.0
2024-08-06 19:54:05 +02:00
Martin Weinelt
89e3ce7b75
pretalx.plugins.public-voting: 1.5.0 -> 1.6.0
https://github.com/pretalx/pretalx-public-voting/compare/v1.5.0...v1.6.0
2024-08-06 19:54:05 +02:00
Martin Weinelt
d17feedef7
pretalx.plugins.pages: 1.4.0 -> 1.5.0
https://github.com/pretalx/pretalx-pages/compare/v1.4.0...v1.5.0
2024-08-06 19:54:04 +02:00
Martin Weinelt
d2b7130a8e
pretalx.plugins.media-ccc-de: 1.2.1 -> 1.3.0
https://github.com/pretalx/pretalx-media-ccc-de/compare/v1.2.1...v1.3.0
2024-08-06 19:54:04 +02:00
Martin Weinelt
950ae73b83
pretalx.plugins.downstream: 1.2.0 -> 1.3.0
https://github.com/pretalx/pretalx-downstream/compare/v1.2.0...v1.3.0
2024-08-06 19:54:03 +02:00
Martin Weinelt
45b32e82bd
pretalx: 2024.1.0 -> 2024.2.0
https://docs.pretalx.org/changelog/#v2024-2-0
2024-08-06 19:54:02 +02:00
Markus Kowalewski
b0d8554f3c prrte: init at 3.0.3
Co-authored-by: Markus Kowalewski <markus.kowalewski@gmail.com>
2024-08-06 19:53:59 +03:00
Thiago Kenji Okada
fbbc4544b2
Merge pull request #331815 from museoa/upload-primesieve
{primesieve, primecount}: updates
2024-08-06 07:18:31 +01:00
Martin Weinelt
8ee3bf512b
pretix.plugins.zugferd: regenerate locale files 2024-08-05 17:23:31 +02:00
Martin Weinelt
081415aedf
pretix: pin bleach at 5.0.1
Otherwise we run into TypeErrors on at least the pages plugin.
2024-08-05 17:22:56 +02:00
Martin Weinelt
4f2d012633
Merge pull request #332063 from fabaff/whitenoise-bump
python312Packages.whitenoise: 6.6.0 -> 6.7.0
2024-08-05 12:30:46 +02:00
Fabian Affolter
4f52beaa9e pretalx: relax whitenoise 2024-08-05 08:54:59 +02:00
Aleksana
9c3a77bbd1
Merge pull request #328703 from r-ryantm/auto-update/proto
proto: 0.38.0 -> 0.38.3
2024-08-04 19:39:32 +08:00
adisbladis
e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
Anderson Torres
2977a6a5b1 primesieve: 12.3 -> 12.4 2024-08-02 13:36:26 -03:00
Anderson Torres
e300b2ba66 primecount: 7.13 -> 7.14 2024-08-02 13:36:26 -03:00
Anderson Torres
0cbd10a948 primesieve: remove extra maintainers AndersonTorres and abbradar
Because abbradar is retired.
2024-08-02 13:36:26 -03:00
Anderson Torres
7e62438a95 primecount: updateScript + tests 2024-08-02 12:45:17 -03:00
Anderson Torres
edaa1e6b49 primecount: nixfmt-rfc-style 2024-08-02 12:45:17 -03:00
Anderson Torres
b43d984e04 primesieve: updateScript 2024-08-02 12:45:17 -03:00
Anderson Torres
42168aba0d primesieve: nixfmt-rfc-style 2024-08-02 12:45:17 -03:00
Matthias Beyer
2607166ffd
Merge pull request #331448 from r-ryantm/auto-update/progress-tracker
progress-tracker: 1.5.2 -> 1.6
2024-08-01 13:14:39 +02:00
R. Ryantm
f4160d171d progress-tracker: 1.5.2 -> 1.6 2024-08-01 04:03:42 +00:00
Martin Weinelt
83d3dd1c4a
pretix.plugins.zugferd: init at 2.2.0
Annotate pretix' invoices with ZUGFeRD data
2024-08-01 05:22:38 +02:00
Martin Weinelt
63f15b89de
pretix: 2024.6.0 -> 2024.7.0
https://pretix.eu/about/en/blog/20240726-release-2024-7/
2024-08-01 04:37:20 +02:00
Gaétan Lepage
6f2cc8828a
Merge pull request #330868 from GaetanLepage/presenterm
presenterm: 0.7.0 -> 0.8.0
2024-07-31 14:58:33 +02:00
Gaetan Lepage
67cb415b86 presenterm: 0.7.0 -> 0.8.0
Diff: https://github.com/mfontanini/presenterm/compare/refs/tags/v0.7.0...v0.8.0

Changelog: https://github.com/mfontanini/presenterm/releases/tag/v0.8.0
2024-07-31 08:25:25 +02:00
Sandro Jäckel
a8fb07ff79
pretix: relax django-compressor dep 2024-07-30 20:16:17 +02:00
Sandro
0b9df4ba09
Merge pull request #330731 from Shawn8901/update_proton
proton-ge-bin: GE-Proton9-10 -> GE-Proton9-11
2024-07-29 13:42:05 +02:00
Jörg Thalheim
5356420466 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; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Sandro
37feaa1823
Merge pull request #326961 from mattpolzin/init-protoc-gen-elixir 2024-07-29 01:27:10 +02:00
Shawn8901
d93419d837 proton-ge-bin: GE-Proton9-10 -> GE-Proton9-11 2024-07-28 22:57:27 +02:00
K900
24076029d2 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-28 01:04:35 +03:00
Nick Cao
cc993611c7
Merge pull request #330185 from r-ryantm/auto-update/proton-pass
proton-pass: 1.20.1 -> 1.20.2
2024-07-27 10:30:41 -04:00
Martin Weinelt
93f4195fe0
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/applications/graphics/seamly2d/default.nix
2024-07-26 18:05:04 +02:00
Aleksana
577a9c43f3
Merge pull request #330042 from Sigmanificient/remove-leading-space-description
treewide: remove trailing space in description
2024-07-26 23:48:02 +08:00
R. Ryantm
3ce8623b06 proton-pass: 1.20.1 -> 1.20.2 2024-07-26 14:15:22 +00:00
Aleksana
b656537bb5
Merge pull request #328886 from jukremer/fix-prettier-plugin-go-template
prettier-plugin-go-template: fix package declaration
2024-07-26 22:14:31 +08:00
Jan Kremer
1a5b97dc82
prettier-plugin-go-template: fix package declaration 2024-07-26 13:52:35 +02:00
Sigmanificient
61fe0c0416 pkgs/by-name: remove unused arguments 2024-07-26 10:11:07 +02:00
K900
1410c766c8 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-26 08:41:08 +03:00