Sandro
0b88ca814f
Merge pull request #161818 from Luflosi/fix-tor-read-resolv.conf
2022-03-15 19:23:13 +01:00
R. Ryantm
3ebf5a732a
python310Packages.jupyterlab: 3.3.1 -> 3.3.2
2022-03-15 18:20:46 +00:00
Sandro
e23b272c16
Merge pull request #164285 from r-ryantm/auto-update/python310Packages.google-cloud-secret-manager
2022-03-15 19:13:18 +01:00
Robert Hensing
80672b6b87
fetchpatch: Fix typos
2022-03-15 19:11:10 +01:00
Franz Pletz
018a959be7
Merge pull request #160750 from Izorkin/update-prosody
2022-03-15 19:07:15 +01:00
Vladimír Čunát
93810bccc8
Merge #164281 : openssl*: 1.1.1m -> 1.1.1.n; 3.0.1 -> 3.0.2
...
...into staging-next. High-severity security fixes.
2022-03-15 18:09:49 +01:00
Vladimír Čunát
b61852cd94
Merge branch 'master' into staging-next
2022-03-15 18:08:32 +01:00
R. Ryantm
7c24c71e1f
xlockmore: 5.68 -> 5.69
2022-03-15 16:55:31 +00:00
Pascal Bach
d1b993abaa
Merge pull request #164264 from r-ryantm/auto-update/minio-client
...
minio-client: 2022-03-09T02-08-36Z -> 2022-03-13T22-34-00Z
2022-03-15 17:41:51 +01:00
Artturi
c3959146fd
Merge pull request #163997 from K900/upd8n
2022-03-15 18:21:32 +02:00
Sandro
4b592e0998
Merge pull request #159957 from sikmir/kchmviewer
2022-03-15 17:16:37 +01:00
Sandro
1c1ff479b3
Merge pull request #161708 from niknetniko/bump/gramps
2022-03-15 17:13:49 +01:00
Fabian Affolter
b0db6f0562
Merge pull request #164247 from r-ryantm/auto-update/python310Packages.azure-mgmt-netapp
...
python310Packages.azure-mgmt-netapp: 6.0.1 -> 7.0.0
2022-03-15 17:10:08 +01:00
R. Ryantm
b6ae1b7542
python310Packages.google-cloud-secret-manager: 2.9.1 -> 2.9.2
2022-03-15 15:59:41 +00:00
Léo Gaspard
89127cbe69
cargo-nextest: init at 0.9.10
2022-03-15 16:52:36 +01:00
Krzysztof Nazarewski
759517412f
plantuml-server: fixed unstable deps
...
after merging https://github.com/NixOS/nixpkgs/pull/163431 `plantuml-server-*-deps` derivation turned out unstable, this commit switches to fetching `plantuml.war` directly from releases
2022-03-15 16:50:08 +01:00
Martin Weinelt
72bb369245
openssl_1_1: 1.1.1m -> 1.1.1n
...
https://github.com/openssl/openssl/blob/OpenSSL_1_1_1n/CHANGES#L10
Fixes: CVE-2022-0778
2022-03-15 16:39:33 +01:00
Martin Weinelt
384a708e6d
openssl_3_0: 3.0.1 -> 3.0.2
...
https://github.com/openssl/openssl/blob/openssl-3.0.2/CHANGES.md#changes-between-301-and-302-15-mar-2022
Fixes: CVE-2022-0778
2022-03-15 16:38:56 +01:00
R. Ryantm
db0fa0744c
cargo-about: 0.4.7 -> 0.4.8
2022-03-15 11:37:19 -04:00
R. Ryantm
326523d19f
cargo-outdated: 0.10.2 -> 0.11.0
2022-03-15 11:36:46 -04:00
R. Ryantm
ac6b251ac2
cargo-insta: 1.11.0 -> 1.13.0
2022-03-15 11:35:40 -04:00
R. Ryantm
e92f338feb
vazir-fonts: 30.1.0 -> 32.0.0
2022-03-15 15:31:08 +00:00
Fabian Affolter
e263272489
python3Packages.apycula: add format
2022-03-15 16:15:16 +01:00
Fabian Affolter
c8d8283717
Merge pull request #164239 from r-ryantm/auto-update/python3.10-traitsui
...
python310Packages.traitsui: 7.3.0 -> 7.3.1
2022-03-15 16:13:34 +01:00
Fabian Affolter
f579bb7756
python3Packages.azure-mgmt-netapp: disable on older Python releases
2022-03-15 16:12:32 +01:00
Daniel Schaefer
8fdae30745
Merge pull request #163880 from r-ryantm/auto-update/orcania
2022-03-15 23:05:19 +08:00
Ashish SHUKLA
570312ed81
cinny: 1.8.0 -> 1.8.1
2022-03-15 19:59:17 +05:30
Ryan Mulligan
99a9574518
Merge pull request #164251 from r-ryantm/auto-update/terraria-server
...
terraria-server: 1.4.3.5 -> 1.4.3.6
2022-03-15 07:27:22 -07:00
Luflosi
3c63da7cf8
nixos/tor: allow tor to read resolv.conf when using resolved
...
When `services.resolved.enable` is set to true, the file /etc/resolv.conf becomes a symlink to /etc/static/resolv.conf, which is a symlink to /run/systemd/resolve/stub-resolv.conf. Without this commit, tor does not have access to this file thanks to systemd confinement. This results in the following warning when tor starts:
```
[warn] Unable to stat resolver configuration in '/etc/resolv.conf': No such file or directory
[warn] Could not read your DNS config from '/etc/resolv.conf' - please investigate your DNS configuration. This is possibly a problem. Meanwhile, falling back to local DNS at 127.0.0.1.
```
To fix this, simply allow read-only access to the file when resolved is in use.
According to https://github.com/NixOS/nixpkgs/pull/161818#discussion_r824820462 , the symlink may also point to /run/systemd/resolve/resolv.conf, so allow that as well.
2022-03-15 15:16:14 +01:00
Ryan Mulligan
ddd637d4e8
Merge pull request #164217 from r-ryantm/auto-update/redis_exporter
...
prometheus-redis-exporter: 1.35.1 -> 1.36.0
2022-03-15 06:58:29 -07:00
Matthias Thym
01bba26c1e
pyinfra: init at 1.7
2022-03-15 14:55:09 +01:00
Loïc Reynier
4cd21a1cba
maintainers: add loicreynier
2022-03-15 14:48:08 +01:00
Anderson Torres
3eb07eeafb
Merge pull request #164262 from r-ryantm/auto-update/stm32cubemx
...
stm32cubemx: 6.4.0 -> 6.5.0
2022-03-15 10:16:03 -03:00
Anderson Torres
b7e833068c
Merge pull request #164243 from r-ryantm/auto-update/juju
...
juju: 2.9.25 -> 2.9.26
2022-03-15 10:13:45 -03:00
R. Ryantm
345640a6f3
minio-client: 2022-03-09T02-08-36Z -> 2022-03-13T22-34-00Z
2022-03-15 13:13:04 +00:00
Anderson Torres
68d901a4a8
Merge pull request #164255 from Cogitri/bada-bib-060
...
bada-bib: 0.5.1 -> 0.6.0
2022-03-15 10:10:06 -03:00
Loïc Reynier
7dad451cdb
license-generator: init at 0.8.1
2022-03-15 14:09:20 +01:00
K900
4418ba0d5f
n8n: 0.166.0 → 0.168.1
2022-03-15 13:04:15 +00:00
Franz Pletz
a32d2caaaf
Merge pull request #163979 from yl3dy/iperf
2022-03-15 14:01:40 +01:00
Franz Pletz
46521d673c
Merge pull request #163873 from r-ryantm/auto-update/janus-gateway
2022-03-15 14:00:59 +01:00
Anderson Torres
51cd15b551
Merge pull request #164236 from r-ryantm/auto-update/imgproxy
...
imgproxy: 3.3.0 -> 3.3.1
2022-03-15 09:59:13 -03:00
Martin Weinelt
0b98e5e178
Merge pull request #164257 from mweinelt/home-assistant
2022-03-15 13:53:31 +01:00
Anderson Torres
a0cd653a37
Merge pull request #164200 from r-ryantm/auto-update/k3s
...
k3s: 1.23.3+k3s1 -> 1.23.4+k3s1
2022-03-15 09:48:43 -03:00
R. Ryantm
53c51b7fb1
stm32cubemx: 6.4.0 -> 6.5.0
2022-03-15 12:43:51 +00:00
Daniel Nagy
58eba78b26
jp: 0.1.3 -> 0.2.1
2022-03-15 13:19:52 +01:00
Martin Weinelt
c247b7ad25
home-assistant: 2022.3.4 -> 2022.3.5
...
https://github.com/home-assistant/core/releases/tag/2022.3.5
2022-03-15 13:01:28 +01:00
github-actions[bot]
ca9fc26e84
Merge master into staging-next
2022-03-15 12:01:24 +00:00
Rasmus Thomsen
69895c6248
bada-bib: 0.5.1 -> 0.6.0
2022-03-15 12:50:26 +01:00
R. Ryantm
9c0dd18492
sdcc: 4.1.0 -> 4.2.0
2022-03-15 12:27:21 +01:00
Vladimir Serov
0c68e23f52
nixos/modules/version: remove unnecessary quoting
...
(In cases it is unnecessary)
2022-03-15 14:17:59 +03:00