Skip to content

Commit c1781ed

Browse files
committed
Fix comment and update CHANGELOG.md
1 parent d91741b commit c1781ed

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

packages/sdk/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<!-- markdownlint-disable MD024 -->
22
# Changelog
33

4+
## [1.0.5] - 2024-11-18
5+
6+
### Changed
7+
8+
- The backend client used to default to `production` if the environment was not specified.
9+
Now `environment` is a required argument for `createBackendClient` and must be one of `production`
10+
or `development`.
11+
412
## [1.0.4] - 2024-11-15
513

614
### Changed

packages/sdk/src/server/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ export type OAuthCredentials = {
1717
};
1818

1919
/**
20-
* The environment in which the server client is running (e.g., "production",
21-
* "development").
20+
* The environment in which the server client is running.
2221
*/
2322
export type ProjectEnvironment = "development" | "production"
2423

0 commit comments

Comments
 (0)