R. Ryantm
2b579eb628
zim-tools: 3.1.3 -> 3.2.0
2023-05-26 19:35:00 +00:00
R. Ryantm
92656bb952
nordzy-icon-theme: 1.8.4 -> 1.8.5
2023-05-26 19:33:56 +00:00
Weijia Wang
ab2128b04c
Merge pull request #234269 from wegank/figma-agent-refactor
...
figma-agent: remove explicit libclang path
2023-05-26 22:33:53 +03:00
Weijia Wang
5e9f40005a
Merge pull request #234272 from markuskowa/upd-dablin
...
dablin: 1.14.0 -> 1.15.0
2023-05-26 22:32:27 +03:00
Nikolay Korotkiy
c0afc71a3d
Merge pull request #234264 from sikmir/libhv
...
libhv: 1.3.0 → 1.3.1
2023-05-26 23:31:16 +04:00
Weijia Wang
1836212808
Merge pull request #234268 from SuperSandro2000/dbus-broker
...
dbus-broker: remove prefix from dependency's version attribute
2023-05-26 22:30:13 +03:00
Weijia Wang
5a01f798cd
kime: migrate to bindgenHook
2023-05-26 22:27:14 +03:00
Fabian Affolter
fa10919cd0
python3Packages.uptime-kuma-api: update disabled
2023-05-26 21:26:47 +02:00
Weijia Wang
623ad1f64f
Merge pull request #234251 from DamienCassou/woob-3.6
...
woob: 3.5 -> 3.6
2023-05-26 22:06:10 +03:00
Silvan Mosberger
5c042401b4
flatcam: fix build
2023-05-26 21:05:49 +02:00
Weijia Wang
b5de94e8a7
cups-filters: 1.28.15 -> 1.28.17
2023-05-26 21:58:03 +03:00
Bobby Rong
5fd7da06bd
epiphany: 44.2 → 44.3 ( #234118 )
...
https://gitlab.gnome.org/GNOME/epiphany/-/compare/44.2...44.3
2023-05-26 20:56:43 +02:00
Weijia Wang
f44083052e
Merge pull request #234242 from LeSuisse/rekor-1.2.1
...
rekor-cli, rekor-server: 1.1.1 -> 1.2.1
2023-05-26 21:47:43 +03:00
Fabian Affolter
854214ec56
python311Packages.faraday-plugins: 1.11.0 -> 1.12.0
...
Changelog: https://github.com/infobyte/faraday_plugins/releases/tag/1.12.0
2023-05-26 20:31:40 +02:00
markuskowa
a367e2ba0a
Merge pull request #234174 from markuskowa/upd-nfs-ganesha
...
nfs-ganesha: 5.1 -> 5.2
2023-05-26 20:30:38 +02:00
Pavol Rusnak
23c6303e99
Merge pull request #234191 from fanquake/bitcoin_core_25_0
...
bitcoin: 24.1 -> 25.0
2023-05-26 20:25:45 +02:00
Fabian Affolter
74e30de756
Merge pull request #234259 from fabaff/checkov-bump
...
checkov: 2.3.257 -> 2.3.259
2023-05-26 20:24:35 +02:00
Weijia Wang
1086f0ec83
Merge pull request #234203 from wegank/gpac-bump
...
gpac: 2.2.0 -> 2.2.1
2023-05-26 21:23:29 +03:00
Weijia Wang
c352a8b20e
figma-agent: remove explicit libclang path
2023-05-26 21:22:24 +03:00
Markus Kowalewski
cfa11faeb7
dablin: 1.14.0 -> 1.15.0
2023-05-26 20:15:47 +02:00
Weijia Wang
01b453a5c8
Merge pull request #234239 from r-ryantm/auto-update/s3fs
...
s3fs: 1.91 -> 1.92
2023-05-26 21:13:33 +03:00
Weijia Wang
2b2921adff
Merge pull request #234238 from ratsclub/ionide
...
vscode-extensions.ionide.ionide-fsharp: 7.5.2 -> 7.5.4
2023-05-26 21:11:57 +03:00
Weijia Wang
da8e6bb6cf
Merge pull request #234110 from r-ryantm/auto-update/s2n-tls
...
s2n-tls: 1.3.43 -> 1.3.44
2023-05-26 21:06:56 +03:00
Sandro Jäckel
00000271a0
dbus-broker: remove prefix from dependency's version attribute
2023-05-26 20:05:15 +02:00
Sander
f3a4973aeb
meilisearch: allow builds on aarch64-linux
2023-05-26 14:04:33 -04:00
Weijia Wang
d8a74c29c9
Merge pull request #234244 from LeSuisse/drop-sget
...
sget: remove package
2023-05-26 20:49:55 +03:00
Raito Bezarius
69bb0f94de
nixos/nginx: first-class PROXY protocol support
...
PROXY protocol is a convenient way to carry information about the
originating address/port of a TCP connection across multiple layers of
proxies/NAT, etc.
Currently, it is possible to make use of it in NGINX's NixOS module, but
is painful when we want to enable it "globally".
Technically, this is achieved by reworking the defaultListen options and
the objective is to have a coherent way to specify default listeners in
the current API design.
See `mkDefaultListenVhost` and `defaultListen` for the details.
It adds a safeguard against running a NGINX with no HTTP listeners (e.g.
only PROXY listeners) while asking for ACME certificates over HTTP-01.
An interesting usecase of PROXY protocol is to enable seamless IPv4 to
IPv6 proxy with origin IPv4 address for IPv6-only NGINX servers, it is
demonstrated how to achieve this in the tests, using sniproxy.
Finally, the tests covers:
- NGINX `defaultListen` mechanisms are not broken by these changes;
- NGINX PROXY protocol listeners are working in a final usecase
(sniproxy);
- uses snakeoil TLS certs from ACME setup with wildcard certificates;
In the future, it is desirable to spoof-attack NGINX in this scenario to
ascertain that `set_real_ip_from` and all the layers are working as
intended and preventing any user from setting their origin IP address to
any arbitrary, opening up the NixOS module to bad™ vulnerabilities.
For now, it is quite hard to achieve while being minimalistic about the
tests dependencies.
2023-05-26 19:48:26 +02:00
emilylange
5dbd4f3243
nixos/qemu-vm: add virtualisation.memorySize < 2048
assertion on 32bit
2023-05-26 19:43:58 +02:00
Matthew Penner
a9a080a60b
jetbrains: add python3 to PATH
2023-05-26 11:43:30 -06:00
Samuel Ainsworth
bbdb8416a0
Merge pull request #233851 from ConnorBaker/feat/cudnn_8_9_1
...
cudaPackages.cudnn: version bumps; remove patch from name
2023-05-26 10:26:30 -07:00
Nikolay Korotkiy
6a2828e3ec
libhv: 1.3.0 → 1.3.1
2023-05-26 21:23:45 +04:00
Samuel Ainsworth
80c63c04c2
Merge pull request #234085 from ConnorBaker/fix/pytorch_2_0_1-supported-cuda-targets
...
python3Packages.torch: update CUDA capabilities for v2.0.1 release
2023-05-26 10:23:45 -07:00
Samuel Ainsworth
ef24799942
Merge pull request #234053 from ConnorBaker/fix/cudatoolkit_11_8-broken-symlink
...
cudaPackages_11_8.cudatoolkit: remove broken include/include symlink
2023-05-26 10:18:19 -07:00
Damien Cassou
3df253a9b9
woob: 3.5 -> 3.6
2023-05-26 19:08:04 +02:00
Fabian Affolter
b447d9bb53
python311Packages.pysigma-backend-insightidr: 0.1.8 -> 0.1.9
...
Diff: https://github.com/SigmaHQ/pySigma-backend-insightidr/compare/refs/tags/v0.1.8...v0.1.9
2023-05-26 18:57:05 +02:00
Fabian Affolter
8b25d4ef4e
checkov: 2.3.257 -> 2.3.259
...
Diff: https://github.com/bridgecrewio/checkov/compare/refs/tags/2.3.257...2.3.259
Changelog: https://github.com/bridgecrewio/checkov/releases/tag/2.3.259
2023-05-26 18:54:38 +02:00
figsoda
b2abc0e2e5
Merge pull request #234233 from cameronfyfe/protoc-gen-rust-3-2-0
...
protoc-gen-rust: 3.1.0 -> 3.2.0
2023-05-26 12:54:31 -04:00
Fabian Affolter
651e776772
qovery-cli: 0.58.12 -> 0.58.15
...
Diff: https://github.com/Qovery/qovery-cli/compare/v0.58.12...v0.58.15
Changelog: https://github.com/Qovery/qovery-cli/releases/tag/v0.58.15
2023-05-26 18:52:54 +02:00
figsoda
e512455cb2
Merge pull request #234241 from r-ryantm/auto-update/angle-grinder
...
angle-grinder: 0.19.0 -> 0.19.2
2023-05-26 12:49:03 -04:00
Fabian Affolter
48bfaeb87c
python311Packages.pydeps: 1.12.7 -> 1.12.8
...
Diff: https://github.com/thebjorn/pydeps/compare/refs/tags/v1.12.7...v1.12.8
Changelog: https://github.com/thebjorn/pydeps/releases/tag/v1.12.8
2023-05-26 18:46:04 +02:00
figsoda
7cf56760d0
Merge pull request #234240 from r-ryantm/auto-update/cirrus-cli
...
cirrus-cli: 0.98.0 -> 0.99.0
2023-05-26 12:45:21 -04:00
Fabian Affolter
7aa999a721
python311Packages.python-otbr-api: 1.1.0 -> 1.2.0
...
Diff: https://github.com/home-assistant-libs/python-otbr-api/compare/refs/tags/1.1.0...1.2.0
Changelog: https://github.com/home-assistant-libs/python-otbr-api/releases/tag/1.2.0
2023-05-26 18:43:57 +02:00
Fabian Affolter
bd54c72512
python311Packages.reolink-aio: 0.5.15 -> 0.5.16
...
Diff: https://github.com/starkillerOG/reolink_aio/compare/refs/tags/0.5.15...0.5.16
Changelog: https://github.com/starkillerOG/reolink_aio/releases/tag/0.5.16
2023-05-26 18:43:05 +02:00
Randy Eckenrode
8f84341c90
pinentry-mac: fix build with Darwin sandbox enabled
2023-05-26 12:43:03 -04:00
Fabian Affolter
32bce83e40
python311Packages.onvif-zeep-async: 3.1.7 -> 3.1.8
2023-05-26 18:40:12 +02:00
Kevin Cox
5242aea64f
nixos.mautrix-facebook: Fix appservice name
...
It appears that newer mautrix-facebook versions default to the appservice name `facebook`. This was breaking our registration and causing mautrix-facebook to fail to start. This changes the name back and makes the registration generated match whatever the setting in the app is.
2023-05-26 12:39:37 -04:00
Fabian Affolter
2d000936a4
python311Packages.aliyun-python-sdk-config: 2.2.8 -> 2.2.9
...
Changelog: https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-config/ChangeLog.txt
2023-05-26 18:26:52 +02:00
Fabian Affolter
b9fce90144
python311Packages.adafruit-pureio: 1.1.10 -> 1.1.11
...
Changelog: https://github.com/adafruit/Adafruit_Python_PureIO/releases/tag/1.1.11
2023-05-26 18:25:28 +02:00
Fabian Affolter
461711cb4b
python311Packages.acquire: 3.5 -> 3.6
...
Diff: https://github.com/fox-it/acquire/compare/refs/tags/3.5...3.6
Changelog: https://github.com/fox-it/acquire/releases/tag/3.6
2023-05-26 18:20:42 +02:00
Thomas Gerbet
09a8c1d741
sget: remove package
...
Upstream does not support it anymore.
See https://github.com/sigstore/sget/issues/145
2023-05-26 18:08:55 +02:00