Skip to content

Commit 963fcb6

Browse files
authored
Merge branch 'main' into es/cleanup-docs
2 parents ec94a02 + 6e92416 commit 963fcb6

File tree

5 files changed

+35
-8
lines changed

5 files changed

+35
-8
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
<!-- Working branch for Sourcegraph 6.5 Release -->
66

7+
> [!IMPORTANT]
8+
> For support, please reach out to your account team or contact [support@sourcegraph.com](mailto:support@sourcegraph.com)
9+
710
Welcome to the Sourcegraph documentation! We're excited to have you contribute to our docs. Our docs tech stack is powered by Next.js, TailwindCSS and deployed on Vercel. This guide will walk you through the process of contributing to our documentation.
811

912
## Get started

docs/admin/code_hosts/bitbucket_cloud.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Site admins can sync Git repositories hosted on [Bitbucket Cloud](https://bitbuc
99

1010
To connect Bitbucket Cloud to Sourcegraph:
1111

12-
1. Go to **Site admin > Manage code hosts > Add repositories**.
12+
1. Go to **Site admin > Code host connections > Add connection**.
1313
2. Select **Bitbucket.org**.
1414
3. Configure the connection to Bitbucket Cloud using the action buttons above the text field. Additional fields can be added using <kbd>Cmd/Ctrl+Space</kbd> for auto-completion. See the [configuration documentation below](#configuration).
15-
4. Press **Add repositories**.
15+
4. Press **Add connection**.
1616

1717
## Repository syncing
1818

docs/admin/search.mdx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,18 @@ will not return any result.
6767
6868
## Indexed search
6969
70-
Sourcegraph indexes the code on the default branch of each repository. This speeds up searches that hit many repositories at once. Not all files in a repository branch are indexed, we skip files that are [larger than 1 MB](#maximum-file-size) and binary files. To view which files are skipped during indexing, visit the repository settings page and click on indexing.
70+
Sourcegraph indexes the code on the default branch of each repository. This speeds up searches that hit many repositories at once. Not all files in a repository branch are indexed. We skip:
7171
72-
For large deployments we recommend horizontally scaling indexed search. You can do this by [adjusting the number of replicas](https://github.com/sourcegraph/deploy-sourcegraph/blob/master/docs/configure#configure-indexed-search-replica-count). Sourcegraph shards repository indexes across replicas. When the replica count changes Sourcegraph will slowly rebalance indexes to ensure availability of existing indexes.
72+
- Files that are [larger than 1 MB](#maximum-file-size).
73+
- Binary files.
74+
- Files exceeding 20,000 unique trigrams (sequences of three characters).
75+
- Files that are not valid UTF-8.
76+
77+
To view which files are skipped during indexing, visit the repository settings page and click on **Indexing**.
78+
79+
To force the indexer to include specific files (like `yarn.lock` or other large text files) that are otherwise skipped, add their file path or a glob pattern to the [search.largeFiles](https://sourcegraph.com/docs/admin/search#maximum-file-size) setting in your site configuration and reindex the repository. Note that files must still be valid UTF-8 to be indexed, even if added to `search.largeFiles`.
80+
81+
For large deployments we recommend horizontally scaling indexed search. You can do this by adjusting the [number of replicas](https://sourcegraph.com/docs/admin/deploy/kubernetes/configure). Sourcegraph shards repository indexes across replicas. When the replica count changes Sourcegraph will slowly rebalance indexes to ensure availability of existing indexes.
7382
7483
The resource requirements for indexed search vary considerably based on the text contents of your repositories, but a good estimate is that the node should have enough memory to hold the entire text contents of the default branch of each repository.
7584

docs/cli/references/snapshot.mdx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,22 @@
33
## Usage
44

55
```
6-
'src snapshot' manages snapshots of Sourcegraph instance data. All subcommands are currently EXPERIMENTAL.
6+
'src snapshot' manages snapshots of Sourcegraph instance databases. All subcommands are currently EXPERIMENTAL.
77
8-
USAGE
9-
src [-v] snapshot <command>
8+
Usage:
109
11-
COMMANDS
10+
src snapshot <command>
11+
12+
The commands are:
13+
14+
databases export databases from a Sourcegraph instance
15+
restore restore databases from an export
16+
upload upload exported databases and summary file when migrating to Sourcegraph Cloud
1217
1318
summary export summary data about an instance for acceptance testing of a restored Sourcegraph instance
1419
test use exported summary data and instance health indicators to validate a restored and upgraded instance
1520
21+
Use "src snapshot [command] -h" for more information about a command.
22+
23+
1624
```

docs/technical-changelog.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,13 @@ There were no reverts for this release
166166

167167
- [kustomize](https://github.com/sourcegraph/deploy-sourcegraph-k8s/releases/tag/v6.9.0)
168168

169+
### Chore
170+
171+
#### Security
172+
173+
- Update redis to 7.4.6-272 `(PR #7488)`
174+
- This release patches multiple critical CVEs in Redis, including CVE-2025-49844, CVE-2025-46817, CVE-2025-46818, and CVE-2025-46819. See [Redis release notes](https://redis.io/docs/latest/operate/rs/release-notes/rs-7-4-2-releases/rs-7-4-6-272/) for details.
175+
169176
### Reverts
170177

171178
There were no reverts for this release

0 commit comments

Comments
 (0)