Skip to content

Releases: V4Fire/Core

V4Core v4.0.0-alpha.37

03 Jun 14:27
Compare
Choose a tag to compare
Pre-release

🐛 Bug Fix

  • Fixed an issue with clearing nextTick core/async

V4Core v4.0.0-alpha.36

16 May 11:54
Compare
Choose a tag to compare
Pre-release

🐛 Bug Fix

  • Fixed an issue where an internal property, blackList, was being written to the target object

V4Core v4.0.0-alpha.35

13 May 12:31
Compare
Choose a tag to compare
Pre-release

🐛 Bug Fix

  • Added logic that checks whether the passed instance is of the native Headers class or V4Headers.
    To avoid overwriting response header values, we use the append method when handling the native Headers object
    received from the response, while retaining the original practice of setting headers with the set method when
    constructing request headers core/request/headers

V4Core v4.0.0-alpha.34

06 May 12:07
Compare
Choose a tag to compare
Pre-release

🚀 New Feature

  • Added support for specifying a region for i18n core/prelude

V4Core v3.99.0

25 Apr 09:09
904619b
Compare
Choose a tag to compare

🚀 New Feature

  • Added Region support in core/prelude/i18n module.

V4Core v4.0.0-alpha.33

19 Apr 11:36
Compare
Choose a tag to compare
Pre-release

🐛 Bug Fix

  • Now, the custom Headers class uses the append method
    to construct a new set of headers based on the built-in Headers in the Fetch API implementation core/request/headers

V4Core v4.0.0-alpha.32

16 Apr 11:48
d34f207
Compare
Choose a tag to compare
Pre-release

🐛 Bug Fix

  • Fixed type generation for standalone build

V4Core v4.0.0-alpha.31

12 Apr 11:02
Compare
Choose a tag to compare
Pre-release

🏠 Internal

  • Use WeakRef for RequestError details only in node environment core/request/error

V4Core v4.0.0-alpha.30

09 Apr 11:11
Compare
Choose a tag to compare
Pre-release

💥 Breaking Change

  • Support for the Got library based query engine has been removed.
    Now, built-in fetch is used with Node.js. core/request

🚀 New Feature

  • Now MiddlewareParams are being passed to the RequestAPIValue function core/request

V4Core v4.0.0-alpha.29

04 Apr 11:42
Compare
Choose a tag to compare
Pre-release

💥 Breaking Change

  • Dropped API support with rest parameters in the addToPrototype core/prelude/function/extend.
    Migration Guide: Foo.addToPrototype(bar, baz) -> Foo.addToPrototype({bar, baz}).

🐛 Bug Fix

  • Fixed providerOptions inheritance by ExtraProviders core/data
  • Fixed the bug with the debounce decorator:
    conflicts between debounced methods across instances of identical classes or components have been resolved core/functools