Skip to content

Commit 0142e6b

Browse files
authored
chore: prefix aws-protocoltests- for protocol test clients (#2942)
1 parent 538d717 commit 0142e6b

File tree

338 files changed

+346
-366
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

338 files changed

+346
-366
lines changed

codegen/protocol-test-codegen/smithy-build.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": "1.0",
33
"projections": {
4-
"aws-ec2": {
4+
"aws-protocoltests-ec2": {
55
"transforms": [
66
{
77
"name": "includeServices",
@@ -12,7 +12,7 @@
1212
],
1313
"plugins": {
1414
"typescript-codegen": {
15-
"package": "@aws-sdk/aws-ec2",
15+
"package": "@aws-sdk/aws-protocoltests-ec2",
1616
"packageVersion": "1.0.0-alpha.1",
1717
"packageJson": {
1818
"author": {
@@ -25,7 +25,7 @@
2525
}
2626
}
2727
},
28-
"aws-json": {
28+
"aws-protocoltests-json": {
2929
"transforms": [
3030
{
3131
"name": "includeServices",
@@ -36,7 +36,7 @@
3636
],
3737
"plugins": {
3838
"typescript-codegen": {
39-
"package": "@aws-sdk/aws-json",
39+
"package": "@aws-sdk/aws-protocoltests-json",
4040
"packageVersion": "1.0.0-alpha.1",
4141
"packageJson": {
4242
"author": {
@@ -49,7 +49,7 @@
4949
}
5050
}
5151
},
52-
"aws-json-10": {
52+
"aws-protocoltests-json-10": {
5353
"transforms": [
5454
{
5555
"name": "includeServices",
@@ -60,7 +60,7 @@
6060
],
6161
"plugins": {
6262
"typescript-codegen": {
63-
"package": "@aws-sdk/aws-json-10",
63+
"package": "@aws-sdk/aws-protocoltests-json-10",
6464
"packageVersion": "1.0.0-alpha.1",
6565
"packageJson": {
6666
"author": {
@@ -73,7 +73,7 @@
7373
}
7474
}
7575
},
76-
"aws-query": {
76+
"aws-protocoltests-query": {
7777
"transforms": [
7878
{
7979
"name": "includeServices",
@@ -84,7 +84,7 @@
8484
],
8585
"plugins": {
8686
"typescript-codegen": {
87-
"package": "@aws-sdk/aws-query",
87+
"package": "@aws-sdk/aws-protocoltests-query",
8888
"packageVersion": "1.0.0-alpha.1",
8989
"packageJson": {
9090
"author": {
@@ -97,7 +97,7 @@
9797
}
9898
}
9999
},
100-
"aws-restjson": {
100+
"aws-protocoltests-restjson": {
101101
"transforms": [
102102
{
103103
"name": "includeServices",
@@ -108,7 +108,7 @@
108108
],
109109
"plugins": {
110110
"typescript-codegen": {
111-
"package": "@aws-sdk/aws-restjson",
111+
"package": "@aws-sdk/aws-protocoltests-restjson",
112112
"packageVersion": "1.0.0-alpha.1",
113113
"packageJson": {
114114
"author": {
@@ -142,7 +142,7 @@
142142
}
143143
}
144144
},
145-
"aws-restxml": {
145+
"aws-protocoltests-restxml": {
146146
"transforms": [
147147
{
148148
"name": "includeServices",
@@ -153,7 +153,7 @@
153153
],
154154
"plugins": {
155155
"typescript-codegen": {
156-
"package": "@aws-sdk/aws-restxml",
156+
"package": "@aws-sdk/aws-protocoltests-restxml",
157157
"packageVersion": "1.0.0-alpha.1",
158158
"packageJson": {
159159
"author": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"clear-build-info": "rimraf ./packages/**/*.tsbuildinfo ./clients/**/*.tsbuildinfo ./lib/**/*.tsbuildinfo ./protocol_tests/**/*.tsbuildinfo",
1515
"remove-documentation": "rimraf ./docs",
1616
"build:crypto-dependencies": "lerna run --scope '@aws-sdk/{types,util-utf8-browser,util-locate-window,hash-node}' --include-dependencies build",
17-
"build:protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/aws-*' --ignore '@aws-sdk/*-server' --include-dependencies build",
17+
"build:protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/aws-protocoltests-*' --include-dependencies build",
1818
"build:server-protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/*-server' --include-dependencies build",
1919
"build:all": "yarn build:crypto-dependencies && lerna run build",
2020
"build-documentation": "yarn remove-documentation && typedoc",
@@ -24,7 +24,7 @@
2424
"test:integration:legacy": "cucumber-js --fail-fast",
2525
"test:integration:legacy:since:release": "./tests/integ-legacy/index.js",
2626
"test:integration": "jest --config jest.config.integ.js --passWithNoTests",
27-
"test:protocols": "yarn build:protocols && lerna run test --scope '@aws-sdk/aws-*' --ignore '@aws-sdk/*-server'",
27+
"test:protocols": "yarn build:protocols && lerna run test --scope '@aws-sdk/aws-protocoltests-*'",
2828
"test:server-protocols": "yarn build:server-protocols && lerna run test --scope '@aws-sdk/*-server'",
2929
"pretest:e2e": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/{client-cloudformation,karma-credential-loader}' --include-dependencies build",
3030
"test:e2e": "node ./tests/e2e/index.js",
File renamed without changes.
File renamed without changes.

protocol_tests/aws-ec2/README.md renamed to protocol_tests/aws-protocoltests-ec2/README.md

Lines changed: 11 additions & 11 deletions
File renamed without changes.

protocol_tests/aws-query/package.json renamed to protocol_tests/aws-protocoltests-ec2/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@aws-sdk/aws-query",
3-
"description": "@aws-sdk/aws-query client",
2+
"name": "@aws-sdk/aws-protocoltests-ec2",
3+
"description": "@aws-sdk/aws-protocoltests-ec2 client",
44
"version": "3.38.0",
55
"scripts": {
66
"build": "yarn build:cjs && yarn build:es && yarn build:types",
@@ -87,10 +87,10 @@
8787
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
8888
},
8989
"private": true,
90-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/aws-query",
90+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/aws-protocoltests-ec2",
9191
"repository": {
9292
"type": "git",
9393
"url": "https://github.com/aws/aws-sdk-js-v3.git",
94-
"directory": "clients/aws-query"
94+
"directory": "clients/aws-protocoltests-ec2"
9595
}
9696
}
File renamed without changes.

protocol_tests/aws-ec2/src/EC2ProtocolClient.ts renamed to protocol_tests/aws-protocoltests-ec2/src/EC2ProtocolClient.ts

File renamed without changes.

0 commit comments

Comments
 (0)