Skip to content

copilot-cli: Release v1.3.0

Compare
Choose a tag to compare
@efekarakus efekarakus released this 02 Mar 18:16
cc48fae

🐛 Bug Fixes

  • Add additional CloudFormation capabilities for deployment stages in your pipeline (#1962)

    We recommend running pipeline update if you have any addons that require Transforms.

  • Limit pipeline names when running pipeline init to 100 characters (#1957)
  • Truncate Docker image tag in the "Build" stage of the pipeline to 128 characters (#1957)

⚡️ Features and enhancements

  • Enable mounting existing EFS volumes (#1971)

    AWS Copilot now supports a new storage field in manifests to share an existing EFS filesystem between services. To learn more check out the developing/storage guide.

    storage:
      volumes:
        fs: 
           path: '/etc/mount1'
           efs:
              id: fs-1234567 
  • Support Bitbucket repositories for pipeline triggers (#1944)

    You can now run pipeline init and choose your Bitbucket repository to trigger your pipeline. 🎉

  • Enable deploying to private subnets and specifying additional security groups (#1979)

    You can now specify a network field to place your tasks in private subnets and add additional security groups.

    network:
      vpc:
        placement: 'public|private'
        security_groups: [sg-1234, ...]