Skip to content

Releases: xp-framework/core

11.6.0: Annotation array eval notation

03 Jun 18:44

Choose a tag to compare

Features

11.5.0: Date and timezone improvements

17 Dec 13:32

Choose a tag to compare

Features

  • Made some minor performance optimizations to util.Date constructor
    (@thekid)
  • Merged PR #322: Defer date.timezone checks until the util.Date class is
    used, making XP core functionality unrelated to dates useable even if
    no timezone is set.
    (@thekid)

Bugfixes

  • Merged PR #321: Fix util.TimeZone::hasDst(), which was broken in
    multiple regards
    (@thekid)
  • Fixed issue #320: Call to undefined method util.TimeZone::getName()
    (@thekid)

11.4.7: Generics parsing fix

03 Dec 20:16

Choose a tag to compare

Bugfixes

  • Fixed parsing generic definitions with string interpolations - @thekid

11.4.6: Generics parsing fix

06 Nov 17:23

Choose a tag to compare

Bugfixes

  • Make parsing generic definitions more robust against when not using
    whitespace between parent class name and class body
    (@thekid)

11.4.5: Generic function types fix

06 Nov 15:45

Choose a tag to compare

Bugfixes

  • Fixed generic function types such as function(T, T): int - @thekid

11.4.4: Generics types fix

06 Nov 09:55

Choose a tag to compare

Bugfixes

  • Fixed possible Undefined array key exceptions in lang.GenericTypes
    (@thekid)

11.4.3: Objects::stringOf() fix

21 Oct 09:11

Choose a tag to compare

Bugfixes

  • Fixed issue #317: Single-pair map indentation - @thekid

11.4.2: Type::named() consistency

03 Sep 11:37

Choose a tag to compare

Bugfixes

11.4.1: Properties expansion fix

28 Aug 17:56

Choose a tag to compare

Bugfixes

  • Fixed issue #315: Array to string conversion when reading property file
    sections with arrays or maps
    (@thekid)

11.4.0: Delayed property expansion

17 Aug 16:08

Choose a tag to compare

Features

  • Merged PR #314: Delay expansion of values in property files until values
    are read. This fixes potential information disclosure problems in string
    representations of util.Property instances, see #312.
    (@thekid)