Skip to content

Releases: xp-framework/core

10.9.1: Iconv fallback

24 Apr 20:26
Compare
Choose a tag to compare

Bugfixes

  • Make XP work when iconv extension is not available but mbstring
    is, offering a degraded and not 100% compatible experience, see #270
    (@thekid)

10.9.0: Updated mime types

20 Mar 12:29
Compare
Choose a tag to compare

Features

Bugfixes

  • Fixed issue #265: Environment::variables() empty on certain environments
    by replacing $_ENV by $_SERVER, see PR #266
    (@thekid)

10.8.1: Secret fixes

14 Mar 17:28
Compare
Choose a tag to compare

Bugfixes

  • Fixed issue #263: Warnings in util.Secret with PHP 8.1 - @thekid

10.8.0: PHP 8.1 enum forward compatibility

10 Mar 19:28
Compare
Choose a tag to compare

Features

Bugfixes

  • Fixed issue #262: xar command - compile error - @thekid

10.7.0: PHP 8.1 forward compatibility

06 Mar 16:55
Compare
Choose a tag to compare

Features

  • Merged PR #259: Support reflective access to non-constant expressions
    for parameter defaults
    (@thekid)

Bugfixes

  • Fixed issue #260: Failed tests on Ubuntu 20.04 - @thekid

10.6.1: PHP 8.1 NULL forward fixes

06 Mar 16:55
Compare
Choose a tag to compare

Bugfixes

10.6.0: Nullable types

18 Jan 20:25
Compare
Choose a tag to compare

Features

  • Merged PR #253: Add support for nullable types (via lang.Nullable)
    (@thekid)
  • Merged PR #256: Make it possible to pass a default resolver (*) to
    Type::resolve()
    (@thekid)

10.5.3: Nullable union types fix

17 Jan 15:53
Compare
Choose a tag to compare

Bugfixes

10.5.2: FunctionType fixes

16 Jan 15:11
Compare
Choose a tag to compare

Bugfixes

  • Handle self, static and parent return and parameter types inside
    lang.FunctionType::isInstance().
    (@thekid)
  • Fixed issue #255: Function return types not taken into account - @thekid

10.5.1: newinstance() warning fix

29 Nov 01:00
Compare
Choose a tag to compare

Bugfixes

  • Fixed issue #254: Warning raised inside newinstance() in PHP 7.4+ when
    using parameter or return type hints.