You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,15 @@
1
1
# EAS Python client
2
2
## [0.16.0] - UNRELEASED
3
3
### Breaking Changes
4
-
*None.
4
+
*Updated `WorkPackageConfig` constructor to reorder the parameters and no longer provide a default value for `name`. A `name` must now be provided by the user.
5
5
6
6
### New Features
7
7
* Support specifying a `seed` in `ModelConfig` to allow reproducible scenarios
8
8
* Support for using access tokens for authentication that takes advantage of the new EAS personal access token authentication system.
9
9
10
10
### Enhancements
11
11
* Update requests restrictions to support all version 2 minor versions.
12
+
* Removed check that prevented passing a `client_secret` for "password" grant_type.
assert"You cannot provide both an access_token and client_id, client_id + client_secret, username + password, or token_fetcher."instr(error_message_for_username.value)
443
+
assert"Incompatible arguments passed to connect to secured Evolve App Server. You cannot provide multiple types of authentication. When using an access_token, do not provide client_id, client_secret, username, password, or token_fetcher."instr(
assert"You cannot provide both an access_token and client_id, client_id + client_secret, username + password, or token_fetcher."instr(error_message_for_password.value)
454
+
assert"Incompatible arguments passed to connect to secured Evolve App Server. You cannot provide multiple types of authentication. When using an access_token, do not provide client_id, client_secret, username, password, or token_fetcher."instr(
assert"You cannot provide both an access_token and client_id, client_id + client_secret, username + password, or token_fetcher."instr(error_message_for_username.value)
467
+
assert"Incompatible arguments passed to connect to secured Evolve App Server. You cannot provide multiple types of authentication. When using an access_token, do not provide client_id, client_secret, username, password, or token_fetcher."instr(
assert"You cannot provide both an access_token and client_id, client_id + client_secret, username + password, or token_fetcher."instr(error_message_for_username.value)
480
+
assert"Incompatible arguments passed to connect to secured Evolve App Server. You cannot provide multiple types of authentication. When using an access_token, do not provide client_id, client_secret, username, password, or token_fetcher."instr(
@@ -470,4 +490,5 @@ def test_raises_error_if_access_token_and_client_secret_configured(httpserver: H
470
490
access_token=mock_access_token,
471
491
client_secret=mock_client_secret
472
492
)
473
-
assert"You cannot provide both an access_token and client_id, client_id + client_secret, username + password, or token_fetcher."instr(error_message_for_username.value)
493
+
assert"Incompatible arguments passed to connect to secured Evolve App Server. You cannot provide multiple types of authentication. When using an access_token, do not provide client_id, client_secret, username, password, or token_fetcher."instr(
0 commit comments