bump to 1.0.17 (#4819)

This commit is contained in:
Marc Kelechava
2026-02-19 14:53:57 -08:00
committed by GitHub
parent 13ecec6e60
commit f80451f37a
8 changed files with 2702 additions and 2951 deletions

View File

@@ -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"

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "@skyvern/client",
"version": "1.0.16",
"version": "1.0.17",
"private": false,
"repository": {
"type": "git",

View File

@@ -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,
},

View File

@@ -1 +1 @@
export const SDK_VERSION = "1.0.16";
export const SDK_VERSION = "1.0.17";

View File

@@ -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:

View File

@@ -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

5266
uv.lock generated

File diff suppressed because it is too large Load Diff