1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# Release Notes
## [Unreleased](https://github.com/laravel/serializable-closure/compare/v1.2.2...master)
## [v1.2.2](https://github.com/laravel/serializable-closure/compare/v1.2.1...v1.2.2) - 2022-09-08
### Changed
- Adds PHP 8.2 Support by @driesvints in https://github.com/laravel/serializable-closure/pull/57
## [v1.2.1](https://github.com/laravel/serializable-closure/compare/v1.2.0...v1.2.1) - 2022-08-26
### Fixed
- Fixes serialization of date carbon objects by @nunomaduro in https://github.com/laravel/serializable-closure/pull/56
## [v1.2.0](https://github.com/laravel/serializable-closure/compare/v1.1.1...v1.2.0) - 2022-05-16
### Added
- Adds Function Attributes support by @nunomaduro in https://github.com/laravel/serializable-closure/pull/46
- Adds support for closure inside context with enum property by @ksassnowski in https://github.com/laravel/serializable-closure/pull/47
## [v1.1.1](https://github.com/laravel/serializable-closure/compare/v1.1.0...v1.1.1) - 2022-02-15
### Fixed
- Fixes first class callables namespaces by @nunomaduro in https://github.com/laravel/serializable-closure/pull/39
## [v1.1.0](https://github.com/laravel/serializable-closure/compare/v1.0.5...v1.1.0) - 2022-02-01
### Changed
- Adds support for first class callable syntax ([#33](https://github.com/laravel/serializable-closure/pull/33))
## [v1.0.5 (2020-11-30)](https://github.com/laravel/serializable-closure/compare/v1.0.4...v1.0.5)
### Fixed
- Fixes serialisation of closures with named arguments code ([#29](https://github.com/laravel/serializable-closure/pull/29))
## [v1.0.4 (2020-11-16)](https://github.com/laravel/serializable-closure/compare/v1.0.3...v1.0.4)
### Fixed
- Fixes the serialization of Enum objects ([#28](https://github.com/laravel/serializable-closure/pull/28))
## [v1.0.3 (2020-10-07)](https://github.com/laravel/serializable-closure/compare/v1.0.2...v1.0.3)
### Fixed
- Possible stream protocol collision with `opis/closure` ([#23](https://github.com/laravel/serializable-closure/pull/23))
## [v1.0.2 (2020-09-29)](https://github.com/laravel/serializable-closure/compare/v1.0.1...v1.0.2)
### Fixed
- Fixes serialization of closures that got rebound ([#19](https://github.com/laravel/serializable-closure/pull/19))
## [v1.0.1 (2020-09-29)](https://github.com/laravel/serializable-closure/compare/v1.0.0...v1.0.1)
### Fixed
- Fixes null safe operator with properties ([#16](https://github.com/laravel/serializable-closure/pull/16))
## v1.0.0 (2020-09-14)
Initial release
|