Skip to content

Commit 8def6db

Browse files
authored
chore: bump vscode/ripgrep (microsoft#251213)
* chore: bump vscode/ripgrep * Update error message
1 parent 6a8e32e commit 8def6db

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

build/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@types/workerpool": "^6.4.0",
3737
"@types/xml2js": "0.0.33",
3838
"@vscode/iconv-lite-umd": "0.7.0",
39-
"@vscode/ripgrep": "^1.15.10",
39+
"@vscode/ripgrep": "^1.15.13",
4040
"@vscode/vsce": "2.20.1",
4141
"byline": "^5.0.0",
4242
"debug": "^4.3.2",

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"@vscode/iconv-lite-umd": "0.7.0",
7878
"@vscode/policy-watcher": "^1.3.2",
7979
"@vscode/proxy-agent": "^0.32.0",
80-
"@vscode/ripgrep": "^1.15.11",
80+
"@vscode/ripgrep": "^1.15.13",
8181
"@vscode/spdlog": "^0.15.2",
8282
"@vscode/sqlite3": "5.1.8-vscode",
8383
"@vscode/sudo-prompt": "9.3.1",

remote/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

remote/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"@vscode/deviceid": "^0.1.1",
1010
"@vscode/iconv-lite-umd": "0.7.0",
1111
"@vscode/proxy-agent": "^0.32.0",
12-
"@vscode/ripgrep": "^1.15.11",
12+
"@vscode/ripgrep": "^1.15.13",
1313
"@vscode/spdlog": "^0.15.2",
1414
"@vscode/tree-sitter-wasm": "^0.1.4",
1515
"@vscode/vscode-languagedetection": "1.0.21",

src/vs/workbench/services/search/test/node/textSearch.integrationTest.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import assert from 'assert';
7-
import * as path from '../../../../../base/common/path.js';
87
import { CancellationTokenSource } from '../../../../../base/common/cancellation.js';
98
import * as glob from '../../../../../base/common/glob.js';
9+
import { FileAccess } from '../../../../../base/common/network.js';
10+
import * as path from '../../../../../base/common/path.js';
1011
import { URI } from '../../../../../base/common/uri.js';
11-
import { deserializeSearchError, IFolderQuery, ISearchRange, ITextQuery, ITextSearchContext, ITextSearchMatch, QueryType, SearchErrorCode, ISerializedFileMatch } from '../../common/search.js';
12-
import { TextSearchEngineAdapter } from '../../node/textSearchAdapter.js';
1312
import { flakySuite } from '../../../../../base/test/node/testUtils.js';
14-
import { FileAccess } from '../../../../../base/common/network.js';
13+
import { deserializeSearchError, IFolderQuery, ISearchRange, ISerializedFileMatch, ITextQuery, ITextSearchContext, ITextSearchMatch, QueryType, SearchErrorCode } from '../../common/search.js';
14+
import { TextSearchEngineAdapter } from '../../node/textSearchAdapter.js';
1515

1616
const TEST_FIXTURES = path.normalize(FileAccess.asFileUri('vs/workbench/services/search/test/node/fixtures').fsPath);
1717
const EXAMPLES_FIXTURES = path.join(TEST_FIXTURES, 'examples');
@@ -405,7 +405,7 @@ flakySuite('TextSearch-integration', function () {
405405
throw new Error('expected fail');
406406
}, err => {
407407
const searchError = deserializeSearchError(err);
408-
const regexParseErrorForLookAround = 'Regex parse error: lookbehind assertion is not fixed length';
408+
const regexParseErrorForLookAround = 'Regex parse error: length of lookbehind assertion is not limited';
409409
assert.strictEqual(searchError.message, regexParseErrorForLookAround);
410410
assert.strictEqual(searchError.code, SearchErrorCode.regexParseError);
411411
});

0 commit comments

Comments
 (0)