Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Apr 6, 2020
1 parent c78278f commit ed23ea7
Show file tree
Hide file tree
Showing 12 changed files with 113 additions and 8 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2020-04-06)


### Bug Fixes

* fix action path name for monorepo, bump dependencies and recompile ([6d6641c](https://github.com/clowdhaus/aws-github-actions/commit/6d6641ccba42395326c28a2f884ac4d06a375384))


### Features

* **all:** initial commit starting off project with base setup of yarn workspaces, lerna, and ncc ([3f2904a](https://github.com/clowdhaus/aws-github-actions/commit/3f2904a44bc130d2e002b93b45a725d903c991c4))
* **awscli:** make awscli internal package into an action as well, general purpose use of the awscli ([f5f6b5a](https://github.com/clowdhaus/aws-github-actions/commit/f5f6b5abef7e73e852221ad86ba23cec0305214d))
* **cloudfront:** initial implementation of CloudFront cache invalidation action ([47f0063](https://github.com/clowdhaus/aws-github-actions/commit/47f0063cc864085f0d5e48548413a09d7788eb71))
* **s3:** break out awscli from S3 sync to stand on its own ([48de053](https://github.com/clowdhaus/aws-github-actions/commit/48de0535480795e9a45af0f4b64ad7ed68c1c46a))
* **s3:** implement S3 sync using awscli cached locally, no support in javascript sdk ([6ea5d6c](https://github.com/clowdhaus/aws-github-actions/commit/6ea5d6c26865e91e524a90dda7b8a126d8fc96cf))
* **sts:** implment action for setting up IAM credentials in workflow environment ([6d69c04](https://github.com/clowdhaus/aws-github-actions/commit/6d69c045cfc277432d791a7100a9a89168f56225))





# 0.2.0 (2020-03-07)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"useWorkspaces": true,
"npmClient": "yarn",
"version": "0.2.0"
"version": "0.3.0"
}
16 changes: 16 additions & 0 deletions packages/awscli-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2020-04-06)


### Bug Fixes

* fix action path name for monorepo, bump dependencies and recompile ([6d6641c](https://github.com/clowdhaus/aws-github-actions/commit/6d6641ccba42395326c28a2f884ac4d06a375384))


### Features

* **awscli:** make awscli internal package into an action as well, general purpose use of the awscli ([f5f6b5a](https://github.com/clowdhaus/aws-github-actions/commit/f5f6b5abef7e73e852221ad86ba23cec0305214d))





# 0.2.0 (2020-03-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/awscli-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-github-actions/awscli-core",
"version": "0.2.0",
"version": "0.3.0",
"description": "Wrapper module for awscli",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
17 changes: 17 additions & 0 deletions packages/awscli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2020-04-06)


### Bug Fixes

* fix action path name for monorepo, bump dependencies and recompile ([6d6641c](https://github.com/clowdhaus/aws-github-actions/commit/6d6641ccba42395326c28a2f884ac4d06a375384))


### Features

* **awscli:** make awscli internal package into an action as well, general purpose use of the awscli ([f5f6b5a](https://github.com/clowdhaus/aws-github-actions/commit/f5f6b5abef7e73e852221ad86ba23cec0305214d))
* **s3:** break out awscli from S3 sync to stand on its own ([48de053](https://github.com/clowdhaus/aws-github-actions/commit/48de0535480795e9a45af0f4b64ad7ed68c1c46a))





# 0.2.0 (2020-03-07)


Expand Down
4 changes: 2 additions & 2 deletions packages/awscli/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@aws-github-actions/awscli",
"version": "0.2.0",
"version": "0.3.0",
"description": "Wrapper for awscli",
"main": "index.ts",
"dependencies": {
"@aws-github-actions/awscli-core": "^0.2.0",
"@aws-github-actions/awscli-core": "^0.3.0",
"string-argv": "^0.3.1"
},
"scripts": {
Expand Down
17 changes: 17 additions & 0 deletions packages/cloudfront_invalidate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2020-04-06)


### Bug Fixes

* fix action path name for monorepo, bump dependencies and recompile ([6d6641c](https://github.com/clowdhaus/aws-github-actions/commit/6d6641ccba42395326c28a2f884ac4d06a375384))


### Features

* **awscli:** make awscli internal package into an action as well, general purpose use of the awscli ([f5f6b5a](https://github.com/clowdhaus/aws-github-actions/commit/f5f6b5abef7e73e852221ad86ba23cec0305214d))
* **s3:** break out awscli from S3 sync to stand on its own ([48de053](https://github.com/clowdhaus/aws-github-actions/commit/48de0535480795e9a45af0f4b64ad7ed68c1c46a))





# 0.2.0 (2020-03-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/cloudfront_invalidate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-github-actions/cloudfront-invalidate",
"version": "0.2.0",
"version": "0.3.0",
"description": "Initiate CloudFront cache invalidation",
"main": "index.ts",
"dependencies": {
Expand Down
17 changes: 17 additions & 0 deletions packages/iam_access_credentials/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2020-04-06)


### Bug Fixes

* fix action path name for monorepo, bump dependencies and recompile ([6d6641c](https://github.com/clowdhaus/aws-github-actions/commit/6d6641ccba42395326c28a2f884ac4d06a375384))


### Features

* **awscli:** make awscli internal package into an action as well, general purpose use of the awscli ([f5f6b5a](https://github.com/clowdhaus/aws-github-actions/commit/f5f6b5abef7e73e852221ad86ba23cec0305214d))
* **s3:** break out awscli from S3 sync to stand on its own ([48de053](https://github.com/clowdhaus/aws-github-actions/commit/48de0535480795e9a45af0f4b64ad7ed68c1c46a))





# 0.2.0 (2020-03-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/iam_access_credentials/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-github-actions/iam-access-credentials",
"version": "0.2.0",
"version": "0.3.0",
"description": "Configure AWS IAM access credentials for use with the AWS CLI and AWS SDKs",
"main": "index.ts",
"dependencies": {
Expand Down
17 changes: 17 additions & 0 deletions packages/s3_sync/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2020-04-06)


### Bug Fixes

* fix action path name for monorepo, bump dependencies and recompile ([6d6641c](https://github.com/clowdhaus/aws-github-actions/commit/6d6641ccba42395326c28a2f884ac4d06a375384))


### Features

* **awscli:** make awscli internal package into an action as well, general purpose use of the awscli ([f5f6b5a](https://github.com/clowdhaus/aws-github-actions/commit/f5f6b5abef7e73e852221ad86ba23cec0305214d))
* **s3:** break out awscli from S3 sync to stand on its own ([48de053](https://github.com/clowdhaus/aws-github-actions/commit/48de0535480795e9a45af0f4b64ad7ed68c1c46a))





# 0.2.0 (2020-03-07)


Expand Down
4 changes: 2 additions & 2 deletions packages/s3_sync/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@aws-github-actions/s3-sync",
"version": "0.2.0",
"version": "0.3.0",
"description": "Sync locally generated artifacts to an S3 bucket",
"main": "index.ts",
"dependencies": {
"@aws-github-actions/awscli-core": "^0.2.0",
"@aws-github-actions/awscli-core": "^0.3.0",
"string-argv": "^0.3.1"
},
"scripts": {
Expand Down

0 comments on commit ed23ea7

Please sign in to comment.