Skip to content
This repository was archived by the owner on May 26, 2025. It is now read-only.

Commit 2d210c3

Browse files
0.2.5 (#121)
* Bump version to 0.2.5 * Update CHANGELOG
1 parent a72880d commit 2d210c3

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
# 0.2.5 - 2018-02-02
2+
3+
- Fixed: Async switch functions now work correctly, because the DOM is now parsed after all the switches finish.
4+
([#79](https://github.com/MoOx/pjax/pull/79), [#110](https://github.com/MoOx/pjax/pull/110) - @oskarrough, @BehindTheMath, @robinnorth)
5+
- Fixed: Bug on IE11 preventing AJAX page refresh.
6+
([#81](https://github.com/MoOx/pjax/pull/81) - @CPTechnikVX)
7+
- Fixed: Default switches are now available as `Pjax.switches`.
8+
([#92](https://github.com/MoOx/pjax/pull/92) - @BehindTheMath)
9+
- Fixed: An error that was caused by a missing `switchElementsAlt`.
10+
([#93](https://github.com/MoOx/pjax/pull/93), [#104](https://github.com/MoOx/pjax/pull/104) - @BehindTheMath, @robinnorth)
11+
- Fixed: Incorrect `main` field in npm package
12+
([#105](https://github.com/MoOx/pjax/pull/105) - @robinnorth)
13+
- Fixed: A pending XHR is now aborted if the user navigates somewhere else before the request is finished.
14+
([#114](https://github.com/MoOx/pjax/pull/114) - @robinnorth)
15+
- Fixed: When rendering new content, focus will now be removed only from elements within one of the containers manipulated by Pjax.
16+
([#116](https://github.com/MoOx/pjax/pull/116) - @BehindTheMath)
17+
- Fixed: Stop dispatching extraneous `pjax:complete` events when external scripts load
18+
([#118](https://github.com/MoOx/pjax/pull/118) - @robinnorth)
19+
- Added: Send the `X-PJAX` header with XHR requests.
20+
([#80](https://github.com/MoOx/pjax/pull/80) - @bram1028)
21+
- Added: Direct download link for script tags. (@MoOx)
22+
- Added: Pass the element that triggered Pjax to the `pjax:send` event.
23+
([#94](https://github.com/MoOx/pjax/pull/94) - @BehindTheMath)
24+
- Added: An option to set a timeout for XHR requests.
25+
([#95](https://github.com/MoOx/pjax/pull/95) - @BehindTheMath)
26+
- Added: Checks for XHR redirects
27+
([#101](https://github.com/MoOx/pjax/pull/101) - @BehindTheMath)
28+
- Added: Save scroll position with history, and restore when navigating backwards or forwards.
29+
([#110](https://github.com/MoOx/pjax/pull/110), [#119](https://github.com/MoOx/pjax/pull/119) - @BehindTheMath, @robinnorth)
30+
- Added: Scroll to element position when URL contains a hash
31+
([#110](https://github.com/MoOx/pjax/pull/110) - @BehindTheMath)
32+
- Added: Minified version of the Pjax bundle.
33+
([#115](https://github.com/MoOx/pjax/pull/115) - @BehindTheMath)
34+
- Changed: Miscellaneous code and tests cleanup.
35+
([#96](https://github.com/MoOx/pjax/pull/96), [#98](https://github.com/MoOx/pjax/pull/98), [#99](https://github.com/MoOx/pjax/pull/99), [#100](https://github.com/MoOx/pjax/pull/1070), [#107](https://github.com/MoOx/pjax/pull/107), [#113](https://github.com/MoOx/pjax/pull/113), [#120](https://github.com/MoOx/pjax/pull/120) - @BehindTheMath, @MoOx, @robinnorth)
36+
137
# 0.2.4 - 2016-06-28
238

339
- Fixed: ``refresh`` should now work (use `this.parseDOM` for refresh)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pjax",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"description": "Easily enable fast AJAX navigation on any website (using pushState + XHR)",
55
"keywords": [
66
"pjax",

0 commit comments

Comments
 (0)