Skip to content

Commit

Permalink
release-7.0.0 changelog & readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Bonymol-aot committed Dec 20, 2024
1 parent a0f857e commit 6f48dae
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 8 deletions.
15 changes: 9 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Mark items as `Added`, `Changed`, `Fixed`, `Modified`, `Removed`, `Untested Fea

`Added`

**formsflow-web**
**forms-flow-web**
* Added redesigned form and workflow UI for designer
* Form and Subflow listing
* Form and Subflow Create/ Edit page:
Expand All @@ -21,11 +21,11 @@ Mark items as `Added`, `Changed`, `Fixed`, `Modified`, `Removed`, `Untested Fea
**forms-flow-api**
* Added new endpoints for:
* form validation: `form/validate`
* layout + import: `/import`
* layout + export: `/form/mapper_id/export`
* form migration: `/process/migrate `
* layout + publish: `/form/mapper_id/publish`
* layout + unpublish: `/form/mapper_id/unpublish`
* layout + flow: `/import`
* layout + flow: `/form/mapper_id/export`
* form migration: `/process/migrate`
* layout + flow: `/form/mapper_id/publish`
* layout + flow: `/form/mapper_id/unpublish`
* list permissions: `/roles/permissions`
* theme customization:
* Create, Get, Update theme: `/themes`
Expand Down Expand Up @@ -139,6 +139,9 @@ Mark items as `Added`, `Changed`, `Fixed`, `Modified`, `Removed`, `Untested Fea
* Added new micro-frontend : forms-flow-components
* Refer [version documentation](https://aot-technologies.github.io/forms-flow-ai-doc/#version_upgrade) for environment variable changes

`Known Issues`
* The language translation of the entire UI is not perfect at the moment, so some glitches may be expected.
<br><br>


## 6.0.2 - 2024-06-05
Expand Down
12 changes: 12 additions & 0 deletions forms-flow-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ Variable name | Meaning | Possible values | Default value |
`FORMSFLOW_API_DB_USER`|formsflow database postgres user|Used on installation to create the database.Choose your own|`postgres`
`FORMSFLOW_API_DB_PASSWORD`|formsflow database postgres password|Used on installation to create the database.Choose your own|`changeme`
`FORMSFLOW_API_DB_NAME`|formsflow database name|Used on installation to create the database.Choose your own|`FORMSFLOW_API_DB`
`FORMSFLOW_API_DB_HOST`|formsflow database host|Used on installation to create the database.Choose your own||`localhost`
`FORMSFLOW_API_DB_PORT`|formsflow database port|Used on installation to create the database.Choose your own||`5432`
`FORMSFLOW_API_DB_URL`|JDBC DB Connection URL for formsflow||`postgresql://postgres:changeme@forms-flow-webapi-db:5432/webapi`
`KEYCLOAK_URL`:triangular_flag_on_post:| URL to your Keycloak server || `http://{your-ip-address}:8080`
`KEYCLOAK_URL_REALM`|The Keycloak realm to use|eg. forms-flow-ai | `forms-flow-ai`
Expand All @@ -70,6 +72,16 @@ Variable name | Meaning | Possible values | Default value |
`BPM_API_URL`:triangular_flag_on_post:|Camunda Rest API URL||`http://{your-ip-address}:8000/camunda`
`FORMSFLOW_API_URL`:triangular_flag_on_post:|formsflow.ai Rest API URL||`http://{your-ip-address}:5000`
`FORMSFLOW_API_CORS_ORIGINS`| formsflow.ai Rest API allowed origins, for allowing multiple origins you can separate host address using a comma seperated string or use * to allow all origins |eg:`host1, host2, host3`| `*`
`FORMSFLOW_ADMIN_URL`|To fetch formio roles in multi tenancy||`http://{your-ip-address}:5010/api/v1`
`REDIS_URL`| To support single/cluster node||`redis://{your-ip-address}:6379/0`
`REDIS_CLUSTER`|To support single/cluster node|`true`/`false`|`false`
`DATABASE_URL`|To support local setup
`DATABASE_USERNAME`|Instead of DATABASE URL| `postgres`
`DATABASE_PASSWORD`|Instead of DATABASE URL|`changeme`
`DATABASE_HOST`|Instead of DATABASE URL|`forms-flow-webapi-db`
`DATABASE_PORT`|Instead of DATABASE URL|`5432`
`DATABASE_NAME`|Instead of DATABASE URL|`webapi`


**NOTE : Default realm is `forms-flow-ai`**

Expand Down
6 changes: 6 additions & 0 deletions forms-flow-bpm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ To know more about Camunda, visit https://camunda.com/.
`IDENTITY_PROVIDER_MAX_RESULT_SIZE`|Maximum result size for Keycloak user queries||`250`
`BPM_CLIENT_CONN_TIMEOUT`|Webclient Connection timeout in milli seconds||`5000`
`BPM_API_URL`:triangular_flag_on_post:|BPM Client URL||`http://{your-ip-address}:8000/camunda`
`VAULT_ENABLED`|Support to fetch secrets from vault|`true`/`false`|`false`
`VAULT_URL`|Support to fetch secrets from vault
`VAULT_TOKEN`|Support to fetch secrets from vault
`VAULT_PATH`|Support to fetch secrets from vault
`VAULT_SECRET`|Support to fetch secrets from vault
`FORMSFLOW_DOC_API_URL`|To support forms-flow-documents sevice||`http://localhost:5006`

**Additionally, you may want to change these**
* The value of Datastore credentials (especially if this instance is not just for testing purposes)
Expand Down
4 changes: 2 additions & 2 deletions forms-flow-data-analysis-api/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# formsflow.ai Sentiment Analysis Component

![Python](https://img.shields.io/badge/Python-3.12.6-blue) ![Flask](https://img.shields.io/badge/Flask-2.3.3-blue) ![postgres](https://img.shields.io/badge/postgres-13.0-blue)
![Transformers](https://img.shields.io/badge/Transformers-4.36.2-blue)
![Torch](https://img.shields.io/badge/Torch-2.0.1-blue)
![Transformers](https://img.shields.io/badge/Transformers-4.47.0-blue)
![Torch](https://img.shields.io/badge/Torch-2.5.1-blue)

Sentiment Analysisis used to understand the sentiments of the customer for products, movies, and other such things, whether they feel positive, negative, or neutral about it. BERT is a very good pre-trained language model which helps machines learn excellent representations of text with respect to context in many natural language tasks.

Expand Down
6 changes: 6 additions & 0 deletions forms-flow-documents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,12 @@ Variable name | Meaning | Possible values | Default value |
`FORMSFLOW_API_URL`:triangular_flag_on_post:|formsflow.ai Rest API URL||`http://{your-ip-address}:5000`
`FORMSFLOW_DOC_API_URL`:triangular_flag_on_post:|formsflow.ai Document service URL||`http://{your-ip-address}:5006`
`FORMSFLOW_API_CORS_ORIGINS`| formsflow.ai Rest API allowed origins, for allowing multiple origins you can separate host address using a comma seperated string or use * to allow all origins |eg:`host1, host2, host3`| `*`
`DATABASE_USERNAME`|Instead of DATABASE URL| `postgres`
`DATABASE_PASSWORD`|Instead of DATABASE URL|`changeme`
`DATABASE_HOST`|Instead of DATABASE URL|`forms-flow-webapi-db`
`DATABASE_PORT`|Instead of DATABASE URL|`5432`
`DATABASE_NAME`|Instead of DATABASE URL|`webapi`


**NOTE : Default realm is `forms-flow-ai`**

Expand Down

0 comments on commit 6f48dae

Please sign in to comment.