From 112f50bf00817e8f45b5db854d9372ee51d163a6 Mon Sep 17 00:00:00 2001 From: dlpzx <71252798+dlpzx@users.noreply.github.com> Date: Tue, 30 Apr 2024 08:38:27 +0200 Subject: [PATCH] Update the git clone command to use tag 2.4.0 (#1229) ### Feature or Bugfix - Bugfix ### Detail Update docs to do git clone on latest released tag ### Relates - ### Security Please answer the questions below briefly where applicable, or write `N/A`. Based on [OWASP 10](https://owasp.org/Top10/en/). - Does this PR introduce or modify any input fields or queries - this includes fetching data from storage outside the application (e.g. a database, an S3 bucket)? - Is the input sanitized? - What precautions are you taking before deserializing the data you consume? - Is injection prevented by parametrizing queries? - Have you ensured no `eval` or similar functions are used? - Does this PR introduce any functionality or component that requires authorization? - How have you ensured it respects the existing AuthN/AuthZ mechanisms? - Are you logging failed auth attempts? - Are you using or adding any cryptographic features? - Do you use a standard proven implementations? - Are the used keys controlled by the customer? Where are they stored? - Are you introducing any new policies/roles/users? - Have you used the least-privilege principle? How? By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. --- pages/deploy/deploy_aws.md | 2 +- pages/deploy/deploy_locally.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/deploy/deploy_aws.md b/pages/deploy/deploy_aws.md index 4d9772723..dae190e93 100644 --- a/pages/deploy/deploy_aws.md +++ b/pages/deploy/deploy_aws.md @@ -65,7 +65,7 @@ which means that AWS services used by this construct need to be available in the Clone the GitHub repository from: ```bash -git clone https://github.com/data-dot-all/dataall.git --branch v2.3.0 +git clone https://github.com/data-dot-all/dataall.git --branch v2.4.0 cd dataall ``` ## 2. Setup Python virtualenv diff --git a/pages/deploy/deploy_locally.md b/pages/deploy/deploy_locally.md index 5c7d8635e..bcdac7b05 100644 --- a/pages/deploy/deploy_locally.md +++ b/pages/deploy/deploy_locally.md @@ -25,7 +25,7 @@ data.all is fully dockerized with docker-compose, and can be fully run from your The first step is to clone the repo. ```bash -git clone https://github.com/data-dot-all/dataall.git --branch v2.3.0 +git clone https://github.com/data-dot-all/dataall.git --branch v2.4.0 ``` With docker compose we orchestrate the build of 5 containers: frontend, db, graphql, cdkproxy, opensearch.