|
38 | 38 | </stability>
|
39 | 39 | <license uri="https://opensource.org/licenses/mit">The MIT License (MIT)</license>
|
40 | 40 | <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. |
44 | 43 |
|
45 | 44 | * - BC-breaking or potentially BC-breaking changes
|
46 | 45 |
|
47 | 46 | Changes to public API and other important changes which may affect end-user:
|
48 | 47 |
|
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; |
68 | 55 | </notes>
|
69 | 56 | <contents>
|
70 | 57 | <dir name="/">
|
|
175 | 162 | <file name="src/php_v8_uint32.h" role="src" />
|
176 | 163 | <file name="src/php_v8_unbound_script.cc" role="src" />
|
177 | 164 | <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" /> |
178 | 167 | <file name="src/php_v8_value.cc" role="src" />
|
179 | 168 | <file name="src/php_v8_value.h" role="src" />
|
180 | 169 | <file name="config.m4" role="src" />
|
|
184 | 173 | <file name="tests/.testsuite.php" role="test" />
|
185 | 174 | <file name="tests/.tracking_dtors.php" role="test" />
|
186 | 175 | <file name="tests/.v8-helpers.php" role="test" />
|
| 176 | + <file name="tests/001-V8_extension_info.phpt" role="test" /> |
187 | 177 | <file name="tests/001-verify-method-parameters-type.phpt" role="test" />
|
188 | 178 | <file name="tests/001.phpt" role="test" />
|
189 | 179 | <file name="tests/002-enums.phpt" role="test" />
|
|
228 | 218 | <file name="tests/V8FunctionObject_weakness_multiple.phpt" role="test" />
|
229 | 219 | <file name="tests/V8FunctionTemplate.phpt" role="test" />
|
230 | 220 | <file name="tests/V8FunctionTemplate_GetFunction.phpt" role="test" />
|
| 221 | + <file name="tests/V8FunctionTemplate_Set.phpt" role="test" /> |
231 | 222 | <file name="tests/V8FunctionTemplate_SetCallHandler.phpt" role="test" />
|
232 | 223 | <file name="tests/V8FunctionTemplate_callback_weakness.phpt" role="test" />
|
233 | 224 | <file name="tests/V8FunctionTemplate_constructor_behavior.phpt" role="test" />
|
|
250 | 241 | <file name="tests/V8Isolate_limit_memory_nested.phpt" role="test" />
|
251 | 242 | <file name="tests/V8Isolate_limit_memory_not_hit.phpt" role="test" />
|
252 | 243 | <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" /> |
253 | 246 | <file name="tests/V8Isolate_limit_time_nested.phpt" role="test" />
|
254 | 247 | <file name="tests/V8Isolate_limit_time_not_hit.phpt" role="test" />
|
255 | 248 | <file name="tests/V8Isolate_limit_time_set_during_execution.phpt" role="test" />
|
256 | 249 | <file name="tests/V8Isolate_nested_termination_exceptions.phpt" role="test" />
|
257 | 250 | <file name="tests/V8Isolate_snapshot_support.phpt" role="test" />
|
258 | 251 | <file name="tests/V8MapObject.phpt" role="test" />
|
259 | 252 | <file name="tests/V8Message.phpt" role="test" />
|
260 |
| - <file name="tests/V8NameValue.phpt" role="test" /> |
261 | 253 | <file name="tests/V8NamedPropertyHandlerConfiguration.phpt" role="test" />
|
262 | 254 | <file name="tests/V8NullValue.phpt" role="test" />
|
263 | 255 | <file name="tests/V8NumberObject.phpt" role="test" />
|
|
279 | 271 | <file name="tests/V8ObjectValue_SetIntegrityLevel.phpt" role="test" />
|
280 | 272 | <file name="tests/V8ObjectValue_SetNativeDataProperty.phpt" role="test" />
|
281 | 273 | <file name="tests/V8ObjectValue_SetNativeDataProperty_from_template.phpt" role="test" />
|
282 |
| - <file name="tests/V8PrimitiveValue.phpt" role="test" /> |
283 | 274 | <file name="tests/V8PropertyCallbackInfo.phpt" role="test" />
|
284 | 275 | <file name="tests/V8RegExpObject.phpt" role="test" />
|
285 | 276 | <file name="tests/V8ReturnValue.phpt" role="test" />
|
|
311 | 302 | <file name="tests/V8TryCatch_from_script.phpt" role="test" />
|
312 | 303 | <file name="tests/V8Uint32Value.phpt" role="test" />
|
313 | 304 | <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" /> |
316 | 308 | <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" /> |
319 | 309 | <file name="stubs/LICENSE" role="doc" />
|
320 | 310 | <file name="stubs/README.md" role="doc" />
|
321 | 311 | <file name="stubs/composer.json" role="doc" />
|
|
384 | 374 | <file name="stubs/src/TryCatch.php" role="doc" />
|
385 | 375 | <file name="stubs/src/Uint32Value.php" role="doc" />
|
386 | 376 | <file name="stubs/src/UnboundScript.php" role="doc" />
|
| 377 | + <file name="stubs/src/UndefinedValue.php" role="doc" /> |
387 | 378 | <file name="stubs/src/Value.php" role="doc" />
|
388 | 379 | <file name="LICENSE" role="doc" />
|
389 | 380 | <file name="README.md" role="doc" />
|
|
0 commit comments