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: CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,8 @@ All notable changes to `src-cli` are documented in this file.
13
13
14
14
### Added
15
15
16
+
-`src codeintel upload` will now upload SCIP indexes (over LSIF indexes) when the target instance supports it. [#897](https://github.com/sourcegraph/src-cli/pull/897)
17
+
16
18
### Changed
17
19
18
20
### Fixed
@@ -36,7 +38,7 @@ All notable changes to `src-cli` are documented in this file.
36
38
37
39
### Fixed
38
40
39
-
- Fix network timeout in `src users clean` occuring in instances with many users [#901](https://github.com/sourcegraph/src-cli/pull/901)
41
+
- Fix network timeout in `src users clean` occuring in instances with many users [#901](https://github.com/sourcegraph/src-cli/pull/901)
40
42
- Aligned parsing of spec file parameter of `src batch repos` with other commands. [#919](https://github.com/sourcegraph/src-cli/pull/919)
41
43
- Remove empty log outputs during batch spec execution. [#923](https://github.com/sourcegraph/src-cli/pull/923)
42
44
@@ -135,7 +137,6 @@ No noteworthy changes, mechanical release to match Sourcegraph release.
135
137
136
138
- INTERNAL ONLY: Fixed src batch exec not logging errors.
137
139
138
-
139
140
## 3.42.2
140
141
141
142
### Fixed
@@ -179,7 +180,6 @@ No noteworthy changes, mechanical release to match Sourcegraph release.
179
180
180
181
- The preview link shown when running `src batch remote` to create a new batch change no longer 404s. [sourcegraph/src-cli](https://github.com/sourcegraph/src-cli/pull/787)
// Used to include the insecure-skip-verify flag in the help output, as we don't use any of the
54
57
// other api.Client methods, so only the insecureSkipVerify flag is relevant here.
55
58
dummyflagbool
59
+
60
+
// Used to skip the LSIF -> SCIP conversion during the migration. Not expected to be used outside
61
+
// of codeintel-qa pipelines and not expected to last much longer than a few releases while we
62
+
// deprecate all LSIF code paths.
63
+
skipConversionToSCIPbool
56
64
)
57
65
58
66
funcinit() {
59
-
codeintelUploadFlagSet.StringVar(&codeintelUploadFlags.file, "file", "./dump.lsif", `The path to the LSIF dump file.`)
67
+
codeintelUploadFlagSet.StringVar(&codeintelUploadFlags.file, "file", "", `The path to the LSIF dump file.`)
60
68
61
69
// UploadRecordOptions
62
70
codeintelUploadFlagSet.StringVar(&codeintelUploadFlags.repo, "repo", "", `The name of the repository (e.g. github.com/gorilla/mux). By default, derived from the origin remote.`)
@@ -81,6 +89,9 @@ func init() {
81
89
codeintelUploadFlagSet.BoolVar(&codeintelUploadFlags.json, "json", false, `Output relevant state in JSON on success.`)
82
90
codeintelUploadFlagSet.BoolVar(&codeintelUploadFlags.open, "open", false, `Open the LSIF upload page in your browser.`)
83
91
codeintelUploadFlagSet.BoolVar(&dummyflag, "insecure-skip-verify", false, "Skip validation of TLS certificates against trusted chains")
92
+
93
+
// Testing flags
94
+
codeintelUploadFlagSet.BoolVar(&skipConversionToSCIP, "skip-scip", false, "Skip converting LSIF index to SCIP if the instance supports it; this option should only used for debugging")
84
95
}
85
96
86
97
// parseAndValidateCodeIntelUploadFlags calls codeintelUploadFlagset.Parse, then infers values for
@@ -89,7 +100,7 @@ func init() {
89
100
//
90
101
// On success, the global codeintelUploadFlags object will be populated with valid values. An
0 commit comments