-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Increment Version * Fixed issues while making structure for neon api (#67) * Increment Version * Fixed issue when conversation id specified but unset (#69) * Increment Version * Project dependencies update (#70) * Migrated Python version to 3.10 * Cleaned up and restructured dependencies * Added pre commit hooks * Ran black formatter * Made setting up MySQLConnector optional * Updated project requirements * updated python version in references * Incremented subversion * Increment Version * Update for Helm deployment (#71) * Update containers to fully support ovos-config * WIP troubleshooting container init failures * Troubleshooting unit test failures * Troubleshooting unit test failures * Fix legacy config file checks * Replace 'update' with 'update_many' per PyMongo docs https://pymongo.readthedocs.io/en/stable/api/pymongo/collection.html#pymongo.collection.Collection.update_many Update command validation to reference known commands enum directly --------- Co-authored-by: Daniel McKnight <[email protected]> * Increment Version * Support for admin api (#72) * Added K8S and Rabbit MQ management utilities * added callback on missing k8s config * Fixed backward compatibility issue with pymongo * Added submind state processor * Moved out mq validation utility * incremented subversion * added retry-wait for klatchat observer * Fixed issue with caching * Simplified socket io logic * Added license notice --------- Co-authored-by: NeonKirill <[email protected]> * Increment Version * Fix configuration handling (#75) Co-authored-by: Daniel McKnight <[email protected]> * Increment Version * Added support for banning/unbanning subminds and admins endpoint for fetching chats data (#76) * Increment Version * Update PyPI action spec (#73) * Increment Version * Replaces `pull_master` with `propose_release` action (#78) Updates deployment automation to address #77 Co-authored-by: Daniel McKnight <[email protected]> * Increment Version * Reorganized Mongo DB API (#79) * Refactored Mongo DB API to be more granular, optimized and generified queries in place * Fixed unittests * Addressed comments * Fixed issue with prompts * removed redundant property from request_tts * Increment Version * Fixed issue with unauthorized user * Increment Version * Troubleshooting Proctored Conversations (#80) * Increment Version * Upgraded Socket IO to use any transport * Increment Version * Support for personas (#81) * Initial implementation of Personas API in klatchat * Added personas endpoints and optimized middleware * Support for generic configs management --------- Co-authored-by: NeonKirill <[email protected]> * Increment Version * Alpha -> Dev (#85) * added new deployment instructions to target alpha * Disabled pull request hook for CI flow * Fixed import issue * fixing "/ is not a connected namespace." * incremented controller expiration time and decreased ttl length * Fixing issues with updating user account (#83) * Reorganized Socket IO handlers * Fixing Chat Messages Overflow Issue (#84) * Removed dependency on chat_flow property to track messages in conversation * Increment Version --------- Co-authored-by: NeonDaniel <[email protected]> Co-authored-by: NeonKirill <[email protected]>
- Loading branch information
1 parent
e71dc42
commit 1a541b6
Showing
124 changed files
with
6,386 additions
and
3,152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Propose Stable Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_type: | ||
type: choice | ||
description: Release Type | ||
options: | ||
- patch | ||
- minor | ||
- major | ||
jobs: | ||
update_version: | ||
uses: neongeckocom/.github/.github/workflows/propose_semver_release.yml@master | ||
with: | ||
branch: dev | ||
release_type: ${{ inputs.release_type }} | ||
update_changelog: True | ||
pull_changes: | ||
uses: neongeckocom/.github/.github/workflows/pull_master.yml@master | ||
needs: update_version | ||
with: | ||
pr_reviewer: neonreviewers | ||
pr_assignee: ${{ github.actor }} | ||
pr_draft: false | ||
pr_title: ${{ needs.update_version.outputs.version }} | ||
pr_body: ${{ needs.update_version.outputs.changelog }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.3.0 | ||
hooks: | ||
- id: check-yaml | ||
- id: check-json | ||
- id: check-symlinks | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- id: pretty-format-json | ||
- id: requirements-txt-fixer | ||
- id: sort-simple-yaml | ||
- repo: https://github.com/psf/black | ||
rev: 22.10.0 | ||
hooks: | ||
- id: black |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.