mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 03:30:10 +00:00
bump version 1.0.23 (#4952)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
b952468fd7
commit
3b9a5659f6
10 changed files with 2722 additions and 2981 deletions
|
|
@ -11,6 +11,7 @@ Automate the complete OSS version bump and release workflow for Skyvern.
|
||||||
|
|
||||||
## What this does
|
## What this does
|
||||||
|
|
||||||
|
|
||||||
1. Validates and updates version in `pyproject.toml`
|
1. Validates and updates version in `pyproject.toml`
|
||||||
2. Builds Python SDK with Fern
|
2. Builds Python SDK with Fern
|
||||||
3. Builds TypeScript SDK with Fern
|
3. Builds TypeScript SDK with Fern
|
||||||
|
|
|
||||||
|
|
@ -12989,6 +12989,7 @@
|
||||||
"RESIDENTIAL_IT",
|
"RESIDENTIAL_IT",
|
||||||
"RESIDENTIAL_NL",
|
"RESIDENTIAL_NL",
|
||||||
"RESIDENTIAL_PH",
|
"RESIDENTIAL_PH",
|
||||||
|
"RESIDENTIAL_KR",
|
||||||
"RESIDENTIAL_ISP",
|
"RESIDENTIAL_ISP",
|
||||||
"NONE"
|
"NONE"
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "skyvern"
|
name = "skyvern"
|
||||||
version = "1.0.22"
|
version = "1.0.23"
|
||||||
description = ""
|
description = ""
|
||||||
authors = [{ name = "Skyvern AI", email = "info@skyvern.com" }]
|
authors = [{ name = "Skyvern AI", email = "info@skyvern.com" }]
|
||||||
requires-python = ">=3.11,<3.14"
|
requires-python = ">=3.11,<3.14"
|
||||||
|
|
|
||||||
420
skyvern-ts/client/package-lock.json
generated
420
skyvern-ts/client/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@skyvern/client",
|
"name": "@skyvern/client",
|
||||||
"version": "1.0.22",
|
"version": "1.0.23",
|
||||||
"private": false,
|
"private": false,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
||||||
|
|
@ -26,8 +26,8 @@ export class SkyvernClient {
|
||||||
"x-api-key": _options?.apiKey,
|
"x-api-key": _options?.apiKey,
|
||||||
"X-Fern-Language": "JavaScript",
|
"X-Fern-Language": "JavaScript",
|
||||||
"X-Fern-SDK-Name": "@skyvern/client",
|
"X-Fern-SDK-Name": "@skyvern/client",
|
||||||
"X-Fern-SDK-Version": "1.0.22",
|
"X-Fern-SDK-Version": "1.0.23",
|
||||||
"User-Agent": "@skyvern/client/1.0.22",
|
"User-Agent": "@skyvern/client/1.0.23",
|
||||||
"X-Fern-Runtime": core.RUNTIME.type,
|
"X-Fern-Runtime": core.RUNTIME.type,
|
||||||
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ export const ProxyLocation = {
|
||||||
ResidentialIt: "RESIDENTIAL_IT",
|
ResidentialIt: "RESIDENTIAL_IT",
|
||||||
ResidentialNl: "RESIDENTIAL_NL",
|
ResidentialNl: "RESIDENTIAL_NL",
|
||||||
ResidentialPh: "RESIDENTIAL_PH",
|
ResidentialPh: "RESIDENTIAL_PH",
|
||||||
|
ResidentialKr: "RESIDENTIAL_KR",
|
||||||
ResidentialIsp: "RESIDENTIAL_ISP",
|
ResidentialIsp: "RESIDENTIAL_ISP",
|
||||||
None: "NONE",
|
None: "NONE",
|
||||||
} as const;
|
} as const;
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
export const SDK_VERSION = "1.0.22";
|
export const SDK_VERSION = "1.0.23";
|
||||||
|
|
|
||||||
|
|
@ -22,10 +22,10 @@ class BaseClientWrapper:
|
||||||
|
|
||||||
def get_headers(self) -> typing.Dict[str, str]:
|
def get_headers(self) -> typing.Dict[str, str]:
|
||||||
headers: typing.Dict[str, str] = {
|
headers: typing.Dict[str, str] = {
|
||||||
"User-Agent": "skyvern/1.0.22",
|
"User-Agent": "skyvern/1.0.23",
|
||||||
"X-Fern-Language": "Python",
|
"X-Fern-Language": "Python",
|
||||||
"X-Fern-SDK-Name": "skyvern",
|
"X-Fern-SDK-Name": "skyvern",
|
||||||
"X-Fern-SDK-Version": "1.0.22",
|
"X-Fern-SDK-Version": "1.0.23",
|
||||||
**(self.get_custom_headers() or {}),
|
**(self.get_custom_headers() or {}),
|
||||||
}
|
}
|
||||||
if self._api_key is not None:
|
if self._api_key is not None:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue