Skip to content
This repository was archived by the owner on Mar 29, 2024. It is now read-only.

Commit af32d00

Browse files
committed
Prepare 0.2.1 release
1 parent 4d08485 commit af32d00

File tree

3 files changed

+34
-44
lines changed

3 files changed

+34
-44
lines changed

docs/development/release-php-v8.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
6. Commit all changes with `Prepare X.Y.Z release` commit message.
1313
7. Push this commit and make sure it will pass the build.
1414
8. Tag it with `vX.Y.Z` tag and push. Create github release from a draft prepared in step above.
15-
9. Run `./scripts/subsplit.sh` to update `php-v8-stubs` which are available in a separate read-only repository to match
16-
packagist and composer expectations.
15+
9. Close relevant milestone, if any.
16+
10. Run `./scripts/subsplit.sh` to update `php-v8-stubs` which are available in a separate read-only repository to match
17+
packagist and composer expectations.
1718

1819
# PECL release
1920

@@ -38,7 +39,7 @@
3839
3. If version has already been published to bintray and you absolutely sure it needs to be re-built without revision
3940
bump, you will need to delete such version from bintray first.
4041

41-
# Afterall
42+
# After all
4243

4344
Update [js-sandbox](https://github.com/pinepain/js-sandbox)/.travis.yml to refer to new `php-v8` version and
4445
to relevant `libv8` PPA and packages.

package.xml

+28-39
Original file line numberDiff line numberDiff line change
@@ -26,57 +26,39 @@
2626
<email>[email protected]</email>
2727
<active>yes</active>
2828
</lead>
29-
<date>2017-09-30</date>
30-
<time>20:09:41</time>
29+
<date>2017-10-23</date>
30+
<time>20:20:32</time>
3131
<version>
32-
<release>0.2.0</release>
33-
<api>0.2.0</api>
32+
<release>0.2.1</release>
33+
<api>0.2.1</api>
3434
</version>
3535
<stability>
3636
<release>stable</release>
3737
<api>stable</api>
3838
</stability>
3939
<license uri="https://opensource.org/licenses/mit">The MIT License (MIT)</license>
4040
<notes>
41-
This release introduces many major changes to public API and breaks BC for the sake of more solid and stable API in a further versions.
41+
This release brings stability and improvements. It contains some minor BC-breaking changes which should not affect general public. See full change log below for details
4242

43-
PLEASE READ:
44-
Maintaining this project takes significant amount of time and efforts.
45-
If you like my work and want to show your appreciation, please consider supporting me: https://www.patreon.com/pinepain
43+
Changelog:
4644

47-
Changes:
45+
BC-breaking changes:
4846

49-
- Drop PHP 7.0 support, #30;
50-
- Add typehint for $value param in Template::set(), #36;
51-
- Rename constants to match PSR-2 convention, #34;
52-
- Make enum classes with constants final, #39 ;
53-
- Rename HeapStatistics methods to match PSR-2, #38;
54-
- Rename V8\Exception class and it methods, #33;
55-
- Add FunctionObject::getScriptId() method;
56-
- Remove no-data constants and use NULL instead, #40;
57-
- Refactor ScriptOriginOptions to use bit field, #42;
58-
- Remove redundant ScriptOrigin::is*() methods, #61;
59-
- Add missed method to Value stub;
60-
- Fix improperly adjusted external allocated memory on weak callback call;
61-
- Add Proxy and Promise builtin support, #55;
62-
- Add support for regexp dotAll flag, #54;
63-
- Move RegExpObject\Flags constants under RegExpObject, #64;
64-
- Move CompileOptions constants under ScriptCompiler, #65;
65-
- Add Isolate::MemoryPressureNotification() support, #57;
66-
- Require libv8 >= 6.3.163;
67-
- Add StackFrame::isWasm(), #53;
68-
- Get rid of CallbackInfo, #67;
69-
- Add immutable prototype chains to ObjectTemplate, #58;
70-
- Add StartupData::warmUpSnapshotDataBlob(), #59;
71-
- Add missed JSON class support, #56;
72-
- Add Message::getErrorLevel() method, #52;
73-
- Rename SymbolValue methods, #41;
74-
- Rename TryCatch methods, #41;
75-
- Add missed PrimitiveValue::value() abstract method;
76-
- Add Isolate::SetRAILMode(), #60;
77-
- Fix improperly internally constructed RAILMode enum class, #60.
47+
- require libv8 &gt;= 6.4.6;
48+
- remove UnboundScript::kNoScriptId const and return null in getId() on no data
49+
- change ScriptCompiler::cachedDataVersionTag(): int method name and return type to be ScriptCompiler::getCachedDataVersionTag(): float;
50+
- remove StartupData::getRawSize() method;
7851

79-
See https://github.com/pinepain/php-v8/issues/43#issuecomment-333329225 for details
52+
Non-breaking changes:
53+
54+
- fix segfault when invalid startup data passed to isolate;
55+
- fix external exception lost when it has refcount 1;
56+
- change script compiler version tag generation to take into account changes to extension internals;
57+
- add CallbackInfoInterface;
58+
- add support for ScriptCompiler::kProduceFullCodeCache;
59+
- add {Isolate,Context}::within() as optimization solution;
60+
- add StartupData::isRejected();
61+
- add docs skeleton.
8062
</notes>
8163
<contents>
8264
<dir name="/">
@@ -91,6 +73,8 @@
9173
<file name="src/php_v8_boolean_object.h" role="src" />
9274
<file name="src/php_v8_cached_data.cc" role="src" />
9375
<file name="src/php_v8_cached_data.h" role="src" />
76+
<file name="src/php_v8_callback_info_interface.cc" role="src" />
77+
<file name="src/php_v8_callback_info_interface.h" role="src" />
9478
<file name="src/php_v8_callbacks.cc" role="src" />
9579
<file name="src/php_v8_callbacks.h" role="src" />
9680
<file name="src/php_v8_context.cc" role="src" />
@@ -229,6 +213,7 @@
229213
<file name="tests/Context_reference_lifecycle.phpt" role="test" />
230214
<file name="tests/Context_setSecurityToken.phpt" role="test" />
231215
<file name="tests/Context_weakness.phpt" role="test" />
216+
<file name="tests/Context_within.phpt" role="test" />
232217
<file name="tests/Data.phpt" role="test" />
233218
<file name="tests/DateObject.phpt" role="test" />
234219
<file name="tests/ExceptionManager_createCreateMessage.phpt" role="test" />
@@ -279,9 +264,12 @@
279264
<file name="tests/Isolate_limit_time_not_hit.phpt" role="test" />
280265
<file name="tests/Isolate_limit_time_set_during_execution.phpt" role="test" />
281266
<file name="tests/Isolate_nested_termination_exceptions.phpt" role="test" />
267+
<file name="tests/Isolate_snapshot_mismatch.phpt" role="test" />
282268
<file name="tests/Isolate_snapshot_support.phpt" role="test" />
283269
<file name="tests/Isolate_throwException.phpt" role="test" />
284270
<file name="tests/Isolate_throwException_with_external.phpt" role="test" />
271+
<file name="tests/Isolate_throwException_with_external_preserved.phpt" role="test" />
272+
<file name="tests/Isolate_within.phpt" role="test" />
285273
<file name="tests/JSON.phpt" role="test" />
286274
<file name="tests/MapObject.phpt" role="test" />
287275
<file name="tests/Message.phpt" role="test" />
@@ -354,6 +342,7 @@
354342
<file name="stubs/src/ArrayObject.php" role="doc" />
355343
<file name="stubs/src/BooleanObject.php" role="doc" />
356344
<file name="stubs/src/BooleanValue.php" role="doc" />
345+
<file name="stubs/src/CallbackInfoInterface.php" role="doc" />
357346
<file name="stubs/src/ConstructorBehavior.php" role="doc" />
358347
<file name="stubs/src/Context.php" role="doc" />
359348
<file name="stubs/src/Data.php" role="doc" />

php_v8.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ extern zend_module_entry php_v8_module_entry;
3636
#endif
3737

3838
#ifndef PHP_V8_VERSION
39-
#define PHP_V8_VERSION "0.3.0"
39+
#define PHP_V8_VERSION "0.2.1"
4040
#endif
4141

4242
#ifndef PHP_V8_REVISION
43-
#define PHP_V8_REVISION "dev"
43+
#define PHP_V8_REVISION "release"
4444
#endif
4545

4646

0 commit comments

Comments
 (0)