Skip to content

Commit

Permalink
fix: update jsii to 0.10.5 (#2482)
Browse files Browse the repository at this point in the history
Fixes another issue related to erasure.
  • Loading branch information
Elad Ben-Israel authored May 6, 2019
1 parent 97e9380 commit e4ec30a
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-glue/lib/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export interface DatabaseProps {
/**
* A Glue database.
*/
export class Database extends Resource {
export class Database extends Resource implements IDatabase {
/**
* Creates a Database construct that represents an external database.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-rds/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ abstract class DatabaseClusterBase extends cdk.Construct implements IDatabaseClu
/**
* Create a clustered database with a given number of instances.
*/
export class DatabaseCluster extends DatabaseClusterBase implements IDatabaseCluster {
export class DatabaseCluster extends DatabaseClusterBase {
/**
* Identifier of the cluster
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-secretsmanager/lib/secret.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ export interface AttachedSecretProps extends AttachedSecretOptions {
/**
* An attached secret.
*/
export class AttachedSecret extends SecretBase implements ISecret {
export class AttachedSecret extends SecretBase {
public readonly encryptionKey?: kms.IEncryptionKey;
public readonly secretArn: string;

Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-ses/lib/receipt-rule-set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ abstract class ReceiptRuleSetBase extends Resource implements IReceiptRuleSet {
/**
* A new receipt rule set.
*/
export class ReceiptRuleSet extends ReceiptRuleSetBase implements IReceiptRuleSet {
export class ReceiptRuleSet extends ReceiptRuleSetBase {
/**
* Import an exported receipt rule set.
*/
Expand Down
42 changes: 21 additions & 21 deletions packages/decdk/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/decdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"@aws-cdk/region-info": "^0.30.0",
"@aws-cdk/runtime-values": "^0.30.0",
"fs-extra": "^7.0.1",
"jsii-reflect": "^0.10.4",
"jsii-reflect": "^0.10.5",
"jsonschema": "^1.2.4",
"yaml": "1.5.0",
"yargs": "^13.2.2"
Expand All @@ -138,7 +138,7 @@
"@types/yaml": "1.0.2",
"@types/yargs": "^13.0.0",
"jest": "^24.7.1",
"jsii": "^0.10.3"
"jsii": "^0.10.5"
},
"keywords": [
"aws",
Expand Down
56 changes: 28 additions & 28 deletions tools/cdk-build-tools/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tools/cdk-build-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
"colors": "^1.3.3",
"fs-extra": "^7.0.1",
"jest": "^24.7.1",
"jsii": "^0.10.4",
"jsii-diff": "^0.10.4",
"jsii-pacmak": "^0.10.4",
"jsii": "^0.10.5",
"jsii-diff": "^0.10.5",
"jsii-pacmak": "^0.10.5",
"nodeunit": "^0.11.3",
"nyc": "^14.0.0",
"pkglint": "^0.30.0",
Expand Down

0 comments on commit e4ec30a

Please sign in to comment.