Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AL-1742] Apply filter-via-dot-access-data to RowsOfFields-returning commands #1992

Merged
merged 29 commits into from
Jul 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
af5a9b2
Added filter by filter-via-dot-access-data to reduce number of code line
oubawaleh Jul 15, 2019
c7a3c8e
Added filter by filter-via-dot-access-data to easy maintain code
oubawaleh Jul 15, 2019
f047721
Added new filter option to branch list command
oubawaleh Jul 15, 2019
d832a6d
Added new filter option to domain list command
oubawaleh Jul 15, 2019
bd40021
Added filter option to env list command
oubawaleh Jul 16, 2019
3053d15
Added filter option to the machine-token command
oubawaleh Jul 16, 2019
aaa5f44
Added filter option to the multidev command
oubawaleh Jul 16, 2019
d9a141e
Added filter option to org people list command
oubawaleh Jul 16, 2019
330d3cb
Added filter option to org site list
oubawaleh Jul 16, 2019
db7f536
Added filter option to org upstream list command
oubawaleh Jul 16, 2019
2368ab1
Added filter option to plan list command
oubawaleh Jul 16, 2019
7461d95
Added filter option to site list command
oubawaleh Jul 16, 2019
d5c33fa
added filter option to payment method command
oubawaleh Jul 17, 2019
026213a
Added filter option to reduce maintainability
oubawaleh Jul 18, 2019
0d1e01e
Added filter option to reduce maintainability
oubawaleh Jul 18, 2019
82977c1
Added filter option to reduce code maintainability
oubawaleh Jul 18, 2019
8e92bff
Filter option is not needed for tag:list command
oubawaleh Jul 18, 2019
dd3e046
Added filter option to reduce code maintainability
oubawaleh Jul 18, 2019
7d36589
Added filter option to update:list cmd to reduce code maintainability
oubawaleh Jul 18, 2019
efa413f
Added a test payment method test
oubawaleh Jul 18, 2019
dd8f7c5
Added filter option to list site command
oubawaleh Jul 18, 2019
42d34f6
Added a test payment method test
oubawaleh Jul 18, 2019
7244e4b
Added filter option
oubawaleh Jul 18, 2019
c797ea4
added filter option to en codelog command
oubawaleh Jul 19, 2019
e1d50d5
Updated added options and deprecated options
oubawaleh Jul 19, 2019
2062dd3
Removed the filter option, was not requirement to add an option
oubawaleh Jul 19, 2019
373f04a
Updated heading/subheading to match with the rest of doc
oubawaleh Jul 19, 2019
cca9cee
lint clean up
oubawaleh Jul 19, 2019
6de9c1c
lint clean up
oubawaleh Jul 19, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,38 @@
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org)

## MASTER
### Changed
### Added
- Added `--filter` option to `backup:list` command (#1992)
- Added `--filter` option to `branch:list` command (#1992)
- Added `--filter` option to `domain:list` command (#1992)
- Added `--filter` option to `env:list` command (#1992)
- Added `--filter` option to `multidev:list` command (#1992)
- Added `--filter` option to `org:list` command (#1992)
- Added `--filter` option to `org:people:list` command (#1992)
- Added `--filter` option to `org:site:list` command (#1992)
- Added `--filter` option to `org:upstream:list` command (#1992)
- Added `--filter` option to `payment-method:list` command (#1992)
- Added `--filter` option to `plan:list` command (#1992)
- Added `--filter` option to `site:list` command (#1992)
- Added `--filter` option to `site:org:list` command (#1992)
- Added `--filter` option to `site:team:list` command (#1992)
- Added `--filter` option to `ssh-key:list` command (#1992)
- Added `--filter` option to `upstream:list` command (#1992)
- Added `--filter` option to `upstream:updates:list` command (#1992)

### Deprecated
- `backup:list` `--element=VALUE` option is deprecated. Use `--filter="type=VALUE"` instead. (#1992)
- `site:list` `--framework=VALUE` option is deprecated. Use `--filter="framework=VALUE"` instead. (#1992)
- `site:list` `--name=VALUE` option is deprecated. Use `--filter="name=VALUE"` instead. (#1992)
- `site:list` `--plan=VALUE` option is deprecated. Use `--filter="plan_name=VALUE"` instead. (#1992)
- `org:site:list` `--plan=VALUE` option is deprecated. Use `--filter="plan_name=VALUE"` instead. (#1992)
- `org:site:list` `--tags=VALUE` option is deprecated. Use `--filter="tags=VALUE"` instead. (#1992)
- `org:upstream:list` `--framework=VALUE` option is deprecated. Use `--filter="framework=VALUE"` instead. (#1992)
- `org:upstream:list` `--name=VALUE` option is deprecated. Use `--filter="label=VALUE"` instead. (#1992)
- `upstream:list` `--framework=VALUE` option is deprecated. Use `--filter="framework=VALUE"` instead. (#1992)
- `upstream:list` `--name=VALUE` option is deprecated. Use `--filter="label=VALUE"` instead. (#1992)

### Changed
- `site:info`'s value of the `region` field has been changed to use human-readable region names. (#1985)
- `site:list`'s value of the `region` field has been changed to use human-readable region names. (#1985)

Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"require": {
"php": ">=5.5.38",
"composer/semver": "^1.4",
"consolidation/filter-via-dot-access-data": "^1.0",
"consolidation/output-formatters": "^3.5",
"consolidation/robo": "^1.4.4",
"guzzlehttp/guzzle": "^6.2",
Expand Down
Loading