This changelog will keep track of any significant changes to the package. Versions will be named and versioned according to the following schema:
- Major versions (The "X" in
vX.Y.Z
) will be released when the minimum required version of PHP or Laravel changes. These versions may contain breaking changes, so it is recommended to be careful when updating. The corresponding section of this document will contain any relevant information regarding any breaking changes. - Minor versions (The "Y" in
vX.Y.Z
) will be released when the underlying code has changed in a significant way but which does not contain any breaking changes. This includes optimizations, refactors, additional features, etc. It should always be safe to update to the latest minor version. - Patch versions (The "Z" in
vX.Y.Z
) will be released when the underlying code has gone through a minor change that does not affect intended functionality or introduce any new features. This includes bugfixes, fixing spelling mistakes, updating documentation, etc.
- Added support for Laravel v10.
- Added
forget()
method toCacheHelper
class. - Standardized line length in
README.md
. - Standardized line length in
CHANGELOG.md
. - Cleaned up some DocBlocks.
- Made
clearClassCache()
andclearModelFinderCache()
public, not protected.
ModelFinderShared::searchInModel()
should only returnModel
, notCollection|Model
.
Nothing special to report here, as this is the initial public release of this package. Future changes will be documented in this file.