CHANGELOG 1.5 KB

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