Skip to content

Commit 107895c

Browse files
dependabot[bot]Scott Dover
andauthored
chore(deps): bump uuid from 11.1.0 to 12.0.0 in /client (#1626)
* chore(deps): bump uuid from 11.1.0 to 12.0.0 in /client Bumps [uuid](https://github.com/uuidjs/uuid) from 11.1.0 to 12.0.0. - [Release notes](https://github.com/uuidjs/uuid/releases) - [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md) - [Commits](uuidjs/uuid@v11.1.0...v12.0.0) --- updated-dependencies: - dependency-name: uuid dependency-version: 12.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix: fix tests Signed-off-by: Scott Dover <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Scott Dover <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Scott Dover <[email protected]>
1 parent 66bdd29 commit 107895c

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

client/package-lock.json

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

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"react": "^19.1.1",
1919
"react-dom": "^19.1.1",
2020
"ssh2": "^1.17.0",
21-
"uuid": "^11.1.0",
21+
"uuid": "^13.0.0",
2222
"vscode-languageclient": "^10.0.0-next.2",
2323
"zustand": "^5.0.8"
2424
},

client/test/connection/itc/ItcLibraryAdapter.test.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { expect } from "chai";
22
import proxyquire from "proxyquire";
33
import sinon from "sinon";
4-
import * as uuid from "uuid";
54

65
import {
76
LibraryItem,
@@ -31,18 +30,15 @@ describe("ItcLibraryAdapter tests", () => {
3130
let now;
3231
let clock;
3332
let sessionStub;
34-
let uuidStub: sinon.SinonStub;
3533
let ItcLibraryAdapter;
3634
beforeEach(() => {
3735
now = new Date();
3836
clock = sinon.useFakeTimers(now.getTime());
3937
sessionStub = sinon.stub(connection, "getSession");
4038
sessionStub.returns(new MockSession(mockOutput()));
41-
uuidStub = sinon.stub(uuid, "v4");
42-
uuidStub.returns("mocked-uuid");
4339
const codeRunner = proxyquire("../../../src/connection/itc/CodeRunner", {
4440
uuid: {
45-
v4: uuidStub,
41+
v4: () => "mocked-uuid",
4642
},
4743
});
4844
ItcLibraryAdapter = proxyquire(
@@ -56,7 +52,6 @@ describe("ItcLibraryAdapter tests", () => {
5652
afterEach(() => {
5753
clock.restore();
5854
sessionStub.restore();
59-
uuidStub.restore();
6055
});
6156

6257
it("fetches columns", async () => {

0 commit comments

Comments
 (0)