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

Commit 5ad2a2d

Browse files
committed
Prepare 0.1.5 release
1 parent 22e0f6b commit 5ad2a2d

File tree

3 files changed

+21
-30
lines changed

3 files changed

+21
-30
lines changed

package.xml

+19-28
Original file line numberDiff line numberDiff line change
@@ -38,33 +38,20 @@
3838
</stability>
3939
<license uri="https://opensource.org/licenses/mit">The MIT License (MIT)</license>
4040
<notes>
41-
This release adds low-level optimizations, simplify some internal methods and fix few bugs. For more details see change list below.
42-
43-
As of this release, V8 >= 6.0.45 required.
41+
This release introduces separate representation for undefined value and fixes some bugs.
42+
Please, see change list below for more details.
4443

4544
* - BC-breaking or potentially BC-breaking changes
4645

4746
Changes to public API and other important changes which may affect end-user:
4847

49-
- Raise libv8 required version to 6.0.45;
50-
- Add V8\Value::InstanceOf() method;
51-
- Add V8\ObjectValue::SetNativeDataProperty() method;
52-
- Add V8\PropertyFilter, V8\KeyCollectionMode and V8\IndexFilter enums;
53-
- Add property filtering support to V8\ObjectValue::Get{Property,OwnProperty}Names();
54-
- Consistently expose all well-known symbols on V8\SymbolValue;
55-
- Setting boolean props on StackFrame with valid type;
56-
- Remove non-working and non-supporting $attributes argument from V8\StringValue constructor in stubs;
57-
- * Add V8\ConstructorBehavior and support for it in V8\FunctionTemplate constructor;
58-
- * Add signature support in V8\FunctionTemplate constructor via $receiver;
59-
- * Add signature support to Template:SetNativeDataProperty() and ObjectTemplate::SetAccessor() via $receiver;
60-
- * Remove require $isolate parameter from V8\Value::TypeOf();
61-
- * Remove deprecated V8\Context::EstimatedSize() method;
62-
- * Remove deprecated V8\StackTrace\StackTraceOptions;
63-
- * Remove deprecated V8\StackTrace::AsArray();
64-
- * Require Context explicitly in V8\Isolate::ThrowException();
65-
- * Rename V8\Exceptions\GenericException to V8\Exceptions\Exception;
66-
- * Rename V8\Exceptions\AbstractResourceLimitException to V8\Exceptions\ResourceLimitException;
67-
- internal: Check whether returned context is empty in V8\Isolate\GetEnteredContext() instead of checking InContext();
48+
- * Make V8\Isolate::ThrowException() method void;
49+
- * Remove non-documented V8Isolate::ContextDisposedNotification();
50+
- * Make V8\Value, V8\PrimitiveValue and V8\NameValue abstract;
51+
- V8\Isolate time limit affects js runtime only;
52+
- Introduce separate class for undefined value - V8UndefenedValue;
53+
- Fix V8\Tempalte::Set() to do not accept non-primitive values;
54+
- Remove all private properties from V8\Isolate;
6855
</notes>
6956
<contents>
7057
<dir name="/">
@@ -175,6 +162,8 @@
175162
<file name="src/php_v8_uint32.h" role="src" />
176163
<file name="src/php_v8_unbound_script.cc" role="src" />
177164
<file name="src/php_v8_unbound_script.h" role="src" />
165+
<file name="src/php_v8_undefined.cc" role="src" />
166+
<file name="src/php_v8_undefined.h" role="src" />
178167
<file name="src/php_v8_value.cc" role="src" />
179168
<file name="src/php_v8_value.h" role="src" />
180169
<file name="config.m4" role="src" />
@@ -184,6 +173,7 @@
184173
<file name="tests/.testsuite.php" role="test" />
185174
<file name="tests/.tracking_dtors.php" role="test" />
186175
<file name="tests/.v8-helpers.php" role="test" />
176+
<file name="tests/001-V8_extension_info.phpt" role="test" />
187177
<file name="tests/001-verify-method-parameters-type.phpt" role="test" />
188178
<file name="tests/001.phpt" role="test" />
189179
<file name="tests/002-enums.phpt" role="test" />
@@ -228,6 +218,7 @@
228218
<file name="tests/V8FunctionObject_weakness_multiple.phpt" role="test" />
229219
<file name="tests/V8FunctionTemplate.phpt" role="test" />
230220
<file name="tests/V8FunctionTemplate_GetFunction.phpt" role="test" />
221+
<file name="tests/V8FunctionTemplate_Set.phpt" role="test" />
231222
<file name="tests/V8FunctionTemplate_SetCallHandler.phpt" role="test" />
232223
<file name="tests/V8FunctionTemplate_callback_weakness.phpt" role="test" />
233224
<file name="tests/V8FunctionTemplate_constructor_behavior.phpt" role="test" />
@@ -250,14 +241,15 @@
250241
<file name="tests/V8Isolate_limit_memory_nested.phpt" role="test" />
251242
<file name="tests/V8Isolate_limit_memory_not_hit.phpt" role="test" />
252243
<file name="tests/V8Isolate_limit_time.phpt" role="test" />
244+
<file name="tests/V8Isolate_limit_time_affects_js_runtime_only.phpt" role="test" />
245+
<file name="tests/V8Isolate_limit_time_changed_at_runtime.phpt" role="test" />
253246
<file name="tests/V8Isolate_limit_time_nested.phpt" role="test" />
254247
<file name="tests/V8Isolate_limit_time_not_hit.phpt" role="test" />
255248
<file name="tests/V8Isolate_limit_time_set_during_execution.phpt" role="test" />
256249
<file name="tests/V8Isolate_nested_termination_exceptions.phpt" role="test" />
257250
<file name="tests/V8Isolate_snapshot_support.phpt" role="test" />
258251
<file name="tests/V8MapObject.phpt" role="test" />
259252
<file name="tests/V8Message.phpt" role="test" />
260-
<file name="tests/V8NameValue.phpt" role="test" />
261253
<file name="tests/V8NamedPropertyHandlerConfiguration.phpt" role="test" />
262254
<file name="tests/V8NullValue.phpt" role="test" />
263255
<file name="tests/V8NumberObject.phpt" role="test" />
@@ -279,7 +271,6 @@
279271
<file name="tests/V8ObjectValue_SetIntegrityLevel.phpt" role="test" />
280272
<file name="tests/V8ObjectValue_SetNativeDataProperty.phpt" role="test" />
281273
<file name="tests/V8ObjectValue_SetNativeDataProperty_from_template.phpt" role="test" />
282-
<file name="tests/V8PrimitiveValue.phpt" role="test" />
283274
<file name="tests/V8PropertyCallbackInfo.phpt" role="test" />
284275
<file name="tests/V8RegExpObject.phpt" role="test" />
285276
<file name="tests/V8ReturnValue.phpt" role="test" />
@@ -311,11 +302,10 @@
311302
<file name="tests/V8TryCatch_from_script.phpt" role="test" />
312303
<file name="tests/V8Uint32Value.phpt" role="test" />
313304
<file name="tests/V8UnboundScript.phpt" role="test" />
314-
<file name="tests/V8Value.phpt" role="test" />
315-
<file name="tests/V8Value_destruct.phpt" role="test" />
305+
<file name="tests/V8Undefined.phpt" role="test" />
306+
<file name="tests/V8UndefinedValue_destruct.phpt" role="test" />
307+
<file name="tests/V8UndefinedValue_invalid_ctor_arg_type.phpt" role="test" />
316308
<file name="tests/V8Value_empty.phpt" role="test" />
317-
<file name="tests/V8Value_invalid_ctor_arg_type.phpt" role="test" />
318-
<file name="tests/V8_extension_info.phpt" role="test" />
319309
<file name="stubs/LICENSE" role="doc" />
320310
<file name="stubs/README.md" role="doc" />
321311
<file name="stubs/composer.json" role="doc" />
@@ -384,6 +374,7 @@
384374
<file name="stubs/src/TryCatch.php" role="doc" />
385375
<file name="stubs/src/Uint32Value.php" role="doc" />
386376
<file name="stubs/src/UnboundScript.php" role="doc" />
377+
<file name="stubs/src/UndefinedValue.php" role="doc" />
387378
<file name="stubs/src/Value.php" role="doc" />
388379
<file name="LICENSE" role="doc" />
389380
<file name="README.md" 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.2.0"
39+
#define PHP_V8_VERSION "0.1.5"
4040
#endif
4141

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

4646

File renamed without changes.

0 commit comments

Comments
 (0)