Commit graph

20659 commits

Author SHA1 Message Date
adam
70f67a9299 py-pylint-django: updated to 2.4.0
Version 2.4.0
- Allowed configuration of the Django settings module to be used via a
  commandline argument
- If Django settings are not specified via a commandline argument or environment
  variable, an error is issued but defaults are loaded from Django, removing the
  fatal error behaviour.
- Fixed tests to work with pylint>2.6
- Fixed ``AttributeError: 'Subscript' object has no attribute 'name'`` error.
- Pin Faker version to Prevent Asteroid Crash
- Remove Python 3.5 Support (EOL since Sept 2020 and Faker requires 3.6 anyway)
- Fixed reverse manager ``update_or_create`` calls
2021-01-07 22:03:13 +00:00
kleink
dba4d7503c py-flask-cors: Update to 3.0.10.
## 3.0.10

* Adds support for PPC64 and ARM64 builds for distribution.
  Thanks @sreekanth370
* Fixes warnings for invalid escape sequences Thanks @tirkarthi
2021-01-06 18:53:43 +00:00
adam
9fef728044 py-django3: updated to 3.1.5
Django 3.1.5 fixes several bugs in 3.1.4.

Fixed __isnull=True lookup on key transforms for JSONField with Oracle and SQLite.
Fixed a bug in Django 3.1 that caused a crash when processing middlewares in an async context with a middleware that raises a MiddlewareNotUsed exception.
Fixed a regression in Django 3.1 that caused the incorrect prefixing of STATIC_URL and MEDIA_URL settings, by the server-provided value of SCRIPT_NAME (or / if not set), when set to a URL specifying the protocol but without a top-level domain, e.g. http://myhost/
2021-01-06 12:17:15 +00:00
adam
f16b5cb630 py-sanic: updated to 20.12.1
Version 20.12.1

Features
- Add disable app registry
2021-01-06 12:11:57 +00:00
triaxx
f89e991fae firefox: Fix nss dependency 2021-01-06 11:21:40 +00:00
taca
1f2ba7d685 www/contao35: allow build on php74
Contao 35 should be work on PHP 7.4.
2021-01-05 12:51:08 +00:00
taca
1d4d3b7af6 www/moodle: allow build on php74
moodle supports not only PHP 7.3 but 7.4.
2021-01-05 12:49:44 +00:00
wiz
0809dde7a9 py-aiohttp: remove upper bound in dependency 2021-01-04 18:57:47 +00:00
adam
51c6c71079 py-sanic: updated to 20.12.0
Version 20.12.0

Features

* Static route more verbose if file not found
* Fix static routes registration on a blueprint
* Add Python 3.9 support
* Sanic CLI upgrade
* Update aiofile version requirements
* Update multidict version requirements
* Add py.typed file
* Speed optimization in request handler
* Add app registry and Sanic class level app retrieval

Bugfixes

* Fix Chunked Transport-Encoding in ASGI streaming
response

Deprecations and Removals

* Cleanup and remove deprecated code

Developer infrastructure

* Fix load module test
* Transition Travis from .org to .com
* Update tox requirements

Improved Documentation

* Documentation improvements
* Remove duplicate contents in testing.rst
* Fix typo in routing.rst
2021-01-03 22:41:44 +00:00
taca
190ba23c73 Remove reference to php72. 2021-01-03 15:26:11 +00:00
adam
652d523eae py-respx: added version 0.16.3
RESPX is a simple, yet powerful, utility for mocking out the HTTPX, and HTTP Core, libraries.
2021-01-03 11:00:01 +00:00
adam
ba522cad19 py-uvicorn: updated to 0.13.3
0.13.3

Fixed

Prevent swallowing of return codes from subprocess when running with Gunicorn by properly resetting signals.
Tweak detection of app factories to be more robust. A warning is now logged when passing a factory without the --factory flag.
Properly clean tasks when handshake is aborted when running with --ws websockets.
2021-01-03 10:06:54 +00:00
wiz
72f11c3625 libmicrohttpd: add test status 2021-01-03 09:52:33 +00:00
wiz
1895b6dd26 libmicrohttpd: update to 0.9.72.
Mon 28 Dec 2020 21:36:00 MSK
    Releasing libmicrohttpd 0.9.72. -EG

Mon 28 Dec 2020 09:37:00 MSK
    Completely reworked and rewritten TCP_CORK, TCP_NOPUSH, TCP_NODELAY and
    MSG_MORE handling. Reduced number of sys-calls, fixed portability for
    FreeBSD, OpenBSD, NetBSD, Darwin, W32, Solaris.
    Removed usage of gnutls_record_cork() as it fully blocks stream until
    final block is ready.
    Fixed compatibility with C90 compilers.
    Really started using sendmsg() for header + body combined single-call
    response sending.
    Fixed sending of response body by sendmsg() when it shouldn't be sent,
    like responses for HEAD requests.
    Improved error handling for gnutls_record_send().
    Updated W32 resources for .DLLs.
    Fixed building with various disabled features (like messages, HTTPS,
    http-upgrade, authorization etc.)
    Fixed possible SIGPIPE generation when sendfile() is used (it was always
    possible on Linux that sendfile() produce SIGPIPE, now it's fixed).
    Several compiler warnings muted and/or fixed in the lib code and in
    the examples. -EG

Sun 01 Nov 2020 17:17:00 MSK
    Fixed conflict with system CPU_COUNT macro.
    Minor improvements of error reporting in MHD daemon.
    Fixed FTBFS with GnuTLS versions before 3.1.9
    Fixed test_add_conn for multi-CPU machines.
    Fixed analyzer warnings.
    Fixed use-after-free and resources leaks for upgraded connections
    in TLS mode with thread-per-connection. -EG

Sun 25 Oct 2020 19:31:00 MSK
    Fixed epoll mode without listening socket.
    Minor improvements of thread sync.
    Fixed broken sendfile on FreeBSD.
    Fixed broken MHD with thread-pool and without listening socket.
    Added four tests for MHD_add_connection().
    Fixed several resources leaks in error handlers.
    Re-implemented scheme of handling of externally added connections,
    fixed thread-safety. -EG

Wed 21 Oct 2020 10:00:58 AM CEST
    Corking should be OFF when sending the footer (#6610). -AP/CG

Wed 07 Oct 2020 11:07:00 MSK
    W32 default target version changed to Vista, XP is still supported.
    Minor fixes and additional asserts for memorypool.
    IPv6 tests are not used if IPv6 is disabled at run-time. -EG

Sun 27 Sep 2020 10:08:03 PM CEST
    Fixed incorrect triggering of epoll edge polling for
    "upgraded" TLS connections.  Fixed a few cases where
    gnutls_record_uncork() return value was still ignored,
    possibly causing buffer to not be flushed correctly. -CG

Sat 26 Sep 2020 08:18:02 PM CEST
    Make MHD_USE_NO_LISTEN_SOCKET work in conjunction with
    MHD internal threads. -CG/DE

Thu 24 Sep 2020 16:55:00 MSK
    Fixed compiler warnings on W32.
    Minor optimisation of MHD_YES/MHD_NO internal usage.
    Refactor and cleanup of internal debugging macros.
    Updated HTTP status codes, header names and methods from
    the registries.
    Fixed portability of test_upgrade_large.
    Minor testsuite fixes.
    Restored parallel build of libmicrohttpd (except tests). -EG

Fri 11 Sep 2020 10:08:22 PM CEST
    Fix crash problem in PostProcessor reported by MD. -CG
    Fix GnuTLS configure test to check for gnutls_record_uncork. -CG

Wed 19 Aug 2020 09:40:39 AM CEST
    Add logic to check on MHD_pool_reallocate() failure reported on the
    mailinglist (will NOT yet fix the issue). -CG

Sun 26 Jul 2020 01:56:54 PM CEST
    Add MHD_create_response_from_pipe() to allow creating a response based
    on data read from a pipe. -CG

Fri Jul 10 15:04:51 CEST 2020
    Fixed Postprocessor URL-encoded parsing if '%' fell on boundary. -CG/MD

Thu 02 Jul 2020 09:56:23 PM CEST
    Fixed return type of MHD_queue_basic_auth_fail_response. -CA/CG
2021-01-03 09:44:30 +00:00
taca
18ee8f3e95 www/php-ja-wordpress: update to 5.6
Most of changes are the same as wordpress package:
http://mail-index.netbsd.org/pkgsrc-changes/2020/12/11/msg225396.html
2021-01-03 08:41:15 +00:00
taca
dc41888db5 www/php-uploadprogress: update to 1.1.3
pkgsrc change:

* add LICENSE.
* remove restriction to PHP versions.


1.1.3 (2020-01-28)

- Improved documentation and examples included in the release package

1.1.2 (2020-01-26)

- PHP 8 compatibility; this now builds on PHP 5, PHP 7, and PHP 8

1.1.1  (2020-01-26)

	- Mark maximum PHP version as 8.0.0; this will not build on PHP 8

1.1.0  (2020-01-26)

	- PHP 7 compatibility
2021-01-03 07:42:39 +00:00
taca
fbd69f5490 www/php-apcu: update to 5.1.19
pkgsrc change: Switch to use PHP_VERSIONS_INCOMPATIBLE.


5.1.19 (2020-10-05)

- Fixed apcu_store() with integer keys (#388).
- Made apc.use_request_time=0 the default (#391).
- Made apcu compatible with PHP 8.0.
2021-01-03 07:40:24 +00:00
taca
83ff6c16ee www/php-http3: update to 3.2.1
Update php-http3 to 3.2.1.

pkgsrc change:
* Update supported PHP versions.
* Add a few dependency.

3.2.1, 2019-06-07

* Fixed gh-issue #88: Unable to run test suite (Remi Collet)
* Fixed gh-issue #86: test failure with curl 7.64
* Fixed gh-issue #85: [-Wformat-extra-args] build warnings
* Fixed gh-issue #84: segfault and build failure since curl 7.62
* Fixed gh-issue #82: Test harness improvements (Chris Wright)
* Fixed gh-issue #64: compress and connecttimeout interfere with
  low_speed_limit (@rcanavan)
* Fixed http\QueryString::getGlobalInstance()
* Fixed missing 2nd reflection argument info of http\Client::notify()
* Fixed PHP-7.4 compatibility

3.2.0, 2018-07-19

* PHP-7.2 compatibility
* Fixed gh-issue #73: build fails with libidn and libidn2
* Added brotli compression support
* Implemented gh-issue #58: Notify observers before any request is built

3.2.0RC1, 2018-04-09

* PHP-7.2 compatibility
* Fixed gh-issue #73: build fails with libidn and libidn2
* Added brotli compression support
* Implemented gh-issue #58: Notify observers before any request is built

3.1.0, 2016-12-12

* Added http\Client\Curl\User interface for userland event loops
* Added http\Url::IGNORE_ERRORS, http\Url::SILENT_ERRORS and http\Url::STDFLAGS
* Added http\Client::setDebug(callable $debug)
* Added http\Client\Curl\FEATURES constants and namespace
* Added http\Client\Curl\VERSIONS constants and namespace
* Added share_cookies and share_ssl (libcurl >= 7.23.0) options to
  http\Client::configure()
* http\Client uses curl_share handles to properly share cookies and SSL/TLS
  sessions between requests
* Improved configure checks for default CA bundles
* Improved negotiation precision
* Fixed regression introduced by http\Params::PARSE_RFC5987: negotiation
  using the params parser would receive param keys without the trailing
  asterisk, stripped by http\Params::PARSE_RFC5987.
* Fix gh-issue #50: http\Client::dequeue() within http\Client::setDebug()
  causes segfault (Mike, Maik Wagner)
* Fix gh-issue #47: http\Url: Null pointer deref in sanitize_value() (Mike,
  @rc0r)
* Fix gh-issue #45: HTTP/2 response message parsing broken with libcurl >=
  7.49.1 (Mike)
* Fix gh-issue #43: Joining query with empty original variable in query
  (Mike, Sander Backus)
* Fix gh-issue #42: fatal error when using punycode in URLs (Mike, Sebastian
  Thielen)
* Fix gh-issue #41: Use curl_version_info_data.features when initializing
  options (Mike)
* Fix gh-issue #40: determinde the SSL backend used by curl at runtime
  (Mike, @rcanavan)
* Fix gh-issue #39: Notice: http\Client::enqueue(): Could not set option
  proxy_service_name (Mike, @rcanavan)
* Fix gh-issue #38: Persistent curl handles: error code not properly reset
  (Mike, @afflerbach)
* Fix gh-issue #36: Unexpected cookies sent if persistent_handle_id is used
  (Mike, @rcanavan, @afflerbach)
* Fix gh-issue #34: allow setting multiple headers with the same name (Mike,
  @rcanavan)
* Fix gh-issue #33: allow setting prodyhost request option to NULL (Mike,
  @rcanavan)
* Fix gh-issue #31: add/improve configure checks for default CA bundle/path
  (Mike, @rcanavan)
2021-01-03 07:00:04 +00:00
taca
04fa13bb46 www/php-propro2: udpate to 2.1.0
Update php-propro2 package to 2.1.0.

pkgsrc change: Update supported PHP versions.


2.1.0 (2018-04-09)

* PHP-7.2 compatibility

2.0.1 (2016-05-25)

* Fixed leak in write_dimension
2021-01-03 06:48:05 +00:00
nia
ab6f4efe89 mono-xsp: Update to 4.7.1
Unknown changes, but fixes build with newer mono versions.
2021-01-02 15:13:54 +00:00
nia
2345d20159 ap-mono: Add LICENSE 2021-01-02 15:08:00 +00:00
nia
d912e60978 ap-mono: Update to 3.13
Unknown changes.
2021-01-02 15:00:23 +00:00
ryoon
a8a7146ece firefox78: Fix build with devel/cbindgen-0.16.0 2021-01-01 12:54:13 +00:00
ryoon
4d1da0173e firefox-l10n: Update to 84.0.1
* Sync with www/firefox-84.0.1.
2021-01-01 12:53:03 +00:00
ryoon
9f0f58189e firefox: Update to 84.0.1
Changelog:
Fixed

  * Fixed problems loading secure websites and crashes for users with certain
    third-party PKCS11 modules and smartcards installed (bug 1682881).

  * Fixed slower than expected performance and flickering on Canvas elements
    for some Windows users (bug 1683116).

  * Fixed a bug causing some Unity JS games to not load on Apple Silicon
    devices due to improper detection of the OS version (bug 1680516).

  * Fixed crashes caused by various third-party antivirus software.
2021-01-01 12:52:16 +00:00
ryoon
bfac3f1b42 *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
ryoon
a8e8c5c75e *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
nia
2c8d590893 Normalize handling packages that require 64-bit atomic ops. 2020-12-31 20:04:11 +00:00
schmonz
e262d9f1c6 Update to 1.4.58. From the changelog:
- [tests] collect code for "die-at-end" tests
- [tests] remove FastCGI test dependency on libfcgi
- [core] prefer IPv6+IPv4 func vs IPv4-specific func
- [tests] remove FastCGI test dependency on PHP
- [core] reuse large mem chunks (fix mem usage) (fixes #3033)
- [core] add comment for FastCGI mem use in hctx→rb (#3033)
- [mod_proxy] fix sending of initial reqbody chunked
- [multiple] fdevent_waitpid() wrapper
- [core] sys-time.h – localtime_r,gmtime_r macros
- [core] http_date.[ch] encapsulate HTTP-date parse
- [core] specialized strptime() for HTTP date fmts
- [multiple] employ http_date.h, sys-time.h
- [core] http_date_timegm() (portable timegm())
- buffer_append_path_len() to join paths
- [core] inet_ntop_cache -> sock_addr_cache
- [tests] slight speed up checking for server ready
- [tests] load required modules in alt .conf tests
- [multiple] etag.[ch] -> http_etag.[ch]; better imp
- [core] fix crash after specific err in config file
- [core] fix bug in FastCGI uploads (#3033)
- [tests] OpenBSD crypt() support limited to bcrypt
- [core] http_response_match_if_range()
- [mod_webdav] typedef off_t loff_t for FreeBSD
- [multiple] chunkqueue_write_chunk()
- [build] add GNUMAKEFLAGS=—no-print-directory
- [tests] consolidate some tests/ content
- [core] fix bug in read retry found by coverity

Updating during the freeze for (also from the changelog) "important
changes: bugfixes, portability".
2020-12-28 09:35:04 +00:00
taca
1d4c0b0100 Remove extra RUBY_VERSIONS_ACCEPTED. 2020-12-28 08:20:47 +00:00
nia
a3d92cd536 Remove now-actively-harmful 32-bit ARM hack from Mozilla packages. 2020-12-26 10:35:16 +00:00
mef
706c69f130 (www/ocsigen-start) Add devel/ocaml-rresult/buildlink3.mk 2020-12-26 08:46:33 +00:00
nia
604bcad1f0 py-pelican: Mark incompatible with Python 3.6 2020-12-25 22:07:24 +00:00
nia
985efa35f3 firefox52: Make py-expat dependency explicit 2020-12-23 08:20:04 +00:00
nia
46a3832d83 seamonkey: Make py-expat dependency explicit 2020-12-23 08:19:30 +00:00
nia
7874d33822 firefox52: build fix: make Python requirements explicit
Likely this is needed because gtk2 no longer provides python2.
2020-12-22 14:34:11 +00:00
nia
4b2575cb69 seamonkey: build fix: make Python requirements explicit
Likely this is needed because gtk2 no longer provides python2.
2020-12-22 13:34:25 +00:00
adam
e8e624730f py-uvicorn: updated to 0.13.2
0.13.2:
Fixed
* Log full exception traceback in case of invalid HTTP request.
2020-12-21 09:39:35 +00:00
taca
f3d3191537 www/drupal7: update to 7.75
Drupal 7.75, 2020-11-26
-----------------------
- Fixed security issues:
   - SA-CORE-2020-013

Drupal 7.74, 2020-11-17
-----------------------
- Fixed security issues:
   - SA-CORE-2020-012
2020-12-19 16:44:35 +00:00
leot
b648ba4c21 py-wsproto: Update to 1.0.0
Changes:
1.0.0 (2020-11-22)
------------------
- Prevent invalid window bit sizes.
- Added support for Python 3.8 and 3.9.
2020-12-19 11:50:04 +00:00
nia
a17ef20781 links: Update to 2.21
=== RELEASE 2.21 ===

Sun Aug  2 15:26:02 cet 2020 mikulas:

	Workaround for a crash on OS/2 caused by gcc3 bug

Thu Apr 16 18:17:39 CEST 2020 Emir Yasin SARI <bitigchi@me.com>:

	Updated Turkish translation

Wed Jan  8 18:25:17 CET 2020 mikulas:

	Fix a bug that textarea was broken if it immediatelly followed a list

Sun Nov  3 09:33:08 CET 2019 pluvano <me@pluvano.com>:

	Delete the 4-pixel border in Xwindow

Tue Oct  8 20:26:47 CEST 2019 mikulas:

	Fix a bug that an image would not be properly resized sometimes
2020-12-19 11:14:29 +00:00
nia
3289d5696f fcgi: Update HOMEPAGE 2020-12-19 10:48:13 +00:00
nia
b3ea104799 firefox78-l10n: Sync with firefox78 2020-12-17 13:25:31 +00:00
nia
9670d97b7e firefox78: Update to 78.6.0
Security Vulnerabilities fixed in Firefox ESR 78.6

#CVE-2020-16042: Operations on a BigInt could have caused uninitialized
memory to be exposed

#CVE-2020-26971: Heap buffer overflow in WebGL

#CVE-2020-26973: CSS Sanitizer performed incorrect sanitization

#CVE-2020-26974: Incorrect cast of StyleGenericFlexBasis resulted in a heap
use-after-free

#CVE-2020-26978: Internal network hosts could have been probed by a
malicious webpage

#CVE-2020-35111: The proxy.onRequest API did not catch view-source URLs

#CVE-2020-35112: Opening an extension-less download may have inadvertently
launched an executable instead

#CVE-2020-35113: Memory safety bugs fixed in Firefox 84 and Firefox ESR 78.6
2020-12-17 13:24:30 +00:00
schmonz
d9e64ef31e Update to 1.4.57. From the changelog:
- [core] attempt to quiet some coverity warnings
- [mod_webdav] compile fix for Mac OSX/11
- [core] handle U+00A0 in config parser
- [core] fix lighttpd -1 one-shot with pipes
- [core] quiet start/shutdown trace in one-shot mode
- [core] allow keep-alives in one-shot mode (#3042)
- [mod_webdav] define _ATFILE_SOURCE if AT_FDCWD
- [core] setsockopt IPV6_V6ONLY if server.v4mapped
- [build] fix meson.build when building all TLS mods
- [core] prefer inet_aton() over inet_addr()
- [build] fix SCons build when building all TLS mods
- [core] add missing mod_wolfssl to ssl compat list
- [mod_openssl] remove ancient preprocessor logic
- [core] SHA512_Init, SHA512_Update, SHA512_Final
- [mod_wolfssl] add complex preproc logic for SNI
- [core] wrap a macro value with parens
- [core] fix handling chunked response from backend (fixes #3044)
- [core] always set file.fd = -1 on FILE_CHUNK reset (fixes #3044)
- [core] skip some trace if backend Upgrade (#3044)
- [TLS] cert-staple.sh POSIX sh compat (fixes #3043)
- [core] portability fix if st_mtime not defined
- [mod_nss] portability fix
- [core] warn if mod_authn_file needed in conf
- [core] fix chunked decoding from backend (fixes #3044)
- [core] reject excess data after chunked encoding (#3046)
- [core] track chunked encoding state from backend (fixes #3046)
- [core] li_restricted_strtoint64()
- [core] track Content-Length from backend (fixes #3046)
- [core] enhance config parsing debugging (#3047)
- [core] reorder srv->config_context to match ndx (fixes #3047)
- [mod_proxy] proxy.header = ("force-http10" => ...)
- [mod_authn_ldap] fix crash (fixes #3048)
- [mod_authn_ldap, mod_vhostdb_ldap] default cafile
- [core] fix array_copy_array() sorted[]
- [multiple] replace fall through comment with attr
- [core] fix crash printing trace if backend is down
- [core] fix decoding chunked from backend (fixes #3049)
- [core] attempt to quiet some coverity warnings
2020-12-17 10:38:13 +00:00
ryoon
82d8bd7e7b firefox-l10n: Update to 84.0
* Sync with www/firefox-84.0.
2020-12-17 09:54:09 +00:00
ryoon
4d83afc83d firefox: Update to 84.0
Changelog:
New

  * Native support for macOS devices built with Apple Silicon CPUs brings
    dramatic performance improvements over the non-native build that was
    shipped in Firefox 83: Firefox launches over 2.5 times faster and web apps
    are now twice as responsive (per the SpeedoMeter 2.0 test). If you are on a
    new Apple device, follow these steps to upgrade to the latest Firefox.

  * WebRender rolls out to MacOS Big Sur, Windows devices with Intel Gen 6
    GPUs, and Intel laptops running Windows 7 and 8. Additionally we'll ship an
    accelerated rendering pipeline for Linux/GNOME/X11 users for the first
    time, ever!

  * Firefox now uses more modern techniques for allocating shared memory on
    Linux, improving performance and increasing compatibility with Docker.

  * Firefox 84 is the final release to support Adobe Flash.


Fixed

  * Various security fixes

#CVE-2020-16042: Operations on a BigInt could have caused uninitialized memory
to be exposed
#CVE-2020-26971: Heap buffer overflow in WebGL
#CVE-2020-26972: Use-After-Free in WebGL
#CVE-2020-26973: CSS Sanitizer performed incorrect sanitization
#CVE-2020-26974: Incorrect cast of StyleGenericFlexBasis resulted in a heap
use-after-free
#CVE-2020-26975: Malicious applications on Android could have induced Firefox
for Android into sending arbitrary attacker-specified headers
#CVE-2020-26976: HTTPS pages could have been intercepted by a registered
service worker when they should not have been
#CVE-2020-26977: URL spoofing via unresponsive port in Firefox for Android
#CVE-2020-26978: Internal network hosts could have been probed by a malicious
webpage
#CVE-2020-26979: When entering an address in the address or search bars, a
website could have redirected the user before they were navigated to the
intended url
#CVE-2020-35111: The proxy.onRequest API did not catch view-source URLs
#CVE-2020-35112: Opening an extension-less download may have inadvertently
launched an executable instead
#CVE-2020-35113: Memory safety bugs fixed in Firefox 84 and Firefox ESR 78.6
2020-12-17 09:53:15 +00:00
otis
a1f519f01b www/nginx-devel: Update to 1.19.6
Changes with nginx 1.19.6                                        15 Dec 2020

   *) Bugfix: "no live upstreams" errors if a "server" inside "upstream"
      block was marked as "down".

   *) Bugfix: a segmentation fault might occur in a worker process if HTTPS
      was used; the bug had appeared in 1.19.5.

   *) Bugfix: nginx returned the 400 response on requests like
      "GET http://example.com?args HTTP/1.0".

   *) Bugfix: in the ngx_http_flv_module and ngx_http_mp4_module.

And while here, also update naxsi to 1.3.

Changes for naxsi 1.3:
   *) Fixed regression on FILE_EXT confusion

   *) Documented id 19 and 20 to rules
2020-12-16 20:33:55 +00:00
otis
f97376f828 nginx: Update naxsi to 1.3
Changes for naxsi 1.3:
  - Fixed regression on FILE_EXT confusion
  - Documented id 19 and 20 to rules
2020-12-16 20:32:01 +00:00
ryoon
256b6f0d89 php-nextcloud: Update to 20.0.4
Changelog:
Version 20.0.4 December 17 2020

Changes

  * Avoid dashboard crash when accessibility app is not installed (server#
    24636)
  * Bump ini from 1.3.5 to 1.3.7 (server#24649)
  * Handle owncloud migration to latest release (server#24653)
  * Use string for storing a OCM remote id (server#24654)
  * Fix MySQL database size calculation (serverinfo#262)
  * Bump cypress-io/github-action@v2 (viewer#722)
  * Fix] sidebar opening animation (viewer#723)
  * Fix not.exist cypress and TESTING checks (viewer#725)

Note: the main improvement in this very small release is the migration support.


Version 20.0.3 December 10 2020

Changes

  * Check quota of subdirectories when uploading to them (server#24181)
  * CircleId too short in some request (server#24196)
  * Missing level in ScopedPsrLogger (server#24212)
  * Fix nextcloud logo in email notifications misalignment (server#24228)
  * Allow selecting multiple columns with SELECT DISTINCT (server#24230)
  * Use file name instead of path in 'not allowed to share' message (server#
    24231)
  * Fix setting images through occ for theming (server#24232)
  * Use regex when searching on single file shares (server#24239)
  * Harden EncryptionLegacyCipher a bit (server#24249)
  * Update ScanLegacyFormat.php (server#24258)
  * Simple typo in comments (server#24259)
  * Use correct year for generated birthdays events (server#24263)
  * Delete files that exceed trashbin size immediately (server#24297)
  * Update sabre/xml to fix XML parsing errors (server#24311)
  * Only check path for being accessible when the storage is a object home
    (server#24325)
  * Avoid empty null default with value that will be inserted anyways (server#
    24333)
  * Fix contacts menu position and show uid as a tooltip (server#24342)
  * Fix the config key on the sharing expire checkbox (server#24346)
  * Set the display name of federated sharees from addressbook (server#24353)
  * Catch storage not available in versions expire command (server#24367)
  * Use proper bundles for files client and fileinfo (server#24377)
  * Properly encode path when fetching inherited shares (server#24387)
  * Formatting remote sharer should take protocol, path into account (server#
    24391)
  * Make sure we add new line between vcf groups exports (server#24443)
  * Fix public calendars shared to circles (server#24446)
  * Store scss variables under a different prefix for each theming config
    version (server#24453)
  * External storages: save group ids not display names in configuration
    (server#24455)
  * Use correct l10n source in files_sharing JS code (server#24462)
  * Set frame-ancestors to none if none are filled (server#24477)
  * Move the password fiels of chaging passwords to post (server#24478)
  * Move the global password for files external to post (server#24479)
  * Only attempt to move to trash if a file is not in appdata (server#24483)
  * Fix loading mtime of new file in conflict dialog in firefox (server#24491)
  * Harden setup check for TLS version if host is not reachable (server#24502)
  * Fix file size computation on 32bit platforms (server#24509)
  * Allow subscription to indicate that a userlimit is reached (server#24511)
  * Set mountid for personal external storage mounts (server#24513)
  * Only execute plain mimetype check for directories and do the fallback…
    (server#24517)
  * Fix vsprint parameter (server#24527)
  * Replace abandoned log normalizer with our fork (server#24530)
  * Add icon to user limit notification (server#24531)
  * Also run repair steps when encryption is disabled but a legacy key is
    present (server#24532)
  * [3rdparty][security] Archive TAR to 1.4.11 (server#24534)
  * Generate a new session id if the decrypting the session data fails (server#
    24553)
  * Revert "Do not read certificate bundle from data dir by default" (server#
    24556)
  * Dont use system composer for autoload checker (server#24557)
  * Remember me is not an app_password (server#24563)
  * Do not load nonexisting setup.js (server#24582)
  * Update sabre/xml to fix XML parsing errors (3rdparty#529)
  * Use composer v1 on CI (3rdparty#532)
  * Bump pear/archive_tar from 1.4.9 to 1.4.11 (3rdparty#536)
  * Replace abandoned log normalizer with our fork (3rdparty#543)
  * Allow nullable values as subject params (activity#535)
  * Don't log when unknown array is null (notifications#803)
  * Feat/virtual grid (photos#550)
  * Make sure we have a string to localecompare to (photos#583)
  * Always get recommendations for dashboard if enabled (recommendations#336)
  * Properly fetch oracle database information (serverinfo#258)
  * Also register to urlChanged event to update RichWorkspace (text#1181)
  * Move away from GET (text#1214)
2020-12-16 13:53:43 +00:00