diff --git a/.github/scripts/cross_version_link_linter.py b/.github/scripts/cross_version_link_linter.py index c4e73f43e33..4192c50851e 100644 --- a/.github/scripts/cross_version_link_linter.py +++ b/.github/scripts/cross_version_link_linter.py @@ -247,7 +247,7 @@ def format_violations_for_github(self) -> str: "", "**Action Required**: Please update all cross-version links to use version variables or ensure links stay within the same version.", "", - "For more information about proper link formatting, see the [CockroachDB Docs Style Guide](https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#links)." + "For more information about proper link formatting, see the [CockroachDB Docs Style Guide](https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#links)." ]) return "\n".join(lines) diff --git a/.github/scripts/docs-prs-reviews.go b/.github/scripts/docs-prs-reviews.go index 16705229a2a..1c3221ebff8 100644 --- a/.github/scripts/docs-prs-reviews.go +++ b/.github/scripts/docs-prs-reviews.go @@ -82,8 +82,8 @@ type prReviewParse struct { UpdatedAt time.Time } -const ( - docsOrganization = "cockroachdb" +var ( + docsOrganization = maybeEnv("DOCS_ORG", "cockroachlabs") docsRepo = "docs" docsPrsTeam = "docs-prs" ) diff --git a/.github/scripts/validate_branch_existence.py b/.github/scripts/validate_branch_existence.py index e7b9470885f..cbf7c3b1ca8 100644 --- a/.github/scripts/validate_branch_existence.py +++ b/.github/scripts/validate_branch_existence.py @@ -3,7 +3,7 @@ validate_branch_existence.py (EDUENG-614) For every row in src/current/_data/versions.csv, verifies that the listed -crdb_branch_name exists as a branch in cockroachdb/generated-diagrams. +crdb_branch_name exists as a branch in the generated-diagrams repo. Also flags entries where versions.csv still points to an older branch even though the "natural" release-X.Y branch for that version now exists @@ -37,7 +37,7 @@ import urllib.request from pathlib import Path -GENERATED_DIAGRAMS_REPO = "cockroachdb/generated-diagrams" +GENERATED_DIAGRAMS_REPO = os.environ.get("GENERATED_DIAGRAMS_REPO", "cockroachdb/generated-diagrams") GITHUB_API_BASE = "https://api.github.com" VERSIONS_CSV = Path("src/current/_data/versions.csv") DOCS_ROOT = Path("src/current") @@ -139,7 +139,7 @@ def run_checks(rows: list[dict], _exists_fn=None, _has_docs_fn=None) -> list[dic "branch": branch, "message": ( f"{version}: crdb_branch_name={branch!r} does not exist " - f"in cockroachdb/generated-diagrams." + f"in {GENERATED_DIAGRAMS_REPO}." ), }) continue @@ -157,7 +157,7 @@ def run_checks(rows: list[dict], _exists_fn=None, _has_docs_fn=None) -> list[dic "expected": expected, "message": ( f"{version}: crdb_branch_name={branch!r} but {expected!r} " - f"now exists in cockroachdb/generated-diagrams. " + f"now exists in {GENERATED_DIAGRAMS_REPO}. " f"Update versions.csv to use {expected!r}." ), }) @@ -174,7 +174,7 @@ def format_comment(failures: list[dict]) -> str: return ( "## Branch Existence Check: Passed\n\n" "All `crdb_branch_name` entries in `versions.csv` exist in " - "`cockroachdb/generated-diagrams`." + f"`{GENERATED_DIAGRAMS_REPO}`." ) lines = [ @@ -258,7 +258,7 @@ def main() -> None: _run_self_tests() rows = load_versions_csv() - print(f"Checking {len(rows)} versions.csv entries against cockroachdb/generated-diagrams...\n") + print(f"Checking {len(rows)} versions.csv entries against {GENERATED_DIAGRAMS_REPO}...\n") failures = run_checks(rows) comment = format_comment(failures) diff --git a/.github/workflows/changed_files.yml b/.github/workflows/changed_files.yml index 18963c60d62..027da75716b 100644 --- a/.github/workflows/changed_files.yml +++ b/.github/workflows/changed_files.yml @@ -16,6 +16,7 @@ jobs: id: format env: GH_TOKEN: ${{ github.token }} + NETLIFY_SITE_NAME: ${{ vars.NETLIFY_SITE_NAME || 'cockroachlabs-docs' }} run: | declare -a output pr_num=${{ github.event.pull_request.number }} @@ -29,7 +30,7 @@ jobs: function generateMainFiles() { html_file=`echo "${1%.md}.html" | sed -E 's/src\/[^\/]*\///g'` - file="
Thank you.
') + $('#feedback-prompt-bottom').html('Thank you for your feedback.
') $('#feedback-prompt-toc').hide() }); }); diff --git a/src/current/_includes/feedback-widget-toc.html b/src/current/_includes/feedback-widget-toc.html index 0dc6d278c91..cba3b8d6bda 100644 --- a/src/current/_includes/feedback-widget-toc.html +++ b/src/current/_includes/feedback-widget-toc.html @@ -13,7 +13,7 @@ $('#feedback-prompt-bottom').hide() }); $("#no-button-toc").bind("click", function () { - $('#feedback-prompt-toc').html('Thank you.
') + $('#feedback-prompt-toc').html('Thank you for your feedback.
') $('#feedback-prompt-bottom').hide() }); }); diff --git a/src/current/_includes/head.html b/src/current/_includes/head.html index 80292bfa3c3..b2f2a9a2e82 100755 --- a/src/current/_includes/head.html +++ b/src/current/_includes/head.html @@ -42,7 +42,7 @@ "author": { "@type": "Organization", "name": "Cockroach Labs Documentation Team", - "url": "https://github.com/cockroachdb/docs" + "url": "https://github.com/cockroachlabs/docs" } } diff --git a/src/current/_includes/releases/v26.1/v26.1.0.md b/src/current/_includes/releases/v26.1/v26.1.0.md index 48b82f47a23..45b17ed73b0 100644 --- a/src/current/_includes/releases/v26.1/v26.1.0.md +++ b/src/current/_includes/releases/v26.1/v26.1.0.md @@ -166,7 +166,7 @@ This section summarizes the most significant user-facing changes in v26.1.0 andCloud Logging Enhancements — Changefeed Logs & Additional Cluster Context
- Standardizes and enriches CockroachDB cloud logs with cluster-level context (cloud cluster ID and friendly name) and adds dedicated CHANGEFEED logging channel. + Standardizes and enriches CockroachDB cloud logs with cluster-level context (cloud cluster ID and friendly name) and adds dedicated CHANGEFEED logging channel.
json-sample.go file, or create the file yourself and copy the code into it:
+Download the json-sample.go file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ go
@@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
json-sample.py file, or create the file yourself and copy the code into it:
+Download the json-sample.py file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ python
diff --git a/src/current/v23.1/docs-mcp-integration.md b/src/current/v23.1/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v23.1/docs-mcp-integration.md
+++ b/src/current/v23.1/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v23.2/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v23.2/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v23.2/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v23.2/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v23.2/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v23.2/build-a-java-app-with-cockroachdb-jooq.md
index 7701e284e1c..b4f4c8899f2 100644
--- a/src/current/v23.2/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v23.2/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v23.2/community-tooling.md b/src/current/v23.2/community-tooling.md
index e1c5fa46702..bca90d04b50 100644
--- a/src/current/v23.2/community-tooling.md
+++ b/src/current/v23.2/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v23.2/demo-json-support.md b/src/current/v23.2/demo-json-support.md
index 9678a98a162..9becacbe1d4 100644
--- a/src/current/v23.2/demo-json-support.md
+++ b/src/current/v23.2/demo-json-support.md
@@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
json-sample.go file, or create the file yourself and copy the code into it:
+Download the json-sample.go file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ go
@@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
json-sample.py file, or create the file yourself and copy the code into it:
+Download the json-sample.py file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ python
diff --git a/src/current/v23.2/docs-mcp-integration.md b/src/current/v23.2/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v23.2/docs-mcp-integration.md
+++ b/src/current/v23.2/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v24.1/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v24.1/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v24.1/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v24.1/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v24.1/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v24.1/build-a-java-app-with-cockroachdb-jooq.md
index 7701e284e1c..b4f4c8899f2 100644
--- a/src/current/v24.1/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v24.1/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v24.1/community-tooling.md b/src/current/v24.1/community-tooling.md
index e1c5fa46702..bca90d04b50 100644
--- a/src/current/v24.1/community-tooling.md
+++ b/src/current/v24.1/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v24.1/demo-json-support.md b/src/current/v24.1/demo-json-support.md
index 9678a98a162..9becacbe1d4 100644
--- a/src/current/v24.1/demo-json-support.md
+++ b/src/current/v24.1/demo-json-support.md
@@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
json-sample.go file, or create the file yourself and copy the code into it:
+Download the json-sample.go file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ go
@@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
json-sample.py file, or create the file yourself and copy the code into it:
+Download the json-sample.py file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ python
diff --git a/src/current/v24.1/docs-mcp-integration.md b/src/current/v24.1/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v24.1/docs-mcp-integration.md
+++ b/src/current/v24.1/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v24.2/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v24.2/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v24.2/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v24.2/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v24.2/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v24.2/build-a-java-app-with-cockroachdb-jooq.md
index 9cc7c07ccf1..3c762bf8b7f 100644
--- a/src/current/v24.2/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v24.2/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v24.2/community-tooling.md b/src/current/v24.2/community-tooling.md
index e1c5fa46702..bca90d04b50 100644
--- a/src/current/v24.2/community-tooling.md
+++ b/src/current/v24.2/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v24.2/demo-json-support.md b/src/current/v24.2/demo-json-support.md
index 9678a98a162..9becacbe1d4 100644
--- a/src/current/v24.2/demo-json-support.md
+++ b/src/current/v24.2/demo-json-support.md
@@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
json-sample.go file, or create the file yourself and copy the code into it:
+Download the json-sample.go file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ go
@@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
json-sample.py file, or create the file yourself and copy the code into it:
+Download the json-sample.py file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ python
diff --git a/src/current/v24.2/docs-mcp-integration.md b/src/current/v24.2/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v24.2/docs-mcp-integration.md
+++ b/src/current/v24.2/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v24.3/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v24.3/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v24.3/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v24.3/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v24.3/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v24.3/build-a-java-app-with-cockroachdb-jooq.md
index 9cc7c07ccf1..3c762bf8b7f 100644
--- a/src/current/v24.3/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v24.3/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v24.3/community-tooling.md b/src/current/v24.3/community-tooling.md
index e1c5fa46702..bca90d04b50 100644
--- a/src/current/v24.3/community-tooling.md
+++ b/src/current/v24.3/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v24.3/demo-json-support.md b/src/current/v24.3/demo-json-support.md
index 9678a98a162..9becacbe1d4 100644
--- a/src/current/v24.3/demo-json-support.md
+++ b/src/current/v24.3/demo-json-support.md
@@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
json-sample.go file, or create the file yourself and copy the code into it:
+Download the json-sample.go file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ go
@@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
json-sample.py file, or create the file yourself and copy the code into it:
+Download the json-sample.py file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ python
diff --git a/src/current/v24.3/docs-mcp-integration.md b/src/current/v24.3/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v24.3/docs-mcp-integration.md
+++ b/src/current/v24.3/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v25.1/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v25.1/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v25.1/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v25.1/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v25.1/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v25.1/build-a-java-app-with-cockroachdb-jooq.md
index 9cc7c07ccf1..3c762bf8b7f 100644
--- a/src/current/v25.1/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v25.1/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v25.1/community-tooling.md b/src/current/v25.1/community-tooling.md
index e1c5fa46702..bca90d04b50 100644
--- a/src/current/v25.1/community-tooling.md
+++ b/src/current/v25.1/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v25.1/demo-json-support.md b/src/current/v25.1/demo-json-support.md
index 9678a98a162..9becacbe1d4 100644
--- a/src/current/v25.1/demo-json-support.md
+++ b/src/current/v25.1/demo-json-support.md
@@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
json-sample.go file, or create the file yourself and copy the code into it:
+Download the json-sample.go file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ go
@@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
json-sample.py file, or create the file yourself and copy the code into it:
+Download the json-sample.py file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ python
diff --git a/src/current/v25.1/docs-mcp-integration.md b/src/current/v25.1/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v25.1/docs-mcp-integration.md
+++ b/src/current/v25.1/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v25.2/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v25.2/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v25.2/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v25.2/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v25.2/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v25.2/build-a-java-app-with-cockroachdb-jooq.md
index 9cc7c07ccf1..3c762bf8b7f 100644
--- a/src/current/v25.2/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v25.2/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v25.2/community-tooling.md b/src/current/v25.2/community-tooling.md
index e1c5fa46702..bca90d04b50 100644
--- a/src/current/v25.2/community-tooling.md
+++ b/src/current/v25.2/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v25.2/demo-json-support.md b/src/current/v25.2/demo-json-support.md
index 9678a98a162..9becacbe1d4 100644
--- a/src/current/v25.2/demo-json-support.md
+++ b/src/current/v25.2/demo-json-support.md
@@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
json-sample.go file, or create the file yourself and copy the code into it:
+Download the json-sample.go file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ go
@@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
json-sample.py file, or create the file yourself and copy the code into it:
+Download the json-sample.py file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ python
diff --git a/src/current/v25.2/docs-mcp-integration.md b/src/current/v25.2/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v25.2/docs-mcp-integration.md
+++ b/src/current/v25.2/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v25.3/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v25.3/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v25.3/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v25.3/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v25.3/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v25.3/build-a-java-app-with-cockroachdb-jooq.md
index 9cc7c07ccf1..3c762bf8b7f 100644
--- a/src/current/v25.3/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v25.3/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v25.3/community-tooling.md b/src/current/v25.3/community-tooling.md
index e1c5fa46702..bca90d04b50 100644
--- a/src/current/v25.3/community-tooling.md
+++ b/src/current/v25.3/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v25.3/demo-json-support.md b/src/current/v25.3/demo-json-support.md
index 9678a98a162..9becacbe1d4 100644
--- a/src/current/v25.3/demo-json-support.md
+++ b/src/current/v25.3/demo-json-support.md
@@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
json-sample.go file, or create the file yourself and copy the code into it:
+Download the json-sample.go file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ go
@@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
json-sample.py file, or create the file yourself and copy the code into it:
+Download the json-sample.py file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ python
diff --git a/src/current/v25.3/docs-mcp-integration.md b/src/current/v25.3/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v25.3/docs-mcp-integration.md
+++ b/src/current/v25.3/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v25.4/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v25.4/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v25.4/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v25.4/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v25.4/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v25.4/build-a-java-app-with-cockroachdb-jooq.md
index 9cc7c07ccf1..3c762bf8b7f 100644
--- a/src/current/v25.4/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v25.4/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v25.4/community-tooling.md b/src/current/v25.4/community-tooling.md
index e1c5fa46702..bca90d04b50 100644
--- a/src/current/v25.4/community-tooling.md
+++ b/src/current/v25.4/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v25.4/demo-json-support.md b/src/current/v25.4/demo-json-support.md
index 9678a98a162..9becacbe1d4 100644
--- a/src/current/v25.4/demo-json-support.md
+++ b/src/current/v25.4/demo-json-support.md
@@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
json-sample.go file, or create the file yourself and copy the code into it:
+Download the json-sample.go file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ go
@@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
json-sample.py file, or create the file yourself and copy the code into it:
+Download the json-sample.py file, or create the file yourself and copy the code into it:
{% include_cached copy-clipboard.html %}
~~~ python
diff --git a/src/current/v25.4/docs-mcp-integration.md b/src/current/v25.4/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v25.4/docs-mcp-integration.md
+++ b/src/current/v25.4/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v26.1/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v26.1/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v26.1/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v26.1/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v26.1/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v26.1/build-a-java-app-with-cockroachdb-jooq.md
index 9cc7c07ccf1..3c762bf8b7f 100644
--- a/src/current/v26.1/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v26.1/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v26.1/community-tooling.md b/src/current/v26.1/community-tooling.md
index a0a6ceff0ab..934d8b6f292 100644
--- a/src/current/v26.1/community-tooling.md
+++ b/src/current/v26.1/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v26.1/docs-mcp-integration.md b/src/current/v26.1/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v26.1/docs-mcp-integration.md
+++ b/src/current/v26.1/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v26.2/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v26.2/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v26.2/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v26.2/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v26.2/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v26.2/build-a-java-app-with-cockroachdb-jooq.md
index 9cc7c07ccf1..3c762bf8b7f 100644
--- a/src/current/v26.2/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v26.2/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v26.2/community-tooling.md b/src/current/v26.2/community-tooling.md
index a0a6ceff0ab..934d8b6f292 100644
--- a/src/current/v26.2/community-tooling.md
+++ b/src/current/v26.2/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v26.2/docs-mcp-integration.md b/src/current/v26.2/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v26.2/docs-mcp-integration.md
+++ b/src/current/v26.2/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/current/v26.3/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v26.3/build-a-go-app-with-cockroachdb-upperdb.md
index 76697576ab6..181f6d18271 100644
--- a/src/current/v26.3/build-a-go-app-with-cockroachdb-upperdb.md
+++ b/src/current/v26.3/build-a-go-app-with-cockroachdb-upperdb.md
@@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-To run the code, copy the sample above, or download it directly.
+To run the code, copy the sample above, or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
@@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper
Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry.
-Copy the code or download it directly.
+Copy the code or download it directly.
{{site.data.alerts.callout_success}}
To clone a version of the code below that connects to insecure clusters, run the following command:
diff --git a/src/current/v26.3/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v26.3/build-a-java-app-with-cockroachdb-jooq.md
index 9cc7c07ccf1..3c762bf8b7f 100644
--- a/src/current/v26.3/build-a-java-app-with-cockroachdb-jooq.md
+++ b/src/current/v26.3/build-a-java-app-with-cockroachdb-jooq.md
@@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip).
1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified.
1. Compile and run the code using Maven:
@@ -107,7 +107,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
@@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re
To run it:
-1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
+1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip).
1. Compile and run the code using Maven:
{% include_cached copy-clipboard.html %}
@@ -204,7 +204,7 @@ To run it:
$ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample
~~~
-Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
+Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class:
{% include_cached copy-clipboard.html %}
~~~ java
diff --git a/src/current/v26.3/community-tooling.md b/src/current/v26.3/community-tooling.md
index a0a6ceff0ab..934d8b6f292 100644
--- a/src/current/v26.3/community-tooling.md
+++ b/src/current/v26.3/community-tooling.md
@@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community,
If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.callout_success}}
-If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md).
+If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs).
{{site.data.alerts.end}}
## Drivers and data access frameworks
diff --git a/src/current/v26.3/docs-mcp-integration.md b/src/current/v26.3/docs-mcp-integration.md
index 19aaac0b955..a19e7e43cdd 100644
--- a/src/current/v26.3/docs-mcp-integration.md
+++ b/src/current/v26.3/docs-mcp-integration.md
@@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect:
For issues or feedback about the CockroachDB Docs MCP Server:
-- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues)
+- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues)
- Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help
## See Also
diff --git a/src/interactive-tutorials/_includes/head.html b/src/interactive-tutorials/_includes/head.html
index c99e99a9573..ab8f8de111f 100755
--- a/src/interactive-tutorials/_includes/head.html
+++ b/src/interactive-tutorials/_includes/head.html
@@ -29,7 +29,7 @@
"author": {
"@type": "Organization",
"name": "Cockroach Labs Documentation Team",
- "url": "https://github.com/cockroachdb/docs"
+ "url": "https://github.com/cockroachlabs/docs"
}
}
diff --git a/vale/CockroachDB/Contractions.yml b/vale/CockroachDB/Contractions.yml
index 925451ee3d5..27f3439ab54 100644
--- a/vale/CockroachDB/Contractions.yml
+++ b/vale/CockroachDB/Contractions.yml
@@ -1,6 +1,6 @@
extends: substitution
message: Use '%s' instead of '%s'
-link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#style-and-tone
+link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#style-and-tone
ignorecase: false
level: warning
swap:
diff --git a/vale/CockroachDB/HeadingsCase.yml b/vale/CockroachDB/HeadingsCase.yml
index 401f6e3213b..f8258e1361f 100644
--- a/vale/CockroachDB/HeadingsCase.yml
+++ b/vale/CockroachDB/HeadingsCase.yml
@@ -1,6 +1,6 @@
extends: capitalization
message: "'%s' should be in sentence case"
-link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#capitalization-and-punctuation
+link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#capitalization-and-punctuation
level: warning
scope: heading
match: $sentence
diff --git a/vale/CockroachDB/HeadingsPunctuation.yml b/vale/CockroachDB/HeadingsPunctuation.yml
index 1db1b02d7b5..c0c4d19aea0 100644
--- a/vale/CockroachDB/HeadingsPunctuation.yml
+++ b/vale/CockroachDB/HeadingsPunctuation.yml
@@ -1,6 +1,6 @@
extends: existence
message: Do not use '%s' at the end of headings
-link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#capitalization-and-punctuation
+link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#capitalization-and-punctuation
scope: heading
level: warning
raw:
diff --git a/vale/CockroachDB/Hyperbolic.yml b/vale/CockroachDB/Hyperbolic.yml
index fabd3955627..0d9c2f237ce 100644
--- a/vale/CockroachDB/Hyperbolic.yml
+++ b/vale/CockroachDB/Hyperbolic.yml
@@ -1,6 +1,6 @@
extends: existence
message: Consider removing '%s'
-link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#style-and-tone
+link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#style-and-tone
ignorecase: true
level: warning
tokens:
diff --git a/vale/CockroachDB/LocalizedLinks.yml b/vale/CockroachDB/LocalizedLinks.yml
index 488bb5a29cc..ceccb6ca980 100644
--- a/vale/CockroachDB/LocalizedLinks.yml
+++ b/vale/CockroachDB/LocalizedLinks.yml
@@ -1,6 +1,6 @@
extends: existence
message: "Link contains a localization element (e.g., `en`, `en-us`). Some websites will auto-localize. Try to remove it from the URL if it doesn't 404: '%s'..."
-link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#links
+link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#links
scope: raw
level: warning
nonword: true
diff --git a/vale/CockroachDB/NondescriptLinkTitles.yml b/vale/CockroachDB/NondescriptLinkTitles.yml
index ca201d4784c..93fcbdb68da 100644
--- a/vale/CockroachDB/NondescriptLinkTitles.yml
+++ b/vale/CockroachDB/NondescriptLinkTitles.yml
@@ -1,6 +1,6 @@
extends: existence
message: Avoid using non-descriptive link titles.
-link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#lists
+link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#lists
level: warning
scope: raw
nonword: true
diff --git a/vale/CockroachDB/OrderedLists.yml b/vale/CockroachDB/OrderedLists.yml
index 18e5e5ada93..23d8c8013be 100644
--- a/vale/CockroachDB/OrderedLists.yml
+++ b/vale/CockroachDB/OrderedLists.yml
@@ -1,6 +1,6 @@
extends: existence
message: Use "1." instead of "%s" for ordered lists.
-link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#lists
+link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#lists
level: warning
scope: raw
nonword: true
diff --git a/vale/CockroachDB/OxfordComma.yml b/vale/CockroachDB/OxfordComma.yml
index c9c80b31ad3..0ad08cc8768 100644
--- a/vale/CockroachDB/OxfordComma.yml
+++ b/vale/CockroachDB/OxfordComma.yml
@@ -1,6 +1,6 @@
extends: existence
message: Use the Oxford comma in a list of three or more items
-link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#capitalization-and-punctuation
+link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#capitalization-and-punctuation
level: suggestion
tokens:
- '(?:[^,]+,){1,}\s\w+\sand'