mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-17 09:18:37 +08:00
6.9 KiB
6.9 KiB
Changelog
All notable changes to enum will be documented in this file
3.13.0 - 2022-04-22
- Drop PHP 7.4 support
- Add
Stringableinterface to enum class - #116
3.12.0 - 2022-02-05
- Add support for
isset()calls to enum->valueund->label- #109
3.12.0 - 2022-02-05
- Add support for
isset()calls to enum->valueund->label- #109
3.11.1 - 2021-11-25
- Change attribute for PHP 8.1 compatibility
3.11.0 - 2021-11-25
- Added support for PHP 8.1
3.10.0 - 2021-10-20
- Fix
from()andtryFrom()methods to do PHP type-juggling (string to integer) - #108 - Fix
tryFrom()method to catch scalar type-errors - #105
3.9.0 - 2021-05-10
- Add
from()andtryFrom()methods to get closer to PHP8.1 native enums - #94 - Deprecate
make()in favor offrom()method - #94 - Add flyweight pattern to return the same enum instance for every call - #94
3.8.0 - 2021-04-12
- Add
cases()method to retrieve all instances of the enum - #79
3.7.2 - 2021-03-10
- Fix problem with
@readonlyannotation and annotation parsing libraries - #92
3.7.1 - 2021-02-12
- Add description to PHPUnit assertion methods - #88
3.7.0 - 2021-01-13
- Add ability to use a
Closureas value/label map - #87
3.6.4 - 2021-01-13
- Add psalm annotations to seal and lock internals - #85
3.6.3 - 2021-01-12
- Fix extra whitespaces in enum definition doc-blocks - #86
3.6.2 - 2020-12-17
- Fix issue with enums not callable within enum classes - #82
3.6.0 - 2020-11-26
- Add
assertIsEnumValue()andassertIsEnumLabel()to\Spatie\Enum\Phpunit\EnumAssertions- #80
3.5.1 - 2020-11-19
- Fix
\Spatie\Enum\Enumphp-doc@property-readannotations - #78
3.5.0 - 2020-10-22
- Add Faker provider to generate random enum instances, values and labels
\Spatie\Enum\Faker\FakerEnumProvider- #74
3.4.0 - 2020-10-22
- Add
\Spatie\Enum\Enum::toValues()and\Spatie\Enum\Enum::toLabels()methods - #72
3.3.0 - 2020-10-21
- Add
\Spatie\Enum\Phpunit\EnumAssertionswith a default set of assertions - #71
3.2.0 - 2020-10-08
- Support PHP ^8.0
3.1.2 - 2020-09-28
- Don't cast value to string when serializing to JSON - #68
3.1.1 - 2020-08-28
- Throw
TypeErrorif value passed toEnumconstruct is notstringorinteger
3.1.0 - 2020-08-28
- Add missing type-hints and doc-blocks
- Fix unique values and labels
- Flag
EnumDefinitionas internal
3.0.0 - 2020-07-22
- A complete overhaul of the package, all details are discussed in the PR
2.3.8 - 2020-07-17
- Fix for static
isXyz($value)magic methods tto returnfalseon invalid value - follow up fix to v2.3.3 - #62
2.3.7 - 2020-06-30
- Fix internal usage of
toArray()to allow custom array representations #58
2.3.6 - 2020-03-11
- Fix the name if it's matched but isn't the same #50
2.3.5 - 2020-02-11
- Fix for
isEqual()andisAny()method doc-tags to acceptmixedvalues
2.3.4 - 2020-01-17
- Fix for static method call passed to
__callwithin the context of an object
2.3.3 - 2019-09-25
- Allow passing invalid string values to
isEqual()#39
2.3.1 - 2019-08-19
- Fix
protectedmethod calls to allow overrides #37
2.3.0 - 2019-08-05
- Make
\Spatie\Enum\Enumerable::isValidIndex/Name/Value()methods public #36 -
Please note that this could be breaking for custom implementations of the
\Spatie\Enum\Enumerableinterface.
2.2.0 - 2019-07-18
- Add
\Spatie\Enum\Enum::getAll()method #33
2.1.2 - 2019-05-07
- Fix calling public non-static methods #32
2.1.1 - 2019-04-18
- Fix overriden existing public static methods like
Enum::toArray()#29
2.1.0 - 2019-04-17
- Add enum map index and value
Enum::MAP_INDEXandEnum::MAP_VALUE#25
2.0.1 - 2019-04-08
- Improved static analysis support for
::make
2.0.0 - 2019-04-01
A full major rework of the Enum class - we try to list all changes, for more details you can check out the PR and the Issue.
- Add
\Spatie\Enum\Enumerableinterface - Add
\Spatie\Enum\Exceptions\DuplicatedIndexException,\Spatie\Enum\Exceptions\DuplicatedValueException,\Spatie\Enum\Exceptions\InvalidIndexExceptionand\Spatie\Enum\Exceptions\InvalidValueExceptionexceptions - Add
\Spatie\Enum\Enum->getIndex()method - Add
\Spatie\Enum\Enum::getIndices()method - Add
\Spatie\Enum\Enum->getValue()method - Add
\Spatie\Enum\Enum::getValues()method - Rename
\Spatie\Enum\Enum::from()to\Spatie\Enum\Enum::make() - Rename
\Spatie\Enum\Enum::equals()to\Spatie\Enum\Enum::isEqual() - Rename
\Spatie\Enum\Enum::isOneOf()to\Spatie\Enum\Enum::isAny() - Change
\Spatie\Enum\Enum->__construct()signature and responsibility - only take index & value and validate them - Change
\Spatie\Enum\Enum::toArray()return value instead of an array ofvalue => nameit returnsvalue => index - Drop recursive
\Spatie\Enum\Enum::make()support from inside of an unstatic method - Drop
\Spatie\Enum\Enum::$mapin favor of\Spatie\Enum\Enum->getIndex()and\Spatie\Enum\Enum->getValue() - Update all methods have strict type checks:
index: intandvalue: string - Update all methods are compatible with all required types: index, value, name or instance of Enum
1.1.0 - 2019-03-18
- Add support for is* checks
1.0.2 - 2019-03-18
- Support case insensitive enum values (#13)
1.0.0 - 2019-02-08
- initial release