Skip to content

Commit

Permalink
Merge branch 'main' into license-only-telemetry-main
Browse files Browse the repository at this point in the history
  • Loading branch information
m-vdb authored Sep 18, 2023
2 parents 9e8f068 + 4b9f50e commit c6b3e6b
Show file tree
Hide file tree
Showing 38 changed files with 532 additions and 1,447 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ jobs:
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2.2.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@ecf95283f03858871ff00b787d79c419715afc34 # v2.7.0
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2.7.0

- name: Read Poetry Version 🔢
run: |
Expand Down Expand Up @@ -1046,7 +1046,7 @@ jobs:
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2.2.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@ecf95283f03858871ff00b787d79c419715afc34 # v2.7.0
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2.7.0

- name: Free disk space
if: needs.changes.outputs.docker == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
shell: bash

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55
id: buildx
with:
version: v0.5.1
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,27 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . -->

<!-- TOWNCRIER -->

## [3.6.8] - 2023-08-30

Rasa 3.6.8 (2023-08-30)

No significant changes.


## [3.6.7] - 2023-08-29

Rasa 3.6.7 (2023-08-29)
### Bugfixes
- [#12768](https://github.com/rasahq/rasa/issues/12768): Updated certifi, cryptography, and scipy packages to address security vulnerabilities.


## [3.6.6] - 2023-08-23

Rasa 3.6.6 (2023-08-23)
### Bugfixes
- [#12755](https://github.com/rasahq/rasa/issues/12755): Updated setuptools and wheel to address security vulnerabilities.


## [3.6.5] - 2023-08-17

Rasa 3.6.5 (2023-08-17)
Expand Down
1 change: 1 addition & 0 deletions changelog/12778.improvement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added additional method `fingerprint_addon` to the `GraphComponent` interface to allow inclusion of external data into the fingerprint calculation of a component
1 change: 1 addition & 0 deletions changelog/12790.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed `KeyError` which resulted when `domain_responses` doesn't exist as a keyword argument while using a custom action dispatcher with nlg server.
9 changes: 9 additions & 0 deletions data/test_classes/graph_component_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,12 @@ def not_supported_languages() -> Optional[List[Text]]:
def required_packages() -> List[Text]:
"""Any extra python dependencies required for this component to run."""
return []

@classmethod
def fingerprint_addon(cls, config: Dict[str, Any]) -> Optional[str]:
"""Adds additional data to the fingerprint calculation.
This is useful if a component uses external data that is not provided
by the graph.
"""
return None
15 changes: 1 addition & 14 deletions docs/docs/installation/installing-rasa-open-source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,6 @@ import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";
import { Button } from "@theme/Button";

:::note Want to explore first?
You can explore Rasa Open Source online using the Rasa Playground even before you install it.
At the end of the tutorial, you can download the resulting assistant, install Rasa on
your machine and continue development locally.

<a
className="button button--outline button button"
href={useBaseUrl("/playground")}
>
Rasa Playground
</a>
:::

## Install Rasa Open Source

<Tabs values={[{"label": "Ubuntu / macOS / Windows", "value": "ubuntu/macos/windows"}]} defaultValue="ubuntu/macos/windows">
Expand Down Expand Up @@ -147,7 +134,7 @@ python3 -m spacy download en_core_web_md

:::tip Using `zsh`?

In zsh, square brackets are interpreted as patterns on the command line.
In zsh, square brackets are interpreted as patterns on the command line.
To run commands with square brackets, you can either enclose the arguments
with square brackets in quotes, like `pip3 install 'rasa[spacy]'`, or escape
the square brackets using backslashes, like `pip3 install rasa\[spacy\]`.
Expand Down
267 changes: 0 additions & 267 deletions docs/docs/playground.mdx

This file was deleted.

1 change: 0 additions & 1 deletion docs/docs/setting-up-ci-cd.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ jobs:
- name: Rasa Train and Test GitHub Action
uses: RasaHQ/rasa-train-test-gha@main
with:
requirements_file: requirements.txt
data_validate: true
rasa_train: true
cross_validation: true
Expand Down
Loading

0 comments on commit c6b3e6b

Please sign in to comment.