Skip to content

Latest commit

 

History

History
113 lines (86 loc) · 4.72 KB

CHANGELOG.md

File metadata and controls

113 lines (86 loc) · 4.72 KB

Cfer Change Log

Next

1.0.0

  • Support for Ruby 3
  • Deps updates
  • Syntactic sugar for exporting values from a Cfn stack

0.8.0

Upgrade to AWS SDK v3

0.7.0

Enhancements

  • Adds Fn::split() and Fn::cidr() from the CloudFormation spec.
  • Changes the return type of the resource function to a Handle object, which eases certain uses of references and attributes.

Bugfixes

  • Fixes an issue with canceling stack updates when specifying a CloudFormation Role ARN.
  • Fixes the git integration that records the current git hash into the stack metadata.

0.6.2

Bugfixes

  • Fixes a Cri compatibility issue, which should have gone out in 0.6.1

0.6.1

Bugfixes

  • Fixes an issue with version pinning of Docile. Docile 1.3 makes breaking changes, so Cfer now pins Docile 1.1.*
  • Removes Yard version specification. There's no particular need to pin yard to a version, and Github reported security problems with the old version.

0.6.0

Enhancements

  • Colorized JSON in generate for more readable output. #41
  • Adds --notification-arns CLI option. #43
  • Adds --role-arn CLI option. #46

Bugfixes

  • Don't dump backtrace when trying to delete a nonexistent stack. #42

0.5.0

BREAKING CHANGES

  • --parameters <name>:<value> option is removed from CLI. Use name=value instead. For example: cfer generate stack.rb parameter_name=parameter_value

Enhancements

  • Adds support for Pre-build and Post-build hooks for resources and stacks.
  • Adds json-to-cfer script to automatically convert json templates to Cfer DSL code.
  • Adds support for directly converging JSON files.
  • Replaces Thor with Cri as a CLI option parser.
  • Relaxes some version constraints to make it easier to integrate with older Rails projects.
  • Pulled stack validation out into an extension using post-build hooks.
  • Adds some extension methods to improve usability of certain resources.
  • Namespace cleanup.
  • Supports reading ruby template from stdin by specifying the filename -
  • Adds exponential backoff to tail command.
  • --on-failure flag is now case insensitive.
  • Removes --pretty-print as a global option and adds --minified to the generate command.
  • Various test improvements.

Bugfixes

  • Fixes "Stack does not exist" error being reported when stack creation fails and --on-failure=DELETE is specified.

0.4.2

Bugfixes

  • Templates now uploaded to S3 in all cases where they should be.
  • Fixes extensions (should be class_eval, not instance_eval)

0.4.0

BREAKING CHANGES

Enhancements

  • Adds support for assume-role authentication with MFA (see: https://docs.aws.amazon.com/cli/latest/userguide/cli-roles.html)
  • Adds support for yml-format parameter files with environment-specific sections.
  • Adds a DSL for IAM policies.
  • Adds cfer estimate command to estimate the cost of a template using the AWS CloudFormation cost estimation API.
  • Enhancements to chef provisioner to allow for references in chef attributes. (Thanks to @eropple)
  • Adds continue/rollback/quit selection when ^C is caught during a converge.
  • Stores Cfer version and Git repo information in the Repo metadata.
  • Added support for uploading templates to S3 with the --s3-path and --force-s3 options.
  • Added new way of extending resources, making plugins easier.
  • Added support for CloudFormation Change Sets via the --change option.

Bugfixes

0.3.0

Enhancements:

  • parameters hash now includes parameters that are set on the existing stack, but not passed in via CLI during a stack update.
  • parameters hash now includes defaults for parameters that were not passed on the CLI during a stack creation.
  • Adds a lookup_output function, for looking up outputs of stacks in the same account+region. (See #8)
  • Adds provisioning for cfn-init and chef-solo, including resource signaling.
  • Adds support for stack policies.
  • Cfer no longer validates parameters itself. CloudFormation will throw an error if something is wrong.
  • Adds release notes to the README.

Bugfixes:

  • Removes automatic parameter mapping in favor of an explicit function available to resources. (Fixes Issue #8)
  • No more double-printing the stack summary when converging a stack with tailing enabled.
  • Update demo to only use 2 AZs, since us-west-1 only has two.
  • AllowedValues attribute on parameters is now an array, not a CSV string. (Thanks to @rlister)

0.2.0

Enhancements:

  • Adds support for including other files via include_template function.
  • Adds basic Dockerfile