updated changelog
This commit is contained in:
parent
6a60bc1df3
commit
bce4094134
|
@ -1,5 +1,7 @@
|
||||||
## (WIP) v0.14.0
|
## (WIP) v0.14.0
|
||||||
|
|
||||||
|
- Added _experimental_ Apple OAuth2 integration.
|
||||||
|
|
||||||
- Normalized record values on `maxSelect` field option change (`select`, `file`, `relation`).
|
- Normalized record values on `maxSelect` field option change (`select`, `file`, `relation`).
|
||||||
When changing **from single to multiple** all already inserted single values are converted to an array.
|
When changing **from single to multiple** all already inserted single values are converted to an array.
|
||||||
When changing **from multiple to single** only the last item of the already inserted array items is kept.
|
When changing **from multiple to single** only the last item of the already inserted array items is kept.
|
||||||
|
|
|
@ -35,6 +35,7 @@ type Apple struct {
|
||||||
func NewAppleProvider() *Apple {
|
func NewAppleProvider() *Apple {
|
||||||
return &Apple{
|
return &Apple{
|
||||||
baseProvider: &baseProvider{
|
baseProvider: &baseProvider{
|
||||||
|
scopes: nil, // custom scopes are currently not supported since they require a POST redirect
|
||||||
ctx: context.Background(),
|
ctx: context.Background(),
|
||||||
authUrl: "https://appleid.apple.com/auth/authorize",
|
authUrl: "https://appleid.apple.com/auth/authorize",
|
||||||
tokenUrl: "https://appleid.apple.com/auth/token",
|
tokenUrl: "https://appleid.apple.com/auth/token",
|
||||||
|
|
Loading…
Reference in New Issue