bump to 1.0.17 (#4819)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "skyvern"
|
||||
version = "1.0.16"
|
||||
version = "1.0.17"
|
||||
description = ""
|
||||
authors = [{ name = "Skyvern AI", email = "info@skyvern.com" }]
|
||||
requires-python = ">=3.11,<3.14"
|
||||
|
||||
360
skyvern-ts/client/package-lock.json
generated
360
skyvern-ts/client/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@skyvern/client",
|
||||
"version": "1.0.16",
|
||||
"version": "1.0.17",
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||
@@ -26,8 +26,8 @@ export class SkyvernClient {
|
||||
"x-api-key": _options?.apiKey,
|
||||
"X-Fern-Language": "JavaScript",
|
||||
"X-Fern-SDK-Name": "@skyvern/client",
|
||||
"X-Fern-SDK-Version": "1.0.16",
|
||||
"User-Agent": "@skyvern/client/1.0.16",
|
||||
"X-Fern-SDK-Version": "1.0.17",
|
||||
"User-Agent": "@skyvern/client/1.0.17",
|
||||
"X-Fern-Runtime": core.RUNTIME.type,
|
||||
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
||||
},
|
||||
|
||||
@@ -1 +1 @@
|
||||
export const SDK_VERSION = "1.0.16";
|
||||
export const SDK_VERSION = "1.0.17";
|
||||
|
||||
@@ -22,10 +22,10 @@ class BaseClientWrapper:
|
||||
|
||||
def get_headers(self) -> typing.Dict[str, str]:
|
||||
headers: typing.Dict[str, str] = {
|
||||
"User-Agent": "skyvern/1.0.16",
|
||||
"User-Agent": "skyvern/1.0.17",
|
||||
"X-Fern-Language": "Python",
|
||||
"X-Fern-SDK-Name": "skyvern",
|
||||
"X-Fern-SDK-Version": "1.0.16",
|
||||
"X-Fern-SDK-Version": "1.0.17",
|
||||
**(self.get_custom_headers() or {}),
|
||||
}
|
||||
if self._api_key is not None:
|
||||
|
||||
@@ -31,13 +31,18 @@ pytest tests/sdk/python_sdk/test_sdk_simple_actions.py::test_clicks
|
||||
**Location:** `tests/sdk/typescript_sdk/`
|
||||
|
||||
### Prerequisites
|
||||
- Requires `.env` with `SKYVERN_API_KEY`
|
||||
- Requires Chrome with CDP on `localhost:9222`
|
||||
- Requires `.env` with `SKYVERN_API_KEY` — copy from the repo root: `cp .env tests/sdk/typescript_sdk/.env`
|
||||
- Requires the Skyvern server running: `skyvern run server`
|
||||
- Requires Chrome/Chromium with CDP on `localhost:9222` (see below)
|
||||
- Web server auto-starts via `run-test.js`
|
||||
|
||||
**Launch Chrome with CDP:**
|
||||
**Launch Chromium with CDP:**
|
||||
```bash
|
||||
/Users/stas/Library/Caches/ms-playwright/chromium-1194/chrome-mac/Chromium.app/Contents/MacOS/Chromium \
|
||||
# Find your Playwright Chromium path
|
||||
ls ~/Library/Caches/ms-playwright/
|
||||
|
||||
# Then launch it (adjust the chromium-XXXX version to match yours)
|
||||
~/Library/Caches/ms-playwright/chromium-XXXX/chrome-mac/Chromium.app/Contents/MacOS/Chromium \
|
||||
--remote-debugging-port=9222 \
|
||||
--user-data-dir=~/tmp/chrome-playwright \
|
||||
about:blank
|
||||
|
||||
Reference in New Issue
Block a user