Releases: pklauzinski/payload
Releases · pklauzinski/payload
v0.7.0
v0.6.1
- Removed
@version
main comment line - Removed deprecated
_cache.view
property initialization
v0.6.0
- Added
package-lock.json
- Fixed publishing user events twice when subscribed to with the
.pre
namespace - Fixes #10 - Change user events published with the
.pre
namespace to use the.beforeRender
namespace, with the intent of deprecating the.pre
namespace - Fixes #11 - Upgraded
gruntify-eslint
dev-dependency tov4.0.0
v0.5.3
- Removed
.jshintrc
and.jscsrc
- Fixed bug in
_storageAvailable
method
v0.5.2
- Replaced
jshint
andjscs
witheslint
- 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.storage
API to accesssessionStorage
by passing an additional parameter 'session' to each method. By default, it will still behave just as before usinglocalStorage
. - Added
Payload.session
API as a shortcut to thePayload.storage
API with onlysessionStorage
access.
v0.5.0
- Set
auto-load
elements to allow thedata-auto-load
attribute to be empty rather than requiring it to be set totrue
. - Fire user defined
.pre
namespace events separately for XHR vs. non-XHR template requests. - Return
Payload
object from public methods to allow for chaining. - Allow
apiAccessToken
option to be overridden by adata-token
attribute. - Fixed appended
GET
params added to URL query to only append key/value pairs from thedata
parameter when it is present forGET
requests. - A few updates to
README.md
.