Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sourcegraph May 2024 release blog #6919

Merged
merged 16 commits into from
May 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions content/blogposts/2024/sourcegraph-release-may-2024.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
title: "Sourcegraph May 2024 release"
publishDate: 2024-05-07T10:00-07:00
description: "The latest Sourcegraph release includes a new point-in-time search filter for Code Search."
kelvinyap marked this conversation as resolved.
Show resolved Hide resolved
tags: [blog, release]
slug: "release/May-2024"
published: true
heroImage: https://storage.googleapis.com/sourcegraph-assets/blog/release-post/may-2024/sourcegraph-may2024-release-image.png
socialImage: https://storage.googleapis.com/sourcegraph-assets/blog/release-post/may-2024/sourcegraph-may2024-release-image.png
changelogItems:
- description: "Increased both the performance and the default timeout for language usage insights, which will significantly reduce pain for customers with large repos. Both are configurable using environment variables on the frontend container."
kelvinyap marked this conversation as resolved.
Show resolved Hide resolved
url:
category: Code Insights
- description: "Improved Zoekt CPU usage and scalability for customers with a large number of repos."
url:
category: Search
- description: "Greatly improved git blame performance on large files, reducing the time it takes for a git blame on a large file to load from several seconds down to less than 500 milliseconds."
url:
category: Search
- description: "Search Jobs now supports diff, commit, and path searches. Before, only file searches were supported."
url:
category: Source



---

kelvinyap marked this conversation as resolved.
Show resolved Hide resolved
kelvinyap marked this conversation as resolved.
Show resolved Hide resolved
<br/>

### Point-in-time search filter for Code Search

<br/>

Sourcegraph 5.3.x brings improvements to Code Search with a new search filter [rev:at.time()](https://github.com/sourcegraph/sourcegraph/pull/61513) that provides point-in-time searching. This allows for searching a repo’s state at a specific timestamp rather than at a specific commit, branch, or tag.
kelvinyap marked this conversation as resolved.
Show resolved Hide resolved
kelvinyap marked this conversation as resolved.
Show resolved Hide resolved


<br/>

### Improved Code Insights chart drill-downs

<br/>

Code Insights chart drill-downs now utilize the new point-in-time search filter to more accurately represent the results that produced a data point on a chart. Previously a diff search was used to show the difference between a selected point in time on a chart and the one before it, but Code Insights can now show a repository’s state at that exact timestamp. This functionality is useful for those searching large repositories or repositories with lots of history.
kelvinyap marked this conversation as resolved.
Show resolved Hide resolved
kelvinyap marked this conversation as resolved.
Show resolved Hide resolved

Loading