chore: Bump version to 4.3.4
This commit is contained in:
parent
51ce04caf3
commit
e364ba3ae1
18 changed files with 35 additions and 27 deletions
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
4.3.3
|
||||
4.3.4
|
||||
|
|
|
|||
|
|
@ -6838,7 +6838,7 @@ void print_usage(const char *prog) {
|
|||
* ============================================================================ */
|
||||
|
||||
const char *unsandbox_version(void) {
|
||||
return "4.3.3";
|
||||
return "4.3.4";
|
||||
}
|
||||
|
||||
const char *unsandbox_detect_language(const char *filename) {
|
||||
|
|
|
|||
|
|
@ -1368,7 +1368,7 @@ Key options:
|
|||
public static class Unsandbox
|
||||
{
|
||||
private const string API_BASE = "https://api.unsandbox.com";
|
||||
private const string VERSION = "4.3.3";
|
||||
private const string VERSION = "4.3.4";
|
||||
private static string _lastError;
|
||||
|
||||
/// <summary>Extension map for language detection</summary>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ using System.Text.Json.Serialization;
|
|||
|
||||
const string API_BASE = "https://api.unsandbox.com";
|
||||
const string PORTAL_BASE = "https://unsandbox.com";
|
||||
const string VERSION = "4.3.3";
|
||||
const string VERSION = "4.3.4";
|
||||
|
||||
// ANSI colors
|
||||
const string BLUE = "\x1B[34m";
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ using System.Text.Json.Serialization;
|
|||
|
||||
const string API_BASE = "https://api.unsandbox.com";
|
||||
const string PORTAL_BASE = "https://unsandbox.com";
|
||||
const string VERSION = "4.3.3";
|
||||
const string VERSION = "4.3.4";
|
||||
|
||||
// ANSI colors
|
||||
const string BLUE = "\x1B[34m";
|
||||
|
|
|
|||
|
|
@ -1638,7 +1638,7 @@ func LogsStream(creds *Credentials, source, grep string, callback LogCallback) e
|
|||
// ============================================================================
|
||||
|
||||
// SDKVersion is the version of this SDK.
|
||||
const SDKVersion = "4.3.3"
|
||||
const SDKVersion = "4.3.4"
|
||||
|
||||
// HmacSign computes an HMAC-SHA256 signature for the given message using the secret key.
|
||||
// Returns the signature as a lowercase hex string.
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@
|
|||
* </ol>
|
||||
*
|
||||
* @author Permacomputer Project
|
||||
* @version 4.3.3
|
||||
* @version 4.3.4
|
||||
*/
|
||||
|
||||
import javax.crypto.Mac
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "un-async",
|
||||
"version": "4.3.3",
|
||||
"version": "4.3.4",
|
||||
"description": "Unsandbox async JavaScript SDK - Execute code in 50+ languages",
|
||||
"main": "src/un_async.js",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "un-sync",
|
||||
"version": "4.3.3",
|
||||
"version": "4.3.4",
|
||||
"description": "unsandbox.com JavaScript SDK (Isomorphic - Node.js + Browser)",
|
||||
"type": "module",
|
||||
"main": "src/un.js",
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ local mime = require("mime")
|
|||
local Un = {}
|
||||
Un.API_BASE = "https://api.unsandbox.com"
|
||||
Un.PORTAL_BASE = "https://unsandbox.com"
|
||||
Un.VERSION = "4.3.3"
|
||||
Un.VERSION = "4.3.4"
|
||||
Un.LAST_ERROR = ""
|
||||
|
||||
-- Colors
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ use Time::HiRes qw(time sleep);
|
|||
|
||||
package Un;
|
||||
|
||||
our $VERSION = "4.3.3";
|
||||
our $VERSION = "4.3.4";
|
||||
our $API_BASE = 'https://api.unsandbox.com';
|
||||
our $PORTAL_BASE = 'https://unsandbox.com';
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from setuptools import setup, find_packages
|
|||
|
||||
setup(
|
||||
name="unsandbox-async",
|
||||
version="4.3.3",
|
||||
version="4.3.4",
|
||||
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",
|
||||
author="unsandbox.com",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|||
|
||||
setup(
|
||||
name="unsandbox",
|
||||
version="4.3.3",
|
||||
version="4.3.4",
|
||||
author="Unsandbox",
|
||||
description="Synchronous Python SDK for unsandbox.com code execution",
|
||||
long_description=long_description,
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ from .un import (
|
|||
CredentialsError,
|
||||
)
|
||||
|
||||
__version__ = "4.3.3"
|
||||
__version__ = "4.3.4"
|
||||
__all__ = [
|
||||
"execute_code",
|
||||
"execute_async",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
[package]
|
||||
name = "un-async"
|
||||
version = "4.3.3"
|
||||
version = "4.3.4"
|
||||
edition = "2021"
|
||||
authors = ["unsandbox.com"]
|
||||
description = "Asynchronous Rust SDK for unsandbox.com secure code execution API"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
[package]
|
||||
name = "un-sync"
|
||||
version = "4.3.3"
|
||||
version = "4.3.4"
|
||||
edition = "2021"
|
||||
authors = ["unsandbox.com"]
|
||||
description = "Synchronous Rust SDK for unsandbox.com secure code execution API"
|
||||
|
|
|
|||
|
|
@ -131,11 +131,11 @@
|
|||
<div class="content">
|
||||
<div class="stats-grid">
|
||||
<div class="stat-card">
|
||||
<div class="value">21</div>
|
||||
<div class="value">46</div>
|
||||
<div class="label">Total Examples</div>
|
||||
</div>
|
||||
<div class="stat-card success-rate">
|
||||
<div class="value">0</div>
|
||||
<div class="value">41</div>
|
||||
<div class="label">Validated</div>
|
||||
</div>
|
||||
<div class="stat-card">
|
||||
|
|
@ -143,7 +143,7 @@
|
|||
<div class="label">Failed</div>
|
||||
</div>
|
||||
<div class="stat-card success-rate">
|
||||
<div class="value">0%</div>
|
||||
<div class="value">100.0%</div>
|
||||
<div class="label">Success Rate</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -159,13 +159,21 @@
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td>java</td><td>6</td><td>502ms</td></tr>
|
||||
<tr><td>ruby</td><td>4</td><td>191ms</td></tr>
|
||||
<tr><td>c</td><td>1</td><td>347ms</td></tr>
|
||||
<tr><td>python</td><td>14</td><td>654ms</td></tr>
|
||||
<tr><td>php</td><td>4</td><td>1253ms</td></tr>
|
||||
<tr><td>go</td><td>4</td><td>210ms</td></tr>
|
||||
<tr><td>rust</td><td>4</td><td>195ms</td></tr>
|
||||
<tr><td>javascript</td><td>4</td><td>175ms</td></tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div style="margin-top: 2rem; padding: 1.5rem; background: #e3f2fd; border-left: 4px solid #2196F3; border-radius: 4px;">
|
||||
<p style="color: #1976D2; font-weight: 500; margin-bottom: 0.5rem;">Last verified:</p>
|
||||
<p style="color: #555;">2026-01-15 21:18:04 UTC</p>
|
||||
<p style="color: #555;">2026-02-14 14:39:10 UTC</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
{
|
||||
"report_type": "examples_validation",
|
||||
"timestamp": "2026-01-15T21:18:04Z",
|
||||
"timestamp_readable": "2026-01-15 21:18:04 UTC",
|
||||
"timestamp": "2026-02-14T14:39:10Z",
|
||||
"timestamp_readable": "2026-02-14 14:39:10 UTC",
|
||||
"summary": {
|
||||
"total_examples": 21,
|
||||
"total_validated": 0,
|
||||
"total_examples": 46,
|
||||
"total_validated": 41,
|
||||
"total_failed": 0,
|
||||
"success_rate": "0%"
|
||||
"success_rate": "100.0%"
|
||||
},
|
||||
"language_stats": [
|
||||
|
||||
{"language": "java", "validated": 6, "total_time_ms": 3015, "avg_time_ms": 502}, {"language": "ruby", "validated": 4, "total_time_ms": 765, "avg_time_ms": 191}, {"language": "c", "validated": 1, "total_time_ms": 347, "avg_time_ms": 347}, {"language": "python", "validated": 14, "total_time_ms": 9157, "avg_time_ms": 654}, {"language": "php", "validated": 4, "total_time_ms": 5013, "avg_time_ms": 1253}, {"language": "go", "validated": 4, "total_time_ms": 841, "avg_time_ms": 210}, {"language": "rust", "validated": 4, "total_time_ms": 780, "avg_time_ms": 195}, {"language": "javascript", "validated": 4, "total_time_ms": 701, "avg_time_ms": 175}
|
||||
],
|
||||
"notes": "Examples validated through unsandbox API. Each example executed with 30s timeout."
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue