Skip to content

Commit 1071f1b

Browse files
committed
Revert "Update HHVM to 4.160 (#1220)" to test deploy
This reverts commit 5f20643.
1 parent 585a7e4 commit 1071f1b

File tree

14 files changed

+47
-49
lines changed

14 files changed

+47
-49
lines changed

.deploy/built-site.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Creates a docker image with a built copy of the site. Not repo-auth.
22
# Useful as a scratch/testing area.
3-
FROM hhvm/hhvm:4.160-latest
3+
FROM hhvm/hhvm:4.154-latest
44
ENV TZ UTC
55
ENV LANG en_US.UTF-8
66
ENV LANGUAGE en_US:en

.deploy/prod.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hhvm/hhvm-proxygen:4.160-latest
1+
FROM hhvm/hhvm-proxygen:4.154-latest
22

33
ADD hhvm.prod.ini /etc/hhvm/site.ini
44
ADD hhvm.hhbc /var/www/hhvm.hhbc

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hhvm/hhvm-proxygen:4.160-latest
1+
FROM hhvm/hhvm-proxygen:4.154-latest
22

33
ARG WORKSPACE
44

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ ubuntu ]
13-
hhvm: [ '4.160' ]
13+
hhvm: [ '4.154' ]
1414
runs-on: ${{matrix.os}}-latest
1515
steps:
1616
- uses: actions/checkout@v2

build/extracted-examples/guides/hack/16-readonly/04-explicit-readonly-keywords/readonly_coeffects.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ class Foo {
1212
function read_static()[read_globals]: void {
1313
$y = readonly Foo::$bar; // keyword required
1414
}
15-
function read_static2()[leak_safe]: void {
15+
function read_static2()[controlled]: void {
1616
$y = readonly Foo::$bar; // keyword required
1717
}

build/extracted-examples/guides/hack/21-XHP/16-extending/xhp-async.inc.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use namespace Facebook\XHP\Core as x;
88
final xhp class ui_get_status extends x\element {
99

1010
protected async function renderAsync(): Awaitable<x\node> {
11-
$ch = \curl_init('https://metastatus.com/graph-api');
11+
$ch = \curl_init('https://status.fb.com/graph-api');
1212
\curl_setopt($ch, \CURLOPT_USERAGENT, 'hhvm/user-documentation example');
1313
$status = await \HH\Asio\curl_exec($ch);
1414
return <x:frag>Status is: {$status}</x:frag>;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
namespace HHVM\UserDocumentation\Guides\Hack\SilencingErrors\ErrorCodes\ArrayAccess;
55

66
function foo(int $m): void {
7-
/* HH_FIXME[4324] Indexing a type that isn't indexable. */
7+
/* HH_FIXME[4005] Indexing a type that isn't indexable. */
88
$value = $m['foo'];
99
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
33
"facebook/xhp-lib": "^4.0",
4-
"hhvm": "4.160.*",
4+
"hhvm": "4.154.*",
55
"usox/hackttp": "~0.5.3",
66
"hhvm/hhvm-autoload": "^3.0",
77
"hhvm/type-assert": "^4.0",

composer.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)