Skip to content

Releases: cisco/webex-assistant-sdk

v2.0.6

26 Oct 15:42
0fc7ee5
Compare
Choose a tag to compare

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

26 Oct 15:25
Compare
Choose a tag to compare

Update stub pyproject.toml file to require python >= 3.7 and webex-skills > 2.0.0

v2.0.4

26 Oct 15:24
Compare
Choose a tag to compare

Change version requirements to 3.7 to avoid potential dependency issues with mindmeld. Appears to work on 3.8 as well but it is not officially supported by mindmeld.

v2.0.3

25 Oct 20:58
Compare
Choose a tag to compare

What's Changed

  • Add initial config for mindmeld based skills to not require duckling and elasticsearch.

v2.0.2

25 Oct 20:21
Compare
Choose a tag to compare
  • Update path for skill check from /check to a GET of /parse

v2.0.1

22 Oct 19:08
Compare
Choose a tag to compare

Fixes a bug where uvicorn was specified as a dev dependency despite being required in the CLI. Also updates the mindmeld dependency to the most recent version.

2.0.0

22 Oct 17:25
b91799a
Compare
Choose a tag to compare

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

28 Sep 17:05
Compare
Choose a tag to compare

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

10 Sep 16:22
Compare
Choose a tag to compare
  • Updated SDK to use new encryption methodology on new Skills Service
  • Needs to pass a private key when creating a SkillApplication

0.4.0

19 Aug 17:27
Compare
Choose a tag to compare

Changed

* Removed custom token formats for payload encryption in favor of HTTPS
* Removed generate-key command from cli