Skip to content

Releases: crunchyroll/ef-open

Fix temp-file creation/deletion bug

10 Jan 22:29
ba1898a
Compare
Choose a tag to compare
0.7.1

update local test-file creation and deletion (#97)

Linting

10 Jan 19:29
732fc1a
Compare
Choose a tag to compare

Adds cfn-lint to ef-cf and json/yaml linting to ef-resolve-config

Actually publish the stack termination protection feature

09 Jan 01:40
b87390c
Compare
Choose a tag to compare

The previous version never made it because of the unit tests failure.

stack termination protection feature

08 Jan 21:38
683b0c1
Compare
Choose a tag to compare

Enables stack termination protection now based on the envs specified in ef_site_config.yml

Allow Jenkins Master to use boto profiles

04 Jan 23:46
c962031
Compare
Choose a tag to compare
use profile on jenkins master (#93)

* use profile on jenkins master

* remove nested logic

Added CAPABILITY_AUTO_EXPAND

19 Dec 02:58
7e31c67
Compare
Choose a tag to compare

This allows ef-cf to handle cloudfomation macros.

Add ignore-checks to ef-cf --lint

14 Dec 01:16
60994c7
Compare
Choose a tag to compare
fix ef-password to pass tests. (#89)

`ef-password --length 10` is technically valid, so making the excluseive set of --secret_file, --decrypt, and --plaintext be required was a bad assumption.

Support KMS keys for aws_fixtures and ef-cf --lint support

13 Dec 21:57
b03898a
Compare
Choose a tag to compare

Support KMS keys for aws_fixtures and ef-cf --lint support

Updated unit tests for cognito

11 Dec 22:01
8ae97f1
Compare
Choose a tag to compare

Forgot to update unit tests for cognito lookup.

Fixed return value of cognito lookup

11 Dec 19:46
7456764
Compare
Choose a tag to compare

use to return this

return "arn:aws:cognito-identity:${{AWS::Region}}:${{AWS::AccountId}}:identitypool/{}".format(identity_pool_id)

now returns this
return "arn:aws:cognito-identity:{{{{REGION}}}}:{{{{ACCOUNT}}}}:identitypool/{}".format(identity_pool_id)

relieves the pain of debugging on the user end in cloudformation on why it doesn't work if they don't put it in Fn::Subs in the old version.