mirror of https://github.com/dapr/docs.git
				
				
				
			Merge pull request #4248 from hhunter-ms/endgame_1.14
[Endgame] Prep v1.14 branch for v1.14 release
This commit is contained in:
		
						commit
						b70a6bc115
					
				|  | @ -0,0 +1,109 @@ | |||
| name: Azure Static Web App Root | ||||
| 
 | ||||
| on: | ||||
|   workflow_dispatch: | ||||
|   push: | ||||
|     branches: | ||||
|       - v1.14 | ||||
|   pull_request: | ||||
|     types: [opened, synchronize, reopened, closed] | ||||
|     branches: | ||||
|       - v1.14 | ||||
| 
 | ||||
| concurrency: | ||||
|   # Cancel the previously triggered build for only PR build. | ||||
|   group: website-${{ github.event.pull_request.number || github.sha }} | ||||
|   cancel-in-progress: true | ||||
| 
 | ||||
| jobs: | ||||
|   build_and_deploy_job: | ||||
|     name: Build Hugo Website | ||||
|     if: github.event.action != 'closed' | ||||
|     runs-on: ubuntu-latest | ||||
|     env: | ||||
|       SWA_BASE: 'proud-bay-0e9e0e81e' | ||||
|       HUGO_ENV: production | ||||
|     steps: | ||||
|       - name: Checkout docs repo | ||||
|         uses: actions/checkout@v3 | ||||
|         with: | ||||
|           submodules: true | ||||
|       - name: Setup Node | ||||
|         uses: actions/setup-node@v2 | ||||
|         with: | ||||
|           node-version: '14' | ||||
|       - name: Setup Hugo | ||||
|         uses: peaceiris/actions-hugo@v2.5.0 | ||||
|         with: | ||||
|           hugo-version: 0.102.3 | ||||
|           extended: true | ||||
|       - name: Setup Docsy | ||||
|         run: | | ||||
|           cd daprdocs | ||||
|           git submodule update --init --recursive | ||||
|           sudo npm install -D --save autoprefixer | ||||
|           sudo npm install -D --save postcss-cli | ||||
|       - name: Build Hugo Website | ||||
|         run: | | ||||
|           cd daprdocs | ||||
|           git config --global --add safe.directory /github/workspace | ||||
|           if [ $GITHUB_EVENT_NAME == 'pull_request' ]; then | ||||
|             STAGING_URL="https://${SWA_BASE}-${{github.event.number}}.westus2.azurestaticapps.net/" | ||||
|           fi | ||||
|           hugo ${STAGING_URL+-b "$STAGING_URL"} | ||||
|       - name: Deploy docs site | ||||
|         uses: Azure/static-web-apps-deploy@v1 | ||||
|         with: | ||||
|           azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_PROUD_BAY_0E9E0E81E }} | ||||
|           repo_token: ${{ secrets.GITHUB_TOKEN }} | ||||
|           action: "upload" | ||||
|           app_location: "daprdocs/public/" | ||||
|           api_location: "daprdocs/public/"  | ||||
|           output_location: "" | ||||
|           skip_app_build: true | ||||
|           skip_deploy_on_missing_secrets: true | ||||
|       - name: Upload Hugo artifacts | ||||
|         uses: actions/upload-artifact@v3 | ||||
|         with: | ||||
|           name: hugo_build | ||||
|           path: ./daprdocs/public/ | ||||
|           if-no-files-found: error | ||||
| 
 | ||||
|   close_staging_site: | ||||
|     if: github.event_name == 'pull_request' && github.event.action == 'closed' | ||||
|     runs-on: ubuntu-latest | ||||
|     name: Close Pull Request Job | ||||
|     steps: | ||||
|       - name: Close Pull Request | ||||
|         id: closepullrequest | ||||
|         uses: Azure/static-web-apps-deploy@v1 | ||||
|         with: | ||||
|           azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_PROUD_BAY_0E9E0E81E }} | ||||
|           action: "close" | ||||
|           skip_deploy_on_missing_secrets: true | ||||
| 
 | ||||
|   algolia_index: | ||||
|     name: Index site for Algolia | ||||
|     if: github.event_name == 'push' | ||||
|     needs: ['build_and_deploy_job'] | ||||
|     runs-on: ubuntu-latest | ||||
|     env: | ||||
|       ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }} | ||||
|       ALGOLIA_API_WRITE_KEY: ${{ secrets.ALGOLIA_API_WRITE_KEY }} | ||||
|       ALGOLIA_INDEX_NAME: daprdocs | ||||
|     steps: | ||||
|       - name: Checkout docs repo | ||||
|         uses: actions/checkout@v2 | ||||
|         with: | ||||
|           submodules: false | ||||
|       - name: Download Hugo artifacts | ||||
|         uses: actions/download-artifact@v3 | ||||
|         with: | ||||
|           name: hugo_build | ||||
|           path: site/ | ||||
|       - name: Install Python packages | ||||
|         run: | | ||||
|           pip install --upgrade bs4 | ||||
|           pip install --upgrade 'algoliasearch>=2.0,<3.0' | ||||
|       - name: Index site | ||||
|         run: python ./.github/scripts/algolia.py ./site | ||||
|  | @ -16,8 +16,8 @@ The following branches are currently maintained: | |||
| 
 | ||||
| | Branch                                                       | Website                    | Description                                                                                      | | ||||
| | ------------------------------------------------------------ | -------------------------- | ------------------------------------------------------------------------------------------------ | | ||||
| | [v1.13](https://github.com/dapr/docs) (primary)               | https://docs.dapr.io       | Latest Dapr release documentation. Typo fixes, clarifications, and most documentation goes here. | | ||||
| | [v1.14](https://github.com/dapr/docs/tree/v1.14) (pre-release) | https://v1-14.docs.dapr.io/ | Pre-release documentation. Doc updates that are only applicable to v1.14+ go here.                | | ||||
| | [v1.14](https://github.com/dapr/docs) (primary)               | https://docs.dapr.io       | Latest Dapr release documentation. Typo fixes, clarifications, and most documentation goes here. | | ||||
| | [v1.15](https://github.com/dapr/docs/tree/v1.15) (pre-release) | https://v1-15.docs.dapr.io/ | Pre-release documentation. Doc updates that are only applicable to v1.15+ go here.                | | ||||
| 
 | ||||
| For more information visit the [Dapr branch structure](https://docs.dapr.io/contributing/docs-contrib/contributing-docs/#branch-guidance) document. | ||||
| 
 | ||||
|  |  | |||
|  | @ -1,5 +1,5 @@ | |||
| # Site Configuration | ||||
| baseURL = "https://v1-14.docs.dapr.io" | ||||
| baseURL = "https://docs.dapr.io" | ||||
| title = "Dapr Docs" | ||||
| theme = "docsy" | ||||
| disableFastRender = true | ||||
|  | @ -205,11 +205,14 @@ archived_version = false | |||
| url_latest_version = "https://docs.dapr.io" | ||||
| 
 | ||||
| [[params.versions]] | ||||
|   version = "v1.14 (preview)" | ||||
|   version = "v1.15 (preview)" | ||||
|   url = "#" | ||||
| [[params.versions]] | ||||
|   version = "v1.13 (latest)" | ||||
|   version = "v1.14 (latest)" | ||||
|   url = "https://docs.dapr.io" | ||||
| [[params.versions]] | ||||
|   version = "v1.13" | ||||
|   url = "https://v1-13.docs.dapr.io" | ||||
| [[params.versions]] | ||||
|   version = "v1.12" | ||||
|   url = "https://v1-12.docs.dapr.io" | ||||
|  |  | |||
|  | @ -45,24 +45,24 @@ The table below shows the versions of Dapr releases that have been tested togeth | |||
| 
 | ||||
| | Release date | Runtime     | CLI  | SDKs  | Dashboard  | Status | Release notes | | ||||
| |--------------------|:--------:|:--------|---------|---------|---------|------------| | ||||
| | June 28th 2024 | 1.13.5</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported (current) | [v1.13.5 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.5) | | ||||
| | May 29th 2024 | 1.13.4</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported (current) | [v1.13.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.4) | | ||||
| | May 21st 2024 | 1.13.3</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported (current) | [v1.13.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.3) | | ||||
| | April 3rd 2024 | 1.13.2</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported (current) | [v1.13.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.2) | | ||||
| | March 26th 2024 | 1.13.1</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported (current) | [v1.13.1 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.1) | | ||||
| | March 6th 2024 | 1.13.0</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported (current) | [v1.13.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.0) | | ||||
| | January 17th 2024 | 1.12.4</br>  | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported (current) | [v1.12.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.4) | | ||||
| | January 2nd 2024 | 1.12.3</br>  | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported (current) | [v1.12.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.3) | | ||||
| | November 18th 2023 | 1.12.2</br>  | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported (current) | [v1.12.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.2) | | ||||
| | August 14th 2024 | 1.14.0</br>  | 1.14.0 | Java 1.12.0 </br>Go 1.11.0 </br>PHP 1.2.0 </br>Python 1.14.0 </br>.NET 1.14.0 </br>JS 3.3.1 | 0.15.0 | Supported (current) | [v1.14.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.14.0) | | ||||
| | May 29th 2024 | 1.13.4</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported  | [v1.13.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.4) | | ||||
| | May 21st 2024 | 1.13.3</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported | [v1.13.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.3) | | ||||
| | April 3rd 2024 | 1.13.2</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported | [v1.13.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.2) | | ||||
| | March 26th 2024 | 1.13.1</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported | [v1.13.1 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.1) | | ||||
| | March 6th 2024 | 1.13.0</br>  | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported | [v1.13.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.0) | | ||||
| | January 17th 2024 | 1.12.4</br>  | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported | [v1.12.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.4) | | ||||
| | January 2nd 2024 | 1.12.3</br>  | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported | [v1.12.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.3) | | ||||
| | November 18th 2023 | 1.12.2</br>  | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported | [v1.12.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.2) | | ||||
| | November 16th 2023 | 1.12.1</br>  | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported | [v1.12.1 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.1) | | ||||
| | October 11th 2023 | 1.12.0</br>  | 1.12.0 | Java 1.10.0 </br>Go 1.9.0 </br>PHP 1.1.0 </br>Python 1.11.0 </br>.NET 1.12.0 </br>JS 3.1.2 | 0.14.0 | Supported | [v1.12.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.0) | | ||||
| | November 18th 2023 | 1.11.6</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Supported | [v1.11.6 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.6) | | ||||
| | November 3rd 2023 | 1.11.5</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Supported | [v1.11.5 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.5) | | ||||
| | October 5th 2023 | 1.11.4</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Supported | [v1.11.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.4) | | ||||
| | August 31st 2023 | 1.11.3</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Supported | [v1.11.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.3) | | ||||
| | July 20th 2023 | 1.11.2</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Supported | [v1.11.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.2) | | ||||
| | June 22nd 2023 | 1.11.1</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Supported | [v1.11.1 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.1) | | ||||
| | June 12th 2023 | 1.11.0</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Supported | [v1.11.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.0) | | ||||
| | November 18th 2023 | 1.11.6</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.6 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.6) | | ||||
| | November 3rd 2023 | 1.11.5</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.5 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.5) | | ||||
| | October 5th 2023 | 1.11.4</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.4) | | ||||
| | August 31st 2023 | 1.11.3</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.3) | | ||||
| | July 20th 2023 | 1.11.2</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.2) | | ||||
| | June 22nd 2023 | 1.11.1</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.1 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.1) | | ||||
| | June 12th 2023 | 1.11.0</br>  | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.0) | | ||||
| | November 18th 2023 | 1.10.10</br>  | 1.10.0 | Java 1.8.0 </br>Go 1.7.0 </br>PHP 1.1.0 </br>Python 1.9.0 </br>.NET 1.10.0 </br>JS 3.0.0 | 0.11.0 | Unsupported |  | | ||||
| | July 20th 2023 | 1.10.9</br>  | 1.10.0 | Java 1.8.0 </br>Go 1.7.0 </br>PHP 1.1.0 </br>Python 1.9.0 </br>.NET 1.10.0 </br>JS 3.0.0 | 0.11.0 | Unsupported |  | | ||||
| | June 22nd 2023 | 1.10.8</br>  | 1.10.0 | Java 1.8.0 </br>Go 1.7.0 </br>PHP 1.1.0 </br>Python 1.9.0 </br>.NET 1.10.0 </br>JS 3.0.0 | 0.11.0 | Unsupported |  | | ||||
|  | @ -138,7 +138,9 @@ General guidance on upgrading can be found for [self hosted mode]({{< ref self-h | |||
| | 1.10.0                   |                   N/A |                   1.10.8 | | ||||
| | 1.11.0                   |                   N/A |                   1.11.4 | | ||||
| | 1.12.0                   |                   N/A |                   1.12.4 | | ||||
| | 1.13.0                   |                   N/A |                   1.13.5 | | ||||
| | 1.12.0 to 1.13.0         |                   N/A |                   1.13.4 | | ||||
| | 1.13.0                   |                   N/A |                   1.13.4 | | ||||
| | 1.13.0 to 1.14.0         |                   N/A |                   1.14.0 | | ||||
| 
 | ||||
| ## Upgrade on Hosting platforms | ||||
| 
 | ||||
|  |  | |||
|  | @ -1 +1 @@ | |||
| {{- if .Get "short" }}1.13{{ else if .Get "long" }}1.13.5{{ else if .Get "cli" }}1.13.0{{ else }}1.13.5{{ end -}} | ||||
| {{- if .Get "short" }}1.14{{ else if .Get "long" }}1.14.0{{ else if .Get "cli" }}1.14.0{{ else }}1.14.0{{ end -}} | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue