Skip to content

Commit 585df90

Browse files
authored
Merge pull request #26 from browser-use/release-please--branches--main--changes--next--components--browser-use-sdk
release: 1.1.3
2 parents 91f7fcf + bbb5199 commit 585df90

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.1.2"
2+
".": "1.1.3"
33
}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 1.1.3 (2025-08-22)
4+
5+
Full Changelog: [v1.1.2...v1.1.3](https://github.com/browser-use/browser-use-node/compare/v1.1.2...v1.1.3)
6+
7+
### Chores
8+
9+
* add package to package.json ([28293f9](https://github.com/browser-use/browser-use-node/commit/28293f9d1f3807dd8580450c5ba98a18392191be))
10+
* **client:** qualify global Blob ([944dd90](https://github.com/browser-use/browser-use-node/commit/944dd905151ef5030991f8dfd0168cf88d940068))
11+
312
## 1.1.2 (2025-08-21)
413

514
Full Changelog: [v1.1.1...v1.1.2](https://github.com/browser-use/browser-use-node/compare/v1.1.1...v1.1.2)

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browser-use-sdk",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "The official TypeScript library for the Browser Use API",
55
"author": "Browser Use <[email protected]>",
66
"types": "dist/index.d.ts",
@@ -55,6 +55,7 @@
5555
"ts-node": "^10.5.0",
5656
"tsc-multi": "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz",
5757
"tsconfig-paths": "^4.0.0",
58+
"tslib": "^2.8.1",
5859
"typescript": "5.8.3",
5960
"typescript-eslint": "8.31.1",
6061
"zod": "^4.0.17"

scripts/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ echo "==> Installing Node dependencies…"
1515

1616
PACKAGE_MANAGER=$(command -v yarn >/dev/null 2>&1 && echo "yarn" || echo "npm")
1717

18-
$PACKAGE_MANAGER install
18+
$PACKAGE_MANAGER install "$@"

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ export class BrowserUse {
718718
// Preserve legacy string encoding behavior for now
719719
headers.values.has('content-type')) ||
720720
// `Blob` is superset of `File`
721-
body instanceof Blob ||
721+
((globalThis as any).Blob && body instanceof (globalThis as any).Blob) ||
722722
// `FormData` -> `multipart/form-data`
723723
body instanceof FormData ||
724724
// `URLSearchParams` -> `application/x-www-form-urlencoded`

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.1.2'; // x-release-please-version
1+
export const VERSION = '1.1.3'; // x-release-please-version

0 commit comments

Comments
 (0)