Markus Kowalewski
bebb222d4a
wordpress: 5.3 -> 5.3.2
2020-01-04 18:32:38 +01:00
R. RyanTM
98c6633430
wordpress: 5.2.4 -> 5.3
2020-01-04 18:32:38 +01:00
Ryan Mulligan
6de8b8f144
Merge pull request #61722 from Izorkin/pinba-nginx
...
nginxModules.pinba: init at 13.05.2019
2020-01-04 07:58:18 -08:00
Symphorien Gibol
b40fc3a56b
pynagsystemd: init at 1.2.0
...
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
2020-01-03 15:48:42 -08:00
Maximilian Bosch
45179675a9
Merge pull request #76896 from Vskilet/roundcube-update
...
roundcube: 1.4.1 -> 1.4.2
2020-01-03 21:50:03 +01:00
Victor SENE
f07ea50ad3
roundcube: 1.4.1 -> 1.4.2
2020-01-03 19:58:27 +01:00
Frederik Rietdijk
7aa2b0215b
Merge master into staging-next
2020-01-03 10:25:14 +01:00
Maximilian Bosch
9b298ad945
Merge pull request #76278 from r-ryantm/auto-update/homeassistant-cli
...
home-assistant-cli: 0.7.0 -> 0.8.0
2020-01-02 23:20:23 +01:00
aszlig
845e92835d
Merge Last-Modified fix for nginx ( #76697 )
...
This fixes the patch for nginx to clear the Last-Modified header if a
static file is served from the Nix store.
So far we only used the ETag from the store path, but if the
Last-Modified header is always set to "Thu, 01 Jan 1970 00:00:01 GMT",
Firefox and Chrome/Chromium seem to ignore the ETag and simply use the
cached content instead of revalidating.
Alongside the fix, this also adds a dedicated NixOS VM test, which uses
WebDriver and Firefox to check whether the content is actually served
from the browser's cache and to have a more real-world test case.
2020-01-02 21:41:59 +01:00
Frederik Rietdijk
f08e3e38d4
Merge master into staging-next
2020-01-02 21:41:13 +01:00
Maximilian Bosch
0e31950cb4
gotify-server: 2.0.12 -> 2.0.13
...
https://github.com/gotify/server/releases/tag/v2.0.13
2020-01-02 21:25:58 +01:00
Maximilian Bosch
c016cf0fce
Merge pull request #76740 from Ma27/bump-matrix-synapse
...
matrix-synapse: 1.7.2 -> 1.7.3
2020-01-02 17:43:37 +01:00
misuzu
6d66795575
freeswitch: 1.8.7 -> 1.10.2
2020-01-01 23:07:45 +02:00
misuzu
96f4563f1e
freeswitch: fix gsmopen build and enable by default for linux
2020-01-01 18:09:54 +02:00
zimbatm
c187844214
unit: add withRuby_2_7 option
2020-01-01 00:25:03 +00:00
Maximilian Bosch
a5689a2ff1
matrix-synapse: 1.7.2 -> 1.7.3
...
https://github.com/matrix-org/synapse/releases/tag/v1.7.3
2019-12-31 16:00:51 +01:00
Jan Tojnar
0c2adc0fb1
Merge branch 'staging' into staging-next
2019-12-31 03:59:58 +01:00
Jan Tojnar
c5406e30b0
qpid-cpp: fix eval
2019-12-31 02:59:40 +01:00
Robin Gloster
6ca6ac796b
treewide: configureFlags is a flat list
2019-12-31 01:37:49 +01:00
Robin Gloster
760e23136a
treewide: *inputs are lists
2019-12-31 01:09:25 +01:00
Robin Gloster
755db0b689
treewide: installTargets is a list
2019-12-31 00:25:26 +01:00
Robin Gloster
313da176d3
treewide: NIX_*_FLAGS -> string
2019-12-31 00:16:46 +01:00
Robin Gloster
5f2b92e3ec
treewide: NIX_*_COMPILE -> string
2019-12-31 00:13:29 +01:00
Robin Gloster
ab0cfd9e03
treewide: NIX_*_COMPILE -> string
2019-12-31 00:10:18 +01:00
Jonathan Ringer
d72c4791bc
Merge remote-tracking branch 'origin' into staging-next
2019-12-30 14:36:16 -08:00
Aaron Andersen
66bf75415f
Merge pull request #76551 from symphorien/nagios2
...
nagios: various improvements
2019-12-30 14:21:03 -05:00
Symphorien Gibol
cb38bf33e7
nagios: add nixos test
2019-12-30 16:41:18 +01:00
symphorien+git@xlumurb.eu
be25e45fc8
nagios: various improvements
...
* structured config for main config file allows to launch nagios in
debug mode without having to write the whole config file by hand
* build time syntax check
* all options have types, one more example
* I find it misleading that the main nagios config file is linked in
/etc but that if you change the link in /etc/ and restart nagios, it
has no effect. Have nagios use /etc/nagios.cfg
* fix paths in example nagios config files, which allows to reuse it:
services.nagios.objectDefs =
(map (x: "${pkgs.nagios}/etc/objects/${x}.cfg")
[ "templates" "timeperiods" "commands" ]) ++ [ ./main.cfg ]
* for the above reason, add mailutils to default plugins
Co-Authored-By: Aaron Andersen <aaron@fosslib.net>
2019-12-30 16:40:52 +01:00
Frederik Rietdijk
6d059becd3
Merge gcc-9 into staging ( #68029 )
2019-12-30 16:38:38 +01:00
aszlig
ccf55bead1
nginx: Clear Last-Modified if ETag is from store
...
This is what I've suspected a while ago[1]:
> Heads-up everyone: After testing this in a few production instances,
> it seems that some browsers still get cache hits for new store paths
> (and changed contents) for some reason. I highly suspect that it might
> be due to the last-modified header (as mentioned in [2]).
>
> Going to test this with last-modified disabled for a little while and
> if this is the case I think we should improve that patch by disabling
> last-modified if serving from a store path.
Much earlier[2] when I reviewed the patch, I wrote this:
> Other than that, it looks good to me.
>
> However, I'm not sure what we should do with Last-Modified header.
> From RFC 2616, section 13.3.4:
>
> - If both an entity tag and a Last-Modified value have been
> provided by the origin server, SHOULD use both validators in
> cache-conditional requests. This allows both HTTP/1.0 and
> HTTP/1.1 caches to respond appropriately.
>
> I'm a bit nervous about the SHOULD here, as user agents in the wild
> could possibly just use Last-Modified and use the cached content
> instead.
Unfortunately, I didn't pursue this any further back then because
@pbogdan noted[3] the following:
> Hmm, could they (assuming they are conforming):
>
> * If an entity tag has been provided by the origin server, MUST
> use that entity tag in any cache-conditional request (using If-
> Match or If-None-Match).
Since running with this patch in some deployments, I found that both
Firefox and Chrome/Chromium do NOT re-validate against the ETag if the
Last-Modified header is still the same.
So I wrote a small NixOS VM test with Geckodriver to have a test case
which is closer to the real world and I indeed was able to reproduce
this.
Whether this is actually a bug in Chrome or Firefox is an entirely
different issue and even IF it is the fault of the browsers and it is
fixed at some point, we'd still need to handle this for older browser
versions.
Apart from clearing the header, I also recreated the patch by using a
plain "git diff" with a small description on top. This should make it
easier for future authors to work on that patch.
[1]: https://github.com/NixOS/nixpkgs/pull/48337#issuecomment-495072764
[2]: https://github.com/NixOS/nixpkgs/pull/48337#issuecomment-451644084
[3]: https://github.com/NixOS/nixpkgs/pull/48337#issuecomment-451646135
Signed-off-by: aszlig <aszlig@nix.build>
2019-12-30 14:30:36 +01:00
Robin Gloster
2157dcd141
treewide: installFlags is a list
2019-12-30 13:22:43 +01:00
Merijn Broeren
133103d709
treewide: replace make/build/configure/patchFlags with nix lists
2019-12-30 12:58:11 +01:00
Robin Gloster
f85cfd274d
uhub: *Flags are lists
2019-12-30 12:15:29 +01:00
Robin Gloster
8fb0e16133
munin: *Flags are lists
2019-12-30 12:15:29 +01:00
Robin Gloster
7def878f1e
xorg.*: *Flags are lists
2019-12-30 11:13:41 +01:00
Jan Tojnar
480fc1856a
Merge branch 'master' into staging-next
2019-12-30 05:22:23 +01:00
Maximilian Bosch
975a6b7b1d
mautrix-telegram: mark as broken on darwin
...
Tests currently fail like this:
```
/nix/store/yslk7x7iw3hka6d33kmnba9sxaia4492-python3.7-mautrix-0.4.0/lib/python3.7/site-packages/mautrix/util/manhole.py:9: in <module>
from socket import SOL_SOCKET, SO_PEERCRED
E ImportError: cannot import name 'SO_PEERCRED' from 'socket' (/nix/store/81qani7sdir46gjwf3a3jr2cv1aggkz1-python3-3.7.5/lib/python3.7/socket.py)
!!!!!!!!!!!!!!!!!!! Interrupted: 1 errors during collection !!!!!!!!!!!!!!!!!!!!
=============================== 1 error in 1.73s ===============================
```
Those values don't seem to be available on the MacOS-version of that
module. As there's no workaround implemented in the source, I assume
that upstream doesn't intend to support darwin-alike platforms atm.
2019-12-29 19:56:05 -08:00
Maximilian Bosch
95ee079ae6
mautrix-telegram: 0.6.1 -> 0.7.0
...
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc4
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc3
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc2
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc1
2019-12-29 19:56:05 -08:00
R. RyanTM
1d2b233528
metabase: 0.33.6 -> 0.33.7.1
2019-12-29 15:49:22 -06:00
symphorien+git@xlumurb.eu
18090331d6
monitoring plugins: fix path to sudo and mailq
...
this fixes check_mailq with postfix at least
2019-12-29 15:45:13 -06:00
Christoph Hrdinka
03c8eca08b
Merge pull request #76340 from r-ryantm/auto-update/nsd
...
nsd: 4.2.3 -> 4.2.4
2019-12-29 11:01:46 +01:00
Frederik Rietdijk
fb66525297
Merge master into staging-next
2019-12-29 10:19:39 +01:00
Peter Simons
bc555a24af
Merge pull request #76209 from r-ryantm/auto-update/bind
...
bind: 9.14.8 -> 9.14.9
2019-12-27 12:17:36 +01:00
Franz Pletz
ee8cc1c7ba
qpid-cpp: fix build on darwin
2019-12-27 05:21:41 +01:00
Franz Pletz
66237e1bca
cockroachdb: fix build on darwin
2019-12-27 05:21:40 +01:00
Nathan
b0caf68bff
maintainer-list.nix: remove ndowens
2019-12-26 16:47:41 -05:00
Ryan Mulligan
264f44b1d0
Merge pull request #76355 from r-ryantm/auto-update/pdns-recursor
...
pdns-recursor: 4.2.0 -> 4.2.1
2019-12-26 07:56:25 -08:00
Izorkin
b5bd159690
unit: add drop capabilites patch
2019-12-26 17:51:53 +03:00
Izorkin
681dca1b67
unit: 1.13.0 -> 1.14.0
2019-12-26 17:39:14 +03:00
Maximilian Bosch
9842c4b107
treewide: update which packages I'm currently maintaining
...
Idea shamelessly stolen from 4e60b0efae
.
I realized that I don't really know anymore where I'm listed as maintainer and what
I'm actually (co)-maintaining which means that I can't proactively take
care of packages I officially maintain.
As I don't have the time, energy and motivation to take care of stuff I
was interested in 1 or 2 years ago (or packaged for someone else in the
past), I decided that I make this explicit by removing myself from several
packages and adding myself in some other stuff I'm now interested in.
I've seen it several times now that people remove themselves from a
package without removing the package if it's unmaintained after that
which is why I figured that it's fine in my case as the affected pkgs
are rather low-prio and were pretty easy to maintain.
2019-12-26 15:27:47 +01:00
Franz Pletz
77b6c3cd06
Merge remote-tracking branch 'origin/master' into gcc-9
2019-12-26 14:17:36 +01:00
Maximilian Bosch
8daee5f6ce
Merge pull request #76467 from alyssais/spamassassin-ipv6
...
spamassassin: fix IPv6
2019-12-26 02:13:07 +01:00
Aaron Andersen
117ef4af8a
Merge pull request #76307 from r-ryantm/auto-update/mediawiki
...
mediawiki: 1.33.1 -> 1.34.0
2019-12-25 10:26:10 -05:00
Jörg Thalheim
89c55c0a6d
net-snmp: split outputs ( #76155 )
...
net-snmp: split outputs
2019-12-25 06:27:55 +00:00
Jan Tojnar
ca39dd3a8a
Merge branch 'master' into staging-next
2019-12-25 05:15:06 +01:00
Alyssa Ross
7ea65c5746
spamassassin: fix IPv6
...
The Net::CIDR::Lite package was missing.
2019-12-24 23:41:03 +00:00
Jonathan Ringer
051c67dc4c
mautrix-telegram: fix build
2019-12-24 11:30:01 -08:00
markuskowa
0b41391890
Merge pull request #76425 from r-ryantm/auto-update/slurm
...
slurm: 19.05.4.1 -> 19.05.5.1
2019-12-24 20:19:50 +01:00
R. RyanTM
a0d1a7fbee
tautulli: 2.1.38 -> 2.1.39
2019-12-24 10:27:47 -08:00
R. RyanTM
f0f714d0fb
slurm: 19.05.4.1 -> 19.05.5.1
2019-12-24 10:06:24 -08:00
Dirk-Willem van Gulik
f85ec2d896
Additional redwax modules - including comments from review on #75620 .
2019-12-24 17:01:04 +01:00
Ryan Mulligan
c7773d7dd6
Merge pull request #76330 from r-ryantm/auto-update/mpd
...
mpd: 0.21.16 -> 0.21.17
2019-12-23 21:02:32 -08:00
R. RyanTM
cd795f7c0a
pdns-recursor: 4.2.0 -> 4.2.1
2019-12-23 20:39:18 -08:00
R. RyanTM
0e168753c1
nsd: 4.2.3 -> 4.2.4
2019-12-23 17:38:11 -08:00
R. RyanTM
1a5f0c260b
neo4j: 3.5.13 -> 3.5.14
2019-12-23 16:50:52 -08:00
R. RyanTM
d5cad6b539
mpd: 0.21.16 -> 0.21.17
2019-12-23 15:43:51 -08:00
R. RyanTM
9e5179b0b3
mediawiki: 1.33.1 -> 1.34.0
2019-12-23 12:33:17 -08:00
Aaron Andersen
8051289f19
zabbix: 4.4.3 -> 4.4.4
2019-12-23 13:19:07 -05:00
Aaron Andersen
051cda4854
zabbix: 4.0.15 -> 4.0.16
2019-12-23 13:18:32 -05:00
Aaron Andersen
7e66f5b923
zabbix: 3.0.28 -> 3.0.29
2019-12-23 13:17:23 -05:00
R. RyanTM
cf1220bed6
home-assistant-cli: 0.7.0 -> 0.8.0
2019-12-23 07:30:33 -08:00
Michael Raskin
f12afbd2c2
unpfs: init at 0.0.2019-05-17
2019-12-23 08:23:15 +00:00
R. RyanTM
603e3b1345
bind: 9.14.8 -> 9.14.9
2019-12-22 20:05:23 -08:00
Mario Rodas
41ca3c7abd
Merge pull request #74648 from r-ryantm/auto-update/shairport-sync
...
shairport-sync: 3.3.4 -> 3.3.5
2019-12-22 18:18:53 -05:00
Mario Rodas
bce8090922
cadvisor: 0.34.0 -> 0.35.0
...
Changelog: https://github.com/google/cadvisor/releases/tag/v0.35.0
2019-12-22 00:00:00 -05:00
Jörg Thalheim
725f85e271
net-snmp: rename from net_snmp
2019-12-21 22:56:08 +00:00
Jörg Thalheim
0913701d47
dnsdist: 1.3.2 -> 1.4.0
...
- fixes build against boost
- also enable DoH
2019-12-21 22:56:01 +00:00
Jörg Thalheim
b9bc38934b
h2o: build with openssl
...
otherwise we get symbol conflicts, once we link it against applications using
openssl
2019-12-21 22:55:58 +00:00
Jörg Thalheim
a446ac2bb0
net-snmp: add multiple outputs to reduce closure size
2019-12-21 22:55:43 +00:00
elseym
b677f2836c
plex: 1.18.2.2058 -> 1.18.3.2156
2019-12-21 18:46:32 +01:00
WilliButz
3f998fac7f
Merge pull request #76097 from Ma27/bump-matrix-synapse
...
matrix-synapse: 1.7.1 -> 1.7.2
2019-12-21 13:28:50 +01:00
Jörg Thalheim
e17e5f0ace
cloud-print-connector: fix build against cups
2019-12-21 11:59:08 +00:00
Maximilian Bosch
779333225e
Merge pull request #74613 from doronbehar/update-gotify-server
...
gotify-server: 2.0.11 -> 2.0.12
2019-12-21 11:05:39 +01:00
Maximilian Bosch
68dfdc2f60
Merge pull request #75532 from 0x4A6F/master-xandikos
...
xandikos: init at 0.1.0
2019-12-21 01:42:49 +01:00
Alyssa Ross
7887a81193
treewide: fix cargoSha256 (again)
...
cargo-vendor output was changed in a4fc84de44
.
2019-12-20 20:08:53 +00:00
Alyssa Ross
8f8514c6ba
public-inbox: init at 1.2.0
...
highlight's Perl bindings are currently disabled on Darwin, but I
didn't make the dependency here conditional so that if that is ever
fixed, this function won't need to be updated. p-i is smart enough to
disable the test for highlight if it can't find the Perl module.
2019-12-20 19:47:42 +00:00
Maximilian Bosch
880e098a9f
matrix-synapse: 1.7.1 -> 1.7.2
...
https://github.com/matrix-org/synapse/releases/tag/1.7.2
Building for now with Python 3.7 as Python 3.8.1 changed it's behavior
regarding URL parsing[1] which broke one of its dependencies[2].
[1] https://bugs.python.org/issue27657
[2] https://hydra.nixos.org/build/108652790 / https://github.com/mozilla/bleach/issues/503
2019-12-20 19:32:34 +01:00
Jan Hrnko
b167c29620
nextcloud: 17.0.1 -> 17.0.2
2019-12-20 19:32:21 +01:00
markuskowa
aef959ed93
Merge pull request #75292 from r-ryantm/auto-update/powerdns
...
powerdns: 4.2.0 -> 4.2.1
2019-12-20 12:18:16 +01:00
Sondre Nilsen
3de284e302
miniflux: 2.0.18 -> 2.0.19
2019-12-19 17:43:16 +01:00
Maximilian Bosch
e4b91567e8
matrix-synapse: expose nixos-test in derivation
...
As proposed during the last matrix-synapse bump[1].
[1] https://github.com/NixOS/nixpkgs/pull/75860#issuecomment-567007810
2019-12-19 14:32:06 +01:00
Frederik Rietdijk
39037a3431
Merge staging-next into staging
2019-12-19 09:21:24 +01:00
Franz Pletz
e3973ac6f9
Merge pull request #75907 from mayflower/confluence-update
...
atlassian-confluence: 7.0.3 -> 7.2.0
2019-12-19 03:28:59 +00:00
Marek Mahut
2f3cd7dda7
alertmanager-bot: init at 0.4.0
2019-12-19 03:23:52 +00:00
Jan Tojnar
b171037944
Merge pull request #75668 from jtojnar/py2-cleanup
...
Another batch of Python 2 removals
2019-12-19 01:24:00 +01:00
WilliButz
a53c73d9c8
atlassian-confluence: 7.1.0 -> 7.2.0
2019-12-19 00:25:15 +01:00
Robin Gloster
15db4fcd51
atlassian-confluence: 7.0.3 -> 7.1.0
2019-12-19 00:24:23 +01:00
Scriptkiddi
2293669674
home-assistant: Add error output for missing deps
...
Print missing dependencies to the console when running the parse
requirements script. This allows to spot missing packages that could be
added to nixpkgs
2019-12-18 22:24:26 +01:00
Maximilian Bosch
f1acc6e70e
matrix-synapse: 1.7.0 -> 1.7.1
...
https://github.com/matrix-org/synapse/releases/tag/v1.7.1
2019-12-18 11:53:16 +01:00
Silvan Mosberger
9888686702
xorg.xf86-video-intel: 2018-12-03 -> 2019-12-09
2019-12-18 04:15:07 +01:00
Franz Pletz
5d01945b40
Merge pull request #75839 from petabyteboy/feature/dovecot-pigeonhole
...
dovecot_pigeonhole: 0.5.8 -> 0.5.9
2019-12-18 00:24:29 +00:00
Milan Pässler
a77524e2e3
dovecot_pigeonhole: 0.5.8 -> 0.5.9
...
Fixes build with dovecot 2.3.9+.
2019-12-17 23:28:27 +01:00
Mario Rodas
df10128a6b
Merge pull request #75756 from filalex77/coredns-1.6.6
...
coredns: 1.3.1 -> 1.6.6
2019-12-16 22:26:12 -05:00
0x4A6F
89674bd73d
xandikos: init at 0.1.0
2019-12-16 18:02:27 +01:00
Oleksii Filonenko
03aa4ac48f
coredns: 1.3.1 -> 1.6.6
2019-12-16 14:07:43 +02:00
Andreas Rammhold
0dfc60af86
Merge pull request #75710 from andir/spamassassin
...
spamassassin: 3.4.2 -> 3.4.3
2019-12-16 10:12:44 +01:00
Franz Pletz
7eee92eab7
Merge pull request #75694 from plutotulp/spamassassin-ipv6-master
...
spamassassin: enable IPv6 support with Socket6
2019-12-15 23:25:19 +00:00
Danylo Hlynskyi
debca548f9
dolt: init at 0.12.0 ( #75693 )
...
* dolt: init at 0.12.0
* Update pkgs/servers/sql/dolt/default.nix
Co-Authored-By: robert seaton <robbpseaton@gmail.com>
* fix eval
* Update pkgs/servers/sql/dolt/default.nix
Co-Authored-By: Wael Nasreddine <wael.nasreddine@gmail.com>
* update Go docs as well
2019-12-16 00:58:16 +02:00
Franz Pletz
bbee883e6c
Merge pull request #75704 from andir/dovecot
...
dovecot: 2.3.8 -> 2.3.9.2
2019-12-15 22:02:35 +00:00
Andreas Rammhold
5d3607b2da
spamassassin: 3.4.2 -> 3.4.3
...
Two security issues have been fixed in this release:
* CVE-2019-12420 for Multipart Denial of Service Vulnerability
* CVE-2018-11805 for nefarious CF files can be configured to
run system commands without any output or errors.
https://svn.apache.org/repos/asf/spamassassin/branches/3.4/build/announcements/3.4.3.txt
2019-12-15 20:48:56 +01:00
Andreas Rammhold
cd394340d8
dovecot: 2.3.8 -> 2.3.9.2
...
Update to latest version & updated the patch file to match with the
lastest verison.
Fixes the following security issue:
* CVE-2019-19722: Mails with group addresses in From or To fields
caused crash in push notification drivers.
2019-12-15 20:11:01 +01:00
Frederik Rietdijk
08eaac6be3
Merge pull request #75452 from NixOS/staging-next
...
Staging next
2019-12-15 16:28:08 +01:00
Erlend Pedersen
6e87213291
spamassassin: enable IPv6 support with Socket6
...
Communication between spamc and spamd would fail with messages about
addresses being too long:
error: Bad arg length for Socket::unpack_sockaddr_in, length is 28,
should be 16
By adding Socket6 as a buildInput, spamd is now able to process emails
without choking on IPv6 addresses.
2019-12-15 15:25:38 +01:00
Mario Rodas
9f2092b6a9
grafana-loki: fix build on darwin
2019-12-14 22:22:22 -05:00
Jan Tojnar
0216e8bb9c
xorg.libxcb: do not depend on python2
2019-12-15 01:50:36 +01:00
Jan Tojnar
eb1d315cd8
xorg.xcbproto: do not depend on python2
2019-12-15 01:50:34 +01:00
Jan Tojnar
429561978b
Merge branch 'master' into staging-next
2019-12-14 23:09:06 +01:00
Maximilian Bosch
d1b80ab31e
documize-community: 3.5.2 -> 3.6.0
...
https://github.com/documize/community/releases/tag/v3.6.0
2019-12-14 16:24:42 +01:00
WilliButz
5746e9fd91
Merge pull request #75634 from Ma27/bump-matrix-synapse
...
matrix-synapse: 1.6.1 -> 1.7.0
2019-12-14 15:57:19 +01:00
Lancelot SIX
2cfdc0401f
Merge pull request #75387 from r-ryantm/auto-update/rabbitmq-server
...
rabbitmq-server: 3.8.1 -> 3.8.2
2019-12-14 13:11:42 +01:00
Mario Rodas
c7f85382f8
mpd: fix-build on darwin
2019-12-13 22:59:16 -08:00
Maximilian Bosch
73322737a3
matrix-synapse: 1.6.1 -> 1.7.0
...
https://github.com/matrix-org/synapse/releases/tag/v1.7.0
2019-12-14 02:40:52 +01:00
Maximilian Bosch
e533a8c565
matrix-synapse.ldap3: 0.1.3 -> 0.1.4
...
https://github.com/matrix-org/matrix-synapse-ldap3/releases/tag/v0.1.4
2019-12-14 02:40:13 +01:00
Frederik Rietdijk
dfdf1597a7
Merge master into staging-next
2019-12-13 11:43:39 +01:00
Jaka Hudoklin
4d3f864904
Merge pull request #75517 from WilliButz/update-grafana
...
grafana: 6.5.1 -> 6.5.2
2019-12-12 21:14:19 +00:00
WilliButz
d2eba63b31
Merge pull request #75256 from kampka/matrix-appservice-slack
...
matrix-appservice-slack: 1.0.1 -> 1.0.2
2019-12-12 16:44:12 +01:00
Vladimír Čunát
877eedec61
knot-dns: 2.9.1 -> 2.9.2 (bugfixes)
...
https://gitlab.labs.nic.cz/knot/knot-dns/tags/v2.9.2
2019-12-12 10:36:39 +01:00
WilliButz
95553b2cfd
grafana: 6.5.1 -> 6.5.2
2019-12-11 17:00:59 +01:00
Markus Wamser
7e93638ca7
samba: 4.10.10 -> 4.10.11 ( #75456 )
...
Security fix: CVE-2019-14861, CVE-2019-14870
This update is only a security fix. See
https://www.samba.org/samba/history/samba-4.10.11.html
2019-12-11 11:12:49 +01:00
Izorkin
edddf0ac47
nginxModules.pinba: init at 13.05.2019
2019-12-11 10:06:55 +03:00
Marek Mahut
cd979f45c8
Merge pull request #75386 from WilliButz/update-loki
...
grafana-loki: 1.1.0 -> 1.2.0
2019-12-10 22:42:13 +01:00
Frederik Rietdijk
f3618342ec
Merge staging-next into staging
2019-12-10 19:01:27 +01:00
Mario Rodas
490f8ab122
documize-community: remove module-mode environment variable
...
We disable module-mode in buildGoPackage
2019-12-10 18:50:44 +01:00
Aaron Andersen
01b874d311
Merge pull request #75394 from r-ryantm/auto-update/solr
...
solr: 8.3.0 -> 8.3.1
2019-12-09 21:48:52 -05:00
Mario Rodas
5e60ae8515
Merge pull request #75382 from r-ryantm/auto-update/riemann
...
riemann: 0.3.4 -> 0.3.5
2019-12-09 20:15:53 -05:00
R. RyanTM
97e6ff6a72
solr: 8.3.0 -> 8.3.1
2019-12-09 13:23:05 -08:00
R. RyanTM
f95b93bba3
rabbitmq-server: 3.8.1 -> 3.8.2
2019-12-09 10:26:33 -08:00
WilliButz
3526e7deb0
grafana-loki: 1.1.0 -> 1.2.0
2019-12-09 19:12:53 +01:00
R. RyanTM
1dfd5f1f4b
riemann: 0.3.4 -> 0.3.5
2019-12-09 09:53:25 -08:00
R. RyanTM
2722a7e187
mpd_clientlib: 2.16 -> 2.17
2019-12-09 03:37:14 +01:00
R. RyanTM
3cbc71eeed
neo4j: 3.5.12 -> 3.5.13 ( #75282 )
2019-12-09 00:21:27 +01:00
R. RyanTM
394ec51d5c
powerdns: 4.2.0 -> 4.2.1
2019-12-08 12:36:22 -08:00
Renaud
f640cf49d1
rdf4store: remove pkg and service modules
...
(#74214 )
2019-12-08 20:33:51 +01:00
R. RyanTM
704eecee88
hitch: 1.5.0 -> 1.5.2 ( #75243 )
2019-12-08 19:10:47 +01:00
Christian Kampka
e58b4c094c
matrix-appservice-slack: 1.0.1 -> 1.0.2
2019-12-08 15:26:01 +01:00
Mario Rodas
0ccde691f8
Merge pull request #75238 from r-ryantm/auto-update/groonga
...
groonga: 9.0.9 -> 9.1.0
2019-12-08 06:15:24 -05:00
Sarah Brofeldt
5d5604fc06
Merge pull request #74723 from etu/init-zigpy-deconz
...
home-assistant: Init packages needed for ZHA usage of zigpy deconz usb sticks
2019-12-08 12:13:20 +01:00
R. RyanTM
a7949d813f
groonga: 9.0.9 -> 9.1.0
2019-12-08 02:31:09 -08:00
R. RyanTM
626c4a26ff
airsonic: 10.4.2 -> 10.5.0
2019-12-07 21:56:45 +01:00
Kyle Sferrazza
262e79e3c3
meteor: 1.8.1 -> 1.8.2
2019-12-07 19:15:05 +01:00
Renaud
1d41c6eca7
Merge pull request #74970 from StillerHarpo/monetdb
...
monetdb: 11.33.11 -> 11.35.3
2019-12-07 18:43:31 +01:00
Maximilian Bosch
219df09327
documize-community: 3.5.1 -> 3.5.2
...
https://github.com/documize/community/releases/tag/v3.5.2
2019-12-07 18:17:43 +01:00
Anders Kaseorg
b661db12e8
openafs_1_8: 1.8.3 -> 1.8.5 ( #75104 )
...
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2019-12-07 11:58:19 -05:00
Elis Hirwing
b3c24af135
home-assistant: Regenerate components file
2019-12-07 12:50:45 +01:00
Minijackson
f4f00ef7a8
jellyfin: 10.4.2 -> 10.4.3
2019-12-07 10:50:38 +01:00
WilliButz
fa16b6a689
prometheus-nginx-exporter: 0.4.2 -> 0.5.0
2019-12-06 21:30:50 +01:00
Robert Djubek
42d815d102
matomo: 3.11.0 -> 3.13.0
2019-12-06 20:06:12 +01:00
Graham Christensen
d7ca8feaba
Merge pull request #74987 from delroth/prom-webui
...
prometheus: bundle the webui assets and build the new React UI
2019-12-06 08:03:33 -05:00
Robin Stumm
0fef5b45e7
gotty: 0.0.13 -> 2.0.0-alpha.3
2019-12-06 04:26:07 +01:00
Maximilian Bosch
bfee3a4989
Merge pull request #74743 from Ma27/bump-documize
...
documize-community: 3.5.0 -> 3.5.1
2019-12-05 23:41:15 +01:00
WilliButz
f659187525
grafana-loki: 1.0.0 -> 1.1.0
2019-12-05 16:37:08 +01:00
WilliButz
242ae420e3
Merge pull request #74270 from Ma27/bump-matrix-synapse
...
matrix-synapse: 1.5.1 -> 1.6.1
2019-12-05 15:33:42 +01:00
Frederik Rietdijk
353ec3f3a8
Merge pull request #73491 from Izorkin/unit
...
unit: 1.12.0 -> 1.13.0
2019-12-05 10:25:54 +01:00
Mateusz Kowalczyk
1451a52a38
Remove myself (fuuzetsu) from maintainer lists
...
I haven't been doing any maintenance for a long time now and not only
do I get notified, it also creates a fake impression that all these
packages had at least one maintainer when in practice they had none.
2019-12-05 16:29:48 +09:00
Maximilian Bosch
58aa380671
prometheus-wireguard-exporter: 3.2.1 -> 3.2.2
2019-12-04 23:12:13 +01:00
Maximilian Bosch
d6f8d41c3c
Merge pull request #74646 from Ma27/bump-mautrix-whatsapp
...
mautrix-whatsapp: 2019-09-03 -> 2019-11-17
2019-12-04 22:40:38 +01:00
Vladimír Čunát
24a4f45319
knot-resolver: 4.2.2 -> 4.3.0 (security)
...
Fixes CVE-2019-19331 (DoS), but other changes as well:
https://gitlab.labs.nic.cz/knot/knot-resolver/tags/v4.3.0
2019-12-04 16:22:49 +01:00
Pierre Bourdon
a5fc982ea5
prometheus: bundle the webui assets and build the new React UI
...
v2.14 introduced a new experimental React UI and changed how web assets
are bundled with Prometheus. A separate pre-build command is required to
generate an asset bundle that gets statically linked into the Prometheus
binary.
2019-12-04 15:44:22 +01:00
Florian Engel
341325768c
monetdb: 11.33.11 -> 11.35.3
2019-12-04 10:56:22 +01:00
Mario Rodas
a4d2e5edf9
postgresqlPackages.tds_fdw: 1.0.8 -> 2.0.1
...
Changelog: https://github.com/tds-fdw/tds_fdw/releases/tag/v2.0.1
2019-12-03 19:19:19 -05:00
ajs124
a216a37898
ejabberd: 19.08 -> 19.09.1
2019-12-03 22:18:51 +01:00
Oleksii Filonenko
0ff31210bb
caddy2: init at 2.0.0-beta10 ( #74843 )
...
Co-Authored-By: Konrad Borowski <konrad@borowski.pw>
2019-12-03 13:19:38 +00:00
Maximilian Bosch
f0c0be44ad
qpid-cpp: 1.37.0 -> 1.38.0
...
https://qpid.apache.org/releases/qpid-cpp-1.38.0/index.html
2019-12-03 14:13:59 +01:00
Mario Rodas
979e96f44b
Merge pull request #74667 from r-ryantm/auto-update/Tautulli
...
tautulli: 2.1.37 -> 2.1.38
2019-12-03 04:55:01 -05:00
Marek Mahut
789da848e5
Merge pull request #74792 from aanderse/zabbix
...
zabbix: updates
2019-12-02 18:51:44 +01:00
Franz Pletz
fdcae232e0
Merge pull request #74833 from filalex77/caddy-1.0.4
...
caddy: 1.0.3 -> 1.0.4
2019-12-02 15:21:51 +00:00
Oleksii Filonenko
2fbfb02032
caddy: add filalex77 to maintainers
2019-12-02 16:19:43 +02:00
Oleksii Filonenko
1a3b366ad2
caddy: 1.0.3 -> 1.0.4
2019-12-02 16:19:43 +02:00
Doron Behar
4095c79588
gotify-server: 2.0.11 -> 2.0.12
2019-12-01 22:05:08 +02:00
R. RyanTM
0fc8c727e2
nsd: 4.2.2 -> 4.2.3
2019-12-01 18:40:50 +01:00
R. RyanTM
aaa190d054
postfix: 3.4.7 -> 3.4.8
2019-12-01 18:38:11 +01:00
Aaron Andersen
987878d221
Merge pull request #74488 from r-ryantm/auto-update/moodle
...
moodle: 3.7.3 -> 3.8
2019-12-01 12:01:54 -05:00
Aaron Andersen
503b5c9705
zabbix: drop 4.2.x series
2019-12-01 11:31:16 -05:00
Aaron Andersen
fb0c13d1dd
zabbix: 4.4.1 -> 4.4.3
2019-12-01 11:30:41 -05:00
Aaron Andersen
640b67be76
zabbix: 4.0.14 -> 4.0.15
2019-12-01 11:29:26 -05:00
Ryan Mulligan
474378411f
Merge pull request #74650 from r-ryantm/auto-update/subsonic
...
subsonic: 6.1.5 -> 6.1.6
2019-12-01 07:48:50 -08:00
Michael Raskin
10588bd99d
Merge pull request #74659 from r-ryantm/auto-update/squid
...
squid: 4.8 -> 4.9
2019-12-01 11:29:46 +00:00
Jan Tojnar
8cbc862b83
dconf: move to top-level
2019-12-01 01:01:40 +01:00
R. RyanTM
fffce07e96
jetty: 9.4.22.v20191022 -> 9.4.24.v20191120 ( #74417 )
...
* jetty: 9.4.22.v20191022 -> 9.4.24.v20191120
* jetty: homepage over https
2019-11-30 22:03:40 +01:00
Maximilian Bosch
8331ba3550
documize-community: 3.5.0 -> 3.5.1
...
https://github.com/documize/community/releases/tag/v3.5.1
This patch also switches to a `go.mod`-based build as upstream already
switched to it a while ago[1].
[1] b826852137
2019-11-30 19:54:43 +01:00
Frederik Rietdijk
d14baf7747
Merge master into staging-next
2019-11-30 08:57:28 +01:00
Mario Rodas
bdd42bb9d1
Merge pull request #74483 from 0x4A6F/master-routinator
...
routinator: 0.6.2 -> 0.6.4
2019-11-29 20:00:28 -05:00
Mario Rodas
9a32ecf2d6
Merge pull request #74482 from r-ryantm/auto-update/mtprotoproxy
...
mtprotoproxy: 1.0.7 -> 1.0.8
2019-11-29 19:49:06 -05:00
R. RyanTM
90c5be92ce
memcached: 1.5.19 -> 1.5.20
2019-11-29 15:57:10 -08:00
Jörg Thalheim
56e98fefee
redis: 5.0.6 -> 5.0.7 ( #74621 )
...
redis: 5.0.6 -> 5.0.7
2019-11-29 22:57:12 +00:00
R. RyanTM
c4aef479a5
tautulli: 2.1.37 -> 2.1.38
2019-11-29 10:58:42 -08:00
R. RyanTM
ba4f12dbc4
squid: 4.8 -> 4.9
2019-11-29 10:02:11 -08:00
R. RyanTM
5860007f18
subsonic: 6.1.5 -> 6.1.6
2019-11-29 08:42:22 -08:00
R. RyanTM
2f31971aba
shairport-sync: 3.3.4 -> 3.3.5
2019-11-29 08:09:00 -08:00
Maximilian Bosch
70a5782188
mautrix-whatsapp: 2019-09-03 -> 2019-11-17
2019-11-29 16:32:49 +01:00
0x4A6F
295c32d08d
routinator: 0.6.2 -> 0.6.4
2019-11-29 15:09:52 +00:00
Jörg Thalheim
b1f1c73b76
redis: reference tests
2019-11-29 12:28:02 +00:00
Jörg Thalheim
571ed9d22e
nginx: reference tests
2019-11-29 12:27:55 +00:00
R. RyanTM
78661761cb
redis: 5.0.6 -> 5.0.7
2019-11-29 03:41:41 -08:00
Renaud
e7f7b475d3
mysql80: define pname and version
...
version is needed by the mysql service module
Close #68322
2019-11-28 20:21:05 +01:00
Maximilian Bosch
58ccdeb8af
matrix-synapse: 1.5.1 -> 1.6.1
...
https://github.com/matrix-org/synapse/releases/tag/v1.6.0
https://github.com/matrix-org/synapse/releases/tag/v1.6.1
2019-11-28 19:18:48 +01:00
Marek Mahut
a12c0ed283
Merge pull request #74457 from r-ryantm/auto-update/metabase
...
metabase: 0.33.2 -> 0.33.6
2019-11-28 15:36:17 +01:00
R. RyanTM
50a0534d68
moodle: 3.7.3 -> 3.8
2019-11-28 05:21:31 -08:00
R. RyanTM
6c634807c2
mtprotoproxy: 1.0.7 -> 1.0.8
2019-11-28 04:42:56 -08:00
WilliButz
b8227da4c9
grafana: 6.5.0 -> 6.5.1
2019-11-28 12:46:24 +01:00
R. RyanTM
17a4795037
metabase: 0.33.2 -> 0.33.6
2019-11-28 02:13:38 -08:00
Jonathan Ringer
0c1c18ca44
Merge branch 'master' into staging-next
2019-11-27 22:57:50 -08:00
R. RyanTM
f25d1368bc
eventstore: 5.0.2 -> 5.0.5
2019-11-27 17:07:00 -08:00
Aaron Andersen
5988940ca7
Merge pull request #73577 from helsinki-systems/matomo-consistency
...
matomo: Fix consistency check
2019-11-27 18:07:20 -05:00
tekeri
a5f26644d4
Add nginx perl modules ( #73198 )
...
* nginx: enable perl_module if perl is given
* nginx: move `perl = null` to toplevel
2019-11-27 17:08:56 +00:00
Robin Gloster
39781e89a4
Merge pull request #74200 from WilliButz/update-varnish-exporter
...
prometheus-varnish-exporter: 1.5.1 -> 1.5.2
2019-11-27 17:30:10 +01:00
worldofpeace
1b5df99e7a
Merge pull request #70295 from worldofpeace/mutter-eglstreams
...
Mutter eglstreams
2019-11-27 05:29:58 +00:00
Maximilian Bosch
ffe0be5a5e
Merge pull request #74292 from doronbehar/update-gotify-server
...
gotify-server: 2.0.10 -> 2.0.11
2019-11-26 22:19:19 +01:00
Doron Behar
c1a74b7349
gotify-server: 2.0.10 -> 2.0.11
2019-11-26 22:45:35 +02:00
Dima
0541d071af
samba3, fusesmb: removing
...
Samba 3 has been discontinued since Q1/2015. So I think it's time
to just wipe it from the pkgs. FuseSMB is pretty much abandoned,
upstream does not exist and it's also not as useful as it used to
be anyways.
2019-11-26 19:56:16 +01:00
Maximilian Bosch
2c8b84e52d
Merge pull request #74109 from r-ryantm/auto-update/bind
...
bind: 9.14.7 -> 9.14.8
2019-11-26 19:32:11 +01:00
Franz Pletz
49d4a24cd2
Merge pull request #74099 from r-ryantm/auto-update/atlassian-confluence
...
atlassian-confluence: 7.0.2 -> 7.0.3
2019-11-26 14:19:29 +00:00
WilliButz
ce74c85ce7
grafana: 6.4.5 -> 6.5.0, build with go 1.13
2019-11-26 10:23:13 +01:00
WilliButz
4bc2d36969
Merge pull request #74392 from r-ryantm/auto-update/freeradius
...
freeradius: 3.0.19 -> 3.0.20
2019-11-28 12:21:52 +01:00
adisbladis
ebf783544d
Merge pull request #74145 from eadwu/xorgserver/1.20.6
...
xorg.xorgserver: 1.20.5 -> 1.20.6
2019-11-28 11:00:59 +00:00
Jörg Thalheim
4bbb5fd247
Merge pull request #74181 from minijackson/jellyfin-10.4.2
...
jellyfin: 10.4.1 -> 10.4.2
2019-11-28 10:59:30 +00:00
R. RyanTM
4c53dea763
freeradius: 3.0.19 -> 3.0.20
2019-11-27 15:11:39 -08:00
Mario Rodas
fe0eb2a9a7
postgresqlPackages.pgtap: 1.0.0 -> 1.1.0
2019-11-25 18:00:00 -05:00
WilliButz
7176ca165b
prometheus-varnish-exporter: 1.5.1 -> 1.5.2
2019-11-25 22:23:54 +01:00
WilliButz
9edd7ad38f
prometheus-postgres-exporter: 0.7.0 -> 0.8.0
2019-11-25 21:59:42 +01:00
Frederik Rietdijk
06a054e6eb
Merge master into staging-next
2019-11-25 21:51:57 +01:00
Minijackson
7741aab7c0
jellyfin: 10.4.1 -> 10.4.2
2019-11-25 19:29:21 +01:00
WilliButz
12c1f4b785
grafana: 6.4.4 -> 6.4.5
2019-11-25 09:02:06 -08:00
ajs124
03fef7cff3
nextcloud: 17.0.0 -> 17.0.1
2019-11-25 08:54:52 -08:00
Edmund Wu
7c0a26d176
xorg.xorgserver: 1.20.5 -> 1.20.6
2019-11-25 08:21:44 -05:00
Linus Heckemann
b0fa7bc365
Merge pull request #73715 from 1000101/unifiStable
...
unifiStable: 5.11.39 -> 5.12.22
2019-11-25 13:27:55 +01:00
elseym
e35e970cc5
unifiStable: 5.12.22 -> 5.12.35
2019-11-25 13:27:09 +01:00
R. RyanTM
b470220a0b
bind: 9.14.7 -> 9.14.8
2019-11-25 00:18:59 -08:00
R. RyanTM
a8b985da99
atlassian-confluence: 7.0.2 -> 7.0.3
2019-11-24 23:05:41 -08:00
Florian Klink
2394eb50f6
Merge pull request #73929 from bbigras/nginx-sso
...
nginx-sso: 0.16.1 -> 0.22.0
2019-11-25 01:34:49 +01:00
WilliButz
a3465d9d10
Merge pull request #73453 from mmahut/prometheus-nginxlog-exporter
...
prometheus-nginxlog-exporter: init at 1.3.0
2019-11-24 22:32:05 +01:00
John Ericson
d0d5136cce
Merge remote-tracking branch 'upstream/master' into wrapper-pname-support
2019-11-24 17:25:07 +00:00
John Ericson
9b090ccbca
treewide: Get rid of most parseDrvName
without breaking compat
...
That is because this commit should be merged to both master and
release-19.09.
2019-11-24 17:22:28 +00:00
elseym
6962cfee48
plex: 1.18.1.1973 -> 1.18.2.2058
2019-11-24 16:50:18 +01:00
Izorkin
d5f8c4b1d1
unit: update build configuration
2019-11-24 12:55:21 +03:00
Izorkin
6ae0c68216
unit: 1.12.0 -> 1.13.0
2019-11-24 12:46:36 +03:00
Frederik Rietdijk
1d18c5a0fe
Merge staging-next into staging
2019-11-24 10:13:31 +01:00
Milan Pässler
7e0127e1ca
tree-wide: inherit yarn2nix from yarn2nix-moretea
2019-11-24 01:04:26 +01:00
Janne Heß
576a82d6c2
rainloop-standard: Fix pname and license ( #73963 )
...
- Switched to pname
- Fixed the double dash in pname
- Changed license to unfree (they don't allow redistribution)
Fixes #73956
2019-11-23 15:36:28 +01:00
Maximilian Bosch
ba307dd176
codimd: fix build
...
This package broke during the update of `nodejs-10_x` to `v10.17.0`[1]
since `node-gyp` got updated from `3.8.0` to `5.0.3` during the NPM
update to `6.10.2`[2] which is bundled in the `nodejs` release tarball.
This `node-gyp`-version is used by the build script for `codimd` to
build several dependencies such as `node-sqlite3`. Older `node-gyp`
versions expected source headers for the compilation in `~/.node-gyp`,
with `node-gyp@5.0.3`, headers are declared by using the `--nodedir`
option.
[1] 7785f49b23
[2] e2291cf805
2019-11-23 00:40:58 +01:00