fix: await async enter_room in session_request handler#13168
Open
ErnestHysa wants to merge 62 commits into
Open
fix: await async enter_room in session_request handler#13168ErnestHysa wants to merge 62 commits into
ErnestHysa wants to merge 62 commits into
Conversation
…figurable (RasaHQ#12948) * Made use of drop-small-last-batch logic only possible in DIET and configurable
* prepared release of version 3.6.14
…9] (RasaHQ#12965) * Merge pull request RasaHQ#106 from RasaHQ/ENG-680-DEFAULT_KEEP_ALIVE_TIMEOUT Fix connection to action server - [ENG 680] --------- Co-authored-by: Tom Bocklisch <tom@rasa.com>
* prepared release of version 3.6.15
…cans Remove Snyk CI Scans
* prevent race condition in poetry build * update makefile
…ulnerability-3.6.x [ATO-1959] Fix Improper Certificate Validation 3.6.X
Additional load testing recommendations
update changelog with entries from 3.5.x releases
Edit docs workflow to release docs for 3.6.x
* update full retrieval intent name * format * add test for test_update_full_retrieval_intent * fix linting * fix the structure of dict
prepared release of version 3.6.18
* return ID instead of timestamp * order by both timestamp and ID * order events by ID * add timestamp ordering to events * fix linting error * change event timestamps in test * add context in docstring and comment * add test to tracker store * undo changes to assertion * add changelog
Update slack release notifications channels
Update poetry 1.8.2 on 3.6.x
* update pyproject and poetry.lock on 3.6.x * add changelog entry
prepared release of version 3.6.20
[INFRA-1124] Update deprecated dependencies
* Update poetry install GitHub action * Store coverage results separately for each os and python version * Enable CI run on Windows * Update Gr1N/setup-poetry action * Use different GitHub actions to install poetry on ubuntu and windows * Bump GitHub Actions runner OS version to ubuntu-24.04 * Check for Ubuntu 24.04 when installing poetry * Update ubuntu source index before installing packages necessary for tests * Update zookeeper and kafka container setup using docker compose * Disable docs check * Fix tests code coverage processing --------- Co-authored-by: Vlada Anicic <v.anicic@rasa.com>
* Update slack release notification step * [ENG-1424] Use `pickle` alternatives (RasaHQ#1453) * use json.dump and json.load in count_vectors_featurizer and lexical_syntactic_featurizer instead of pickle * update load and persist in sklearn intent classifier * update persist and load in dietclassifier * update load and persist in sklearn intent classifier * use json.dump and json.load in tracker featurizers * update persist and load of TEDPolicy * updated unexpected intent policy persist and load of model utilities. * save and load fake features * rename patterns.pkl to patterns.json * update poetry.lock * ruff formatting * move skops import * add comments * clean up save_features and load_features * WIP: update model data saving and loading * add tests for save and load features * update tests for test_tracker_featurizer * update tests for test_tracker_featurizer * WIP: serialization of feature arrays. * update serialization and deserialization for feature array * remove not needed tests/utils/tensorflow/test_model_data_storage.py * start writing tests for feature array * update feature array tests * update tests * fix linting * add changelog * add new dependencies to .github/dependabot.yml * fix some tests * fix loading and saving of unexpected intent ted policy * fix linting issue * fix converting of features in cvf and lsf * fix lint issues * convert vocab in cvf * fix linting * update crf entity extractor * fix to_dict of crf_token * addressed type issues * ruff formatting * fix typing and lint issues * remove cloudpickle dependency * update logistic_regression_classifier and remove joblib as dependency * update formatting of pyproject.toml * next try: update formatting of pyproject.toml * update logging * update poetry.lock * refactor loading of lexical_syntactic_featurizer * rename FeatureMetadata.type -> FeatureMetadata.data_type * clean up tests test_features.py and test_crf_entity_extractor.py * update test_feature_array.py * check for type when loading tracker featurizer. * update changelog * fix line too long * move import of skops * Prepared release of version 3.10.9.dev1 (RasaHQ#1496) * prepared release of version 3.10.9.dev1 * update minimum model version * Check for 'step_id' and 'active_flow' keys in the metadata when adding 'ActionExecuted' event to flows paths stack. * fix parsing of commands * improve logging * formatting * add changelog * fix parse commands for multi step * [ATO-2985] - Windows model loading test (RasaHQ#1537) * Add test for model loading on windows * Improve the error message logged when handling the user message * Add a changelog * Fix Code Quality - line too long * Rasa-sdk-update (RasaHQ#1546) * all rasa-sdk micro updates * update poetry lock * update rasa-sdk in lock file * Remove trailing white sapce * Prepared release of version 3.10.11 (RasaHQ#1570) * prepared release of version 3.10.11 * add comments again in pyproject.toml * update poetry.lock * revert changes in github workflows * undo changes in pyproject.toml * update changelog * revert changes in github workflows * update poetry.lock * update poetry.lock * update pyproject.toml * update poetry.lock * update setuptools = '>=65.5.1,<75.6.0' * update setuptools = '~75.3.0' * reformat code * undo deleting of ping_slack_about_package_release.sh * fix formatting and type issues * downgrade setuptools to 70.3.0 * fixing logging issues (?) --------- Co-authored-by: sancharigr <s.ghosh@rasa.com>
prepared release of version 3.6.21
* feat: update references of bitnami image to binamilegacy * update `actions/cache` to version 4.2.3, as existing version is deprecated and causing all jobs using it to error out --------- Co-authored-by: Github Actions <a.hasan@rasa.com>
Updated README to reflect changes in community and project focus.
Revise README for community engagement and future direction
Author
|
Thanks CLAassistant, signed. The change is a single-line |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #13027
The sio.enter_room() call inside async session_request was missing await, causing the coroutine to never execute since AsyncServer.enter_room() returns a coroutine.