Skip to content

Commit f2d489f

Browse files
Merge branch 'main' into automate-ref-data
2 parents cafd175 + ef3169e commit f2d489f

4,862 files changed

Lines changed: 405726 additions & 5895 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,31 @@
1-
name: Notify Slack on Doc Review Request
1+
name: Docs PR Review Notify
22

33
on:
44
pull_request:
55
types: [review_requested]
66

77
jobs:
8-
notify-slack:
9-
# Only run if docs-prs team was requested as reviewer
10-
if: github.event.requested_team.slug == 'docs-prs'
8+
notify:
119
runs-on: ubuntu-latest
1210
steps:
1311
- name: Send Slack notification
12+
if: github.event.requested_team.slug == 'docs-prs'
1413
env:
15-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DOC_REVIEW_WEBHOOK_URL }}
14+
SLACK_WEBHOOK: ${{ secrets.SLACK_DOC_REVIEW_WEBHOOK_URL }}
1615
PR_TITLE: ${{ github.event.pull_request.title }}
1716
PR_URL: ${{ github.event.pull_request.html_url }}
1817
PR_AUTHOR: ${{ github.event.pull_request.user.login }}
1918
PR_NUMBER: ${{ github.event.pull_request.number }}
20-
LINES_CHANGED: ${{ github.event.pull_request.additions + github.event.pull_request.deletions }}
19+
PR_LINES: ${{ github.event.pull_request.additions + github.event.pull_request.deletions }}
2120
run: |
2221
jq -n \
2322
--arg title "$PR_TITLE" \
2423
--arg url "$PR_URL" \
2524
--arg author "$PR_AUTHOR" \
2625
--arg number "$PR_NUMBER" \
27-
--arg lines "$LINES_CHANGED" \
26+
--arg lines "$PR_LINES" \
2827
'{pr_title: $title, pr_url: $url, pr_author: $author, pr_number: $number, lines_changed: $lines}' \
29-
| curl -X POST "$SLACK_WEBHOOK_URL" \
28+
| curl -X POST "$SLACK_WEBHOOK" \
3029
-H 'Content-Type: application/json' \
3130
--fail-with-body \
3231
-d @-
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Doc Review Slack Notifier
2+
3+
on:
4+
pull_request:
5+
types: [review_requested]
6+
7+
jobs:
8+
notify:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Send notification if docs-prs requested
12+
run: |
13+
TEAM="${{ github.event.requested_team.slug }}"
14+
if [ "$TEAM" = "docs-prs" ]; then
15+
jq -n \
16+
--arg title "${{ github.event.pull_request.title }}" \
17+
--arg url "${{ github.event.pull_request.html_url }}" \
18+
--arg author "${{ github.event.pull_request.user.login }}" \
19+
--arg number "${{ github.event.pull_request.number }}" \
20+
--arg lines "${{ github.event.pull_request.additions + github.event.pull_request.deletions }}" \
21+
'{pr_title: $title, pr_url: $url, pr_author: $author, pr_number: $number, lines_changed: $lines}' \
22+
| curl -X POST "${{ secrets.SLACK_DOC_REVIEW_WEBHOOK_URL }}" \
23+
-H 'Content-Type: application/json' \
24+
--fail-with-body \
25+
-d @-
26+
fi

.github/workflows/docs-slack.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Docs Slack Notify
2+
3+
on:
4+
pull_request:
5+
types: [review_requested]
6+
7+
jobs:
8+
send:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Notify docs-prs
12+
if: github.event.requested_team.slug == 'docs-prs'
13+
run: curl -X POST ${{ secrets.SLACK_DOC_REVIEW_WEBHOOK_URL }} -H 'Content-Type:application/json' -d '{"pr_title":"${{ github.event.pull_request.title }}","pr_url":"${{ github.event.pull_request.html_url }}","pr_author":"${{ github.event.pull_request.user.login }}","pr_number":"${{ github.event.pull_request.number }}","lines_changed":"${{ github.event.pull_request.additions }}"}'

final-real-test.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Final real test with workflow on main

final-test-fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Final test - workflow should work now

src/api/api-spec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1517,7 +1517,7 @@
15171517
"title": "ZoneConfig holds configuration that applies to one or more ranges.",
15181518
"properties": {
15191519
"constraints": {
1520-
"description": "Constrains which stores the replicas can be stored on. The\norder in which the constraints are stored is arbitrary and may change.\nhttps://github.com/cockroachdb/cockroach/blob/master/docs/RFCS/20160706_expressive_zone_config.md#constraint-system",
1520+
"description": "Constrains which stores the replicas can be stored on. The\norder in which the constraints are stored is arbitrary and may change.",
15211521
"type": "array",
15221522
"items": {
15231523
"$ref": "#/definitions/ConstraintsConjunction"
@@ -1528,7 +1528,7 @@
15281528
"$ref": "#/definitions/GCPolicy"
15291529
},
15301530
"global_reads": {
1531-
"description": "Whether transactions operating over the range(s)\nshould be configured to provide non-blocking behavior, meaning that reads\ncan be served consistently from all replicas and do not block on writes. In\nexchange, writes get pushed into the future and must wait on commit to\nensure linearizability. For more, see:\nhttps://github.com/cockroachdb/cockroach/blob/master/docs/RFCS/20200811_non_blocking_txns.md",
1531+
"description": "Whether transactions operating over the range(s)\nshould be configured to provide non-blocking behavior, meaning that reads\ncan be served consistently from all replicas and do not block on writes. In\nexchange, writes get pushed into the future and must wait on commit to\nensure linearizability.",
15321532
"type": "boolean",
15331533
"x-go-name": "GlobalReads"
15341534
},

src/current/_data/menus.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@
101101

102102

103103
# resources_support:
104-
# - name: GitHub
105-
# url: https://github.com/cockroachdb/cockroach
106104
# - name: Slack
107105
# url: https://www.cockroachlabs.com/join-community/
108106
# - name: Support Portal

src/current/_data/releases.yml

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11565,6 +11565,129 @@
1156511565
docker_arm_limited_access: false
1156611566
source: true
1156711567
previous_release: v26.2.0
11568+
11569+
11570+
- release_name: v24.3.33
11571+
major_version: v24.3
11572+
release_date: '2026-05-25'
11573+
release_type: Production
11574+
go_version: go1.26.2
11575+
sha: 4553626be4d29aff5517b42da4113363d64bc030
11576+
has_sql_only: true
11577+
has_sha256sum: true
11578+
mac:
11579+
mac_arm: true
11580+
mac_arm_experimental: true
11581+
mac_arm_limited_access: false
11582+
windows: true
11583+
linux:
11584+
linux_arm: true
11585+
linux_arm_experimental: false
11586+
linux_arm_limited_access: false
11587+
linux_intel_fips: true
11588+
linux_arm_fips: false
11589+
docker:
11590+
docker_image: cockroachdb/cockroach
11591+
docker_arm: true
11592+
docker_arm_experimental: false
11593+
docker_arm_limited_access: false
11594+
source: true
11595+
previous_release: v24.3.32
11596+
11597+
- release_name: v26.1.5
11598+
major_version: v26.1
11599+
release_date: '2026-05-29'
11600+
release_type: Production
11601+
go_version: go1.26.2
11602+
sha: 2162fab1ea78bc39eb153518fe2ee291f439e12d
11603+
has_sql_only: true
11604+
has_sha256sum: true
11605+
mac:
11606+
mac_arm: true
11607+
mac_arm_experimental: true
11608+
mac_arm_limited_access: false
11609+
windows: true
11610+
linux:
11611+
linux_arm: true
11612+
linux_arm_experimental: false
11613+
linux_arm_limited_access: false
11614+
linux_intel_fips: true
11615+
linux_arm_fips: false
11616+
docker:
11617+
docker_image: cockroachdb/cockroach
11618+
docker_arm: true
11619+
docker_arm_experimental: false
11620+
docker_arm_limited_access: false
11621+
source: true
11622+
previous_release: v26.1.4
11623+
cloud_only: true
11624+
cloud_only_message_short: 'Available only for select CockroachDB Cloud clusters'
11625+
cloud_only_message: >
11626+
This version is currently available only for select
11627+
CockroachDB Cloud clusters. To request to upgrade
11628+
a CockroachDB self-hosted cluster to this version,
11629+
[contact support](https://support.cockroachlabs.com/hc/requests/new).
11630+
11631+
- release_name: v25.4.11
11632+
major_version: v25.4
11633+
release_date: '2026-05-29'
11634+
release_type: Production
11635+
go_version: go1.26.2
11636+
sha: 6383ee79d8d482ecf9f08f35f9b9a0e835deef7d
11637+
has_sql_only: true
11638+
has_sha256sum: true
11639+
mac:
11640+
mac_arm: true
11641+
mac_arm_experimental: true
11642+
mac_arm_limited_access: false
11643+
windows: true
11644+
linux:
11645+
linux_arm: true
11646+
linux_arm_experimental: false
11647+
linux_arm_limited_access: false
11648+
linux_intel_fips: true
11649+
linux_arm_fips: false
11650+
docker:
11651+
docker_image: cockroachdb/cockroach
11652+
docker_arm: true
11653+
docker_arm_experimental: false
11654+
docker_arm_limited_access: false
11655+
source: true
11656+
previous_release: v25.4.10
11657+
cloud_only: true
11658+
cloud_only_message_short: 'Available only for select CockroachDB Cloud clusters'
11659+
cloud_only_message: >
11660+
This version is currently available only for select
11661+
CockroachDB Cloud clusters. To request to upgrade
11662+
a CockroachDB self-hosted cluster to this version,
11663+
[contact support](https://support.cockroachlabs.com/hc/requests/new).
11664+
11665+
- release_name: v25.2.19
11666+
major_version: v25.2
11667+
release_date: '2026-05-29'
11668+
release_type: Production
11669+
go_version: go1.26.2
11670+
sha: b7e5c408b737ce9e98f06ee972b165548ab3ffd8
11671+
has_sql_only: true
11672+
has_sha256sum: true
11673+
mac:
11674+
mac_arm: true
11675+
mac_arm_experimental: true
11676+
mac_arm_limited_access: false
11677+
windows: true
11678+
linux:
11679+
linux_arm: true
11680+
linux_arm_experimental: false
11681+
linux_arm_limited_access: false
11682+
linux_intel_fips: true
11683+
linux_arm_fips: false
11684+
docker:
11685+
docker_image: cockroachdb/cockroach
11686+
docker_arm: true
11687+
docker_arm_experimental: false
11688+
docker_arm_limited_access: false
11689+
source: true
11690+
previous_release: v25.2.18
1156811691
cloud_only: true
1156911692
cloud_only_message_short: 'Available only for select CockroachDB Cloud clusters'
1157011693
cloud_only_message: >

src/current/_data/v24.2/metrics/child-metrics.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# child-metrics.yml is a manually curated file of metrics that are included in the Child Metrics.
2-
# The metrics are in the order of appearance in the comment:
3-
# https://github.com/cockroachdb/cockroach/issues/124343#issuecomment-2117886012
42
# The tenant.consumption.* metrics are not included because they only apply to serverless.
53
#
64
# The corresponding metrics-list.csv file was generated using the v24.1.0 binary with the following command:

src/current/_data/v24.3/metrics/child-metrics.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# child-metrics.yml is a manually curated file of metrics that are included in the Child Metrics.
2-
# The metrics are in the order of appearance in the comment:
3-
# https://github.com/cockroachdb/cockroach/issues/124343#issuecomment-2117886012
42
# The tenant.consumption.* metrics are not included because they only apply to serverless.
53
#
64
# The corresponding metrics-list.csv file was generated using the v24.1.0 binary with the following command:

0 commit comments

Comments
 (0)