diff --git a/lambdas/functions/ami-housekeeper/package.json b/lambdas/functions/ami-housekeeper/package.json index fab72ec49b..c2ca0b928e 100644 --- a/lambdas/functions/ami-housekeeper/package.json +++ b/lambdas/functions/ami-housekeeper/package.json @@ -20,7 +20,7 @@ "@types/aws-lambda": "^8.10.145", "@types/jest": "^29.5.12", "@types/node": "^22.5.4", - "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.8.1", "@typescript-eslint/parser": "^8.8.0", "@vercel/ncc": "^0.38.1", "aws-sdk-client-mock": "^4.0.2", diff --git a/lambdas/functions/ami-housekeeper/src/lambda.test.ts b/lambdas/functions/ami-housekeeper/src/lambda.test.ts index 1cb28afeb9..f2c371ec62 100644 --- a/lambdas/functions/ami-housekeeper/src/lambda.test.ts +++ b/lambdas/functions/ami-housekeeper/src/lambda.test.ts @@ -52,7 +52,7 @@ describe('Housekeeper ami', () => { resolve(); }); }); - expect(await handler(undefined, context)).resolves; + await expect(handler(undefined, context)).resolves.not.toThrow(); }); it('should not thow only log in error in case of an exception.', async () => { diff --git a/lambdas/functions/control-plane/package.json b/lambdas/functions/control-plane/package.json index ff4c993951..0dfd71e217 100644 --- a/lambdas/functions/control-plane/package.json +++ b/lambdas/functions/control-plane/package.json @@ -20,7 +20,7 @@ "@types/aws-lambda": "^8.10.145", "@types/jest": "^29.5.12", "@types/node": "^22.5.4", - "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.8.1", "@typescript-eslint/parser": "^8.8.0", "@vercel/ncc": "^0.38.1", "aws-sdk-client-mock": "^4.0.2", diff --git a/lambdas/functions/control-plane/src/aws/runners.test.ts b/lambdas/functions/control-plane/src/aws/runners.test.ts index ceb1b0d09a..769db4c82b 100644 --- a/lambdas/functions/control-plane/src/aws/runners.test.ts +++ b/lambdas/functions/control-plane/src/aws/runners.test.ts @@ -383,7 +383,7 @@ describe('create runner with errors', () => { it('test now error is thrown if an instance is created', async () => { createFleetMockWithErrors(['NonMappedError'], ['i-123']); - expect(await createRunner(createRunnerConfig(defaultRunnerConfig))).resolves; + await expect(createRunner(createRunnerConfig(defaultRunnerConfig))).resolves.toEqual(['i-123']); expect(mockEC2Client).toHaveReceivedCommandWith( CreateFleetCommand, expectedCreateFleetRequest(defaultExpectedFleetRequestValues), diff --git a/lambdas/functions/control-plane/src/github/octokit.test.ts b/lambdas/functions/control-plane/src/github/octokit.test.ts index 3f22c3c4bd..7cd70ee361 100644 --- a/lambdas/functions/control-plane/src/github/octokit.test.ts +++ b/lambdas/functions/control-plane/src/github/octokit.test.ts @@ -63,7 +63,7 @@ describe('Test getOctokit', () => { mockOctokit.apps.getOrgInstallation.mockRejectedValue(new Error('Error')); } - expect(await getOctokit('', input.orgLevelRunner, payload)).resolves; + await expect(getOctokit('', input.orgLevelRunner, payload)).resolves.toBeDefined(); if (output.callOrgInstallation) { expect(mockOctokit.apps.getOrgInstallation).toHaveBeenCalled(); diff --git a/lambdas/functions/control-plane/src/lambda.test.ts b/lambdas/functions/control-plane/src/lambda.test.ts index 0ab5b2e184..69ccad17a0 100644 --- a/lambdas/functions/control-plane/src/lambda.test.ts +++ b/lambdas/functions/control-plane/src/lambda.test.ts @@ -86,7 +86,7 @@ describe('Test scale up lambda wrapper.', () => { resolve(); }); }); - expect(await scaleUpHandler(sqsEvent, context)).resolves; + await expect(scaleUpHandler(sqsEvent, context)).resolves.not.toThrow(); }); it('Non scale should resolve.', async () => { @@ -206,7 +206,7 @@ describe('Test job retry check wrapper', () => { resolve(); }); }); - expect(await jobRetryCheck(sqsEvent, context)).resolves; + await expect(jobRetryCheck(sqsEvent, context)).resolves.not.toThrow(); }); it('Handle with error should resolve and log only a warning.', async () => { @@ -216,7 +216,7 @@ describe('Test job retry check wrapper', () => { const error = new Error('Error handling retry check.'); mock.mockRejectedValue(error); - expect(await jobRetryCheck(sqsEvent, context)).resolves; + await expect(jobRetryCheck(sqsEvent, context)).resolves.not.toThrow(); expect(logSpyWarn).toHaveBeenCalledWith(expect.stringContaining(error.message), expect.anything()); }); }); diff --git a/lambdas/functions/control-plane/src/scale-runners/scale-down.test.ts b/lambdas/functions/control-plane/src/scale-runners/scale-down.test.ts index 680247ced0..bfa2b5600f 100644 --- a/lambdas/functions/control-plane/src/scale-runners/scale-down.test.ts +++ b/lambdas/functions/control-plane/src/scale-runners/scale-down.test.ts @@ -182,9 +182,9 @@ describe('Scale down runners', () => { expect(listEC2Runners).toHaveBeenCalledWith({ environment: ENVIRONMENT, }); - expect(terminateRunner).not; - expect(mockOctokit.apps.getRepoInstallation).not; - expect(mockOctokit.apps.getRepoInstallation).not; + expect(terminateRunner).not.toHaveBeenCalled(); + expect(mockOctokit.apps.getRepoInstallation).not.toHaveBeenCalled(); + expect(mockOctokit.apps.getRepoInstallation).not.toHaveBeenCalled(); }); it(`Should terminate runner without idle config ${type} runners.`, async () => { diff --git a/lambdas/functions/gh-agent-syncer/package.json b/lambdas/functions/gh-agent-syncer/package.json index 9099137f8e..62e27e0372 100644 --- a/lambdas/functions/gh-agent-syncer/package.json +++ b/lambdas/functions/gh-agent-syncer/package.json @@ -21,7 +21,7 @@ "@types/jest": "^29.5.12", "@types/node": "^22.5.4", "@types/request": "^2.48.12", - "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.8.1", "@typescript-eslint/parser": "^8.8.0", "@vercel/ncc": "^0.38.1", "aws-sdk-client-mock": "^4.0.2", diff --git a/lambdas/functions/gh-agent-syncer/src/syncer/syncer.ts b/lambdas/functions/gh-agent-syncer/src/syncer/syncer.ts index 496cc4140e..eb95980efc 100644 --- a/lambdas/functions/gh-agent-syncer/src/syncer/syncer.ts +++ b/lambdas/functions/gh-agent-syncer/src/syncer/syncer.ts @@ -25,7 +25,7 @@ async function getCachedVersion(s3Client: S3Client, cacheObject: CacheObject): P const objectTagging = await s3Client.send(command); const versions = objectTagging.TagSet?.filter((t: Tag) => t.Key === versionKey); return versions?.length === 1 ? versions[0].Value : undefined; - } catch (e) { + } catch { logger.debug('No tags found'); return undefined; } diff --git a/lambdas/functions/termination-watcher/package.json b/lambdas/functions/termination-watcher/package.json index 52cf11d0ac..e440488521 100644 --- a/lambdas/functions/termination-watcher/package.json +++ b/lambdas/functions/termination-watcher/package.json @@ -18,7 +18,7 @@ "@types/aws-lambda": "^8.10.145", "@types/jest": "^29.5.12", "@types/node": "^22.5.4", - "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.8.1", "@typescript-eslint/parser": "^8.8.0", "@vercel/ncc": "^0.38.1", "aws-sdk-client-mock": "^4.0.2", diff --git a/lambdas/functions/termination-watcher/src/lambda.test.ts b/lambdas/functions/termination-watcher/src/lambda.test.ts index f1788b04bf..6214d315a2 100644 --- a/lambdas/functions/termination-watcher/src/lambda.test.ts +++ b/lambdas/functions/termination-watcher/src/lambda.test.ts @@ -55,7 +55,7 @@ describe('Handle sport termination interruption warning', () => { resolve(); }); }); - expect(await interruptionWarning(event, context)).resolves; + await expect(interruptionWarning(event, context)).resolves.not.toThrow(); }); it('should not throw only log in error in case of an exception.', async () => { diff --git a/lambdas/functions/termination-watcher/src/types.d.ts b/lambdas/functions/termination-watcher/src/types.d.ts index 2a687ad4f1..33d22263b5 100644 --- a/lambdas/functions/termination-watcher/src/types.d.ts +++ b/lambdas/functions/termination-watcher/src/types.d.ts @@ -1,5 +1,6 @@ import { EventBridgeEvent } from 'aws-lambda'; +// eslint-disable-next-line @typescript-eslint/no-empty-object-type export interface SpotInterruptionWarning extends EventBridgeEvent<'EC2 Spot Instance Interruption Warning', SpotTerminationDetail> {} diff --git a/lambdas/functions/webhook/package.json b/lambdas/functions/webhook/package.json index 2d2d4a33e2..8e4636f510 100644 --- a/lambdas/functions/webhook/package.json +++ b/lambdas/functions/webhook/package.json @@ -21,7 +21,7 @@ "@types/express": "^4.17.21", "@types/jest": "^29.5.12", "@types/node": "^22.5.4", - "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.8.1", "@typescript-eslint/parser": "^8.8.0", "@vercel/ncc": "0.38.1", "body-parser": "^1.20.3", diff --git a/lambdas/functions/webhook/src/sqs/index.test.ts b/lambdas/functions/webhook/src/sqs/index.test.ts index 79595033a4..5756ec2074 100644 --- a/lambdas/functions/webhook/src/sqs/index.test.ts +++ b/lambdas/functions/webhook/src/sqs/index.test.ts @@ -45,12 +45,13 @@ describe('Test sending message to SQS.', () => { QueueUrl: queueUrl, MessageBody: JSON.stringify(no_fifo_message), }; + // Act - const result = await sendActionRequest(no_fifo_message); + const result = sendActionRequest(no_fifo_message); // Assert - expect(mockSQS.sendMessage).toBeCalledWith(sqsMessage); - expect(result).resolves; + expect(mockSQS.sendMessage).toHaveBeenCalledWith(sqsMessage); + await expect(result).resolves.not.toThrow(); }); it('use a fifo queue', async () => { @@ -64,11 +65,11 @@ describe('Test sending message to SQS.', () => { MessageBody: JSON.stringify(fifo_message), }; // Act - const result = await sendActionRequest(fifo_message); + const result = sendActionRequest(fifo_message); // Assert - expect(mockSQS.sendMessage).toBeCalledWith({ ...sqsMessage, MessageGroupId: String(message.id) }); - expect(result).resolves; + expect(mockSQS.sendMessage).toHaveBeenCalledWith({ ...sqsMessage, MessageGroupId: String(message.id) }); + await expect(result).resolves.not.toThrow(); }); }); @@ -94,11 +95,11 @@ describe('Test sending message to SQS.', () => { const config = await Config.load(); // Act - const result = await sendWebhookEventToWorkflowJobQueue(message, config); + const result = sendWebhookEventToWorkflowJobQueue(message, config); // Assert expect(mockSQS.sendMessage).toHaveBeenCalledWith(sqsMessage); - expect(result).resolves; + await expect(result).resolves.not.toThrow(); }); it('Does not send webhook events to workflow job event copy queue when job queue is not in environment', async () => { diff --git a/lambdas/libs/aws-powertools-util/package.json b/lambdas/libs/aws-powertools-util/package.json index a65108f641..a396e9b239 100644 --- a/lambdas/libs/aws-powertools-util/package.json +++ b/lambdas/libs/aws-powertools-util/package.json @@ -19,7 +19,7 @@ "@types/express": "^4.17.21", "@types/jest": "^29.5.12", "@types/node": "^22.5.4", - "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.8.1", "@typescript-eslint/parser": "^8.8.0", "@vercel/ncc": "0.38.1", "body-parser": "^1.20.3", diff --git a/lambdas/libs/aws-ssm-util/package.json b/lambdas/libs/aws-ssm-util/package.json index 59501f31c8..69c7d3cc82 100644 --- a/lambdas/libs/aws-ssm-util/package.json +++ b/lambdas/libs/aws-ssm-util/package.json @@ -19,7 +19,7 @@ "@types/express": "^4.17.21", "@types/jest": "^29.5.12", "@types/node": "^22.5.4", - "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.8.1", "@typescript-eslint/parser": "^8.8.0", "@vercel/ncc": "0.38.1", "body-parser": "^1.20.3", diff --git a/lambdas/libs/aws-ssm-util/src/index.test.ts b/lambdas/libs/aws-ssm-util/src/index.test.ts index ee4cd8ec2f..56261475f0 100644 --- a/lambdas/libs/aws-ssm-util/src/index.test.ts +++ b/lambdas/libs/aws-ssm-util/src/index.test.ts @@ -56,10 +56,10 @@ describe('Test getParameter and putParameter', () => { }, }; - mockSSMClient.on(PutParameterCommand).resolves(output); + mockSSMClient.on(PutParameterCommand).rejects(output); // Act - expect(putParameter(parameterName, parameterValue, true)).rejects; + await expect(putParameter(parameterName, parameterValue, true)).rejects.toThrow(); }); it('Puts parameters and returns success', async () => { @@ -75,7 +75,7 @@ describe('Test getParameter and putParameter', () => { mockSSMClient.on(PutParameterCommand).resolves(output); // Act - expect(putParameter(parameterName, parameterValue, true)).resolves; + await expect(putParameter(parameterName, parameterValue, true)).resolves.not.toThrow(); }); it('Puts parameters as String', async () => { diff --git a/lambdas/yarn.lock b/lambdas/yarn.lock index 623eba9d04..ca4f93d132 100644 --- a/lambdas/yarn.lock +++ b/lambdas/yarn.lock @@ -110,7 +110,7 @@ __metadata: "@types/aws-lambda": "npm:^8.10.145" "@types/jest": "npm:^29.5.12" "@types/node": "npm:^22.5.4" - "@typescript-eslint/eslint-plugin": "npm:^7.18.0" + "@typescript-eslint/eslint-plugin": "npm:^8.8.1" "@typescript-eslint/parser": "npm:^8.8.0" "@vercel/ncc": "npm:^0.38.1" aws-sdk-client-mock: "npm:^4.0.2" @@ -142,7 +142,7 @@ __metadata: "@types/express": "npm:^4.17.21" "@types/jest": "npm:^29.5.12" "@types/node": "npm:^22.5.4" - "@typescript-eslint/eslint-plugin": "npm:^7.18.0" + "@typescript-eslint/eslint-plugin": "npm:^8.8.1" "@typescript-eslint/parser": "npm:^8.8.0" "@vercel/ncc": "npm:0.38.1" aws-lambda: "npm:^1.0.7" @@ -172,7 +172,7 @@ __metadata: "@types/express": "npm:^4.17.21" "@types/jest": "npm:^29.5.12" "@types/node": "npm:^22.5.4" - "@typescript-eslint/eslint-plugin": "npm:^7.18.0" + "@typescript-eslint/eslint-plugin": "npm:^8.8.1" "@typescript-eslint/parser": "npm:^8.8.0" "@vercel/ncc": "npm:0.38.1" body-parser: "npm:^1.20.3" @@ -209,7 +209,7 @@ __metadata: "@types/aws-lambda": "npm:^8.10.145" "@types/jest": "npm:^29.5.12" "@types/node": "npm:^22.5.4" - "@typescript-eslint/eslint-plugin": "npm:^7.18.0" + "@typescript-eslint/eslint-plugin": "npm:^8.8.1" "@typescript-eslint/parser": "npm:^8.8.0" "@vercel/ncc": "npm:^0.38.1" aws-sdk-client-mock: "npm:^4.0.2" @@ -245,7 +245,7 @@ __metadata: "@types/jest": "npm:^29.5.12" "@types/node": "npm:^22.5.4" "@types/request": "npm:^2.48.12" - "@typescript-eslint/eslint-plugin": "npm:^7.18.0" + "@typescript-eslint/eslint-plugin": "npm:^8.8.1" "@typescript-eslint/parser": "npm:^8.8.0" "@vercel/ncc": "npm:^0.38.1" aws-sdk-client-mock: "npm:^4.0.2" @@ -274,7 +274,7 @@ __metadata: "@types/aws-lambda": "npm:^8.10.145" "@types/jest": "npm:^29.5.12" "@types/node": "npm:^22.5.4" - "@typescript-eslint/eslint-plugin": "npm:^7.18.0" + "@typescript-eslint/eslint-plugin": "npm:^8.8.1" "@typescript-eslint/parser": "npm:^8.8.0" "@vercel/ncc": "npm:^0.38.1" aws-sdk-client-mock: "npm:^4.0.2" @@ -309,7 +309,7 @@ __metadata: "@types/express": "npm:^4.17.21" "@types/jest": "npm:^29.5.12" "@types/node": "npm:^22.5.4" - "@typescript-eslint/eslint-plugin": "npm:^7.18.0" + "@typescript-eslint/eslint-plugin": "npm:^8.8.1" "@typescript-eslint/parser": "npm:^8.8.0" "@vercel/ncc": "npm:0.38.1" aws-lambda: "npm:^1.0.7" @@ -5324,26 +5324,26 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/eslint-plugin@npm:7.18.0" +"@typescript-eslint/eslint-plugin@npm:^8.8.1": + version: 8.8.1 + resolution: "@typescript-eslint/eslint-plugin@npm:8.8.1" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:7.18.0" - "@typescript-eslint/type-utils": "npm:7.18.0" - "@typescript-eslint/utils": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" + "@typescript-eslint/scope-manager": "npm:8.8.1" + "@typescript-eslint/type-utils": "npm:8.8.1" + "@typescript-eslint/utils": "npm:8.8.1" + "@typescript-eslint/visitor-keys": "npm:8.8.1" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" ts-api-utils: "npm:^1.3.0" peerDependencies: - "@typescript-eslint/parser": ^7.0.0 - eslint: ^8.56.0 + "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 10c0/2b37948fa1b0dab77138909dabef242a4d49ab93e4019d4ef930626f0a7d96b03e696cd027fa0087881c20e73be7be77c942606b4a76fa599e6b37f6985304c3 + checksum: 10c0/020a0a482202b34c6665a56ec5902e38ae1870b2600ec1b2092de352b23099dde553781ee8323974f63962ebe164a6304f0019e937afb5cf7854b0e0163ad1ca languageName: node linkType: hard @@ -5365,16 +5365,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/scope-manager@npm:7.18.0" - dependencies: - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" - checksum: 10c0/038cd58c2271de146b3a594afe2c99290034033326d57ff1f902976022c8b0138ffd3cb893ae439ae41003b5e4bcc00cabf6b244ce40e8668f9412cc96d97b8e - languageName: node - linkType: hard - "@typescript-eslint/scope-manager@npm:8.8.0": version: 8.8.0 resolution: "@typescript-eslint/scope-manager@npm:8.8.0" @@ -5385,27 +5375,28 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/type-utils@npm:7.18.0" +"@typescript-eslint/scope-manager@npm:8.8.1": + version: 8.8.1 + resolution: "@typescript-eslint/scope-manager@npm:8.8.1" + dependencies: + "@typescript-eslint/types": "npm:8.8.1" + "@typescript-eslint/visitor-keys": "npm:8.8.1" + checksum: 10c0/6f697baf087aedc3f0f228ff964fd108a9dd33fe4e5cc6c914be6367c324cee55629e099832668042bedfec8cdc72c6ef2ca960ee26966dbcc75753059a1352f + languageName: node + linkType: hard + +"@typescript-eslint/type-utils@npm:8.8.1": + version: 8.8.1 + resolution: "@typescript-eslint/type-utils@npm:8.8.1" dependencies: - "@typescript-eslint/typescript-estree": "npm:7.18.0" - "@typescript-eslint/utils": "npm:7.18.0" + "@typescript-eslint/typescript-estree": "npm:8.8.1" + "@typescript-eslint/utils": "npm:8.8.1" debug: "npm:^4.3.4" ts-api-utils: "npm:^1.3.0" - peerDependencies: - eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true - checksum: 10c0/ad92a38007be620f3f7036f10e234abdc2fdc518787b5a7227e55fd12896dacf56e8b34578723fbf9bea8128df2510ba8eb6739439a3879eda9519476d5783fd - languageName: node - linkType: hard - -"@typescript-eslint/types@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/types@npm:7.18.0" - checksum: 10c0/eb7371ac55ca77db8e59ba0310b41a74523f17e06f485a0ef819491bc3dd8909bb930120ff7d30aaf54e888167e0005aa1337011f3663dc90fb19203ce478054 + checksum: 10c0/6edfc2b9fca5233dd922141f080377b677db1093ec3e702a3ab52d58f77b91c0fb69479d4d42f125536b8fc0ffa85c07c7de2f17cc4c6fa1df1226ec01e5608c languageName: node linkType: hard @@ -5416,14 +5407,21 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/typescript-estree@npm:7.18.0" +"@typescript-eslint/types@npm:8.8.1": + version: 8.8.1 + resolution: "@typescript-eslint/types@npm:8.8.1" + checksum: 10c0/4b44857332a0b1bfafbeccb8be157f8266d9e226ac723f6af1272b9b670b49444423ddac733655163eb3b90e8c88393a68ab2d7f326f5775371eaf4b9ca31d7b + languageName: node + linkType: hard + +"@typescript-eslint/typescript-estree@npm:8.8.0": + version: 8.8.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.8.0" dependencies: - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" + "@typescript-eslint/types": "npm:8.8.0" + "@typescript-eslint/visitor-keys": "npm:8.8.0" debug: "npm:^4.3.4" - globby: "npm:^11.1.0" + fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.4" semver: "npm:^7.6.0" @@ -5431,16 +5429,16 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/0c7f109a2e460ec8a1524339479cf78ff17814d23c83aa5112c77fb345e87b3642616291908dcddea1e671da63686403dfb712e4a4435104f92abdfddf9aba81 + checksum: 10c0/9b9e849f6b2d4e250840ef8e05f55a97d6598adaf48c1e6df83084b94c30feca6a3e7916ee1c235178188d0db6364a877cbf8fe218c36d5f8d5acb50767f3273 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.8.0": - version: 8.8.0 - resolution: "@typescript-eslint/typescript-estree@npm:8.8.0" +"@typescript-eslint/typescript-estree@npm:8.8.1": + version: 8.8.1 + resolution: "@typescript-eslint/typescript-estree@npm:8.8.1" dependencies: - "@typescript-eslint/types": "npm:8.8.0" - "@typescript-eslint/visitor-keys": "npm:8.8.0" + "@typescript-eslint/types": "npm:8.8.1" + "@typescript-eslint/visitor-keys": "npm:8.8.1" debug: "npm:^4.3.4" fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" @@ -5450,31 +5448,21 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/9b9e849f6b2d4e250840ef8e05f55a97d6598adaf48c1e6df83084b94c30feca6a3e7916ee1c235178188d0db6364a877cbf8fe218c36d5f8d5acb50767f3273 + checksum: 10c0/e3b9bc1e925c07833237044271cdc9bd8bdba3e2143dcfc5bf3bf481c89731b666a6fad25333a4b1980ac2f4c6f5e6e42c71206f73f3704e319f6b3b67463a6a languageName: node linkType: hard -"@typescript-eslint/utils@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/utils@npm:7.18.0" +"@typescript-eslint/utils@npm:8.8.1": + version: 8.8.1 + resolution: "@typescript-eslint/utils@npm:8.8.1" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:7.18.0" - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/typescript-estree": "npm:7.18.0" + "@typescript-eslint/scope-manager": "npm:8.8.1" + "@typescript-eslint/types": "npm:8.8.1" + "@typescript-eslint/typescript-estree": "npm:8.8.1" peerDependencies: - eslint: ^8.56.0 - checksum: 10c0/a25a6d50eb45c514469a01ff01f215115a4725fb18401055a847ddf20d1b681409c4027f349033a95c4ff7138d28c3b0a70253dfe8262eb732df4b87c547bd1e - languageName: node - linkType: hard - -"@typescript-eslint/visitor-keys@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/visitor-keys@npm:7.18.0" - dependencies: - "@typescript-eslint/types": "npm:7.18.0" - eslint-visitor-keys: "npm:^3.4.3" - checksum: 10c0/538b645f8ff1d9debf264865c69a317074eaff0255e63d7407046176b0f6a6beba34a6c51d511f12444bae12a98c69891eb6f403c9f54c6c2e2849d1c1cb73c0 + eslint: ^8.57.0 || ^9.0.0 + checksum: 10c0/954a2e85ae56a3ebefb6e41fb33c59ffa886963860536e9729a35ecea55eefdc58858c7aa126048c4a61f4fd9997b4f7601e7884ed2b3e4e7a46c9e4617a9f29 languageName: node linkType: hard @@ -5488,6 +5476,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/visitor-keys@npm:8.8.1": + version: 8.8.1 + resolution: "@typescript-eslint/visitor-keys@npm:8.8.1" + dependencies: + "@typescript-eslint/types": "npm:8.8.1" + eslint-visitor-keys: "npm:^3.4.3" + checksum: 10c0/6f917090b61277bd443aa851c532c4a9cc91ad57aedf185c5dff0c530f158cce84ef815833bd8deffa87f0bbf7a9f1abd1e02e30af2463c4e7f27c0c08f59080 + languageName: node + linkType: hard + "@ungap/structured-clone@npm:^1.2.0": version: 1.2.0 resolution: "@ungap/structured-clone@npm:1.2.0" @@ -5716,13 +5714,6 @@ __metadata: languageName: node linkType: hard -"array-union@npm:^2.1.0": - version: 2.1.0 - resolution: "array-union@npm:2.1.0" - checksum: 10c0/429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962 - languageName: node - linkType: hard - "async-hook-jl@npm:^1.7.6": version: 1.7.6 resolution: "async-hook-jl@npm:1.7.6" @@ -6717,15 +6708,6 @@ __metadata: languageName: node linkType: hard -"dir-glob@npm:^3.0.1": - version: 3.0.1 - resolution: "dir-glob@npm:3.0.1" - dependencies: - path-type: "npm:^4.0.0" - checksum: 10c0/dcac00920a4d503e38bb64001acb19df4efc14536ada475725e12f52c16777afdee4db827f55f13a908ee7efc0cb282e2e3dbaeeb98c0993dd93d1802d3bf00c - languageName: node - linkType: hard - "doctrine@npm:^3.0.0": version: 3.0.0 resolution: "doctrine@npm:3.0.0" @@ -7222,7 +7204,7 @@ __metadata: languageName: node linkType: hard -"fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": +"fast-glob@npm:^3.3.2": version: 3.3.2 resolution: "fast-glob@npm:3.3.2" dependencies: @@ -7642,20 +7624,6 @@ __metadata: languageName: node linkType: hard -"globby@npm:^11.1.0": - version: 11.1.0 - resolution: "globby@npm:11.1.0" - dependencies: - array-union: "npm:^2.1.0" - dir-glob: "npm:^3.0.1" - fast-glob: "npm:^3.2.9" - ignore: "npm:^5.2.0" - merge2: "npm:^1.4.1" - slash: "npm:^3.0.0" - checksum: 10c0/b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189 - languageName: node - linkType: hard - "gopd@npm:^1.0.1": version: 1.0.1 resolution: "gopd@npm:1.0.1" @@ -9094,7 +9062,7 @@ __metadata: languageName: node linkType: hard -"merge2@npm:^1.3.0, merge2@npm:^1.4.1": +"merge2@npm:^1.3.0": version: 1.4.1 resolution: "merge2@npm:1.4.1" checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb