Commit graph

262525 commits

Author SHA1 Message Date
wen
a6cf7e41d0 Update to 0.28
Upstream changes:
0.28 Thu Mar 23 2016
  - fix tests under perl 5.25.10+ with -Ddefault_inc_excludes_dot
    - thanks Kent Fredric rt #120698

0.27 Mon Mar 06 2017
  - support a single lang as a string instead of requiring an arrayref (DWIM)
    - example: lang => 'en'
  - add support for:
    - "next (weekday)" eg: next sunday
    - "last (weekday)" eg: last sunday
    - "next (month)" eg: next january
    - "last (month)" eg: last january
    - "(x unit) from now" eg: 3 years from now
    - "(-x unit)" eg: -3 months
    - "(+x unit)" eg: +3 months
    - "YYMMDD HH:MM:SS" eg: 950404 00:22:12
    - "YYMMDD HH:MM:SS.NS" eg: 950404 00:22:12.500
    - "Mon D HH:MM:SS.NS TZ YYYY" eg: Fri Dec  2 22:56:03.500 GMT+0 1994
      - thanks David White rt #105178, tests from Time::ParseDate
  - when we have a leading month that is 0 (zero) and we have a year, assume it is supposed to be october (10)
    - thanks Dave Musakhanyan
2017-04-09 07:14:17 +00:00
wen
724c94e5e5 Updated time/p5-DateTime-Format-CLDR to 1.18 2017-04-09 07:09:36 +00:00
wen
40f159ceb4 Update to 1.18
Upstream changes:
1.18 Sat Dec 31 2016
    - Fix failing tests rt118286
    - Various cleanups
2017-04-09 07:08:28 +00:00
wen
d760f96bdc Updated databases/p5-DBIx-Class-Helpers to 2.033003 2017-04-09 04:28:46 +00:00
wen
b68ff004a4 Update to 2.033003
Upstream changes:
2.033003  2017-03-12 12:14:51-07:00 America/Los_Angeles
 - Stop depending on String::CamelCase (closes GH#81)
2017-04-09 04:27:52 +00:00
wen
eb8e66e3ce Updated www/ruby-unicorn to 5.3.0 2017-04-09 04:14:41 +00:00
wen
6ca2134a89 Update to 5.3.0
Upstream changes:
unicorn 5.3.0 / 2017-04-01 08:03 UTC

A couple of portability fixes from Dylan Thacker-Smith and
Jeremy Evans since 5.3.0.pre1 over a week ago, but this looks
ready for a stable release, today.

When I started this over 8 years ago, I wondered if this would
just end up being an April Fools' joke.  Guess not.  I guess I
somehow tricked people into using a terribly marketed web server
that cannot talk directly to untrusted clients :x  Anyways,
unicorn won't be able to handle slow clients 8 years from now,
either, or 80 years from now.  And I vow never to learn to use
new-fangled things like epoll, kqueue, or threads :P

Anyways, this is a largish release with several new features,
and no backwards incompatibilities.

Simon Eskildsen contributed heavily using TCP_INFO under Linux
to implement the (now 5 year old) check_client_connection feature:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-check_client_connection
  https://bogomips.org/unicorn-public/?q=s:check_client_connection&d:..20170401&x=t

This also led to FreeBSD and OpenBSD portability improvements in
one of our dependencies, raindrops:

   https://bogomips.org/raindrops-public/20170323024829.GA5190@dcvr/T/#u

Jeremy Evans contributed several new features.  First he
implemented after_worker_exit to aid debugging:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_exit
  https://bogomips.org/unicorn-public/?q=s:after_worker_exit&d:..20170401&x=t#t

And then security-related features to isolate workers.  Workers
may now chroot to drop access to the master filesystem, and the
new after_worker_ready configuration hook now exists to aid with
chroot support in workers:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_ready
  https://bogomips.org/unicorn/Unicorn/Worker.html#method-i-user
  https://bogomips.org/unicorn-public/?q=s:after_worker_ready&d:..20170401&x=t#t
  https://bogomips.org/unicorn-public/?q=s:chroot&d:..20170401&x=t#t

Additionally, workers may run in a completely different VM space
(nullifying preload_app and any CoW savings) with the new
worker_exec option:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-worker_exec
  https://bogomips.org/unicorn-public/?q=s:worker_exec&d:..20170401&x=t#t

There are also several improvements to FreeBSD and OpenBSD
support with the addition of these features.

shortlog of changes since v5.2.0 (2016-10-31):

Dylan Thacker-Smith (1):
      Check for Socket::TCP_INFO constant before trying to get TCP_INFO

Eric Wong (30):
      drop rb_str_set_len compatibility replacement
      TUNING: document THP caveat for Linux users
      tee_input: simplify condition for IO#write
      remove response_start_sent
      http_request: freeze constant strings passed IO#write
      Revert "remove response_start_sent"
      t/t0012-reload-empty-config.sh: access ivars directly if needed
      t0011-active-unix-socket.sh: fix race condition in test
      new test for check_client_connection
      revert signature change to HttpServer#process_client
      support "struct tcp_info" on non-Linux and Ruby 2.2+
      unicorn_http: reduce rb_global_variable calls
      oob_gc: rely on opt_aref_with optimization on Ruby 2.2+
      http_request: reduce insn size for check_client_connection
      freebsd: avoid EINVAL when setting accept filter
      test-lib: expr(1) portability fix
      tests: keep disabled tests defined
      test_exec: SO_KEEPALIVE value only needs to be true
      doc: fix links to raindrops project
      http_request: support proposed Raindrops::TCP states on non-Linux
      ISSUES: expand on mail archive info + subscription disclaimer
      test_ccc: use a pipe to synchronize test
      doc: remove private email support address
      input: update documentation and hide internals.
      http_server: initialize @pid ivar
      gemspec: remove olddoc from build dependency
      doc: add version annotations for new features
      unicorn 5.3.0.pre1
      doc: note after_worker_exit is also 5.3.0+
      test_exec: SO_KEEPALIVE value only needs to be true (take #2)

Jeremy Evans (7):
      Add after_worker_exit configuration option
      Fix code example in after_worker_exit documentation
      Add support for chroot to Worker#user
      Add after_worker_ready configuration option
      Add worker_exec configuration option
      Don't pass a block for fork when forking workers
      Check for SocketError on first ccc attempt

Simon Eskildsen (1):
      check_client_connection: use tcp state on linux

unicorn 5.3.0.pre1 / 2017-03-24 00:25 UTC

A largish release with several new features.

Simon Eskildsen contributed heavily using TCP_INFO under Linux
to implement the (now 5 year old) check_client_connection feature:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-check_client_connection
  https://bogomips.org/unicorn-public/?q=s:check_client_connection&d:..20170324&x=t

This also led to FreeBSD and OpenBSD portability improvements in
one of our dependencies, raindrops:

   https://bogomips.org/raindrops-public/20170323024829.GA5190@dcvr/T/#u

Jeremy Evans contributed several new features.  First he
implemented after_worker_exit to aid debugging:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_exit
  https://bogomips.org/unicorn-public/?q=s:after_worker_exit&d:..20170324&x=t#t

And then security-related features to isolate workers.  Workers
may now chroot to drop access to the master filesystem, and the
new after_worker_ready configuration hook now exists to aid with
chroot support in workers:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_ready
  https://bogomips.org/unicorn/Unicorn/Worker.html#method-i-user
  https://bogomips.org/unicorn-public/?q=s:after_worker_ready&d:..20170324&x=t#t
  https://bogomips.org/unicorn-public/?q=s:chroot&d:..20170324&x=t#t

Additionally, workers may run in a completely different VM space
(nullifying preload_app and any CoW savings) with the new
worker_exec option:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-worker_exec
  https://bogomips.org/unicorn-public/?q=s:worker_exec&d:..20170324&x=t#t

There are also several improvements to FreeBSD and OpenBSD
support with the addition of these features.

34 changes since 5.2.0 (2016-10-31):

Eric Wong (27):
      drop rb_str_set_len compatibility replacement
      TUNING: document THP caveat for Linux users
      tee_input: simplify condition for IO#write
      remove response_start_sent
      http_request: freeze constant strings passed IO#write
      Revert "remove response_start_sent"
      t/t0012-reload-empty-config.sh: access ivars directly if needed
      t0011-active-unix-socket.sh: fix race condition in test
      new test for check_client_connection
      revert signature change to HttpServer#process_client
      support "struct tcp_info" on non-Linux and Ruby 2.2+
      unicorn_http: reduce rb_global_variable calls
      oob_gc: rely on opt_aref_with optimization on Ruby 2.2+
      http_request: reduce insn size for check_client_connection
      freebsd: avoid EINVAL when setting accept filter
      test-lib: expr(1) portability fix
      tests: keep disabled tests defined
      test_exec: SO_KEEPALIVE value only needs to be true
      doc: fix links to raindrops project
      http_request: support proposed Raindrops::TCP states on non-Linux
      ISSUES: expand on mail archive info + subscription disclaimer
      test_ccc: use a pipe to synchronize test
      doc: remove private email support address
      input: update documentation and hide internals.
      http_server: initialize @pid ivar
      gemspec: remove olddoc from build dependency
      doc: add version annotations for new features

Jeremy Evans (6):
      Add after_worker_exit configuration option
      Fix code example in after_worker_exit documentation
      Add support for chroot to Worker#user
      Add after_worker_ready configuration option
      Add worker_exec configuration option
      Don't pass a block for fork when forking workers

Simon Eskildsen (1):
      check_client_connection: use tcp state on linux
2017-04-09 04:12:39 +00:00
mef
c27f78941c Updated devel/p5-Clone to 0.39
Updated devel/p5-Devel-CheckLib to 1.10
Updated devel/p5-App-cpanminus to 1.7043
Updated devel/p5-B-Hooks-Parser to 0.19
Updated devel/p5-Module-Install to 1.18
Updated devel/p5-Module-Build to 0.42220
Updated devel/p5-Log-Any to 1.04.9
Updated devel/p5-Devel-Declare to 0.006019
Updated devel/p5-POE-Component-Pluggable to 1.28
2017-04-09 03:38:41 +00:00
mef
d9a05a83d2 Updated devel/p5-POE-Component-Pluggable to 1.28
------------------------------------------------
version 1.28 at 2017-02-20 13:37:38 +0000
    Convert dist to Dist::Zilla
2017-04-09 03:34:43 +00:00
mef
885dcd82a4 Updated devel/p5-Clone to 0.39
------------------------------
0.39 2017-04-07 13:06:00  garu
  - use explicit '.' in tests since it may not be in @INC
    anymore in newer perls (fixes RT120648) (PLICEASE, SIMCOP)
2017-04-09 03:31:21 +00:00
mef
e28cf2223b Updated devel/p5-Devel-CheckLib to 1.10
---------------------------------------
1.10    2017-04-08      Remove link options from @ldflags.
                        Use Mock::Config.
2017-04-09 03:30:05 +00:00
mef
6d38997ddd Updated devel/p5-App-cpanminus to 1.7043
----------------------------------------
1.7043  2017-04-02 20:56:06 PDT
   [Improvements]
      - Set PERL_USE_UNSAFE_INC for 5.26+ (haarg) #521
      - Strictly match module NAME in Bundle
2017-04-09 03:28:11 +00:00
mef
1f1a7524a8 Updated devel/p5-B-Hooks-Parser to 0.19
---------------------------------------
0.19    2017-04-04 19:35:08Z
  - re-release 1.18 as stable (fixes compile issues on recent blead releases)

0.18    2016-08-30 00:24:10Z (TRIAL RELEASE)
  - avoid use of sub_inwhat (RT#116685; see also RT#102918 and perl RT#123865)
2017-04-09 03:26:19 +00:00
mef
83512588d3 Updated devel/p5-Module-Install to 1.18
---------------------------------------
1.18  2017-04-04
  - fix tests to no longer rely on . being in @INC (Graham Ollis, PR#58)
2017-04-09 03:24:22 +00:00
mef
b4a8fa6c6b Updated devel/p5-Module-Build to 0.42220
----------------------------------------
0.4222 - Thu Mar 30 15:40:10 CEST 2017
   - Released 0.42_21 as 0.4222

0.42_21 - Wed Mar 22 19:04:02 CET 2017
   - Include relative path for do in Build/Makefile.PL will function
     without . in @INC [Todd Rinaldo]
   - Remove use deprecate [Graham Knop]
0.42
2017-04-09 03:22:37 +00:00
mef
f327216a2e Updated devel/p5-Log-Any from 1.04.5 to 1.04.9
----------------------------------------------
1.049     2017-03-28 16:02:10-05:00 America/Chicago
    [Fixed]
    - Fixed failing tests on Windows because of path separator
      interpolation. Thanks @nanis [Github #56]

    - Added explicit core dependency on Sys::Syslog in case of Perls
      with non-standard core libraries. Thanks @nanis [Github #57]

1.048     2017-03-27 15:16:12-05:00 America/Chicago
    - No changes since 1.047 trial release

1.047     2017-03-22 20:22:47-05:00 America/Chicago (TRIAL RELEASE)
    [Fixed]
    - Fixed backwards-compatibility with users using the Unix::Syslog
      macros in Log::Any::Adapter::Syslog. This requires that the user
      have Unix::Syslog installed (which Log::Any does not explicitly
      depend on).

    - Log level aliases are now case-insensitive to match the regular
      log levels. Prior to this, "WARNING", "Warning", and "warning"
      would all work, but "WARN", and "Warn" would not, only "warn".
      Thanks to @0x62ash for reporting this issue. [Github #55]

    - Invalid log levels for the File, Stderr, and Stdout adapters now
      result in a warning, and the default level of "trace" is used.
      Previously, no warning would be issued and no logs would be
      generated. Thanks to @0x62ash for reporting this issue. [Github
      #55]

1.046     2017-01-11 21:22:57-06:00 America/Chicago (TRIAL RELEASE)
    [Added]
    - The Syslog adapter is now part of the core distribution, since it
      relies only on core Perl modules.
2017-04-09 03:19:27 +00:00
mef
52ebcdf801 Updated devel/p5-Devel-Declare to 0.006019
------------------------------------------
0.006019 - 2017-03-28
  - added deprecated flag to metadata. No deprecation warning is given at
    runtime... for now...
  - added "WARNING" section in pod, advising the deprecated status of this
    module
2017-04-09 03:03:46 +00:00
mef
70396806a4 + BUILD_DEPENDS+= p5-Email-MIME-RFC2047-[0-9]*, for make test 2017-04-09 02:59:26 +00:00
mef
af466e2fa7 Added mail/p5-Email-MIME-RFC2047 version 0.95 2017-04-09 02:57:38 +00:00
mef
66f54e4a0f Import Email-MIME-RFC2047-0.95 as mail/p5-Email-MIME-RFC2047.
This module encodes non-ASCII text for MIME email message headers
according to RFC 2047.
2017-04-09 02:54:23 +00:00
wen
9edf5f1671 Updated www/mediawiki to 1.18.1 2017-04-09 01:28:54 +00:00
wen
ef5bf638d1 Update to 1.18.1
Upstream changes:
MediaWiki 1.28.1
Changes since 1.28.0

    $wgRunJobsAsync is now false by default (T142751). This change only affects wikis with $wgJobRunRate > 0.
    Fix fatal from "WaitConditionLoop" not being found, experienced when a wiki has more than one database server setup.
    (T152717) Better escaping for PHP mail() command
    (T154670) A missing method causing the MySQL installer to fatal in rare circumstances was restored.
    (T154672) Un-deprecate ArticleAfterFetchContentObject hook.
    (T158766) Avoid SQL error on MSSQL when using selectRowCount()
    (T145635) Fix too long index error when installing with MSSQL
    (T156184) $wgRawHtml will no longer apply to internationalization messages.
    (T160519) CACHE_ANYTHING will not be CACHE_ACCEL if no accelerator is installed.
    (T154872) Fix incorrect ar_usertext_timestamp index names in new 1.28 installs.
    (T109140) (T122209) SECURITY: Special:UserLogin and Special:Search allow redirect to interwiki links.
    (T144845) SECURITY: XSS in SearchHighlighter::highlightText() when $wgAdvancedSearchHighlighting is true.
    (T125177) SECURITY: API parameters may now be marked as "sensitive" to keep their values out of the logs.
    (T150044) SECURITY: "Mark all pages visited" on the watchlist now requires a CSRF token.
    (T156184) SECURITY: Escape content model/format url parameter in message.
    (T151735) SECURITY: SVG filter evasion using default attribute values in DTD declaration.
    (T161453) SECURITY: LocalisationCache will no longer use the temporary directory in it's fallback chain when trying to work out where to write the cache.
    (T48143) SECURITY: Spam blacklist ineffective on encoded URLs inside file inclusion syntax's link parameter.
2017-04-09 01:26:46 +00:00
mef
cc840556cb + eagle-8.1.0 2017-04-09 01:15:28 +00:00
mef
3f74eec68a Updated cad/gtkwave to 3.3.80 2017-04-09 01:09:30 +00:00
mef
1266375f5f Updated cad/gtkwave to 3.3.80
-----------------------------
3.3.80  17mar17 Added "/View/Mouseover Copies To Clipboard" menu option to
                allow copying values into the clipboard so they can be pasted
                into text editors, etc.
2017-04-09 01:09:03 +00:00
mef
732e542d40 Updated cad/qcad to 3.16.7.0 2017-04-09 00:23:41 +00:00
mef
033ce58840 Updated cad/qcad to 3.16.7.0
----------------------------
3.16.7 (2017/03/21)
    Bug fixes:
        FS#1560 - Main menu not selectable (Ubuntu 16.04, Unity)
        FS#1561 - Edit > Drawing Preferences: menu missing (macOS, French locale)
2017-04-09 00:23:26 +00:00
adam
74b8dbc9cc Updated devel/py-txaio to 2.6.2; www/py-autobahn to 0.18.1 2017-04-08 21:45:24 +00:00
adam
410aa242d8 Changes 0.18.1:
Bug fixes.
2017-04-08 21:44:55 +00:00
adam
672e42aa97 Changes 2.6.2:
Bug fixes.
2017-04-08 21:40:54 +00:00
adam
ac8ed948b6 Updated security/py-asn1-modules to 0.0.8 2017-04-08 21:30:14 +00:00
adam
0267f2ef12 Revision 0.0.8
- Wheel distribution format now supported
- Fix to misspelled rfc2459.id_at_sutname variable
- Fix to misspelled rfc2459.NameConstraints component tag ID
- Fix to misspelled rfc2459.GeneralSubtree component default status
2017-04-08 21:25:26 +00:00
adam
a9ac349ba8 Updated www/py-urllib3 to 1.20 2017-04-08 20:11:03 +00:00
adam
880b84824f Changes 1.20:
Added support for waiting for I/O using selectors other than select, improving urllib3’s behaviour with large numbers of concurrent connections. (Pull 1001)
Updated the date for the system clock check. (Issue 1005)
ConnectionPools now correctly consider hostnames to be case-insensitive. (Issue 1032)
Outdated versions of PyOpenSSL now cause the PyOpenSSL contrib module to fail when it is injected, rather than at first use. (Pull 1063)
Outdated versions of cryptography now cause the PyOpenSSL contrib module to fail when it is injected, rather than at first use. (Issue 1044)
Automatically attempt to rewind a file-like body object when a request is retried or redirected. (Pull 1039)
Fix some bugs that occur when modules incautiously patch the queue module. (Pull 1061)
Prevent retries from occuring on read timeouts for which the request method was not in the method whitelist. (Issue 1059)
Changed the PyOpenSSL contrib module to lazily load idna to avoid unnecessarily bloating the memory of programs that don’t need it. (Pull 1076)
Add support for IPv6 literals with zone identifiers. (Pull 1013)
Added support for socks5h:// and socks4a:// schemes when working with SOCKS proxies, and controlled remote DNS appropriately. (Issue 1035)
2017-04-08 20:10:31 +00:00
tsutsui
38298aec25 Removed misc/ruby-descendants_tracker 2017-04-08 19:18:47 +00:00
tsutsui
0d0f44202e Remove ruby-descendants_tracker package.
The upstream github has not been updated for three years and
the only user net/ruby-twitter gem no longer requires this one.
Ok by @taca.
2017-04-08 19:17:40 +00:00
schmonz
0a4b8168cb Update HOMEPAGE. 2017-04-08 18:36:51 +00:00
schmonz
8f75a54640 Remove dependency on sysutils/checkpassword. In the default install it's
used only for qmail-pop3d, which is likely not being used much anymore.
Other installs might need a different implementation of checkpassword
anyhow. And this implementation is not (yet?) in the public domain, so
it's blocking us from publishing binary packages of qmail.

Unless (until?) sysutils/checkpassword becomes "public-domain", it
remains under "djb-nonlicense". If you continue to need it, since you've
already accepted the nonlicense, simply install it directly.

I believe this package and all its remaining dependencies are now in
DEFAULT_ACCEPTABLE_LICENSES. Bump PKGREVISION.
2017-04-08 18:22:51 +00:00
riastradh
3986219474 dbus is optional in gajim. 2017-04-08 18:08:53 +00:00
schmonz
5d5361926a When DJB_RESTRICTED=YES (true by default in djbware.mk), LICENSE=djb-nonlicense. 2017-04-08 17:50:33 +00:00
mef
e0a28f92e7 Updated cad/klayout to 0.24.10 2017-04-08 14:11:42 +00:00
mef
ff707da52c Updated cad/klayout to 0.24.10
------------------------------
(from: http://klayout.de/development.html)
Version 0.24.10
Release date: 2017-04-01
Features:
    Enhancements: New method CellView#is_dirty? This method indicates
    that a cell view needs saving

    Bugfix: DEF reader was not able to read routing Routed segments
    with vias plus continued wiring were not read. Instead an error
    message was shown saying "Invalid orientation specification"

    Bugfix: Setting "technology-data" configuration property did not
    work Reading or writing the "technology-data" configuration
    property is the only way to access technology data from a
    script. Hence it's important that this property can be set. With
    this patch, "technology-data" can be set to an XML string which
    has the same format than the one stored within the configuration
    file.

    Bugfix: Reader issues with some RVE files The RVE reader could not
    read files with cell names containing hyphens (like "A-B").

    Bugfix: Inplace operators are now working in Python too For
    example "r1 += r2" was not working (r1 and r2 are pya.Region
    objects for example).
2017-04-08 13:48:52 +00:00
wiz
79d7b149c6 Remove variables that have default values. 2017-04-08 13:37:47 +00:00
mef
f410228e63 + ng-spice-26 2017-04-08 13:35:26 +00:00
mef
d741470716 Updated cad/py-gds to 1.1.2 2017-04-08 12:45:00 +00:00
mef
1b31b26e25 Updated cad/py-gds to 1.1.2
---------------------------
### Version 1.1.2 (Mar 19, 2017)
* Update clipper library to 6.4.2 to fix bugs introduced in the last update.
* License change to Boost Software License v1.0.

(pkgsrc changes)
 - LICENSE converted to boost-license as noted above
2017-04-08 12:44:48 +00:00
spz
eb10b3a907 adding patch for XSA-212 from upstream
(http://xenbits.xen.org/xsa/advisory-212.html)
2017-04-08 12:30:42 +00:00
spz
400668276a add patch for XSA-212 from upstream
(http://xenbits.xen.org/xsa/advisory-212.html)
2017-04-08 12:17:58 +00:00
adam
647c51dbfa Updated security/py-asn1 to 0.2.3; www/py-uwsgi to 2.0.15 2017-04-08 12:04:54 +00:00
adam
5b6f09255e uWSGI 2.0.15
Maintenance release

Issues
Unfortunately there are still 2 unfixed long standing bugs in this release:
* suwsgi protocol behind nginx does not work reliably when a request body is sent by the client (https://github.com/unbit/uwsgi/issues/1490). As we cannot reproduce it in uWSGI itself, we will start checking in the nginx module too
* There are reports of the “holy” wsgi env allocator crashing on specific conditions, this release includes a bunch of workarounds but they could not be enough

Changes
* workaround for the holy allocator for avoiding crashes with newrelic (see Issues notes)
* avoid time overflow in request logs during (even minimal) clock skew
* fixed python logger with python3
* fixed catch-exceptions with python3
* backported “don’t clone $env->{‘psgix.io’} on ‘PSGI cancel’”
* added support for authentication in the redis logger
* added the spinningfifo action hook to the core
* fixed compilation with php 7.1
* correctly returns error code 22 in lazy_apps + master_mode
* fixed compilation for OpenSSL 1.1
* Add a –skip-atexit-teardown option to skip perl/python teardown
* fixed static file serving over https-socket
2017-04-08 12:04:27 +00:00