This commit is contained in:
Maxime Thirouin
2016-07-11 07:11:39 +02:00
parent b201b96a37
commit 917c6f6bcb
3 changed files with 16 additions and 4 deletions

View File

@@ -1,3 +1,13 @@
# 0.2.4 - 2016-06-28
- Fixed: ``refresh`` should now work (use `this.parseDOM` for refresh)
([#67](https://github.com/MoOx/pjax/pull/67) - @compressed)
- Fixed: Some attributes, such as `itemscope` have no corresponding value.
This change allows them to still be set.
([#67](https://github.com/MoOx/pjax/pull/67) - @compressed)
- Added: ``cacheBust`` option
([#71](https://github.com/MoOx/pjax/pull/71) - @tremby)
# 0.2.3 - 2016-03-24 # 0.2.3 - 2016-03-24
- Fixed: ``currentUrlFullReload`` option now works - Fixed: ``currentUrlFullReload`` option now works

View File

@@ -1,6 +1,6 @@
{ {
"name": "pjax", "name": "pjax",
"version": "0.2.3", "version": "0.2.4",
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)", "description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
"keywords": [ "keywords": [
"pjax", "pjax",

View File

@@ -1,6 +1,6 @@
{ {
"name": "pjax", "name": "pjax",
"version": "0.2.3", "version": "0.2.4",
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)", "description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
"keywords": [ "keywords": [
"pjax", "pjax",
@@ -26,6 +26,7 @@
"jscs": "^1.6.2", "jscs": "^1.6.2",
"jshint": "^2.5.6", "jshint": "^2.5.6",
"npmpub": "^3.1.0", "npmpub": "^3.1.0",
"opn-cli": "^3.1.0",
"serve": "1.4.0", "serve": "1.4.0",
"tape": "^3.0.0", "tape": "^3.0.0",
"testling": "^1.6.1" "testling": "^1.6.1"
@@ -37,9 +38,10 @@
"test": "npm run lint && npm run standalone && npm run tests", "test": "npm run lint && npm run standalone && npm run tests",
"test--html": "testling --html > tests/scripts/index.html", "test--html": "testling --html > tests/scripts/index.html",
"coverage": "browserify -t coverify tests/**/*.js | testling | coverify", "coverage": "browserify -t coverify tests/**/*.js | testling | coverify",
"example": "echo '\n==> Open http://localhost:3000/example in your browser.'; serve .", "example": "opn http://localhost:3000/example/; serve .",
"prepublish": "npm run standalone", "prepublish": "npm run standalone",
"release": "npmpub --skip-test --dry && npm test && npmpub --skip-cleanup" "#release": "testling does not work in a process launch by npm... :facepalm:",
"release": "echo \"npmpub --skip-test --dry && npm test && npmpub --skip-test --skip-cleanup\""
}, },
"testling": { "testling": {
"files": "tests/**/*.js", "files": "tests/**/*.js",