Skip to content

Commit 75ad8c7

Browse files
release: 2.3.0
1 parent bdfd113 commit 75ad8c7

4 files changed

Lines changed: 45 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-
".": "2.2.0"
2+
".": "2.3.0"
33
}

CHANGELOG.md

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

3+
## 2.3.0 (2025-06-16)
4+
5+
Full Changelog: [v2.2.0...v2.3.0](https://github.com/writer/writer-node/compare/v2.2.0...v2.3.0)
6+
7+
### Features
8+
9+
* **client:** add support for endpoint-specific base URLs ([bdfd113](https://github.com/writer/writer-node/commit/bdfd113832db72f1c99b6dee8f900fd04258be48))
10+
* **client:** add withOptions helper ([73cc2cc](https://github.com/writer/writer-node/commit/73cc2cc05df8da8669265f7b8af02581dac7d149))
11+
12+
13+
### Bug Fixes
14+
15+
* **client:** always overwrite when merging headers ([0dc9410](https://github.com/writer/writer-node/commit/0dc94108fb0e28a8f8740ef14cbcd9171caf1b1a))
16+
* compat with more runtimes ([a43506b](https://github.com/writer/writer-node/commit/a43506b06ddc1a231b2ae67922c28dfd53c31799))
17+
* package.json format ([2208eda](https://github.com/writer/writer-node/commit/2208eda68fc571c7b72a9c2bbd6ab96eaaf27ca0))
18+
* publish script — handle NPM errors correctly ([39c4b77](https://github.com/writer/writer-node/commit/39c4b77d4926523e5d457cb3b9bf29d015c580dc))
19+
20+
21+
### Chores
22+
23+
* adjust eslint.config.mjs ignore pattern ([01dff7e](https://github.com/writer/writer-node/commit/01dff7e988804ee4a2025f743c58c7ba7b29b90e))
24+
* avoid type error in certain environments ([5dd5df5](https://github.com/writer/writer-node/commit/5dd5df508c48912d7f3dacc1d270616295b56476))
25+
* **client:** drop support for EOL node versions ([78f8359](https://github.com/writer/writer-node/commit/78f8359e34243ff576622ed9cebd4e3e38b60014))
26+
* **client:** refactor imports ([353a5a6](https://github.com/writer/writer-node/commit/353a5a6fcd0293a4128130757ec4b4bd93d59e6e))
27+
* **deps:** bump eslint-plugin-prettier ([9a1f18d](https://github.com/writer/writer-node/commit/9a1f18d3c404914eb0198ab27544b71b32795db3))
28+
* **docs:** grammar improvements ([52b1f34](https://github.com/writer/writer-node/commit/52b1f341eb2503f8bd8914f900ea283a136b82cb))
29+
* **docs:** use top-level-await in example snippets ([7f5ac8c](https://github.com/writer/writer-node/commit/7f5ac8c0681af24ef1734b3d0990752e3613dd0d))
30+
* improve publish-npm script --latest tag logic ([7b778a5](https://github.com/writer/writer-node/commit/7b778a5c913d412e438620a8a4fe656b92dcc237))
31+
* **internal:** add pure annotations, make base APIResource abstract ([ee0adb9](https://github.com/writer/writer-node/commit/ee0adb94760e4a28d2ce2172c80b6a849d0d12b3))
32+
* **internal:** codegen related update ([debc99f](https://github.com/writer/writer-node/commit/debc99f6106376639ded847c8953d9b61bc610be))
33+
* **internal:** fix format script ([cab6ad2](https://github.com/writer/writer-node/commit/cab6ad2ea60b7a396c02479fa12525deb8def266))
34+
* **internal:** fix readablestream types in node 20 ([c15bde3](https://github.com/writer/writer-node/commit/c15bde3d4c63f3c641ebb1b483327ccfd9952a83))
35+
* **internal:** share typescript helpers ([238294b](https://github.com/writer/writer-node/commit/238294bd0eca0d00fe6dd8d2c789194fdbc6f517))
36+
* **package:** remove engines ([85661a0](https://github.com/writer/writer-node/commit/85661a05964c3d1ba5f37ffdd5a1f4eb454bb9d3))
37+
38+
39+
### Documentation
40+
41+
* add examples to tsdocs ([02ae649](https://github.com/writer/writer-node/commit/02ae649d4d577e26fbde7151b38f5ef72f056bea))
42+
* **api:** updates to API spec ([295a548](https://github.com/writer/writer-node/commit/295a54847dee382b0386c98c65bb8bf7cae255c3))
43+
* **api:** updates to API spec ([bd53b17](https://github.com/writer/writer-node/commit/bd53b172ef960ce3023a20c9458f65d30ca97dba))
44+
345
## 2.2.0 (2025-04-30)
446

547
Full Changelog: [v2.2.0-rc.1...v2.2.0](https://github.com/writer/writer-node/compare/v2.2.0-rc.1...v2.2.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "writer-sdk",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "The official TypeScript library for the Writer API",
55
"author": "Writer <dev-feedback@writer.com>",
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 = '2.2.0'; // x-release-please-version
1+
export const VERSION = '2.3.0'; // x-release-please-version

0 commit comments

Comments
 (0)