CHANGELOG 1.6 KB

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