Skip to content

Tags: z00dev/copilot-cli

Tags

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
refactor(stack): move transformers from manifest to stack package (aw…

…s#1903)

<!-- Provide summary of changes -->
To avoid a circular dependency and remove `manifest`'s de facto responsibility for the way its structs are used elsewhere, this PR moves all methods of the form:
```go
package manifest

func (s *ManifestStruct) Converter() template.Struct
``` 
to the form
```golang
package stack

func converter(s manifest.ManifestStruct) template.Struct
```

This makes `stack` responsible for the conversion logic and housing default values for fields that can be left unspecified in the manifest.

<!-- Issue number, if available. E.g. "Fixes aws#31", "Addresses aws#42, 77" -->

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore(cli): add task delete validate/ask (aws#1831)

<!-- Provide summary of changes -->
Adds the skeleton of a new `task delete` command with Ask() and Validate() filled in. Tests for Ask() forthcoming, then I'll work on Execute in a separate PR. 

<!-- Issue number, if available. E.g. "Fixes aws#31", "Addresses aws#42, 77" -->

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(storage)!: allow attaching storage resources to jobs via `storage…

… init` (aws#1701)

<!-- Provide summary of changes -->
This PR enables customers to select from the list of services AND jobs when creating a new addons template through Storage Init. 

It also replaces the `--svc/-s` flag with a generic `--for` flag, which may be a breaking change for some customers. 

<!-- Issue number, if available. E.g. "Fixes aws#31", "Addresses aws#42, 77" -->
Addresses aws#1595 

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

v0.7.0

Toggle v0.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
docs(site): fix typo on the homepage: Continous -> Continuous (aws#1676)

<!-- Provide summary of changes -->

Fixes typo on the homepage: Continous / Continuous

<!-- Issue number, if available. E.g. "Fixes aws#31", "Addresses aws#42, 77" -->

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

v0.6.0

Toggle v0.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: downgrade survey to 2.1.1 (aws#1650)

<!-- Provide summary of changes -->

<!-- Issue number, if available. E.g. "Fixes aws#31", "Addresses aws#42, 77" -->

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

v0.5.0

Toggle v0.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
test(e2e): update init test's flags to accomodate for jobs (aws#1564)

_By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
test(integ): add Stickiness to list of expect lb web service params (a…

…ws#1405)

_By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._

v0.3.0

Toggle v0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
test(e2e): fix broken env init e2e test due to flag name change (aws#…

…1266)

<!-- Provide summary of changes -->

<!-- Issue number, if available. E.g. "Fixes aws#31", "Addresses aws#42, 77" -->

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

v0.2.0

Toggle v0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore(repository): add repository package to support building and pus…

…hing images (aws#1161)

This PR adds a repository package that builds and push images to a repository.

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

v0.1.0

Toggle v0.1.0's commit message
feat: tighten permissions on task/execution role

Remove named based resource permissions in task role. Folks can use
addons feature to add arbitrary permissions to their task roles.

Add conditions to execution role to only pull secrets and params
that are tagged with copilot tags.