You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/admin/config/site_config.mdx
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -304,9 +304,12 @@ All site configuration options and their default values are shown below.
304
304
// Don't sync a user's permissions if they have synced within the last n seconds.
305
305
"permissions.syncUsersBackoffSeconds": 60,
306
306
307
-
// The maximum number of user-centric permissions syncing jobs that can be spawned concurrently. Service restart is required to take effect for changes.
307
+
// The maximum number of user-centric permissions syncing jobs that can be spawned concurrently. Server restart is required for changes to take effect.
308
308
"permissions.syncUsersMaxConcurrency": 1,
309
309
310
+
// The maximum number of repo-centric permissions syncing jobs that can be spawned concurrently. Server restart is required for changes to take effect.
311
+
"permissions.syncReposMaxConcurrency": 5,
312
+
310
313
"rateLimits": null,
311
314
312
315
// Enables redacting sensitive information from outbound requests. Important: We only respect this setting in development environments. In production, we always redact outbound requests.
Copy file name to clipboardExpand all lines: docs/api/stream_api/index.mdx
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,8 +60,9 @@ data: {}
60
60
```
61
61
62
62
> NOTE:
63
-
> Our format is a subset of the event stream format for [server-sent
64
-
> events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#event_stream_format). However, we do not guarantee compatibility with any third-party clients written for server-sent events.
63
+
> The search stream API follows the [server-sent
64
+
> events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#event_stream_format) format. However, we do not guarantee compatibility
65
+
> with any third-party clients written for server-sent events, and recommend using the src-cli tool or writing your own wrapper around the API.
Copy file name to clipboardExpand all lines: docs/code-search/index.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
11
11
Sourcegraph's Code Search empowers you to:
12
12
13
-
- Utilize regular expressions, boolean operations, and keyboard shortcuts helps you unleash the full potential of your searches
13
+
- Utilize regular expressions, boolean operations, and keyboard shortcuts to help you unleash the full potential of your searches
14
14
- With the symbol, commit, and diff search capabilities, it identifies code vulnerabilities in milliseconds and quickly helps you resolve issues and incidents
15
15
- Offers innovative code view with seamless code navigation for a comprehensive coding experience
Copy file name to clipboardExpand all lines: docs/code-search/types/search-jobs.mdx
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,9 @@ To use Search Jobs, you need to:
17
17
18
18
- If your query is valid, click **Create a search job** to initiate the search job
19
19
- You will be redirected to the "Search Jobs UI" page at `/search-jobs`, where you can view all your created search jobs. If you're a site admin, you can also view search jobs from other users on the instance
20
+
- For each search job, you can download the results by clicking the **Download** button. The results are formatted as JSON lines, see [Search results format](#search-results-format) for more details.
If you would like to add a forked repository as Cody context, you may need to add `"search.includeForks": true` to the [global settings](/admin/config/settings#editing-global-settings-for-site-admins) for your instance.
230
+
227
231
## Eclipse extension
228
232
229
233
### See a white screen the first time you open Cody chat
- Fixed an issue where Bitbucket Cloud permission syncs could produce incomplete results, resulting in lacking permissions. Backport 389661481f0f0a2385ef4f78f4113ab6ba14f4d5 from #2699
- propagate disk space to NewFirecrackerWorkspace `(PR #2574)`
96
+
- Addresses errors similar to: `failed to prepare workspace: failed to create ext4 filesystem in backing file: "mke2fs 1.45.5 (07-Jan-2020)\nThe file losetup: /var/lib/firecracker/loop-devices/workspace-loop-47749-3763347387: Warning: file is smaller than 512 bytes; the loop device may be useless or invisible for system tools.\n/dev/loop13 does not exist and no size was specified.\n": exit status 1`
97
+
- Affects reading and using the environment variable `EXECUTOR_FIRECRACKER_DISK_SPACE` Backport 22db2a97a0393cdd233a92da7ade96cd59bb99ef from #2562
98
+
99
+
### Chore
100
+
101
+
#### Security
102
+
103
+
- Auto-update all packages in Sourcegraph base images (5.11.x) `(PR #2494)`
> Warning: This release updates the database container images from Postgres 12 to Postgres 16, and begins using Wolfi based images. Customers are advised to have a database backup before upgrading! See our [postgres 12 end of life](https://sourcegraph.com/docs/admin/postgres12_end_of_life_notice#postgres-12-end-of-life) notice!
0 commit comments