CHANGELOG 1.3 KB

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