chore: bump version to 4.3.1

CI/CD fixes release:
- Lint script now finds SDKs in clients/ directory structure
- Perl lint gracefully skips when modules missing
- Python examples exit 0 when API keys missing (CI-friendly)
- validate-examples.sh race condition fixed
This commit is contained in:
russell@unturf.com 2026-02-08 06:01:34 -05:00
parent 814e9396e7
commit 707fcbc7b7
18 changed files with 42 additions and 16 deletions

View file

@ -1 +1 @@
4.3.0 4.3.1

View file

@ -6838,7 +6838,7 @@ void print_usage(const char *prog) {
* ============================================================================ */ * ============================================================================ */
const char *unsandbox_version(void) { const char *unsandbox_version(void) {
return "4.3.0"; return "4.3.1";
} }
const char *unsandbox_detect_language(const char *filename) { const char *unsandbox_detect_language(const char *filename) {

View file

@ -1368,7 +1368,7 @@ Key options:
public static class Unsandbox public static class Unsandbox
{ {
private const string API_BASE = "https://api.unsandbox.com"; private const string API_BASE = "https://api.unsandbox.com";
private const string VERSION = "4.3.0"; private const string VERSION = "4.3.1";
private static string _lastError; private static string _lastError;
/// <summary>Extension map for language detection</summary> /// <summary>Extension map for language detection</summary>

View file

@ -12,7 +12,7 @@ using System.Text.Json.Serialization;
const string API_BASE = "https://api.unsandbox.com"; const string API_BASE = "https://api.unsandbox.com";
const string PORTAL_BASE = "https://unsandbox.com"; const string PORTAL_BASE = "https://unsandbox.com";
const string VERSION = "4.3.0"; const string VERSION = "4.3.1";
// ANSI colors // ANSI colors
const string BLUE = "\x1B[34m"; const string BLUE = "\x1B[34m";

View file

@ -12,7 +12,7 @@ using System.Text.Json.Serialization;
const string API_BASE = "https://api.unsandbox.com"; const string API_BASE = "https://api.unsandbox.com";
const string PORTAL_BASE = "https://unsandbox.com"; const string PORTAL_BASE = "https://unsandbox.com";
const string VERSION = "4.3.0"; const string VERSION = "4.3.1";
// ANSI colors // ANSI colors
const string BLUE = "\x1B[34m"; const string BLUE = "\x1B[34m";

View file

@ -1638,7 +1638,7 @@ func LogsStream(creds *Credentials, source, grep string, callback LogCallback) e
// ============================================================================ // ============================================================================
// SDKVersion is the version of this SDK. // SDKVersion is the version of this SDK.
const SDKVersion = "4.3.0" const SDKVersion = "4.3.1"
// HmacSign computes an HMAC-SHA256 signature for the given message using the secret key. // HmacSign computes an HMAC-SHA256 signature for the given message using the secret key.
// Returns the signature as a lowercase hex string. // Returns the signature as a lowercase hex string.

View file

@ -73,7 +73,7 @@
* </ol> * </ol>
* *
* @author Permacomputer Project * @author Permacomputer Project
* @version 4.3.0 * @version 4.3.1
*/ */
import javax.crypto.Mac import javax.crypto.Mac

View file

@ -1,6 +1,6 @@
{ {
"name": "un-async", "name": "un-async",
"version": "4.3.0", "version": "4.3.1",
"description": "Unsandbox async JavaScript SDK - Execute code in 50+ languages", "description": "Unsandbox async JavaScript SDK - Execute code in 50+ languages",
"main": "src/un_async.js", "main": "src/un_async.js",
"type": "module", "type": "module",

View file

@ -1,6 +1,6 @@
{ {
"name": "un-sync", "name": "un-sync",
"version": "4.3.0", "version": "4.3.1",
"description": "unsandbox.com JavaScript SDK (Isomorphic - Node.js + Browser)", "description": "unsandbox.com JavaScript SDK (Isomorphic - Node.js + Browser)",
"type": "module", "type": "module",
"main": "src/un.js", "main": "src/un.js",

View file

@ -26,7 +26,7 @@ local mime = require("mime")
local Un = {} local Un = {}
Un.API_BASE = "https://api.unsandbox.com" Un.API_BASE = "https://api.unsandbox.com"
Un.PORTAL_BASE = "https://unsandbox.com" Un.PORTAL_BASE = "https://unsandbox.com"
Un.VERSION = "4.3.0" Un.VERSION = "4.3.1"
Un.LAST_ERROR = "" Un.LAST_ERROR = ""
-- Colors -- Colors

View file

@ -38,7 +38,7 @@ use Time::HiRes qw(time sleep);
package Un; package Un;
our $VERSION = "4.3.0"; our $VERSION = "4.3.1";
our $API_BASE = 'https://api.unsandbox.com'; our $API_BASE = 'https://api.unsandbox.com';
our $PORTAL_BASE = 'https://unsandbox.com'; our $PORTAL_BASE = 'https://unsandbox.com';

View file

@ -7,7 +7,7 @@ from setuptools import setup, find_packages
setup( setup(
name="unsandbox-async", name="unsandbox-async",
version="4.3.0", version="4.3.1",
description="Asynchronous Python SDK for unsandbox.com code execution", description="Asynchronous Python SDK for unsandbox.com code execution",
long_description=open("README.md").read() if False else "Async Python SDK for unsandbox code execution", long_description=open("README.md").read() if False else "Async Python SDK for unsandbox code execution",
author="unsandbox.com", author="unsandbox.com",

View file

@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup( setup(
name="unsandbox", name="unsandbox",
version="4.3.0", version="4.3.1",
author="Unsandbox", author="Unsandbox",
description="Synchronous Python SDK for unsandbox.com code execution", description="Synchronous Python SDK for unsandbox.com code execution",
long_description=long_description, long_description=long_description,

View file

@ -27,7 +27,7 @@ from .un import (
CredentialsError, CredentialsError,
) )
__version__ = "4.3.0" __version__ = "4.3.1"
__all__ = [ __all__ = [
"execute_code", "execute_code",
"execute_async", "execute_async",

View file

@ -7,7 +7,7 @@
[package] [package]
name = "un-async" name = "un-async"
version = "4.3.0" version = "4.3.1"
edition = "2021" edition = "2021"
authors = ["unsandbox.com"] authors = ["unsandbox.com"]
description = "Asynchronous Rust SDK for unsandbox.com secure code execution API" description = "Asynchronous Rust SDK for unsandbox.com secure code execution API"

View file

@ -7,7 +7,7 @@
[package] [package]
name = "un-sync" name = "un-sync"
version = "4.3.0" version = "4.3.1"
edition = "2021" edition = "2021"
authors = ["unsandbox.com"] authors = ["unsandbox.com"]
description = "Synchronous Rust SDK for unsandbox.com secure code execution API" description = "Synchronous Rust SDK for unsandbox.com secure code execution API"

13
lint-results.xml Normal file
View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="SDK Linting" tests="7" failures="0">
<testcase name="python-sync" classname="lint" />
<testcase name="python-async" classname="lint" />
<testcase name="javascript-sync" classname="lint" />
<testcase name="javascript-async" classname="lint" />
<testcase name="perl-sync" classname="lint" />
<testcase name="bash-sync" classname="lint" />
<testcase name="c-cli" classname="lint" />
</testsuite>
</testsuites>

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="SDK Linting" tests="7" failures="0">
<testcase name="python-sync" classname="lint" />
<testcase name="python-async" classname="lint" />
<testcase name="javascript-sync" classname="lint" />
<testcase name="javascript-async" classname="lint" />
<testcase name="perl-sync" classname="lint" />
<testcase name="bash-sync" classname="lint" />
<testcase name="c-cli" classname="lint" />
</testsuite>
</testsuites>