bump version 1.0.23 (#4952)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Marc Kelechava 2026-03-02 15:07:44 -08:00 committed by GitHub
parent b952468fd7
commit 3b9a5659f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 2722 additions and 2981 deletions

View file

@ -11,6 +11,7 @@ Automate the complete OSS version bump and release workflow for Skyvern.
## What this does
1. Validates and updates version in `pyproject.toml`
2. Builds Python SDK with Fern
3. Builds TypeScript SDK with Fern

View file

@ -12989,6 +12989,7 @@
"RESIDENTIAL_IT",
"RESIDENTIAL_NL",
"RESIDENTIAL_PH",
"RESIDENTIAL_KR",
"RESIDENTIAL_ISP",
"NONE"
],

View file

@ -1,6 +1,6 @@
[project]
name = "skyvern"
version = "1.0.22"
version = "1.0.23"
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.22",
"version": "1.0.23",
"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.22",
"User-Agent": "@skyvern/client/1.0.22",
"X-Fern-SDK-Version": "1.0.23",
"User-Agent": "@skyvern/client/1.0.23",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},

View file

@ -25,6 +25,7 @@ export const ProxyLocation = {
ResidentialIt: "RESIDENTIAL_IT",
ResidentialNl: "RESIDENTIAL_NL",
ResidentialPh: "RESIDENTIAL_PH",
ResidentialKr: "RESIDENTIAL_KR",
ResidentialIsp: "RESIDENTIAL_ISP",
None: "NONE",
} as const;

View file

@ -1 +1 @@
export const SDK_VERSION = "1.0.22";
export const SDK_VERSION = "1.0.23";

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.22",
"User-Agent": "skyvern/1.0.23",
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "skyvern",
"X-Fern-SDK-Version": "1.0.22",
"X-Fern-SDK-Version": "1.0.23",
**(self.get_custom_headers() or {}),
}
if self._api_key is not None:

5266
uv.lock generated

File diff suppressed because it is too large Load diff