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

added disable_access_control attribute to block documentation #485

Merged
merged 28 commits into from
Apr 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ab82738
added disable_access_control attribute to block documentation
Apr 13, 2022
50002f9
'tuple of string' -> 'tuple (string)' with allowed_methods
Apr 14, 2022
09e57e8
'list' -> 'tuple (string)' with hosts
Apr 14, 2022
ee3f54e
'list' -> 'tuple (string)' with paths
Apr 14, 2022
e4737b4
'list of number' -> 'tuple (number)' with expected_status
Apr 14, 2022
7523084
'map, list' -> 'object, tuple' with json_body
Apr 14, 2022
fa93daf
'list' -> 'string or tuple (string)' with allowed_origins
Apr 14, 2022
2030642
'string' -> 'tuple (string)' with array_attributes
Apr 14, 2022
8482c0b
'list' -> 'tuple (string)' with accept_forwarded_url
Apr 14, 2022
25b01e5
'list' -> 'tuple (string)' with https_dev_proxy
Apr 14, 2022
cbecfdc
'object' -> 'object (string)' with beta_required_permission
Apr 14, 2022
a826e9a
'tuple of string' -> 'tuple (string)' with query.<name> and form_body…
Apr 14, 2022
c45b229
'tuple of string' -> 'tuple (string)' with context.beta_granted_permi…
Apr 14, 2022
fb9b593
fixed default value for hosts
Apr 14, 2022
c840ae0
'map' -> 'object' with custom_log_fields
Apr 14, 2022
aa33acf
'map' -> 'object' with form_body
Apr 14, 2022
4c4da43
'map' -> 'object' with headers
Apr 14, 2022
ad410f8
'map' -> 'object (string)' with beta_permissions_map
Apr 14, 2022
293d396
'map' -> 'object (string)' with beta_roles_map
Apr 14, 2022
06ec633
'map' -> 'object (string)' with environment_variables
Apr 14, 2022
6cc6eec
document json_body instead of json_body.<name> because json_body coul…
Apr 14, 2022
981659b
don't treat []string like []interface, so that cty.ListVal() can be used
Apr 14, 2022
d825310
don't export list conversion function
Apr 14, 2022
162351c
removed unnecessary function call
Apr 14, 2022
8c5ae0a
changelog entry
Apr 14, 2022
26780d6
return ListValEmpty to prevent panic
Apr 14, 2022
c8f2f38
added test for stringListToValue()
Apr 14, 2022
ffa999e
More text fixes
Apr 19, 2022
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Unreleased changes are available as `avenga/couper:edge` container.
* removed `beta_operation_denied` and `beta_scope` [error types](./docs/ERRORS.md#api-and-endpoint-error-types)
* renamed `beta_insufficient_scope` [error type](./docs/ERRORS.md#api-and-endpoint-error-types) to `beta_insufficient_permissions`
* added `request.context.beta_required_permission` and `request.context.beta_granted_permissions` [request variables](./docs/REFERENCE.md#request)
* Clarified the type of various [attributes/variables](./docs/REFERENCE.md) ([#485](https://github.com/avenga/couper/pull/485))

* **Fixed**
* Keys in object type attribute values are only handled case-insensitively if reasonable (e.g. they represent HTTP methods or header field values) ([#461](https://github.com/avenga/couper/pull/461))
Expand Down
Loading