summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2016-07-21Updated p5-CGI to 4.32.wiz2-7/+7
4.32 2016-07-19 [ DOCUMENTATION ] - make perldoc CGI object consistent (GH #205) - clarify reason for absolute URLs (GH #206) [ INTERNALS ] - tweak dependency defs in Makefile.PL (GH #207, GH #208) - (thanks to karenetheridge and kentfredric)
2016-07-19Updated lighttpd to 1.4.40.wiz4-45/+7
- 1.4.40 * [mod_ssi] enhance support for ssi vars (thx fbrosson) * add handling for lua 5.2 and 5.3 (fixes #2674) * use libmemcached instead of deprecated libmemcache * add force_assert for more allocation results * [mod_cgi] use MAP_PRIVATE to mmap temporary file (fixes #2715) * [core] do not send SIGHUP to process group unless server.max-workers is used (fixes #2711) * [mod_cgi] edge case chdir "/" when docroot "/" (fixes #2460) * [mod_cgi] issue trace and exit if execve() fails (closes #2302) * [configparser] don't continue after parse error (fixes #2717) * [core] never evaluate else branches until the previous branches are ready (fixes #2598) * [core] fix conditional cache handling * [core] improve conditional enabling (thx Gwenlliana, #2598) * [mod_compress] case-insensitive content-codings (fixes #2645) * [plugins] don't include dlfcn.h if not needed (fixes #2548) * [mod_fastcgi] 404 for X-Sendfile file not found (fixes #2474) * [mod_cgi] send 500 if CGI ends and there is no response (fixes #2542) * [mod_cgi] consolidate CGI cleanup code * [mod_cgi] simplify mod_cgi_handle_subrequest() * [mod_cgi] kill CGI if fail to write request body * [mod_proxy] use case-insensitive comparision to filter headers, send Connection: Close to backend (fixes #421) * [mod_dirlisting] dir-listing.hide-dotfiles = "enabled" by default (fixes #1081) * [mod_secdownload] fix buffer overflow in secdl_verify_mac (reported by Fortify Open Review Project) * [mod_fastcgi,mod_scgi] fix leaking file-descriptor when backend spawning failed (reported by Fortify Open Review Project) * [core] improve array API to prevent memory leaks * [core] refactor array search; raise array size limit to SSIZE_MAX * [core] fix memory leak in configparser_merge_data * [core] provide array_extract_element and use it * [core] configparser: error on duplicate keys in array merge (fixes #2685) * [core] more careful parse of $SERVER["socket"] config str (prepare #2204) * [core] accept $SERVER["socket"] without port, use server.port as fallback (fixes #2204) * [mod_magnet] define lua_pushglobaltable (for lua5.1) and use it (fixes #2719) * [ssl] support disabling ssl.verifyclient.activate in SNI callback (fixes #2531) * restart (some) syscalls after SIGCHLD interrupted them; should fix LDAP problems (fixes #2464) * [core] log remote address on request timeouts (fixes #652) * [autobuild] use AC_CANONICAL_HOST instead of AC_CANONICAL_TARGET (fixes #1866) * [core] fix request_start in keep-alive requests to mark time when received first byte (fixes #2412) * [core] truncate pidfile on exit (fixes #2695) * consistent inclusion of config.h at top of files (fixes #2073) * [core] add generic vector implementation * [core] replace array weakref with vector * [base64] fix crash due to broken force_assert * [unittests] add test_buffer and test_base64 unit tests * [buffer] refactor buffer_path_simplify (fixes #2560) * validate return values from strtol, strtoul (fixes #2564) * [mod_ssi] Add SSI vars SCRIPT_{URI,URL} and REQUEST_SCHEME (fixes #2721) * [config] warn if server.upload-dirs has non-existent dirs (fixes #2508) * [mod_proxy] accept LF delimited headers, not just CRLF (fixes #2594) * [core] wait for grandchild to be ready when daemonizing (fixes #2712, thx pasdVn) * [core] respond 411 Length Required if request has Transfer-Encoding: chunked (fixes #631) * [core] fixed the loading for default modules if they are specified explicitly * [core] lighttpd -tt performs preflight startup checks (fixes #411) * [stat] mimetype.xattr-name global config option (fixes #2631) * [mod_webdav] allow Depth: Infinity lock on file (fixes #2296) * [mod_status] use snprintf() instead of sprintf() * pass buf size to li_tohex() * use li_[iu]tostrn() instead of li_[iu]tostr() * [stream] fstat() after open() to obtain file size * [core] clean up srv before exiting for lighttpd -[vVh] * [mod_fastcgi,mod_scgi] check for spawning on same unix socket (fixes #319) * [mod_cgi] always set QUERY_STRING (fixes #1339) * [mod_auth] send charset="UTF-8" in WWW-Authenticate (fixes #1468) * [mod_magnet] rename var for clarity (fixes #1483) * [mod_extforward] reset cond_cache for scheme (fixes #1499) * [mod_webdav] readdir POSIX compat (fixes #1826) * [mod_expire] reset caching response headers for error docs (fixes #1919) * [mod_status] page refresh option (fixes #2170) * [mod_status] table w/ count of con states (fixes #2427) * [mod_dirlisting] class for dir <tr> (fixes #2304) * [core] define __STDC_WANT_LIB_EXT1__ (fixes #2722) * [core] setrlimit max-fds <= rlim_max for non-root (fixes #2723) * [mod_ssi] config ssi.conditional-requests * [mod_ssi] config ssi.exec (fixes #2051) * [mod_redirect,mod_rewrite] short-circuit if blank replacement (fixes #2085) * [mod_indexfile] save physical path to env (fixes #448, #892) * [core] open fd when appending file to cq (fixes #2655) * [config] server.listen-backlog option (fixes #1825, #2116) * [core] retry tempdirs on partial write, ENOSPC (fixes #2588) * [core] compile with upcoming openssl 1.1.0 release (fixes #2727) * [core] improve dynamic handler control flow logic * [core] defer reading request body until handle subrequest (fixes #2541) * [core] always poll for client POLLHUP/POLLERR events (fixes #399) * [mod_fastcgi,mod_scgi,mod_proxy] handlers can read response before sending req body (fixes #131, #2566) * [mod_cgi] asynchronous send of request body to CGI * [core] compile with upcoming openssl 1.1.0 release (fixes #2727) * [core] set REDIRECT_STATUS to error_handler_saved_status (fixes #1828) * [core] server.error-handler new directive for error pages (fixes #2702) * [core] support IPv6 in $HTTP["remote-ip"] CIDR cond match (fixes #2706) * [core] http_response_send_file() shared code (#2017) * [mod_fastcgi] use http_response_xsendfile() (fixes #799, fixes #851, fixes #2017, fixes #2076) * [mod_scgi] X-Sendfile feature (fixes #2253) * [mod_cgi] X-Sendfile feature (fixes #2313) * [mod_webdav] lseek,read if fs can not mmap (#2666, fixes #962) * [mod_compress] use mmap and trap SIGBUS (#2666, fixes #1879) * fallback to lseek()/read() if mmap() fails (#fixes 2666) * [mod_auth] skip blank lines and comment lines (fixes #2327) * [core] fallback to write if sendfile not supported (fixes #471, #987) * [core] preserve PATH_INFO case on case-insensitive fs (fixes #406) * [mod_ssi, mod_cml] set DOCUMENT_ROOT to basedir (fixes #2383) * [core] cmd line opt to shutdown after idle time limit (fixes #2696) * [core] lighttpd -1 handles single request on stdin socket (fixes #1584) * [mod_fastcgi,mod_scgi] IPv6 support (fixes #2372) * [mod_status] add JSON output option (fixed #2432) * [mod_webdav] map COPY/MOVE Destination to aliases (fixes #1787) * [mod_webdav] improve PROPFIND,PROPPATCH (#1818, #1953) * [core] reset response headers, write_queue for error docs * build with libressl * static build instructions using SCons or make * [mod_auth] preserve WWW-Authenticate for error docs (fixes #2730) * check close() return code after writing to file * adjustments for openssl 1.1.0 pre-release * [config] support include file glob (fixes #1221) * [mod_evasive] 302 redirect option if limit reached (fixes #2199) * [build] enhancements for cross-compiling (fixes #2276) * [mod_accesslog] report aborted con state with %X (fixes #1890) * [mod_ssi] fix SSI statement parser * [mod_ssi] include relative to alias,userdir (fixes #222) * [mod_ssi] add PCRE_* options to constrain regex * [mod_ssi] more flexible quoting (fixes #1768) * [core] wrap IPv6 literal in "[]" in redirect URL * [mod_ssi] fix parse of tag across buf boundary (fixes #2732) * [mod_cgi,mod_scgi] X-Sendfile sets file_started (fixes #2733) * [mod_fastcgi] no chunked response w/ X-Sendfile (fixes #2733) * [config] opts for http header parsing strictness (fixes #551, fixes #1086, fixes #1184, fixes #2143, #2258, #2281, fixes #946, fixes #1330, fixes #602, #1016) * [config] normalize IP strings in lighttpd.conf * [build_cmake] use MODULE on Mac OS X (fixes #1761) * [config] server.bsd-accept-filter option * [mod_webdav] create file w/ LOCK request if ENOENT * [core] buffer large responses to tempfiles (fixes #758, fixes #760, fixes #933, fixes #1387, #1283, fixes #2083) * [core] stream response to client (#949) * [TLS] release openssl buffers as used (fixes #1265, fixes #1283, #881) * [config] config options to stream request/response (#949, #376) * [core] option to stream request body to backend (fixes #376) * [core] option to stream response body to client (fixes #949, #760, #1283, #1387) * drain backend socket/pipe bufs upon FDEVENT_HUP * remove excess calls to joblist_append() * defer choosing "Transfer-Encoding: chunked" * asynchronous, bidirectional streaming options * fix errors detected by Coverity Scan * [cygwin] fix mod_proxy and mod_fastcgi ioctl use * [mod_webdav] remove excess SQL param to UNLOCK * graceful shutdown without unnecessary 1 sec delay * [core] disable Nagle algorithm (TCP_NODELAY) * [core] add declarations to fdevent.h (#2373) * [tests] remove dependency on CGI.pm * [TLS] fix return value checks during cert init * [core] fix server.max-request-size to be precise (fixes #2131) * [mod_webdav] fix proppatch mem leak, other fixes (#fixes 1334, #fixes 2000) * [autobuild] CMake check for struct tm tm_gmtoff (fixes #2014) * [mod_uploadprogress] fix mem leak (#1858) * [core] make server.max-request-size scopeable (fixes #1901) * [mod_fastcgi,mod_scgi] check for spawning on same unix socket (#319) * [mod_accesslog] %a %A %C %D %k %{}t %{}T (fixes #1145, fixes #1415, fixes #2081) * [mod_access] new directive url.access-allow (fixes #1421) * [core] fdevent_libev: update use of ev_timer * [mod_cgi] handle local redirect response (fixes #2108)
2016-07-19Update pear-HTTP_Request2 to 2.3.0.taca2-7/+7
2.3.0. New features: * New observer that can do on-the-fly decoding of compressed responses, see HTTP_Request2_Observer_UncompressingDownload. Thanks to Delian Krustev for initial implementation. * CookieJar can now silently ignore invalid cookies with $jar->ignoreInvalidCookies(true); instead of throwing an exception. See requests #19937 and #20401 * Adapters now dispatch a new 'warning' event, e.g. in case of incomplete response body or broken 'chunked' encoding. Exception was thrown previously by Socket adapter in the latter case, see bug #20228 * Improved security of HTTPS requests in Socket adapter - Use 'tls://' instead of 'ssl://' in connection string to prevent fallback to known insecure versions, use only TLS when enabling crypto via proxy (see bug #20462) - On PHP 5.6+ require using only TLS 1.1 and TLS 1.2 - Do not use insecure ciphers * Improved test suite, network-backed tests now run on Travis CI Changes and fixes: * Curl adapter failed to send PUT request body with 'follow_redirects' on (bug #20440) * Curl adapter supplied invalid cookie domain to CookieJar after redirect (bug #20561) * Curl adapter now properly dispatches events while sending the request * mime_content_type() returning false was handled incorrectly when guessing content-type * Use 'peer_name' and 'verify_peer_name' SSL context options on PHP 5.6+ instead of deprecated 'CN_match' * Public Suffix List updated to current version, its download location changed Note to Composer users: next package version will probably get rid of 'include-path' setting in composer.json favour of using autoloader.
2016-07-19Update typo3_62 package to 6.2.26 (TYPO3 6.2.26 LTS), including securitytaca3-8/+9
fix for XSS. 2016-07-19 d719c97 [RELEASE] Release of TYPO3 6.2.26 (TYPO3 Release Team) 2016-07-19 2bc8727 #76358 [SECURITY] Link fields accept Javascript code when using URI Data Scheme (Valentin Despa) 2016-07-19 485396d #75933 [SECURITY] Prevent persistent username in filesystem (Wouter Wolters) 2016-07-19 cd18fb5 #75740 [SECURITY] SQLi in AuthenticationService (Andreas Fernandez) 2016-07-19 0068e6b #73461 [SECURITY][FEATURE] Disable import module for non admin users (Christian Kuhn) 2016-07-19 d7eafe8 #76922 [SECURITY] Prevent XSS in IRRE elements (Nicole Cordes) 2016-07-19 8051405 #76344 [SECURITY] Escape the link text in EmailViewHelper (Wouter Wolters) 2016-07-19 6cb7aa6 #31244 [SECURITY] Prevent XSS in ContentObjectRenderer (Stefan Neufeind) 2016-07-07 40d771a #73490 [BUGFIX] Field is not added to TCA if part of fieldname exists (Wouter Wolters) 2016-06-30 f24b023 #76881 [TASK] Fix phpdoc of FileRepository (Eric Chavaillaz) 2016-06-13 9014d11 #76617 [BUGFIX] Raise minimum version for typo3/cms-composer-installers (Helmut Hummel) 2016-06-07 13e7a20 #76070 [BUGFIX] Prevent temp file generation in Unit Test (Nicole Cordes) 2016-05-28 6aaed26 #76348 [TASK] Block access to /typo3_src and /typo3/vendor (Stephan Großberndt) 2016-05-28 396e96d #60173 [FOLLOWUP][BUGFIX] Re-enables fileDenyPattern check for admin users (Nicole Cordes) 2016-05-27 cd88856 #60173 [BUGFIX] Re-enables fileDenyPattern check for admin users (Torben Hansen)
2016-07-19Django 1.9.8 fixes a security issue and several bugs in 1.9.7.adam3-11/+9
Unsafe usage of JavaScript’s Element.innerHTML could result in XSS in the admin’s add/change related popup. Element.textContent is now used to prevent execution of the data. The debug view also used innerHTML. Although a security issue wasn’t identified there, out of an abundance of caution it’s also updated to use textContent. Bugfixes: * Fixed missing varchar/text_pattern_ops index on CharField and TextField respectively when using AddField on PostgreSQL. * Fixed makemessages crash on Python 2 with non-ASCII file names.
2016-07-17Update contao42 to 4.2.1.taca3-18/+36
### 4.2.1 (2016-07-15) * Strip soft hyphens when indexing a page (see contao/core#8389). * Do not run the command scheduler if the installation is incomplete (see #541). * Do not index randomly ordered image galleries. * Fix the filter menu layout on mobile devices. * Provide the back end fonts in different variants (see #523). * Fix the message markup in the member templates. * Correctly load the language strings in the pretty error screen listener.
2016-07-17Update contao35 to 3.5.15, including fix for CVE-2016-4567.taca3-31/+31
Version 3.5.15 (2016-07-15) --------------------------- ### Fixed Strip soft hyphens when indexing a page (see #8389). ### Fixed Update mediaelement.js to version 2.21.2 (fixes CVE-2016-4567).
2016-07-15Update to 0.20wen2-8/+7
Upstream changes: 0.20 Thu May 12 21:11:00 GMT+2 2016 - Fix //b by interpreting it as existing XPath expression RT #114345, reported by Alexander Hartmaier 0.19 Tue May 10 19:23:00 GMT+2 2016 - Fix another bug in ':not(...)' by moving to an ad-hoc recursive descent parser, RT #114261 - Allow single and double quotes for some attributes
2016-07-15Update to 3.1.1wen2-8/+7
Upstream changes: Moodle 3.1.1 release notes Releases > Moodle 3.1.1 release notes Release date: 11 July, 2016 Here is the full list of fixed issues in 3.1.1. Highlights MDL-41922 - Completed quizzes no longer appear in the Course overview block for students MDL-54165 - Allow to hide the document preview in assignment grading interface MDL-41945 - Do not overwrite submission with an empty filearea when several team members edit the same assignment MDL-49852 - Mark assignment as completed for all students in the team when one student from the team has made a submission MDL-29905 - Fixed the bug when deleting empty quiz category was showing an error that it has questions MDL-46721 - Assignment blind marking: participant number in the notification email matches the number on the submission MDL-45427 - Database activity: When creating a template clicking on the tags should add it to the textarea when Atto editor is used MDL-35104 - Allow to change username of a user registered under LDAP authentication method MDL-51806 - Workshop: allow to save edited settings when using comma as a decimal separator MDL-43887 - Fixed bug when handling optional date/time custom user profile field with date range starting later than 1970 MDL-35987 - Do not abort restore process in case of multichoice question error 'Backup error: invalid input syntax for integer: ""' Fixes and improvements MDL-55020 - Fixed bug when installing plugin downloaded from github repository MDL-54909 - Show different background from page when annotating PDF MDL-53111 - Allow to unmark completion criterion 'Require end reached' MDL-37138 - When clicking a URL in chat, it should open in a new window or tab MDL-54997 - Activity completion for a competency should be attached to course competency and not the learning plan competency MDL-54934 - Accessibility enhancements: Indicate phase name/form name on the Workshop title Security issues A number of security related issues were resolved. Details of these issues will be released after a period of approximately one week to allow system administrators to safely update to the latest version. For developers MDL-53019 - PHP 5.6.5 or higher is required for development on master branch
2016-07-15Update to 2.03wen2-8/+7
Upstream changes: 2.03 2016-06-24 - Bug fix: RT#109159 Number formatting tests can fail - Bug fix: RT#112582 Date tests fail on leap day - Minor packaging fixups 2.02 2016-06-01 - Public release of 2.02 2.01_03 2016-05-25 - cleanup unused modules and functions - fix indirect object notation - add label functionality - ensure disabled attributes are ignored - strip excessive/trailing whitespace - fix inflator bug RT76034 - avoid warnings from CGI - enable more author/release tests - it language fixes - Remove link to old website - now unrelated/NSFW - avoid emitting unecessary warnings - enable use of Travis CI & coverage tests - fixes to ensure we pass all the additional author tests
2016-07-15Update to 0.05wen2-8/+7
Upstream changes: 0.05 2015-10-17 - Require URI 1.68 and use the query_form method to ensure that query params are always sorted by key. Based on PR #1 from Greg Oschwald.
2016-07-15Update to 3.093wen2-8/+7
Upstream changes: 3.093 2016-03-25 12:16:08-04:00 America/New_York - lin.kz no longer exists, so WWW::Shorten::Linkz is deprecated - added deprecation/removal notices in accordance with issue #8 - Folded ::Qurl into the deprecated modules - Folded ::Qwer into the deprecated modules - Temporarily hault live testing against TinyURL with ugly hack - Bump Perl requirement to 5.8.1 3.092 2016-03-20 - Clear note about how to contribute other shorten services. Thanks, @ambs - Updated shorten CLI app to add a lengthen option. #9 - Pared down the requirements - re-release with GNU tar 3.091 2016-03-17 - Fixed typo on ::_dead (Thanks, @neilb) - Add synopsis to ::_dead - Cleaned up contributors, alphabetized - Cleaned up the copyright and license confusion 3.090 2016-03-16 - changed to Dist::Zilla - added author tests - Cleaned up documentation - Cleaned up Changes file - added deprecation notices - Cleaned up the Readme.md quite a bit
2016-07-11Remove reference to contao41.taca1-2/+2
Add reference to contao42.
2016-07-11Remove contao41 package it became EOL by release of Contao 4.2.0.taca7-8067/+0
2016-07-11Remove contao41.taca1-2/+1
2016-07-09Fixed some pkglint warnings.rillig2-5/+5
2016-07-09Remove python33: adapt all packages that refer to it.wiz50-101/+101
2016-07-09Update to 2.22wen2-9/+8
Upstream changes: 2016-02-23 14:01:33 +0000 2.22 ============================== commit f96a77938f94bf74fa00449fe941b70e77de0443 Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk> Date: Tue Feb 23 14:01:33 2016 +0000 This is 2.22 commit ef1c866bf188a3cbedc2da5db4e0714d6e195205 Merge: b884aba e2e1b02 Author: Chris Williams <chris@bingosnet.co.uk> Date: Tue Feb 23 13:57:50 2016 +0000 Merge pull request #4 from brewt/silence-keep-alive-warnings Silence warnings from must_keepalive() commit e2e1b0279b68c0292e2904e4d2212f9293cf2bb1 Author: Adrian Yee <adrian@gt.net> Date: Fri Feb 19 13:08:59 2016 -0800 Silence warnings from must_keepalive() A simple patch to silence warnings from must_keepalive(). HTTP::Request->header() (inherited from HTTP::Header->header()) returns undef if the requested header doesn't exist. Same patch from RT #107397 commit 53fe993ca858fdcb663ac76c5fe3f6120f6d73a1 Author: Adrian Yee <adrian@gt.net> Date: Fri Feb 19 00:52:24 2016 -0800 Fix graceful shutdowns when keep-alives are in use If you shut down the httpd gracefully while there's a keep-alive connection is connected, then any subsequent requests through that connection will result in an error. This occurs since the as the handler's post to the DONE event will fail due to the alias being removed. ============================== 2015-09-28 19:07:04 +0100 2.20 ============================== commit 5a7aee1eb2ea8db7a548eb4c3638e14d94c08dda Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk> Date: Mon Sep 28 19:07:04 2015 +0100 This is 2.20 commit 9c84828f48c8079c754311a7b8f80b8ef3ae634f Merge: d272889 7d25abf Author: Chris Williams <chris@bingosnet.co.uk> Date: Mon Sep 28 18:36:32 2015 +0100 Merge pull request #2 from leejo/rt/73630 resolve RT #73630 - fix some typos commit 7d25abf5522e76e2c22aaa77fde0fedef89eda31 Author: Lee Johnson <lee@givengain.ch> Date: Wed Sep 23 16:19:39 2015 +0200 resolve RT #73630 - fix some typos apply patch from gregoa@debian.org and fix a couple of other typos spotted commit 3a65df5092c5eef8a62f53a20d23257560f4e386 Author: Lee Johnson <lee@givengain.ch> Date: Wed Sep 23 16:10:54 2015 +0200 add more instructions on how to build this dist in the README document that a couple of extra Module::Install mods are required as a vanilla Module::Install does not support some of the options in the Makefile.PL update .gitignore to included (well, exclude) files generated by the build process
2016-07-09Update to 0.30wen2-8/+7
Upstream changes: 0.30 - add child_exit hook #26 (by azrle)
2016-07-09Update to 0.36wen2-8/+7
No upstream changelog found.
2016-07-09Bump PKGREVISION for perl-5.24.0 for everything mentioning perl.wiz69-121/+138
2016-07-09Update to 0.14wen2-8/+7
Upstream changes: $Revision: 0.14 $ $Date: 2016/06/09 11:09:38 $ ! XS.xs pulled: RT #115183: MSVC 2013 and earlier do not understand `inline` https://github.com/dankogai/p5-uri-escape-xs/pull/6
2016-07-09Update to 1.27.0wen3-236/+1523
Update DEPENDS Upstream changelog is too long, please visit: https://www.mediawiki.org/wiki/Release_notes/1.27
2016-07-09Update to 0.13wen2-10/+9
Upstream changes: 0.13 2016-07-02 NEILB - Switched to using Test::RequiresInternet rather than the hand-rolled online() function that was duplicated in 2 tests. Plus it was testing whether google.com was contactable, and not the site used in the tests. 0.12 2016-06-23 NEILB - Travis support added by Jason Hall. - Added list of contributors to the doc.
2016-07-09Update to 6.66wen2-8/+7
Upstream changes: 6.66 2016-06-16 - Fixed support for CONNECT requests without keep alive connections in Mojo::UserAgent. (anparker, sri) 6.65 2016-06-14 - Added password and username methods to Mojo::URL. - Updated jQuery to version 3.0.0. - Fixed "0" value bug in Mojo::UserAgent::CookieJar. (jamadam) 6.64 2016-06-09 - Updated HTML5 entities in Mojo::Util. - Improved Mojo::IOLoop to fall back to Mojo::Reactor::Poll if Perl has been compiled with fork emulation. 6.63 2016-06-03 - Removed deprecated check method from Mojo::Server::Morbo. - Removed deprecated build, compile and interpret methods from Mojo::Template. - Removed deprecated multi_accept methods from Mojo::IOLoop, Mojo::IOLoop::Server and Mojo::Server::Daemon. - Updated jQuery to version 2.2.4. - Improved generator commands not to overwrite existing files.
2016-07-07Changes 1.12.0:adam2-7/+7
This release adds 2 new API functions to libnghttp2. It also adds HTTP/1.1 POST support to h2load. nghttpx gets new features, and performance improvements.
2016-07-05Update to 2.7.0ryoon3-2366/+2819
Changelog: Release Notes for 2.7.0 This release fixes issues found while testing RC1. For details, see the commit logs. Known Issues DevMode always starts in Super Dev Mode, so it’s not as easy to test in production mode. See issue 9004 for workarounds. Release Notes for 2.7.0 (RC1) Highlights Super Dev Mode is now the default. DevMode automatically starts Super Dev Mode and reloading a web page automatically runs the compiler when necessary. (The -nosuperDevMode flag may be used to revert to the old behavior.) Compiling in Super Dev Mode is much faster after the first compile. Experimental support for GSS, also known as Closure Stylesheets. (See below.) Known Issues gwttar files are incorrect. (Fixed in the next version.) Deprecations GWT Designer doesn’t work with 2.7 and is no longer supported. (Source code is available if someone wishes to revive this project.) IFrameLinker and XSLinker are deprecated because they don’t work in Super Dev Mode. However, we don’t have suitable replacements for all use cases yet. For updates and possible workarounds, see issue 8997. Compiler changes In draft mode and Super Dev Mode, all compiler optimizations are turned off for better debugging. For example, null pointers are detected sooner. JSNI references no longer require fully qualified class names when this wouldn’t be necessary in Java. (For example, imports work.) We’ve started implementing JS Interop annotations, which will make it much easier to use GWT with JavaScript libraries. The specification is not final and there are bugs, so production GWT apps and libraries should continue to use JSNI for now. If you wish to experiment, you can enable JS Interop using the -XjsInteropMode flag, which is available for the compiler and Super Dev Mode. (It doesn’t work with old DevMode.) The experimental -XmethodNameDisplayMode flag adds a displayName property to each JavaScript function containing the name of the Java method. This makes Java method names available in browser debuggers at the expense of code size. (Also available in Super Dev Mode.) Boxed JavaScript strings (created in JavaScript using new String(...)) are no longer considered equivalent to Java strings. They should be unboxed before being passed to Java. Many bugfixes. Library Changes JDK emulation Significant performance improvements in String, ArrayList, HashMap, and Exception. New emulated classes: Locale, NavigableSet, and NavigableMap. New emulated methods in Class, String, Exception, RuntimeException, Logger, Arrays, Collections, and Map.Entry. LinkedList extends Deque and handles incorrect usage better. Logging and Stack Traces Better wrapping of exceptions thrown from JavaScript. GWT apps that inherit the com.google.gwt.logging.Logging module have different default behavior for messages logged using the java.util.logging package. The new default is to log messages at level SEVERE and above to the browser’s console. PopupLogHandler and SystemHandler are no longer enabled by default. FirebugLogHandler and NullLoggingPopup have been removed. () Experimental GSS support The CssResource.enableGss configuration property turns on GSS support. When enabled, resource files with a ‘gss’ extension are parsed as a Closure Stylesheet. When enabled, GSS can be used in a UiBinder file by setting gss="true" on a ui:style tag. If the CssResource.legacy configuration property is set, .css resources and ui:style tags without gss=true will first be converted to GSS and then parsed as GSS. UiBinder The ui:data tag has new attributes: mimeType and doNotEmbed. GWT-RPC The rpc.XserializeFinalFields configuration property turns on experimental support for serializing final fields. LinkedHashSet may be serialized without a serialization policy. deRPC is removed. RequestFactory Support overridden methods and generics better. Fix support for @SkipInterfaceValidation on RequestContext methods. Internationalization Upgraded to CLDR 25. Browser API changes Updated support for typed arrays. Added History.replaceItem(). Fixed an issue with Window.addWindowScrollHandler on Chrome. Widgets The deprecated com.google.gwt.widgets package is removed. Various bugfixes and minor improvements. Developer Tool Changes Dev Mode The -nosuperDevMode flag may be used to turn off Super Dev Mode and revert to old Dev Mode. (However, most current browsers no longer support Dev Mode plugins.) The -modulePathPrefix flag may be used to move DevMode’s output to a subdirectory of the war directory. Super Dev Mode Compiling is much faster after the first compile. (Compiling is skipped altogether if no files have changed.) The first compile no longer happens at startup. Chrome reloads the page faster while debugging. (Sourcemap file size is reduced.) The -launcherDir flag may be used to avoid running the GWT compiler before starting Super Dev Mode. When enabled, Super Dev Mode writes stub .nocache.js files that automatically recompile the GWT app before loading it. Therefore the bookmarklets aren’t needed. (This feature is automatically enabled when launched via DevMode.) The -logLevel flag may be used to adjust how compile errors are reported. The Dev Mode On bookmarklet dialog shows whether Super Dev Mode is turned on for each module on the page. Messages logged using java.util.logging at level SEVERE and above are written to the browser console by default. Fixed a startup faesting Better error reporting for compile errors while running tests. Messages logged using java.util.logging at level SEVERE and above are written to the browser console and test output by default. -Dgwt.htmlunit.debug may be used to open a JavaScript debugger window when running a test using HtmlUnit. Removed RunStyleRemoteWeb and the BrowserManager tool. Removed flags: -standardsMode, -nostandardsMode, -quirksMode. (GWTTestCase tests are always run in an HTML page in standards mode.) For even more detail, see the Issue Tracker.
2016-07-05Update apache24 to 2.4.23.taca3-8/+17
(NOTE: Versions 2.4.22 and 2.4.21 were not released.) Changes from 2.4.20 are too many to write here, please refer CHANGES file. And Apache 2.4.23 fixes CVE-2016-4979; X509 Client certificate based authentication can be bypassed when HTTP/2 is used.
2016-07-05Update trac to 1.0.12.gdt3-29/+8
Upstream changelog from 1.0.10 contains a large number of bugfixes and other minor changes.
2016-07-04Changes 3.5.20:adam2-7/+7
Assertion failed: Write.cc:38: "fd_table[conn->fd].flags.open" Bug 4523: smblib compile fails on NetBSD Do not make bogus recvmsg(2) calls when closing UDS sockets. Fix SEGFAULT parsing malformed adaptation service configuration Fixed ConnStateData::In::maybeMakeSpaceAvailable() logic. Bug 3579: assertion failed 'MemPools[type]' from dst_as ACL Do not allow low-level debugging to hide important/critical messages. Bug 4485: off-by-one out-of-bounds Parser::Tokenizer::int64() read errors Increase debug level in a peek-and-splice related debug message Fix icons loading speed. Fix OpenSSL detection on FreeBSD Do not override user defined -std option Support unified EUI format code in external_acl_type
2016-07-03Update www/links{,-gui} to 2.13leot5-16/+14
Changes: === RELEASE 2.13 === Sat Jun 18 14:15:55 CEST 2016 mikulas: Page up and page down scroll slightly less than a page Fri Jun 17 23:57:23 CEST 2016 mikulas: Use domain list from publicsuffix.org to prevent setting cookies on public domains. Also fix a bug that existed in previous links versions: bla.com could register cookie for la.com or a.com Sat Jun 11 17:59:17 CEST 2016 mikulas: Fixed non-working mouse wheel on Syllable Workaround for getaddrinfo bug on Syllable Sat Jun 11 15:16:41 CEST 2016 mikulas: Support horizontal scroll wheel on Windows Tue Jun 7 19:10:11 CEST 2016 mikulas: Fixed a bug in the X driver that characters with unicode codes 128-255 could not be entered with some locales Thu Jun 2 19:19:56 CEST 2016 mikulas: Security bug fixed: Use separate unix domain socket for anonymous instances, so that the anonymous instance won't connect to non-anonymous one Sun May 8 21:20:38 CEST 2016 mikulas: <samp> element Sun May 8 20:33:37 CEST 2016 mikulas: In case of certification verification failure, don't pop up multiple dialog windows asking for the same server Sun Mar 13 19:10:27 CET 2016 mikulas: Do not lookup .onion addresses directly, as specified by rfc7686 Wed Jan 13 01:16:49 CET 2016 Jakub Bogusz <qboosh@pld-linux.org>: Updated Polish Translation Wed Oct 21 19:25:09 CEST 2015 mikulas: Security enhancement: Warn if the SSL/TLS method was downgraded
2016-07-02Update to 47.0.1ryoon2-359/+359
* Sync with firefox-47.0.1
2016-07-02Update to 47.0.1ryoon2-8/+7
Changelog: Fixed Selenium WebDriver may cause Firefox to crash at startup
2016-06-30Updated py-betamax to 0.7.1.wiz2-7/+7
0.7.1 - 2016-06-14 ------------------ - Fix issue #108 by effectively copying the items in the match_requests_on list into the match_options set on a Cassette instance
2016-06-30Fix build problem with PKG_DEVELOPER=YES.taca1-2/+4
* Replace interpreter of tools/migrate-2.0.x-2.1.0.php, too. * Change post-patch target to pre-configure for easier maintenance of patch files. * Drop execute bit from lib/syncobjects/syncresolverecipient.php.
2016-06-29Update php-ja-wordpress to 4.5.3.taca2-7/+7
As www/wordpress, this is a maintenance and security release. I could not find Japanese version specific changes.
2016-06-28squid3 uses C++11 if available. Insist on C++11 if linking to libecap.prlw11-1/+2
2016-06-27Fix build on -currenttnn2-1/+17
2016-06-26Update libproxy to 0.4.13kamil3-26/+7
Upstream changes: - Allow linking webkit pacrunner against javascriptcore-4.0 (webkit2). - Allow to disable building of the KDE module (-DWITH_KDE=ON/OFF). - Fix compilation errors with CLang on MacOSX. - bindings: perl: Add an option to explicitly link against libperl.so Some distributions want to do it, other prefer not to, the library is anyway in context of perl. - config_kde: Add a basic cache and invalidation: performance improvement for the KDE module. Upgrade during freeze to fix upstream regression with Qt4 and Qt5 clashes. Requested by Ralf Nolden <nolden@kde.org> Approved by <pkgsrc-pmc>.
2016-06-26Fix PKGNAME in distinfo. From kre@.wiz1-361/+361
2016-06-25Add plugin-container to list of not-mprotect-safe files, bump pkgrevision.pgoyette1-1/+3
2016-06-25Updated package to use ocaml.mk framework. No upstream changes.jaapb6-61/+46
2016-06-23Fix non-default, probably unusused so far, ecap option build, afterprlw12-1/+17
libecap move to C++11.
2016-06-23Fix previous by going the whole hog and requiring C++11.prlw13-22/+18
2016-06-22Update WordPress to 4.5.3. This is a maintenance and security release:jklos2-7/+7
https://wordpress.org/news/2016/06/wordpress-4-5-3/
2016-06-21Don't use the obsolete TR1 interface for C++11 or libc++. Bump revision.joerg3-2/+34
2016-06-21- Add patches/patch-Makefile.PL to give adhoc work around with clang build,mef3-2/+22
./curlopt-constants.c:19:58: error: non-void function 'constant' should return a value [-Wreturn-type] if (strEQ(name, "DID_MEMORY_FUNC_TYPEDEFS")) return CURL_DID_MEMORY_FUNC_TYPEDEFS; ^
2016-06-20Updated package to latest version, 2.7, and added patches and cleaned upjaapb4-11/+86
the Makefile. Changes include: * Fix content type selection for XML content * Send gzip trailer in Deflatemod * Log more details about SSL accept errors * Support the Content-Disposition header * Optimize buffering
2016-06-19Clean up .orig files after patch... makes things tidier.jym1-1/+4
Reported by joerg@, thanks
2016-06-19Needs p5-URI-ws.joerg1-3/+4