Skip to content

Commit 87d11e8

Browse files
committed
bump to v0.5.0
1 parent d19c08b commit 87d11e8

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.0] - 2020-12-02
10+
### Added
11+
- [Support Library] Queue to avoid throttling of internal AWS API calls (#30)
12+
- [Support Library] Optional use of worker threads for performance reasons (#30)
13+
14+
### Changed
15+
- [Support Library] Increase default options for util inspect so that deep objects are also printed (#27)
16+
- [Support Library] Expose the model type reference in the resource class (#27)
17+
18+
### Fixed
19+
- [Support Library] Expired security token when logging config enabled (#31) (#30)
20+
921
## [0.4.0] - 2020-10-11
1022
### Added
1123
- [Support Library] Pass a logger interface to the handlers (#26)
@@ -94,7 +106,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
94106
- [Support Library] Base Model class as well as Progress Event class (#2)
95107

96108

97-
[Unreleased]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.4.0...HEAD
109+
[Unreleased]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.5.0...HEAD
110+
[0.5.0]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.4.0...v0.5.0
98111
[0.4.0]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.3.3...v0.4.0
99112
[0.3.3]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.3.2...v0.3.3
100113
[0.3.2]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.3.1...v0.3.2

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cfn-rpdk",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "The CloudFormation Resource Provider Development Kit (RPDK) allows you to author your own resource providers that can be used by CloudFormation. This plugin library helps to provide runtime bindings for the execution of your providers by CloudFormation.",
55
"private": false,
66
"main": "dist/index.js",

python/rpdk/typescript/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import logging
22

3-
__version__ = "0.4.0"
3+
__version__ = "0.5.0"
44

55
logging.getLogger(__name__).addHandler(logging.NullHandler())

python/rpdk/typescript/codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
EXECUTABLE = "cfn"
2525
SUPPORT_LIB_NAME = "cfn-rpdk"
26-
SUPPORT_LIB_VERSION = "0.4.0"
26+
SUPPORT_LIB_VERSION = "0.5.0"
2727
MAIN_HANDLER_FUNCTION = "TypeFunction"
2828
REPO_URL = "https://github.com/eduardomourar/cloudformation-cli-typescript-plugin"
2929
REPO_RELEASE_SUFFIX = f"v{SUPPORT_LIB_VERSION}/cfn-rpdk-{SUPPORT_LIB_VERSION}.tgz"

0 commit comments

Comments
 (0)