CHANGELOG 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. * 3.2.3 (2017-XX-XX)
  2. * n/a
  3. * 3.2.2 (2017-07-23)
  4. * reverted extending a protected closure throws an exception (deprecated it instead)
  5. * 3.2.1 (2017-07-17)
  6. * fixed PHP error
  7. * 3.2.0 (2017-07-17)
  8. * added a PSR-11 service locator
  9. * added a PSR-11 wrapper
  10. * added ServiceIterator
  11. * fixed extending a protected closure (now throws InvalidServiceIdentifierException)
  12. * 3.1.0 (2017-07-03)
  13. * deprecated the C extension
  14. * added support for PSR-11 exceptions
  15. * 3.0.2 (2015-09-11)
  16. * refactored the C extension
  17. * minor non-significant changes
  18. * 3.0.1 (2015-07-30)
  19. * simplified some code
  20. * fixed a segfault in the C extension
  21. * 3.0.0 (2014-07-24)
  22. * removed the Pimple class alias (use Pimple\Container instead)
  23. * 2.1.1 (2014-07-24)
  24. * fixed compiler warnings for the C extension
  25. * fixed code when dealing with circular references
  26. * 2.1.0 (2014-06-24)
  27. * moved the Pimple to Pimple\Container (with a BC layer -- Pimple is now a
  28. deprecated alias which will be removed in Pimple 3.0)
  29. * added Pimple\ServiceProviderInterface (and Pimple::register())
  30. * 2.0.0 (2014-02-10)
  31. * changed extend to automatically re-assign the extended service and keep it as shared or factory
  32. (to keep BC, extend still returns the extended service)
  33. * changed services to be shared by default (use factory() for factory
  34. services)
  35. * 1.0.0
  36. * initial version