Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8a3e590

Browse files
committed
Release 1.9.5
1 parent 99fd7a4 commit 8a3e590

3 files changed

Lines changed: 50 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
## 1.9.5 (2017-07-26)
2+
- Add support for latest Cloudwatch alarms properties (#694)
3+
- Raise ValueError for Outputs and Mappings - Fix Issue #732 (#733)
4+
- Add AWS::EMR::SecurityConfiguration support (#738)
5+
- Create CODE_OF_CONDUCT.md (#740)
6+
- Added UsagePlans to API Gateway example (#741)
7+
- EMR AutoScaling Complex Validation and Introduction of an ignore validator type (#743)
8+
- Add PrivilegedMode option to CodeBuild Environments (#744)
9+
- EFS DependsOn Ref to object fix (#746)
10+
- README - add syntax highlighting (#747)
11+
- Make handling of DependsOn more pythonic (#748)
12+
- Accept Join type as parameter default value as it returns a string (#752)
13+
- AWS SAM support (#754)
14+
- Fixed UsagePlan example to proper Ref (#755)
15+
- Fix cognito StringAttributeConstraints property names (Fixes #756)
16+
- Add 'SourceAuth' property to CodeBuild Source (#758)
17+
- Make it easier to get at hidden attributes (Fixes #760)
18+
- Size/IOPS should be positive_integers (#761)
19+
- Check that FIFO Queues end with .fifo (#757)
20+
- Add AWS::CloudWatch::Dashboard (Fixes #763)
21+
- Ulimit's HardLimit and SoftLimit validator change (#764)
22+
- Adding EgressOnlyInternetGateway to EC2::Route (#765)
23+
- Allow passing in a dict into DashboardBody (#767)
24+
- Handle SQS QueueName using an AWSHelperFn (Fixes #773)
25+
- LifecycleHook NotificationTargetARN and RoleARN are now optional
26+
- Remove RoleArn from Events::Rule and add to Target property
27+
- Add TracingConfig property to AWS::Lambda::Function
28+
- Add Tags to some RedShift resources
29+
- Add AWS::ApiGateway::DomainName
30+
- Add AWS::EC2::EgressOnlyInternetGateway
31+
- Add AWS::EMR::InstanceFleetConfig
32+
- Add BinaryMediaTypes to ApiGateway::RestApi
33+
- Add TargetTrackingScalingPolicyConfiguration
34+
- Add TrailName to CloudTrail::Trail
35+
- Add AlarmConfiguration and TriggerConfigurations
36+
- Add Tags and TimeToLiveSpecification to DynamoDB::Table
37+
- Add RetentionPeriodHours to Kinesis::Stream
38+
- Add ReplicationSourceIdentifier to RDS::DBCluster
39+
- Add LoggingProperties to Redshift::Cluster
40+
- Add AWS Database Migration Service (DMS) support
41+
- Add test target to Makefile
42+
- Make it easier to download the latest CF resource spec
43+
- Added and reverted out of this release:
44+
- Fix pycodestyle issue in tests/test_yaml.py
45+
- Output yaml (to_yaml) using cfn_flip (Fixes #567)
46+
- Special case If during parameter checking (Fixes #772)
47+
- Raise TypeError when a scaler AWSHelperFn is used in a list context (#751)
48+
149
## 1.9.4 (2017-06-04)
250
- Fix typo in S3_Bucket.py example (#696)
351
- Added .Ref & .GetAtt helper methods (#697)

setup.py

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

33
setup(
44
name='troposphere',
5-
version='1.9.4',
5+
version='1.9.5',
66
description="AWS CloudFormation creation library",
77
author="Mark Peek",
88
author_email="[email protected]",

troposphere/__init__.py

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

1313
from . import validators
1414

15-
__version__ = "1.9.4"
15+
__version__ = "1.9.5"
1616

1717
# constants for DeletionPolicy
1818
Delete = 'Delete'

0 commit comments

Comments
 (0)