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 11{
2- "." : " 1.1.2 "
2+ "." : " 1.1.3 "
33}
Original file line number Diff line number Diff line change 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
514Full 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 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" ,
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"
Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ echo "==> Installing Node dependencies…"
1515
1616PACKAGE_MANAGER=$( command -v yarn > /dev/null 2>&1 && echo " yarn" || echo " npm" )
1717
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 {
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`
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