Changelog for
hhvm-3.30.4-1.1.x86_64.rpm :
Fri Feb 15 13:00:00 2019 munix9AATTgooglemail.com
- update to version 3.30.4
* fix CVE-2019-3552, a potential denial of service if Thrift
is used to process untrusted input.
Sat Feb 2 13:00:00 2019 munix9AATTgooglemail.com
- update to version 3.30.3
* Fix default options for single-core computers or virtual
machines
* Fix an issue in hhbbc that could lead to a segfault when
building for repo-authoritative mode
* Fix support for # comments in IDE integration - previously
these would be rendered as markdown headings.
Tue Jan 15 13:00:00 2019 munix9AATTgooglemail.com
- update to version 3.30.2
* CVE-2018-6345: data corruption in number_format() error cases
* CVE-2019-3557: out of bounds read in stream_get_line() and
bz2 reads
* 3.30.2 fixes a regression in in HH\\Asio\\curl_exec() which was
introduced in 3.30.0
Thu Dec 20 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.30.1
See the Release Notes for the details:
https://hhvm.com/blog/2018/12/18/hhvm-3.30.1.html
https://github.com/facebook/hhvm/commits/HHVM-3.30.1
https://hhvm.com/blog/2018/12/17/hhvm-3.30.html
https://github.com/facebook/hhvm/commits/HHVM-3.30.0
Wed Oct 31 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.29.1
* Fix reversed assignment when lambdas have multiple \'inout\'
parameters
* Significantly reduced lock contention when not running in
repo-authoritative mode
* Fix incorrect results for experimental HSL regex when
combined with offset capture
* Support building on systems where $PATH includes spaces
Tue Oct 23 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.29.0
See the Release Notes for the details:
https://hhvm.com/blog/2018/10/22/hhvm-3.29.html
https://github.com/facebook/hhvm/commits/HHVM-3.29.0
Wed Oct 3 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.28.3
* the regex support introduced in 3.28.2 no longer requires a
typechecker option (though the feature is still experimental)
* allow combining list assignment with \'as\' expressions, e.g.
list($a, $b) = $foo as (int, int)
Sat Sep 29 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.28.2
See the Release Notes for the details:
https://hhvm.com/blog/2018/09/28/hhvm-3.28.2.html
https://github.com/facebook/hhvm/commits/HHVM-3.28.2
Fri Aug 31 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.28.1
This release fixes a segmentation fault when talking to recent
MySQL server implementations.
Thu Aug 30 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.28.0
See the Release Notes for the details:
https://hhvm.com/blog/2018/08/28/hhvm-3.28.0.html
https://github.com/facebook/hhvm/commits/HHVM-3.28.0
Thu Aug 16 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.27.2
* Fix various crashes on MacOS due to differing assembler
conventions
* Fix deadlock when calling HH\\facts_parse in multiple
simultaneous requests
* Fix conditional breakpoints in debugger
* Fix hang in debugger shutdown
* Fix IDE symbol search for namespaced symbols that start with
a lowercase letter; this usually means namespaced functions.
* Fix hh_client crash on shutdown in some situations
* Fix crash when an unsupported experimental feature was enabled
Fri Jul 20 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.27.1
* Fix stability issues when async if HHVM is linked against
libevent2
* Fix overly-strict parameter type variance for implementations
of abstract methods
* Fix as-you-type formatting when using recent versions of
Nuclide
* Fix formatting of comments that include tabs
* Support debugging xbox requests
* Regression: Support \"{$$foo}\" in PHP files
* Regression: Support closures in anonymous classes
* Regression: Fix typechecker hangs/crashes if there are many if
(Shape::keyExists()) refinements
* Regression: Remove special meanings of some Hack keywords when
file is PHP
* Autocomplete: Remove ‘namespace fallback’ behavior for
functions, which is no longer part of Hack
* Autocomplete: Don’t trigger autocomplete after colons in case
statements in namespaces
* Autocomplete: Don’t trigger autocomplete after user attributes
Tue Jun 19 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.27.0
See the Release Notes for the details:
https://hhvm.com/blog/2018/06/18/hhvm-3.27.0.html
https://github.com/facebook/hhvm/commits/HHVM-3.27.0
Sat May 26 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.26.3
* CVE-2018-6337: clear folly::secureRandom (random_bytes() and
random_int()) buffer on fork. This does not affect 3.25 or
below.
* HackC: narrower parsing of bracketed expressions as casts
* HackC: fix PHP classes with the same name as special Hack
classes
* LSP: use hackfmt instead of hh_format for IDE code formatting
features (hh_format fails on most modern Hack code)
* LSP: respect IDE-provided indent width and tabs-or-spaces
preferences when formatting code
* LSP: fix support for as-you-type formatting in VSCode
* LSP: use statements in classes autocomplete should only
suggest traits
* Improve detection, handling, and errors for magic functions
where yield and await are unsupported; this improves handling
of IDisposable, IAsyncDisposable, __callStatic, and increases
PHP compatibility.
* Add an extra_paths= option to .hhconfig to include
dependencies outside of the project root. This is
experimental, and may be removed at any time.
Wed May 16 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.26.2
* HackC: support files/directories containing backslashes
* HackC: fix support for type constants in shape definitions
when using namespaces
* HackC: fix support for PHP files using Hack reserved words
as class names
* LSP: add support for textDocument/signatureHelp
Sat May 12 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.26.1
* ext_factparse: return empty lists instead of null for empty
files
* HackC: fix is_array() and similar checks for superglobals
* HackC: fix isset() for superglobals
* HackC: fix if statements with empty bodies when using the
if(0): endif; syntax
* HackC: fix support for nested array elements as inout
parameters
* HackC: fix support for unicode identifiers (e.g. property
names)
* HackC: fix support for class/enum constants as shape keys in
namespaces
* HackC: fix case-insensitivity of PHP keywords
Thu May 10 14:00:00 2018 munix9AATTgooglemail.com
- added opam-mini-repository.tar.gz
Tue May 8 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.26.0
See the Release Notes for the details:
https://hhvm.com/blog/2018/05/07/hhvm-3.26.html
https://github.com/facebook/hhvm/commits/HHVM-3.26.0
Fri May 4 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.25.3
* CVE-2018-6335: potential DoS in Proxygen’s handling of HTTP2
header padding
* CVE-2018-5771: PHP Bug #75571: Potential infinite loop in
gdImageCreateFromGifCtx()
* PHP Bug #73957: signed integer conversion in imagescale()
* CVE-2017-10989, CVE-2017-13685, CVE-2017-15286, CVE-2018-8740:
multiple issues in SQLite
Sat Mar 31 14:00:00 2018 munix9AATTgooglemail.com
- update to version 3.25.2
* CVE-2018-6334: ability to override global variables and
members of $GLOBALS via file uploads
* Linux packaging: fix a regression in our packaging environment
that prevented our binary packages from using system time zone
databases
* Mac packaging: add support for the system time zone database
* 3.25 and 3.24: stop raising incorrect warnings about PHP4-
style constructors in interfaces
Fri Mar 23 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.25.1
See the Release Notes for the details:
https://hhvm.com/blog/2018/03/22/hhvm-3.25.1.html
https://github.com/facebook/hhvm/commits/HHVM-3.25.1
Fri Mar 16 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.25.0
See the Release Notes for the details:
https://hhvm.com/blog/2018/03/15/hhvm-3.25.html
https://github.com/facebook/hhvm/commits/HHVM-3.25.0
Fri Mar 2 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.24.3
See the Release Notes for the details:
https://hhvm.com/blog/2018/03/02/hhvm-3.24.3.html
https://github.com/facebook/hhvm/commits/HHVM-3.24.3
Thu Feb 8 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.24.2
See the Release Notes for the details:
https://hhvm.com/blog/2018/02/07/hhvm-3.24.2.html
https://github.com/facebook/hhvm/commits/HHVM-3.24.2
Tue Feb 6 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.24.1
See the Release Notes for the details:
https://hhvm.com/blog/2018/01/30/hhvm-3.24.1.html
https://github.com/facebook/hhvm/commits/HHVM-3.24.1
Wed Jan 17 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.24.0
See the Release Notes for the details:
https://hhvm.com/blog/2018/01/16/hhvm-3.24.html
https://github.com/facebook/hhvm/commits/HHVM-3.24.0
Sun Jan 14 13:00:00 2018 munix9AATTgooglemail.com
- added fix-sort-lists.patch, cleanup
Fri Jan 12 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.23.4
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.23.4
Tue Jan 2 13:00:00 2018 munix9AATTgooglemail.com
- update to version 3.23.3
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.23.3
Thu Nov 23 13:00:00 2017 munix9AATTgooglemail.com
- update to version 3.23.2
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.23.2
Sat Nov 18 13:00:00 2017 munix9AATTgooglemail.com
- update to version 3.23.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.23.1
Tue Oct 31 13:00:00 2017 munix9AATTgooglemail.com
- filter out -fstack-clash-protection
Wed Sep 27 14:00:00 2017 munix9AATTgooglemail.com
- update to version 3.22.0
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.22.0
Mon Aug 28 14:00:00 2017 munix9AATTgooglemail.com
- added fix-include-xlocale_h.patch
Thu Aug 3 14:00:00 2017 munix9AATTgooglemail.com
- update to version 3.21.0
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.21.0
Sun Jun 11 14:00:00 2017 munix9AATTgooglemail.com
- update to version 3.20.2
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.20.2
Wed May 31 14:00:00 2017 munix9AATTgooglemail.com
- added fix-include-watchman.patch
- added fix-Add-missing-unicode-include-in-icu_h.patch
Sun May 7 14:00:00 2017 munix9AATTgooglemail.com
- added /etc/default/hhvm stuff
- added fix-use-system-re2.patch fix-use-system-ragel.patch
Fri May 5 14:00:00 2017 munix9AATTgooglemail.com
- hhvm.repo.central.path moved to /var/cache/hhvm/
Mon Apr 17 14:00:00 2017 munix9AATTgooglemail.com
- update to version 3.19.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.19.1
Thu Mar 30 14:00:00 2017 munix9AATTgooglemail.com
- update to version 3.18.2
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.18.2
Sun Mar 5 13:00:00 2017 munix9AATTgooglemail.com
- revised package
Tue Feb 28 13:00:00 2017 munix9AATTgooglemail.com
- update to version 3.18.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.18.1
Thu Feb 16 13:00:00 2017 munix9AATTgooglemail.com
- update to version 3.18.0
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.18.0
Tue Feb 14 13:00:00 2017 munix9AATTgooglemail.com
- update to version 3.17.3
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.17.3
Fri Feb 3 13:00:00 2017 munix9AATTgooglemail.com
- moved hhvm-hack and hack-emacs into main package hhvm
Wed Feb 1 13:00:00 2017 munix9AATTgooglemail.com
- update to version 3.17.2
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.17.2
Thu Jan 12 13:00:00 2017 munix9AATTgooglemail.com
- update to version 3.17.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.17.1
Wed Dec 21 13:00:00 2016 munix9AATTgooglemail.com
- update to version 3.15.4
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.15.4
Tue Nov 22 13:00:00 2016 munix9AATTgooglemail.com
- update to version 3.15.3
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.15.3
Sat Oct 15 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.15.2
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.15.2
Sun Oct 2 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.15.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.15.1
Thu Sep 8 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.15.0
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.15.0
Wed Aug 17 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.14.5
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.14.5
Thu Aug 4 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.14.4
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.14.4
Tue Jul 19 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.14.3
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.14.3
Sat Jul 2 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.14.2
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.14.2
Tue Jun 14 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.14.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.14.1
Wed Jun 8 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.13.2
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.13.2
Fri Apr 29 14:00:00 2016 munix9AATTgooglemail.com
- added fix-namespaces.patch
Sun Apr 17 14:00:00 2016 munix9AATTgooglemail.com
- added fix-Re-use-3_12-embed_systemlibs.patch
Tue Apr 12 14:00:00 2016 munix9AATTgooglemail.com
- update to version 3.13.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.13.1
Wed Mar 30 14:00:00 2016 munix9AATTgooglemail.com
- added fix-duplicate-defines.patch and fix-gcc5-iconv-memcpy.patch
Tue Mar 1 13:00:00 2016 munix9AATTgooglemail.com
- update to version 3.12.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.12.1
Fri Feb 12 13:00:00 2016 munix9AATTgooglemail.com
- update to version 3.12.0
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.12.0
Mon Feb 1 13:00:00 2016 munix9AATTgooglemail.com
- update to version 3.11.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.11.1
Thu Dec 10 13:00:00 2015 munix9AATTgooglemail.com
- update to version 3.11.0
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.11.0
Wed Oct 21 14:00:00 2015 munix9AATTgooglemail.com
- update to version 3.10.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.10.1
Fri Oct 16 14:00:00 2015 munix9AATTgooglemail.com
- update to version 3.10.0
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.10.0
Sat Aug 29 14:00:00 2015 munix9AATTgooglemail.com
- update to version 3.9.1
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.9.1
Wed Aug 19 14:00:00 2015 munix9AATTgooglemail.com
- initial package for version 3.9.0
See the Release Notes for the list of all new features and bug fixes:
https://github.com/facebook/hhvm/commits/HHVM-3.9.0