Skip to content

Commit fc2e461

Browse files
release: 0.8.0
1 parent 1cd61de commit fc2e461

4 files changed

Lines changed: 43 additions & 3 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.7.0"
2+
".": "0.8.0"
33
}

CHANGELOG.md

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

3+
## 0.8.0 (2025-08-26)
4+
5+
Full Changelog: [v0.7.0...v0.8.0](https://github.com/ContextualAI/contextual-client-node/compare/v0.7.0...v0.8.0)
6+
7+
### Features
8+
9+
* **client:** add support for endpoint-specific base URLs ([4375198](https://github.com/ContextualAI/contextual-client-node/commit/4375198ddd324eadac0053fbf0e9284f0686f6a5))
10+
11+
12+
### Bug Fixes
13+
14+
* **ci:** release-doctor — report correct token name ([2339044](https://github.com/ContextualAI/contextual-client-node/commit/2339044a28b8491311eb984fbe0f5b2497e57b32))
15+
* **client:** don't send `Content-Type` for bodyless methods ([70fe78d](https://github.com/ContextualAI/contextual-client-node/commit/70fe78dada5b43beb40a5efb9d371cdcb2ac8ea0))
16+
* publish script — handle NPM errors correctly ([9855ea4](https://github.com/ContextualAI/contextual-client-node/commit/9855ea41c55355a17d1a6282bc8d158b72da2f63))
17+
18+
19+
### Chores
20+
21+
* **ci:** enable for pull requests ([23d5fa7](https://github.com/ContextualAI/contextual-client-node/commit/23d5fa79636f991e3d4ff7a454ee973bb1fc2691))
22+
* **ci:** only run for pushes and fork pull requests ([da8f41a](https://github.com/ContextualAI/contextual-client-node/commit/da8f41a626313a61f8eec1ccb52834021ec5c134))
23+
* **deps:** update dependency node-fetch to v2.6.13 ([a78c708](https://github.com/ContextualAI/contextual-client-node/commit/a78c708d54ad4a15626784c2cd28f9f5badd32bf))
24+
* **docs:** grammar improvements ([92210b2](https://github.com/ContextualAI/contextual-client-node/commit/92210b2f9cbfd930dfb7fcc8c6464a8d0c89bda7))
25+
* **docs:** use top-level-await in example snippets ([39783f4](https://github.com/ContextualAI/contextual-client-node/commit/39783f455c8d9d669d42a0671b239b51a196f743))
26+
* improve publish-npm script --latest tag logic ([bf8c320](https://github.com/ContextualAI/contextual-client-node/commit/bf8c320845e3781558b5c89c2d0dfda127138d13))
27+
* **internal:** formatting change ([377f894](https://github.com/ContextualAI/contextual-client-node/commit/377f8945d985646d593b5b7ab5d4b4f8b49e3f8c))
28+
* **internal:** make base APIResource abstract ([122895d](https://github.com/ContextualAI/contextual-client-node/commit/122895d96bcc6de97dc918dca7b62d8ababb0af5))
29+
* **internal:** move publish config ([119c90e](https://github.com/ContextualAI/contextual-client-node/commit/119c90eb630dd8f659ceaa54b0b8e2b9b066c5f4))
30+
* **internal:** remove redundant imports config ([81939bc](https://github.com/ContextualAI/contextual-client-node/commit/81939bc05046667a6abe50b9a004b876b69a2cbc))
31+
* **internal:** update comment in script ([4c94556](https://github.com/ContextualAI/contextual-client-node/commit/4c94556258643943f9b0bb20ec704031cd5aaea2))
32+
* **internal:** update examples ([8b244f3](https://github.com/ContextualAI/contextual-client-node/commit/8b244f3de7b94001daf4e2de4761d57454d34fb9))
33+
* make some internal functions async ([cfbf5bc](https://github.com/ContextualAI/contextual-client-node/commit/cfbf5bc81cb65347306a63f6901c0682f2a827cf))
34+
* mention unit type in timeout docs ([4271686](https://github.com/ContextualAI/contextual-client-node/commit/427168601652284f4f664680cd66302d4ac5485a))
35+
* update @stainless-api/prism-cli to v5.15.0 ([5357389](https://github.com/ContextualAI/contextual-client-node/commit/5357389ae828af04cb9595175c2603554d43902a))
36+
* update CI script ([b12ee6f](https://github.com/ContextualAI/contextual-client-node/commit/b12ee6ff77acc76f4e15a75e6b980fb01a09b1e0))
37+
38+
39+
### Refactors
40+
41+
* **types:** replace Record with mapped types ([b50e9f1](https://github.com/ContextualAI/contextual-client-node/commit/b50e9f1b6306889aff9ee34fb2d29dcad6d8c3f7))
42+
343
## 0.7.0 (2025-05-13)
444

545
Full Changelog: [v0.6.0...v0.7.0](https://github.com/ContextualAI/contextual-client-node/compare/v0.6.0...v0.7.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "contextual-client",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"description": "The official TypeScript library for the Contextual AI API",
55
"author": "Contextual AI <support@contextual.ai>",
66
"types": "dist/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.7.0'; // x-release-please-version
1+
export const VERSION = '0.8.0'; // x-release-please-version

0 commit comments

Comments
 (0)