Skip to content

Commit

Permalink
Merge pull request #182 from aws/releases/0.18.1
Browse files Browse the repository at this point in the history
Releases/0.18.1
  • Loading branch information
ddneilson authored Oct 16, 2020
2 parents c0b9ec3 + d6e880d commit 30f94d2
Show file tree
Hide file tree
Showing 16 changed files with 40 additions and 21 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.18.1](https://github.com/aws/aws-rfdk/compare/v0.18.0...v0.18.1) (2020-10-16)


### Bug Fixes

* **deadline:** remove requirement of aws-sdk in stage-deadline ([3b66c1b](https://github.com/aws/aws-rfdk/commit/3b66c1bd10ff604fdb8523d71097b674b6795520))
* **deadline:** use HTTPS to download index ([c626ba9](https://github.com/aws/aws-rfdk/commit/c626ba945005c841d5f46a45c917e040248b8e93))

## [0.18.0](https://github.com/aws/aws-rfdk/compare/v0.17.0...v0.18.0) (2020-10-13)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
packages=setuptools.find_packages(where="package"),

install_requires=[
"aws-cdk.core==1.57.0",
"aws-rfdk==0.17.0"
"aws-cdk.core==1.66.0",
"aws-rfdk==0.18.1"
],

python_requires=">=3.7",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "all-in-farm-basic",
"version": "0.18.0",
"version": "0.18.1",
"bin": {
"app": "bin/app.js"
},
Expand All @@ -25,7 +25,7 @@
},
"dependencies": {
"@aws-cdk/core": "1.66.0",
"aws-rfdk": "0.18.0",
"aws-rfdk": "0.18.1",
"source-map-support": "^0.5.19"
}
}
8 changes: 4 additions & 4 deletions integ/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "integ",
"version": "0.18.0",
"version": "0.18.1",
"private": false,
"description": "Integration tests for RFDK constructs",
"bin": {
Expand Down Expand Up @@ -66,7 +66,7 @@
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-license-header": "^0.2.0",
"jest": "^26.4.2",
"pkglint": "0.18.0",
"pkglint": "0.18.1",
"ts-jest": "^26.2.0"
},
"dependencies": {
Expand All @@ -81,7 +81,7 @@
"@aws-cdk/aws-s3-assets": "1.66.0",
"@aws-cdk/aws-secretsmanager": "1.66.0",
"@aws-cdk/core": "1.66.0",
"aws-rfdk": "0.18.0",
"aws-rfdk": "0.18.1",
"aws-sdk": "^2.741.0"
},
"peerDependencies": {
Expand All @@ -96,7 +96,7 @@
"@aws-cdk/aws-s3-assets": "1.66.0",
"@aws-cdk/aws-secretsmanager": "1.66.0",
"@aws-cdk/core": "1.66.0",
"aws-rfdk": "0.18.0",
"aws-rfdk": "0.18.1",
"aws-sdk": "^2.741.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion lambda-layers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lambda-layers",
"version": "0.18.0",
"version": "0.18.1",
"private": false,
"description": "Package containing scripts for building and publishing Lambda Layers",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"integ/"
],
"rejectCycles": "true",
"version": "0.18.0"
"version": "0.18.1"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-rfdk-project",
"version": "0.18.0",
"version": "0.18.1",
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
Expand Down
7 changes: 6 additions & 1 deletion packages/aws-rfdk/bin/stage-deadline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ import * as fs from 'fs';
import * as path from 'path';
import * as url from 'url';
import { types } from 'util';
import {IUris, Platform, Product, VersionProvider } from '../lib/core/lambdas/nodejs/version-provider';
import {
IUris,
Platform,
Product,
VersionProvider,
} from '../lib/core/lambdas/nodejs/lib/version-provider';
import { Version } from '../lib/deadline';

const args = process.argv.slice(2);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/

export * from './version-provider';
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import * as fs from 'fs';
import * as http from 'http';
import * as https from 'https';
import * as url from 'url';

export enum Platform {
Expand Down Expand Up @@ -154,7 +155,7 @@ export class VersionProvider {
};

return new Promise((resolve, reject) => {
http.get(options, (res: http.IncomingMessage) => {
https.get(options, (res: http.IncomingMessage) => {
let json = '';

res.on('data', (chunk: any) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
IVersionProviderProperties,
IVersionedUris,
Platform,
} from './version-provider';
} from '../lib/version-provider';


export class VersionProviderResource extends SimpleCustomResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@
*/

export * from './handler';
export * from './version-provider';
6 changes: 3 additions & 3 deletions packages/aws-rfdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-rfdk",
"version": "0.18.0",
"version": "0.18.1",
"private": false,
"description": "Package for core render farm constructs",
"main": "lib/index.js",
Expand Down Expand Up @@ -70,9 +70,9 @@
"@types/sinon": "^9.0.8",
"aws-sdk": "^2.741.0",
"aws-sdk-mock": "^5.1.0",
"cdk-build-tools": "0.18.0",
"cdk-build-tools": "0.18.1",
"dynalite": "^3.2.1",
"pkglint": "0.18.0",
"pkglint": "0.18.1",
"sinon": "^9.2.0"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions tools/cdk-build-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cdk-build-tools",
"private": true,
"version": "0.18.0",
"version": "0.18.1",
"description": "Tools package with shared build scripts for CDK packages",
"main": "lib/index.js",
"repository": {
Expand Down Expand Up @@ -38,7 +38,7 @@
"@types/jest": "^26.0.10",
"@types/yargs": "^15.0.7",
"eslint-plugin-license-header": "^0.2.0",
"pkglint": "0.18.0"
"pkglint": "0.18.1"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
Expand Down
2 changes: 1 addition & 1 deletion tools/pkglint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pkglint",
"version": "0.18.0",
"version": "0.18.1",
"private": true,
"description": "Validate and fix package.json files",
"main": "lib/index.js",
Expand Down

0 comments on commit 30f94d2

Please sign in to comment.