Skip to content

Commit 21ab907

Browse files
authored
Merge pull request #26 from supermemoryai/release-please--branches--main--changes--next--components--supermemory
release: 3.0.0-alpha.24
2 parents 14ba68d + 0bb3412 commit 21ab907

File tree

9 files changed

+30
-13
lines changed

9 files changed

+30
-13
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.0.0-alpha.23"
2+
".": "3.0.0-alpha.24"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 18
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-d52acd1a525b4bfe9f4befcc3a645f5d1289d75e7bad999cf1330e539b2ed84e.yml
3-
openapi_spec_hash: c34df5406cfa4d245812d30f99d28116
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-3d4dd8ac24dba1f3cd5632eedbabafdac2ca7a2c4b99376d0896437497992861.yml
3+
openapi_spec_hash: 2ae20c06f18b7be58fabcfd6db1b5acf
44
config_hash: 9b9291a6c872b063900a46386729ba3c

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## 3.0.0-alpha.24 (2025-08-24)
4+
5+
Full Changelog: [v3.0.0-alpha.23...v3.0.0-alpha.24](https://github.com/supermemoryai/sdk-ts/compare/v3.0.0-alpha.23...v3.0.0-alpha.24)
6+
7+
### Features
8+
9+
* **api:** api update ([d15cac5](https://github.com/supermemoryai/sdk-ts/commit/d15cac59b4a9b9c0b39ffea84cf8126a16894445))
10+
* **api:** api update ([c1967bf](https://github.com/supermemoryai/sdk-ts/commit/c1967bf3a96ddbf100a1ddb829b226a120b95350))
11+
* **mcp:** add code execution tool ([7f46f73](https://github.com/supermemoryai/sdk-ts/commit/7f46f73f34099dddcd536493bf79fd077a7f8bc6))
12+
13+
14+
### Chores
15+
16+
* add package to package.json ([46dddb3](https://github.com/supermemoryai/sdk-ts/commit/46dddb3272e67125c3ec2258ee095769f8b2c846))
17+
* **client:** qualify global Blob ([652941a](https://github.com/supermemoryai/sdk-ts/commit/652941aeb0483c7ee73071c2285c70a4e143d8fc))
18+
* update CI script ([d80ffc7](https://github.com/supermemoryai/sdk-ts/commit/d80ffc75a36ca9e2241db6171956a87b0a3cf251))
19+
320
## 3.0.0-alpha.23 (2025-08-16)
421

522
Full Changelog: [v3.0.0-alpha.22...v3.0.0-alpha.23](https://github.com/supermemoryai/sdk-ts/compare/v3.0.0-alpha.22...v3.0.0-alpha.23)

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "supermemory",
3-
"version": "3.0.0-alpha.23",
3+
"version": "3.0.0-alpha.24",
44
"description": "The official TypeScript library for the Supermemory API",
55
"author": "Supermemory <[email protected]>",
66
"types": "dist/index.d.ts",
@@ -44,8 +44,9 @@
4444
"publint": "^0.2.12",
4545
"ts-jest": "^29.1.0",
4646
"ts-node": "^10.5.0",
47-
"tsc-multi": "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.8/tsc-multi.tgz",
47+
"tsc-multi": "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz",
4848
"tsconfig-paths": "^4.0.0",
49+
"tslib": "^2.8.1",
4950
"typescript": "5.8.3",
5051
"typescript-eslint": "8.31.1"
5152
},

scripts/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ echo "==> Installing Node dependencies…"
1515

1616
PACKAGE_MANAGER=$(command -v yarn >/dev/null 2>&1 && echo "yarn" || echo "npm")
1717

18-
$PACKAGE_MANAGER install
18+
$PACKAGE_MANAGER install "$@"

scripts/utils/upload-artifact.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [[ "$SIGNED_URL" == "null" ]]; then
1212
exit 1
1313
fi
1414

15-
UPLOAD_RESPONSE=$(tar -cz dist | curl -v -X PUT \
15+
UPLOAD_RESPONSE=$(tar -cz "${BUILD_PATH:-dist}" | curl -v -X PUT \
1616
-H "Content-Type: application/gzip" \
1717
--data-binary @- "$SIGNED_URL" 2>&1)
1818

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ export class Supermemory {
717717
// Preserve legacy string encoding behavior for now
718718
headers.values.has('content-type')) ||
719719
// `Blob` is superset of `File`
720-
body instanceof Blob ||
720+
((globalThis as any).Blob && body instanceof (globalThis as any).Blob) ||
721721
// `FormData` -> `multipart/form-data`
722722
body instanceof FormData ||
723723
// `URLSearchParams` -> `application/x-www-form-urlencoded`

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '3.0.0-alpha.23'; // x-release-please-version
1+
export const VERSION = '3.0.0-alpha.24'; // x-release-please-version

yarn.lock

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3283,10 +3283,9 @@ ts-node@^10.5.0:
32833283
v8-compile-cache-lib "^3.0.0"
32843284
yn "3.1.1"
32853285

3286-
"tsc-multi@https://github.com/stainless-api/tsc-multi/releases/download/v1.1.8/tsc-multi.tgz":
3287-
version "1.1.8"
3288-
uid f544b359b8f05e607771ffacc280e58201476b04
3289-
resolved "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.8/tsc-multi.tgz#f544b359b8f05e607771ffacc280e58201476b04"
3286+
"tsc-multi@https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz":
3287+
version "1.1.9"
3288+
resolved "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz#777f6f5d9e26bf0e94e5170990dd3a841d6707cd"
32903289
dependencies:
32913290
debug "^4.3.7"
32923291
fast-glob "^3.3.2"

0 commit comments

Comments
 (0)