What's New
This release of Lumberjack is jam packed full of goodies. We have also added a whole lot more documentation, so grab a cuppa and make yourself comfy while we take you through all the changes.
What's new in v4.3
Features
Middleware Aliases on routes and controllers
You can now create Middleware Aliases that can be used anywhere that middleware can normally be used, both in the Router and through Controllers.
If, for example, an Alias had been registered for an AuthMiddleware
with the key auth
like so:
You can now use this in your route definition like this:
logger()
helper
logger()
helperThe logger
helper can be used to write debug messages to your logs.
If you need to access the logger class itself, to log different types of errors for example, you can use the logger
function with no arguments. This will get you an instance of the PSR3 compliant logger that is bound to the container. By default Lumberjack uses Monolog\Logger
.
Also, the Logger
instance is now also bound to the PSR-3 interface Psr\Log\LoggerInterface
in the Container.
Patches
The E_USER_NOTICE
and E_USER_DEPRECATED
errors are now whitelisted from the Exception Handler so that they aren’t fatal.
What's new in v4.2
Features
Query Builder
The Query Builder became macroable & also received one new useful method: first()
.
You can now add your own functionality to the query builder by using a macro. In this example we are adding a custom search
method:
Define middleware in controllers
You can now apply Middleware on a Controller class too, either for use with the Router or as a WordPress Controller. In order to do this your Controller must extend the App\Http\Controllers\Controller
base class.
Middleware is added by calling the middleware()
function in your Controller's __constructor()
.
Config has()
Lumberjack's configuration class now lets you check whether a config file contains a given item:
Note that the has
method only checks whether the config item exists, regardless of its value.
If you set app.mySetting
to an empty value such as false
or null
, has('app.mySetting')
will return true
.
Documentation
We have also added/revisited some of the documentation. We recommend checking these out:
View Models - New documentation
Middleware - New documentation
Collections - New documentation
What's new in v4.1
Features
Extending Lumberjack with Macros
You can now extend core Lumberjack classes and add your own functionality without needing to rely on inheritance. Instead, you can add macros (custom functions) to the core classes themselves.
Here's an example macro, that adds a custom acf()
method on Rareloop\Lumberjack\Post
.
The following classes are 'macroable':
Rareloop\Lumberjack\Post
Rareloop\Router\Router
Rareloop\Router\RouteGroup
Rareloop\Router\Route
What's new in v4.0
General
PHP Version
The first important thing to mention is that the minimum version of PHP has been bumped up to 7.1
. So make sure your server can handle this version.
Standardising the Container
Lumberjack uses a dependency injection container under the hood, which allows you to decouple your class dependencies by having the container inject dependencies when needed.
In v3, it wasn't clear when you were resolving a singleton or a new instance of a class from the container. It could have lead to some unusual & unexpected issues, so we decided to make things much clearer with v4 and standardise the behaviour.
Now, when you bind a class name into the container like so:
The container will always resolve a new instance. What does that mean? In short, it means state is not kept between resolves, you will always get a new instance of the class. Here's a couple of examples to illustrate the point:
Here we are resolving key
from the container twice. Each time it is resolved, the container will create a new instance of the MyClass
class. If we were to modify $value1
in any way, that change would not persist in $value2
. For example:
For the majority of the time, we feel like this is the better option. It means you are not accidentally coupling your application to the state of something in the container.
However, sometimes you do want that behaviour. When you do, you can simply use the singleton
method to tell the container to resolve the same instance if there is one.
Now, when the container resolves the instance it will use the one that is already bound to the container. For example:
And when we modify the instance, its state will persist:
It is important to note that if you bind an object instance to the container, you will always get that instance back. For example:
Head over to the "Using the Container" docs to learn more:
Using the ContainerFeatures
New helper functions
To make your development lives easier, there are now some additional helper functions available. These are:
redirect()
- returns aRedirectResponse
back()
- returns aRedirectResponse
which automatically redirects back to the previous URLreport($exception)
- tells the Exception Handler to report an exception. Useful if your theme needs to swallow an exception, but you still want to log the fact that it happenedrequest()
- returns the currentServerRequest
objectsession()
- can be used to interact with the session in various ways
Check out the Helpers documentation for more details:
HelpersQuery Builder
We've baked-in the rareloop/lumberjack-querybuilder package into the core. You now get an expressive, fluent and explicit way of querying data in WordPress out-of-the-box with Lumberjack. It can be used instead of WP_Query to query posts (of any type) and means you do not have to worry about "the loop".
Query BuilderSessions
This is one of the bigger features added to v4. You can now manage sessions in a concise, expressive and headache-free way.
Let's dive straight into what sessions look like in Lumberjack. We'll be using the global helper function session()
for these examples; make sure you have enabled them if you want to use it too.
Be sure to read the Sessions documentation for a more in-depth look:
SessionsInteracting with the request
In v3, you could access the request by dependency injecting Zend\Diactoros\ServerRequest
, like so:
Lumberjack now has its own ServerRequest
class, making it much easier to work with the request. You can access it like so:
You can also use the request()
helper to access the request from anywhere in your theme:
Overview of some available methods
You can read the HTTP Requests documentation for more information:
HTTP RequestsDocumentation
We have also added/revisited some of the documentation. We recommend checking these out:
Upgrade Guide - How to upgrade to v4 from v3
HTTP Requests - New feature!
Sessions - New feature!
Using the Container - Revisited docs after the changes to the container's behaviour
Helpers - Added more helpers
Last updated