From 8d45eb52943ba723f68d4259e8b9642693d7c718 Mon Sep 17 00:00:00 2001 From: crStiv Date: Tue, 17 Dec 2024 23:55:20 +0100 Subject: [PATCH 01/10] typo --- deploy/k8s/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/k8s/README.md b/deploy/k8s/README.md index c34f6d1ba9..3ebc7c2946 100644 --- a/deploy/k8s/README.md +++ b/deploy/k8s/README.md @@ -179,7 +179,7 @@ spec: terminationGracePeriodSeconds: 300 ``` -To gain further security, an archieve node should be used in the same k8s cluster, and a NetworkPolicy be added to limit all network communication within the internal network. +To gain further security, an archive node should be used in the same k8s cluster, and a NetworkPolicy be added to limit all network communication within the internal network. ```yaml apiVersion: networking.k8s.io/v1 kind: NetworkPolicy From fd6fb1513613724be4b991c568ff8eda6c96aa5f Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 00:00:51 +0100 Subject: [PATCH 02/10] article change --- packages/cli/src/commands/deployment/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/commands/deployment/index.ts b/packages/cli/src/commands/deployment/index.ts index 5f0def8ad0..a0f0ec876c 100644 --- a/packages/cli/src/commands/deployment/index.ts +++ b/packages/cli/src/commands/deployment/index.ts @@ -32,7 +32,7 @@ export default class Deployment extends Command { if (!option) { userOptions = await select({ - message: 'Select an deployment option', + message: 'Select a deployment option', choices: [{value: 'deploy'}, {value: 'promote'}, {value: 'delete'}], }); } else { From f9bd0d7020d30e7c2c1d1c65451ed01443283507 Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 00:06:10 +0100 Subject: [PATCH 03/10] typo --- packages/cli/src/commands/migrate.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/commands/migrate.test.ts b/packages/cli/src/commands/migrate.test.ts index ecc26b3559..07cd191ada 100644 --- a/packages/cli/src/commands/migrate.test.ts +++ b/packages/cli/src/commands/migrate.test.ts @@ -9,7 +9,7 @@ import {DEFAULT_SUBQL_MANIFEST} from '../constants'; import Migrate from './migrate'; jest.setTimeout(300_000); // 300s -describe('Intergration test - Migrate', () => { +describe('Integration test - Migrate', () => { let projectDir: string; beforeAll(async () => { From 9e0dd68c9ab260d1c82d91f1095bbd403a517b46 Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 00:08:02 +0100 Subject: [PATCH 04/10] typos --- packages/cli/src/commands/publish.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/src/commands/publish.test.ts b/packages/cli/src/commands/publish.test.ts index 5ae70e98ee..f7263994f0 100644 --- a/packages/cli/src/commands/publish.test.ts +++ b/packages/cli/src/commands/publish.test.ts @@ -8,7 +8,7 @@ import {createTestProject} from '../createProject.fixtures'; import Publish from './publish'; jest.setTimeout(300_000); // 300s -describe('Intergration test - Publish', () => { +describe('Integration test - Publish', () => { let projectDir: string; beforeAll(async () => { @@ -43,7 +43,7 @@ describe('Intergration test - Publish', () => { }); // Run this last because it modifies the project - it('file name consistent with manfiest file name, if -f is used', async () => { + it('file name consistent with manifest file name, if -f is used', async () => { const manifestPath = path.resolve(projectDir, 'project.yaml'); const testManifestPath = path.resolve(projectDir, 'test.yaml'); fs.renameSync(manifestPath, testManifestPath); From bba00f12d094a3ffe3bc07c7155f50e8ffd05df9 Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 00:37:58 +0100 Subject: [PATCH 05/10] Update CHANGELOG.md --- packages/cli/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index bb84973a8e..2eb5e24df9 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -183,7 +183,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Publish command output flag not working (#2270) ### Changed -- Update deployemnt flags to match managed service (#2274) +- Update deployment flags to match managed service (#2274) ## [4.2.7] - 2024-02-23 ### Changed From 3f73b3ae09bdbd4a72d817e743789d4ecdfaafda Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 15:49:33 +0100 Subject: [PATCH 06/10] typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed typo archieve → archive From f76925539a0b721f31362c561d1d595cdf7e903d Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 15:51:27 +0100 Subject: [PATCH 07/10] typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed typo deployemnt → deployment From 329eb6d1fc1c6192d43f6d5b9bb011d4fb0030ed Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 15:54:51 +0100 Subject: [PATCH 08/10] article change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed typo an deployment → a deployment From e2911fbbd7b4d9761d82e198779c9fd255cbb455 Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 15:55:18 +0100 Subject: [PATCH 09/10] typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed typo Intergration → Integration. From f17ca05ddb41600c1065d1408d7bf6971af92e6e Mon Sep 17 00:00:00 2001 From: crStiv Date: Wed, 18 Dec 2024 15:55:42 +0100 Subject: [PATCH 10/10] typos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed typo Intergration → Integration. Fixed typo manfiest → manifest.