@zombieland/tallahassee 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -1
- package/browser.js +4 -1
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
7
7
|
|
|
8
|
+
## [0.1.3] - 2026-07-27
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Sending form data from `browser.captureNavigation`
|
|
13
|
+
|
|
14
|
+
## [0.1.2] - 2026-07-20
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Specify engines
|
|
19
|
+
|
|
8
20
|
## [0.1.1] - 2026-04-22
|
|
9
21
|
|
|
10
22
|
### Fixed
|
|
@@ -13,4 +25,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
13
25
|
|
|
14
26
|
## [0.1.0] - 2026-04-22
|
|
15
27
|
|
|
16
|
-
Initial release.
|
|
28
|
+
Initial release.
|
package/browser.js
CHANGED
|
@@ -83,7 +83,10 @@ export default class Browser {
|
|
|
83
83
|
const submitter = event.submitter;
|
|
84
84
|
const method = submitter?.formMethod || form.method;
|
|
85
85
|
const action = new URL(submitter?.formAction || form.action);
|
|
86
|
-
const body = new
|
|
86
|
+
const body = new FormData();
|
|
87
|
+
for (const [ key, value ] of new dom.window.FormData(form, submitter)) {
|
|
88
|
+
body.append(key, value);
|
|
89
|
+
}
|
|
87
90
|
|
|
88
91
|
if (method === 'post') {
|
|
89
92
|
const enctype = submitter?.formEnctype || form.enctype;
|
package/package.json
CHANGED