From c6395bd29f829b91cc72f07d6ccc4815d04134e8 Mon Sep 17 00:00:00 2001 From: pittu sharma Date: Mon, 23 Mar 2026 18:58:03 +0530 Subject: [PATCH 1/2] Update Maintainer Guide with latest CLI commands and release steps Signed-off-by: pittu sharma --- .../docs-contrib/maintainer-guide.md | 35 ++----------------- 1 file changed, 2 insertions(+), 33 deletions(-) diff --git a/daprdocs/content/en/contributing/docs-contrib/maintainer-guide.md b/daprdocs/content/en/contributing/docs-contrib/maintainer-guide.md index 7c72665b2f0..04b2a6a90ec 100644 --- a/daprdocs/content/en/contributing/docs-contrib/maintainer-guide.md +++ b/daprdocs/content/en/contributing/docs-contrib/maintainer-guide.md @@ -313,7 +313,7 @@ Deploy a new Azure Static Web App for the future Dapr release. For this example, 1. Log into Azure Developer CLI (`azd`) using the Dapr Azure subscription. ```bash - azd login + azd auth login ``` 1. In the browser prompt, verify you're logging in as Dapr and complete the login. @@ -374,38 +374,7 @@ You can repeat these steps for any preview versions. 1. Merge the PR from `release_v1.0` to `v1.0`. Delete the release/v1.0 branch. 1. Merge the PR from `release_v1.1` to `v1.1`. Delete the release/v1.1 branch. 1. Merge the PR from `release_v1.2` to `v1.2`. Delete the release/v1.2 branch. +1. In the GitHub UI **Settings > General**, update the **Default branch** to the latest version (e.g. `v1.1`). Congrats on the new docs release! 🚀 🎉 🎈 -## Pull in SDK doc updates - -SDK docs live in each of the SDK repos. Changes made to the SDK docs are pushed to the relevant SDK repo. For example, to update the Go SDK docs, you push changes to the `dapr/go-sdk` repo. Until you pull the latest `dapr/go-sdk` commit into the `dapr/docs` current version branch, your Go SDK docs updates won't be reflected on the Dapr docs site. - -To bring updates to the SDK docs live to the Dapr docs site, you need to perform a straightforward `git pull`. This example refers to the Go SDK, but applies to all SDKs. - -1. Pull the latest upstream into your local `dapr/docs` version branch. - -1. Change into the root of the `dapr/docs` directory. - -1. Change into the Go SDK repo. This command takes you out of the `dapr/docs` context and into the `dapr/go-sdk` context. - - ```bash - cd sdkdocs/go - ``` - -1. Switch to the `main` branch in `dapr/go-sdk`. - - ```bash - git checkout main - ``` - -1. Pull the latest Go SDK commit. - - ```bash - git pull upstream main - ``` - -1. Change into the `dapr/docs` context to commit, push, and create a PR. - -## Next steps - From 4fc9b4e6208e603f65cdfad296643322a3b02358 Mon Sep 17 00:00:00 2001 From: pittu sharma Date: Mon, 6 Apr 2026 23:44:37 +0530 Subject: [PATCH 2/2] Fix duplicate archived_version mapping key in hugo.yaml (#5100) Signed-off-by: pittu sharma --- hugo.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hugo.yaml b/hugo.yaml index 73414832ed9..c2404885814 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -133,11 +133,6 @@ params: # current doc set. version: v1.17 - # Flag used in the "version-banner" partial to decide whether to display a - # banner on every page indicating that this is an archived version of the docs. - # Set this flag to "true" if you want to display the banner. - archived_version: false - # A link to latest version of the docs. Used in the "version-banner" partial to # point people to the main doc site. url_latest_version: https://docs.dapr.io