Skip to content

Releases: decahedronio/monolog-sticky-context

Support monolog v2

07 Apr 15:03
f89c532
Compare
Choose a tag to compare
1.1.0

Support monolog 2

1.0.0: Merge pull request #2 from decahedronio/feat/laravel-tap

10 May 14:29
2dc8cf1
Compare
Choose a tag to compare

Documentation update and addition of a Laravel tap that can be used for quickly configuring Laravel 5.6+ applications.

0.3.0

17 Feb 17:26
Compare
Choose a tag to compare

This release introduces the concept of stacks. There are no breaking changes to the default behaviour if you use the default processor included in the package.

However, on the off chance that you don't, and have instead chosen to build your own processor, the introduction of stacks introduces some breaking changes:

  • StickyContext::all() now returns an array of stacks and their data. If you wish to retrieve data like before, you could call StickyContext::stack(StickyContext::defaultStack())->all(). Alternatively, you could use StickyContext::all()[StickyContext::defaultStack()].
  • By using stacks, there is no longer a protected static $data, if you were extending the StickyContext class on your own, you will need to make sure to update your code to be compatible with stacks.
  • The add method has been moved to the StickyContextStack class. However, as all static calls on StickyContext proxy to the default stack, this is unlikely to cause problems.

0.2.0

16 Feb 00:23
Compare
Choose a tag to compare
  • add support for closure values

Initial Release

30 Aug 23:19
Compare
Choose a tag to compare
Initial Release Pre-release
Pre-release

This release is the initial release, and includes the Monolog processor, and the supporting StickyContext object