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

Commit f639a8e

Browse files
committed
0.2.6
1 parent e49d894 commit f639a8e

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# 0.2.6 - 2018-04-30
2+
3+
- Fixed: Form submission for GET requests.
4+
([#129](https://github.com/MoOx/pjax/pull/129) - @robinnorth)
5+
- Fixed: Refactor `loadUrl()` to make manually calling simpler.
6+
([#134](https://github.com/MoOx/pjax/pull/134) - @robinnorth)
7+
- Fixed: Support multiple select fields in form submissions.
8+
([#147](https://github.com/MoOx/pjax/pull/147) - @robinnorth)
9+
- Fixed: Use the same options object in `handle-response` as in `send-request`. This way, `pjax.state.options` will also have the request options.
10+
([#148](https://github.com/MoOx/pjax/pull/148) - @BehindTheMath)
11+
- Added: Move the XHR callback to a separate method, and trigger an error event if the response cannot be parsed.
12+
([#137](https://github.com/MoOx/pjax/pull/137) - @BehindTheMath)
13+
- Added: TypeScript definitions.
14+
([#138](https://github.com/MoOx/pjax/pull/138) - @BehindTheMath)
15+
- Added: `replaceNode` switch, as an alternative to the `outerHTML` switch.
16+
([#141](https://github.com/MoOx/pjax/pull/141) - @BehindTheMath)
17+
- Added: `X-PJAX-Selectors` HTTP header. This is a serialized JSON array of selectors, taken from `options.selectors`. You can use this to send back only the elements that Pjax will use to switch, instead of sending the whole page.
18+
([#144](https://github.com/MoOx/pjax/pull/144) - @BehindTheMath)
19+
- Added: An option to use `FormData` to submit forms.
20+
([#153](https://github.com/MoOx/pjax/pull/153) - @BehindTheMath)
21+
- Added: Tests.
22+
([f98f2dd](https://github.com/MoOx/pjax/commit/f98f2dd63b48113ff91b6bd8808257bfc723ef6b), [#145](https://github.com/MoOx/pjax/pull/145) - @robinnorth, @BehindTheMath)
23+
124
# 0.2.5 - 2018-02-02
225

326
- Fixed: Async switch functions now work correctly, because the DOM is now parsed after all the switches finish.

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.5",
3+
"version": "0.2.6",
44
"description": "Easily enable fast AJAX navigation on any website (using pushState + XHR)",
55
"keywords": [
66
"pjax",

0 commit comments

Comments
 (0)