Releases: phly/PhlyBlog
Releases · phly/PhlyBlog
2.1.1
2.1.1 - 2020-11-09
Changed
- #31 changes the
Compiler
to implementEventsCapableInterface
instead ofEventManagerAwareInterface
(the latter is a superset of the former). Doing so ensures that any initializers forEventManagerAwareInterface
do not trigger, which prevents double-injection of theEventManager
instance, and thus prevents overwriting any listeners attached via delegator factories. ThesetEventManager()
method is still defined.
Release Notes for 2.1.1
2.1.x bugfix release (patch)
2.1.1
- Total issues resolved: 1
- Total pull requests resolved: 1
- Total contributors: 2
bug
2.1.0
2.1.0 - 2020-11-04
Added
- #29 adds a
PhlyBlog\CompilerFactory
, and wires thePhlyBlog\Compiler
service to be created via that factory.
Changed
- #29 adds an optional
?Compiler $compiler = null
argument to theCompileCommand
constructor. When provided, the command will use thatCompiler
instance. TheCompileCommandFactory
now pulls theCompiler
service from the container and passes it for that argument.
Release Notes for 2.1.0
2.1.0
- Total issues resolved: 1
- Total pull requests resolved: 1
- Total contributors: 2
enhancement
2.0.2
2.0.2 - 2020-10-13
Fixed
-
#26 fixes issues with display of progress bars, ensuring they display along with the label detailing what is being compiled.
-
#26 fixes the remaining issues with rendering the blog posts using the
phly-blog:compile
tooling, ensuring that the view is capable of identifying a renderer, posts are rendered within the layout, and that no duplication of metadata occurs.
Release Notes for 2.0.2
2.0.2
- Total issues resolved: 0
- Total pull requests resolved: 1
- Total contributors: 1
bug
2.0.1
2.0.1 - 2020-10-13
Fixed
- #23 fixes an issue in the phly-blog:compile command with resolution of the Tags listener, which led to a fatal error.
Release Notes for 2.0.1
2.0.1
- Total issues resolved: 1
- Total pull requests resolved: 1
- Total contributors: 2
bug
- 23: Fix tags listener resolution thanks to @weierophinney and @vrkansagara
2.0.0
Release Notes for 2.0.0
2.0.0
- Total issues resolved: 2
- Total pull requests resolved: 4
- Total contributors: 4
enhancement
-
21: Refresh Code base thanks to @rieschl and @vrkansagara
-
19: Adding symfony-cli as console command runner. thanks to @vrkansagara
-
16: Package migrate to Laminas thanks to @vrkansagara
-
8: Throw an exception if one of the entities are broken thanks to @pavkatar
-
4: Exception when running blog compile thanks to @RWOverdijk