Releases: cisco/webex-assistant-sdk
v2.0.6
What's Changed
- Add missing targeted_only flag to MindmeldApi.handle by @snow0x2d0 in #45
Full Changelog: v2.0.5...v2.0.6
v2.0.5
v2.0.4
v2.0.3
v2.0.2
v2.0.1
2.0.0
This represents a substantial rewrite of the existing SDK. The broad brush strokes are that it replaces the flask based
API with one which uses FastAPI, provides library methods for cryptography operations, adds a subset of the
functionality provided by mindmeld and attempts to offer a better getting started experience. There have also been
significant updates to the CLI to add commands for easier setup and testing. We're keeping the repository the same (name change pending) but will be publishing to a new package name (webex-skills) and starting with version 2.0 to avoid any tag conflicts in github. The previous version will be maintained on a v1 branch for a short period while we allow beta users time to transition to the new version.
1.0.0
Added
- Added key generation CLI command
Changed
- Prior key generation methods output keys in the OpenSSH format. The decision was made to only support the PEM
encoding format for skill keys going forward. As such the CLI now outputs RSA keys in a PEM format. - Examples and tests have been updated to reflect that key format change.
- The SkillApplication class has been removed from the top level package and must now be imported from the app module.
- The main file has been removed for now and the cli is now contained in the cli module.
Added new encryption methodology to SDK
- Updated SDK to use new encryption methodology on new
Skills Service
- Needs to pass a private key when creating a
SkillApplication