Skip to content

Commit 917048d

Browse files
chore(main): release stackone-ai 0.4.0
1 parent ab53804 commit 917048d

File tree

4 files changed

+44
-3
lines changed

4 files changed

+44
-3
lines changed

.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.3.4"
2+
".": "0.4.0"
33
}

CHANGELOG.md

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

3+
## [0.4.0](https://github.com/StackOneHQ/stackone-ai-python/compare/stackone-ai-v0.3.4...stackone-ai-v0.4.0) (2025-12-24)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Error handling now uses httpx exceptions instead of requests exceptions. Code catching RequestException should be updated to catch httpx.HTTPStatusError or httpx.RequestError.
9+
* migrate examples and tests to connector-based tool naming ([#51](https://github.com/StackOneHQ/stackone-ai-python/issues/51))
10+
* The `docs` optional dependency group and related commands (`make docs-serve`, `make docs-build`) are no longer available.
11+
* remove MCP server implementation ([#45](https://github.com/StackOneHQ/stackone-ai-python/issues/45))
12+
* remove deprecated OAS-based getTools, migrate to fetchTools only ([#42](https://github.com/StackOneHQ/stackone-ai-python/issues/42))
13+
14+
### Features
15+
16+
* add test coverage reporting with GitHub Pages badge ([#62](https://github.com/StackOneHQ/stackone-ai-python/issues/62)) ([0ef05cf](https://github.com/StackOneHQ/stackone-ai-python/commit/0ef05cf8746e3ca113e6fd6d33bc62fc91711f77))
17+
* **security:** add gitleaks for secret detection ([#63](https://github.com/StackOneHQ/stackone-ai-python/issues/63)) ([1a31baa](https://github.com/StackOneHQ/stackone-ai-python/commit/1a31baa489882da9fc12684d1a060e48928288a9))
18+
19+
20+
### Bug Fixes
21+
22+
* **ci:** use just commands in CI and release workflows ([#57](https://github.com/StackOneHQ/stackone-ai-python/issues/57)) ([38a9dd6](https://github.com/StackOneHQ/stackone-ai-python/commit/38a9dd6cc0b0deea53d1dfb6472686e151df53e4))
23+
* migrate examples and tests to connector-based tool naming ([#51](https://github.com/StackOneHQ/stackone-ai-python/issues/51)) ([c365dbd](https://github.com/StackOneHQ/stackone-ai-python/commit/c365dbd98e8084eea45857292eee90a1798bce16))
24+
* migrate HTTP client from requests to httpx ([#52](https://github.com/StackOneHQ/stackone-ai-python/issues/52)) ([9d180ef](https://github.com/StackOneHQ/stackone-ai-python/commit/9d180efb42647a573e3055ee47ea361dad2dec07))
25+
* remove MCP server implementation ([#45](https://github.com/StackOneHQ/stackone-ai-python/issues/45)) ([bcb12b4](https://github.com/StackOneHQ/stackone-ai-python/commit/bcb12b4ee50e055c4cb29f3aa9baf81352683415))
26+
* **scripts:** add uv lock refresh to version update script ([#50](https://github.com/StackOneHQ/stackone-ai-python/issues/50)) ([bde6d88](https://github.com/StackOneHQ/stackone-ai-python/commit/bde6d88a5688790ada366ed76563092aba0effe4))
27+
28+
29+
### Documentation
30+
31+
* remove meta tools implementation details from README ([#40](https://github.com/StackOneHQ/stackone-ai-python/issues/40)) ([10510d4](https://github.com/StackOneHQ/stackone-ai-python/commit/10510d4b93fc4e20aa51a706541a649115900e6d))
32+
* remove obsolete migration section from README ([#56](https://github.com/StackOneHQ/stackone-ai-python/issues/56)) ([bdcf90d](https://github.com/StackOneHQ/stackone-ai-python/commit/bdcf90d07cd29236f1372d53872689ef624f8e03))
33+
34+
35+
### Miscellaneous Chores
36+
37+
* remove MkDocs documentation generation feature ([#46](https://github.com/StackOneHQ/stackone-ai-python/issues/46)) ([947863e](https://github.com/StackOneHQ/stackone-ai-python/commit/947863e91160a07fcd60d8ee837fb79a35abf0b0))
38+
39+
40+
### Code Refactoring
41+
42+
* remove deprecated OAS-based getTools, migrate to fetchTools only ([#42](https://github.com/StackOneHQ/stackone-ai-python/issues/42)) ([d50d5fb](https://github.com/StackOneHQ/stackone-ai-python/commit/d50d5fb20402dd625217b2900287ae7d9e4cb98c))
43+
344
## [0.3.4](https://github.com/StackOneHQ/stackone-ai-python/compare/stackone-ai-v0.3.3...stackone-ai-v0.3.4) (2025-11-12)
445

546

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackone-ai"
3-
version = "0.3.4"
3+
version = "0.4.0"
44
description = "agents performing actions on your SaaS"
55
readme = "README.md"
66
requires-python = ">=3.9"

stackone_ai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"StackOneTool",
99
"Tools",
1010
]
11-
__version__ = "0.3.4"
11+
__version__ = "0.4.0"

0 commit comments

Comments
 (0)