openai/chatkit-python
Publicmirrored fromhttps://github.com/openai/chatkit-pythonAvailable
docs/release.md
39lines · modecode
| 1 | # Release process/changelog |
| 2 | |
| 3 | The project follows a slightly modified version of [semantic versioning](https://semver.org/spec/v2.0.0.html). The SDK is still evolving and certain backwards-incompatible changes may be released as minor versions. |
| 4 | |
| 5 | ## Minor versions |
| 6 | |
| 7 | We will increase minor versions for **breaking changes** to any public interfaces. For example, going from `1.0.x` to `1.1.x` might include breaking changes. |
| 8 | |
| 9 | If you don't want breaking changes, we recommend pinning to `1.0.x` versions in your project. |
| 10 | |
| 11 | ## Patch versions |
| 12 | |
| 13 | We will increment patch versions for non-breaking changes: |
| 14 | |
| 15 | - Bug fixes |
| 16 | - New features |
| 17 | - Changes to private interfaces |
| 18 | |
| 19 | ## Breaking change changelog |
| 20 | |
| 21 | ### 1.4.0 |
| 22 | |
| 23 | - Widget and action classes are still usable but marked as deprecated in favor of using `WidgetTemplate` to build widgets from `.widget` files. |
| 24 | - Added `jinja2` as a required dependency for widget template rendering. |
| 25 | - A stop button is now shown by default during streaming, allowing users to cancel the stream mid-response. Integrations can override `ChatKitServer.get_stream_options` to change this behavior. |
| 26 | |
| 27 | ### 1.3.0 |
| 28 | |
| 29 | - Fixed the type for the `defaultChecked` property of `Checkbox` widgets, updating it from `string` to `bool`. |
| 30 | |
| 31 | ### 1.2.0 |
| 32 | |
| 33 | - Updated `agents.stream_agent_response` to add annotation parts as they are received rather than adding all the annotations at the end after the response is completed. |
| 34 | - Added support for rendering `container_file_citation`. |
| 35 | |
| 36 | ### 1.1.0 |
| 37 | |
| 38 | - `CustomSummary`, `CustomTask`, and `EntitySource` types have been updated to restrict `icon` to `IconName`. |
| 39 | - All `ThreadItemConverter` methods have been updated to be asynchronous. |
| 40 | |