Skip to content

Commit

Permalink
update v0-v1
Browse files Browse the repository at this point in the history
add --ignore option.
  • Loading branch information
fujiwara committed Jan 27, 2024
1 parent 879a297 commit ac1e5a2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/v0-v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ See also issues and pull requests labeled `v1`.

- `lambroll archive` outputs zip binaries into the `function.zip` file instead of STDOUT. [#327](https://github.com/fujiwara/lambroll/pull/327)
- If you want to output to STDOUT like v1, use `lambroll archive --dest -`.
- `lambroll diff` shows a short unified diff by default. [#328](https://github.com/fujiwara/lambroll/pull/328)
- `--no-unified` option outputs a long unified diff like v1.
- `lambroll diff` shows a short unified diff always. [#328](https://github.com/fujiwara/lambroll/pull/328)
- `--unified` option is removed.

## New features

Expand All @@ -24,6 +24,10 @@ See also issues and pull requests labeled `v1`.
- `lambroll render` renders the function.json file and outputs to STDOUT.
- Accept `LAMBROLL_*` environment variables as flag values. [#345](https://github.com/fujiwara/lambroll/pull/345)
- For example, `lambroll deploy --tfstate=s3://example/terraform.tfstate` is equivalent to `LAMBROLL_TFSTATE=s3://example/terraform.tfstate lambroll deploy`.
- Add `--ignore` option to `deploy` and `diff` command. [#281](https:///github.com/fujiwara/lambroll/pull/281)
- `--ignore` option ignores the specified elements when comparing the local and remote functions.
- For example, `lambroll diff --ignore ".Timeout, .Environment"` ignores the `Timeout` and `Environment` elements when comparing the local and remote functions.
- For example, `lambroll deploy --ignore ".Timeout, .Environment"` does not update the `Timeout` and `Environment` elements of the function.

## Internal changes

Expand Down

0 comments on commit ac1e5a2

Please sign in to comment.