Releases: pklauzinski/payload
Releases · pklauzinski/payload
v0.7.0
v0.6.1
- Removed
@versionmain comment line - Removed deprecated
_cache.viewproperty initialization
v0.6.0
- Added
package-lock.json - Fixed publishing user events twice when subscribed to with the
.prenamespace - Fixes #10 - Change user events published with the
.prenamespace to use the.beforeRendernamespace, with the intent of deprecating the.prenamespace - Fixes #11 - Upgraded
gruntify-eslintdev-dependency tov4.0.0
v0.5.3
- Removed
.jshintrcand.jscsrc - Fixed bug in
_storageAvailablemethod
v0.5.2
- Replaced
jshintandjscswitheslint - Added private method to check if browser storage is both supported and available to prevent errors from being thrown in private browsing mode where storage is suppressed
v0.5.1
- Added the ability to the
Payload.storageAPI to accesssessionStorageby passing an additional parameter 'session' to each method. By default, it will still behave just as before usinglocalStorage. - Added
Payload.sessionAPI as a shortcut to thePayload.storageAPI with onlysessionStorageaccess.
v0.5.0
- Set
auto-loadelements to allow thedata-auto-loadattribute to be empty rather than requiring it to be set totrue. - Fire user defined
.prenamespace events separately for XHR vs. non-XHR template requests. - Return
Payloadobject from public methods to allow for chaining. - Allow
apiAccessTokenoption to be overridden by adata-tokenattribute. - Fixed appended
GETparams added to URL query to only append key/value pairs from thedataparameter when it is present forGETrequests. - A few updates to
README.md.