Skip to content

Commit 4f03f3c

Browse files
release: 0.1.0-alpha.9 (#11)
* chore(tests): remove redundant File import * fix(typescript): upgrade tsc-multi so that it works with Node 26 * release: 0.1.0-alpha.9 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent e701b7b commit 4f03f3c

6 files changed

Lines changed: 20 additions & 8 deletions

File tree

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## 0.1.0-alpha.9 (2026-05-19)
4+
5+
Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/HubSpot/hubspot-sdk-typescript/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
6+
7+
### Bug Fixes
8+
9+
* **typescript:** upgrade tsc-multi so that it works with Node 26 ([65de019](https://github.com/HubSpot/hubspot-sdk-typescript/commit/65de0197a89d312879149b2fe69b8ce93504b42b))
10+
11+
12+
### Chores
13+
14+
* **tests:** remove redundant File import ([7b5fdb3](https://github.com/HubSpot/hubspot-sdk-typescript/commit/7b5fdb39fd9e7fdb314be1bae02bf8cfaaf40559))
15+
316
## 0.1.0-alpha.8 (2026-05-18)
417

518
Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/HubSpot/hubspot-sdk-typescript/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hubspot/sdk",
3-
"version": "0.1.0-alpha.8",
3+
"version": "0.1.0-alpha.9",
44
"description": "The official TypeScript library for the HubSpot API",
55
"author": "HubSpot <>",
66
"types": "dist/index.d.ts",
@@ -43,7 +43,7 @@
4343
"publint": "^0.2.12",
4444
"ts-jest": "^29.1.0",
4545
"ts-node": "^10.5.0",
46-
"tsc-multi": "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz",
46+
"tsc-multi": "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.11/tsc-multi.tgz",
4747
"tsconfig-paths": "^4.0.0",
4848
"tslib": "^2.8.1",
4949
"typescript": "5.8.3",

src/version.ts

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

tests/uploads.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import fs from 'fs';
22
import type { ResponseLike } from '@hubspot/sdk/internal/to-file';
33
import { toFile } from '@hubspot/sdk/core/uploads';
4-
import { File } from 'node:buffer';
54

65
class MyClass {
76
name: string = 'foo';

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3192,9 +3192,9 @@ ts-node@^10.5.0:
31923192
v8-compile-cache-lib "^3.0.0"
31933193
yn "3.1.1"
31943194

3195-
"tsc-multi@https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz":
3196-
version "1.1.9"
3197-
resolved "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz#777f6f5d9e26bf0e94e5170990dd3a841d6707cd"
3195+
"tsc-multi@https://github.com/stainless-api/tsc-multi/releases/download/v1.1.11/tsc-multi.tgz":
3196+
version "1.1.11"
3197+
resolved "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.11/tsc-multi.tgz#010247051be13b55abdc98f787c017285149f4f2"
31983198
dependencies:
31993199
debug "^4.3.7"
32003200
fast-glob "^3.3.2"

0 commit comments

Comments
 (0)