Skip to content

Commit 8fe2d27

Browse files
authored
Merge pull request #840 from aws/merge_schemas
Added support for Amazon EventBridge schema registry
2 parents f5d0ded + 0bbd1d2 commit 8fe2d27

File tree

76 files changed

+6976
-326
lines changed

Some content is hidden

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

76 files changed

+6976
-326
lines changed

.changes/1.2.0.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
2-
"date": "2019-10-17",
3-
"version": "1.2.0",
4-
"entries": [
5-
{
6-
"type": "Bug Fix",
7-
"description": "Add '--no-interactive' flag to 'sam init' calls when SAM CLI version is greater than or equal to 0.30.0"
8-
},
9-
{
10-
"type": "Feature",
11-
"description": "Added docker network option support for invoking sam applications"
12-
},
13-
{
14-
"type": "Feature",
15-
"description": "Ansi codes are removed from text shown in the Output tab when Locally Invoking Lambda handlers"
16-
},
17-
{
18-
"type": "Feature",
19-
"description": "Adding support for SAM CLI 0.30.0 features in `sam init`: --app-template and --dependency-manager"
20-
},
21-
{
22-
"type": "Feature",
23-
"description": "Bumped maximum (exclusive) supported SAM CLI version from 0.30.0 to 0.40.0."
24-
}
25-
]
26-
}
2+
"date": "2019-10-17",
3+
"version": "1.2.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "Add '--no-interactive' flag to 'sam init' calls when SAM CLI version is greater than or equal to 0.30.0"
8+
},
9+
{
10+
"type": "Feature",
11+
"description": "Added docker network option support for invoking sam applications"
12+
},
13+
{
14+
"type": "Feature",
15+
"description": "Ansi codes are removed from text shown in the Output tab when Locally Invoking Lambda handlers"
16+
},
17+
{
18+
"type": "Feature",
19+
"description": "Adding support for SAM CLI 0.30.0 features in `sam init`: --app-template and --dependency-manager"
20+
},
21+
{
22+
"type": "Feature",
23+
"description": "Bumped maximum (exclusive) supported SAM CLI version from 0.30.0 to 0.40.0."
24+
}
25+
]
26+
}

.changes/1.3.0.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"date": "2019-11-22",
3-
"version": "1.3.0",
4-
"entries": [
5-
{
6-
"type": "Bug Fix",
7-
"description": "AWS Explorer now shows a node indicating when CloudFormation Stacks cannot be found in a region"
8-
},
9-
{
10-
"type": "Bug Fix",
11-
"description": "AWS Explorer now sorts the resources that belong to each CloudFormation Stack"
12-
},
13-
{
14-
"type": "Bug Fix",
15-
"description": "AWS Explorer now shows a node indicating when Lambda Functions cannot be found in a region"
16-
},
17-
{
18-
"type": "Feature",
19-
"description": "CDK projects can now be visualized with the CDK Explorer"
20-
}
21-
]
22-
}
2+
"date": "2019-11-22",
3+
"version": "1.3.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "AWS Explorer now shows a node indicating when CloudFormation Stacks cannot be found in a region"
8+
},
9+
{
10+
"type": "Bug Fix",
11+
"description": "AWS Explorer now sorts the resources that belong to each CloudFormation Stack"
12+
},
13+
{
14+
"type": "Bug Fix",
15+
"description": "AWS Explorer now shows a node indicating when Lambda Functions cannot be found in a region"
16+
},
17+
{
18+
"type": "Feature",
19+
"description": "CDK projects can now be visualized with the CDK Explorer"
20+
}
21+
]
22+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Feature",
3+
"description": "Added support for Amazon EventBridge schema registry, making it easy to discover and write code for events in EventBridge"
4+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ node_modules
88
telemetryCache
99
quickStart.html
1010
.gitcommit
11+
media/libs/lodash.min.js
1112

1213
# Auto generated Service Clients
14+
#TODO: remove-when-schema-sdk-launched
15+
src/shared/schemas/clientschemas.d.ts*
1316
src/shared/telemetry/clienttelemetry.d.ts

build-scripts/bundleDeps.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ const JS_DEPS = [
1111
{
1212
name: 'vue.min.js',
1313
path: 'vue/dist/vue.min.js'
14+
},
15+
{
16+
name: 'lodash.min.js',
17+
path: 'lodash/lodash.min.js'
1418
}
1519
]
1620
const WORKING_DIR = path.join(__dirname, '..')

build-scripts/copyNonCodeFiles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const outRoot = path.join(repoRoot, 'out')
1313

1414
// May be individual files or entire directories.
1515
const relativePaths = [
16-
path.join('src', 'schemas'),
16+
path.join('src', 'templates'),
1717
path.join('src', 'test', 'shared', 'cloudformation', 'yaml'),
1818
path.join('src', 'integrationTest-samples')
1919
]

build-scripts/generateServiceClient.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,10 @@ ${fileContents}
189189
// tslint:disable-next-line:no-floating-promises
190190
;(async () => {
191191
const serviceClientDefinitions: ServiceClientDefinition[] = [
192+
{
193+
serviceJsonPath: 'src/shared/schemas/service-2.json',
194+
serviceName: 'ClientSchemas'
195+
},
192196
{
193197
serviceJsonPath: 'src/shared/telemetry/service-2.json',
194198
serviceName: 'ClientTelemetry'

0 commit comments

Comments
 (0)