Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 0d84b5e

Browse files
authored
[Backport 5.2] gomod: update zoekt for ranking regression fix (#57691)
gomod: update zoekt for ranking regression fix (#57665) This updates zoekt to include a fix in ranking. - 8c5bd7de94 Use Go 1.21.2 - 659eac980e all: remove deprecated RepoList.Minimal - f17ff0bac9 scoring: handle scip-ctags kinds Test Plan: CI
1 parent ede6abe commit 0d84b5e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ All notable changes to Sourcegraph are documented in this file.
3232
- Fixed a bug where gitserver statistics would not be properly decoded / reported when using REST (i.e. `experimentalFeatures.enableGRPC = false` in site configuration). [#57318](https://github.com/sourcegraph/sourcegraph/pull/57318)
3333
- Updated the `curl` and `libcurl` dependencies to `8.4.0-r0` to fix [CVE-2023-38545](https://curl.se/docs/CVE-2023-38545.html). [#57533](https://github.com/sourcegraph/sourcegraph/pull/57533)
3434
- Fixed a bug where commit signing failed when creating a changeset if `batchChanges.enforceFork` is set to true. [#57520](https://github.com/sourcegraph/sourcegraph/pull/57520)
35+
- Fixed a regression in ranking of Go struct and interface in search results. [zoekt#655](https://github.com/sourcegraph/zoekt/pull/655)
3536

3637
### Removed
3738

deps.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6413,8 +6413,8 @@ def go_dependencies():
64136413
name = "com_github_sourcegraph_zoekt",
64146414
build_file_proto_mode = "disable_global",
64156415
importpath = "github.com/sourcegraph/zoekt",
6416-
sum = "h1:5zlXkgLiskj4oBm+WlyGXbDK7JrHKfBDti2gaHPPVzo=",
6417-
version = "v0.0.0-20230929125214-1065c6646489",
6416+
sum = "h1:1Xa7GWtMdnatmIqzOsAhLigU+SttgXPvygKn0eMJZzc=",
6417+
version = "v0.0.0-20231017111049-f17ff0bac96a",
64186418
)
64196419

64206420
go_repository(

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ require (
552552
github.com/sourcegraph/conc v0.2.0
553553
github.com/sourcegraph/mountinfo v0.0.0-20230106004439-7026e28cef67
554554
github.com/sourcegraph/sourcegraph/monitoring v0.0.0-20230124144931-b2d81b1accb6
555-
github.com/sourcegraph/zoekt v0.0.0-20230929125214-1065c6646489
555+
github.com/sourcegraph/zoekt v0.0.0-20231017111049-f17ff0bac96a
556556
github.com/spf13/cobra v1.7.0 // indirect
557557
github.com/spf13/pflag v1.0.5 // indirect
558558
github.com/stretchr/objx v0.5.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2052,8 +2052,8 @@ github.com/sourcegraph/tiktoken-go v0.0.0-20230905173153-caab340cf008 h1:Wu8W50q
20522052
github.com/sourcegraph/tiktoken-go v0.0.0-20230905173153-caab340cf008/go.mod h1:9NiV+i9mJKGj1rYOT+njbv+ZwA/zJxYdewGl6qVatpg=
20532053
github.com/sourcegraph/yaml v1.0.1-0.20200714132230-56936252f152 h1:z/MpntplPaW6QW95pzcAR/72Z5TWDyDnSo0EOcyij9o=
20542054
github.com/sourcegraph/yaml v1.0.1-0.20200714132230-56936252f152/go.mod h1:GIjDIg/heH5DOkXY3YJ/wNhfHsQHoXGjl8G8amsYQ1I=
2055-
github.com/sourcegraph/zoekt v0.0.0-20230929125214-1065c6646489 h1:5zlXkgLiskj4oBm+WlyGXbDK7JrHKfBDti2gaHPPVzo=
2056-
github.com/sourcegraph/zoekt v0.0.0-20230929125214-1065c6646489/go.mod h1:gHfSe997J5w8zX5MGHFei/darZmml75Xvpoykwtknlo=
2055+
github.com/sourcegraph/zoekt v0.0.0-20231017111049-f17ff0bac96a h1:1Xa7GWtMdnatmIqzOsAhLigU+SttgXPvygKn0eMJZzc=
2056+
github.com/sourcegraph/zoekt v0.0.0-20231017111049-f17ff0bac96a/go.mod h1:gHfSe997J5w8zX5MGHFei/darZmml75Xvpoykwtknlo=
20572057
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
20582058
github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
20592059
github.com/spf13/afero v0.0.0-20170901052352-ee1bd8ee15a1/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=

0 commit comments

Comments
 (0)