File tree Expand file tree Collapse file tree 6 files changed +15
-5
lines changed Expand file tree Collapse file tree 6 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 1.1.2 "
2
+ "." : " 1.1.3 "
3
3
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
12
## 1.1.2 (2025-08-21)
4
13
5
14
Full Changelog: [ v1.1.1...v1.1.2] ( https://github.com/browser-use/browser-use-node/compare/v1.1.1...v1.1.2 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " browser-use-sdk" ,
3
- "version" : " 1.1.2 " ,
3
+ "version" : " 1.1.3 " ,
4
4
"description" : " The official TypeScript library for the Browser Use API" ,
5
5
"author" :
" Browser Use <[email protected] >" ,
6
6
"types" : " dist/index.d.ts" ,
55
55
"ts-node" : " ^10.5.0" ,
56
56
"tsc-multi" : " https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz" ,
57
57
"tsconfig-paths" : " ^4.0.0" ,
58
+ "tslib" : " ^2.8.1" ,
58
59
"typescript" : " 5.8.3" ,
59
60
"typescript-eslint" : " 8.31.1" ,
60
61
"zod" : " ^4.0.17"
Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ echo "==> Installing Node dependencies…"
15
15
16
16
PACKAGE_MANAGER=$( command -v yarn > /dev/null 2>&1 && echo " yarn" || echo " npm" )
17
17
18
- $PACKAGE_MANAGER install
18
+ $PACKAGE_MANAGER install " $@ "
Original file line number Diff line number Diff line change @@ -718,7 +718,7 @@ export class BrowserUse {
718
718
// Preserve legacy string encoding behavior for now
719
719
headers . values . has ( 'content-type' ) ) ||
720
720
// `Blob` is superset of `File`
721
- body instanceof Blob ||
721
+ ( ( globalThis as any ) . Blob && body instanceof ( globalThis as any ) . Blob ) ||
722
722
// `FormData` -> `multipart/form-data`
723
723
body instanceof FormData ||
724
724
// `URLSearchParams` -> `application/x-www-form-urlencoded`
Original file line number Diff line number Diff line change 1
- export const VERSION = '1.1.2 ' ; // x-release-please-version
1
+ export const VERSION = '1.1.3 ' ; // x-release-please-version
You can’t perform that action at this time.
0 commit comments