Skip to content

Commit 05431c2

Browse files
committed
Bump to v1.8.5
1 parent 6834f56 commit 05431c2

3 files changed

Lines changed: 23 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7+
## [1.8.5](https://github.com/SocketDev/socket-sdk-js/releases/tag/v1.8.5) - 2025-10-02
8+
9+
### Changed
10+
- Synced with OpenAPI definition
11+
- Added new `/openapi.json` endpoint for retrieving API specification in JSON format
12+
- Updated repo label filter descriptions to document empty string ("") usage for repositories with no labels
13+
- Added 'dual' threat category type
14+
715
## [1.8.4](https://github.com/SocketDev/socket-sdk-js/releases/tag/v1.8.4) - 2025-10-01
816

917
### Fixed

CLAUDE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,20 @@ All code elements MUST be sorted:
187187
- **Important**: Even when using `--no-verify`, you MUST still run linting/checking commands manually first
188188
- **Rationale**: Pre-commit hooks run linting and type-checking which are critical for SDK source code but less critical for non-published files
189189

190+
### Changelog Management
191+
- **🚨 MANDATORY**: When creating changelog entries for version bumps:
192+
- **Check OpenAPI definition updates**: Always analyze `types/api.d.ts` changes
193+
```bash
194+
git diff v{previous-version}..HEAD -- types/
195+
```
196+
- **Document user-facing changes**: Include specific details about:
197+
- New endpoints added (e.g., `/openapi.json`)
198+
- Updated parameter descriptions and behavior
199+
- New type categories or enum values (e.g., 'dual' threat type)
200+
- Breaking changes to API contracts
201+
- **Focus on user impact**: Only include changes that affect SDK users, not internal infrastructure
202+
- **Rationale**: OpenAPI changes directly impact SDK users and must be documented for API discoverability
203+
190204
## 🔍 DEBUGGING
191205

192206
### Common Issues

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@socketsecurity/sdk",
3-
"version": "1.8.4",
3+
"version": "1.8.5",
44
"license": "MIT",
55
"description": "SDK for the Socket API client",
66
"author": {

0 commit comments

Comments
 (0)