Knapsack icon indicating copy to clipboard operation
Knapsack copied to clipboard

Planned features and changes for 11.0.0

Open DusanKasan opened this issue 4 years ago • 4 comments

So since this came up in multiple PRs/issues, I guess I will summarize what will be done in near future.

The biggest problem is the limitation of the CollectionTrait that causes the collection methods on every class that uses it to return instance of Collection where you would prefer it to return an instance of the original class. To solve this, every collection method/function will return CollectionInterface (which the class will implement because it uses the CollectionTrait) instead of the included Collection and a mechanism will be provided by the implementor to build a new instance of the original class -- probably a factory method of sorts, where the input will be an iterable. The exact implementation is till open to discussion.

This will have to go hand in hand with introduction of Generic documentation on the collection methods to describe the return types (suggested in https://github.com/DusanKasan/Knapsack/issues/61). We will still have to deal with losing type information during some operations (like filter) but it should help anyway.

Also most of the reported issues should have their fixes merged before the release of 11.0.0.

DusanKasan avatar Mar 03 '20 10:03 DusanKasan

Oh and if nothing unexpected happens, don't expect PHP version bump. The only reasons to bump the PHP version I see would be to introduce type annotation (which would slow the lib down) or introduce short closures (neat but not needed, you can still use them in userland).

DusanKasan avatar Mar 03 '20 10:03 DusanKasan

The development for this milestone will be done in https://github.com/DusanKasan/Knapsack/pull/63

DusanKasan avatar Mar 09 '20 08:03 DusanKasan

So, most of the fixes are already in, the version will be bumped in the end to >=7.2, psalm annotation will be added to both functions and Collection Class/Interface/Trait and the use of the bundled Trait should now be more straightforward.

Don't expect big BCs, but there will probably be some. I will try to summarize after release but everything will be tested and as such you can use the test diff as BC guidelines :)

DusanKasan avatar Apr 17 '20 22:04 DusanKasan

Hi @DusanKasan, have you got around implementing the outstanding issues? Do you need help with anything? I'm eagerly waiting for the problems you mentioned in this issue to be solved, and the psalm annotations as well - particularly around generics, which PHPStorm finally supports 🙂

Radiergummi avatar Sep 28 '21 13:09 Radiergummi