Skip to content

Commit b542c73

Browse files

File tree

27 files changed

+149
-48
lines changed

27 files changed

+149
-48
lines changed

CHANGELOG.md

+52
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,58 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2024-03-01
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`oidc` - `v0.5.1`](#oidc---v051)
19+
- [`oidc_core` - `v0.6.1`](#oidc_core---v061)
20+
- [`oidc_default_store` - `v0.2.0+7`](#oidc_default_store---v0207)
21+
- [`oidc_desktop` - `v0.2.0+7`](#oidc_desktop---v0207)
22+
- [`oidc_android` - `v0.3.1+1`](#oidc_android---v0311)
23+
- [`oidc_linux` - `v0.3.0+7`](#oidc_linux---v0307)
24+
- [`oidc_flutter_appauth` - `v0.2.0+7`](#oidc_flutter_appauth---v0207)
25+
- [`oidc_ios` - `v0.3.0+7`](#oidc_ios---v0307)
26+
- [`oidc_macos` - `v0.3.0+7`](#oidc_macos---v0307)
27+
- [`oidc_platform_interface` - `v0.3.1+1`](#oidc_platform_interface---v0311)
28+
- [`oidc_web` - `v0.3.1+1`](#oidc_web---v0311)
29+
- [`oidc_windows` - `v0.3.1+1`](#oidc_windows---v0311)
30+
31+
Packages with dependency updates only:
32+
33+
> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
34+
35+
- `oidc_default_store` - `v0.2.0+7`
36+
- `oidc_desktop` - `v0.2.0+7`
37+
- `oidc_android` - `v0.3.1+1`
38+
- `oidc_linux` - `v0.3.0+7`
39+
- `oidc_flutter_appauth` - `v0.2.0+7`
40+
- `oidc_ios` - `v0.3.0+7`
41+
- `oidc_macos` - `v0.3.0+7`
42+
- `oidc_platform_interface` - `v0.3.1+1`
43+
- `oidc_web` - `v0.3.1+1`
44+
- `oidc_windows` - `v0.3.1+1`
45+
46+
---
47+
48+
#### `oidc` - `v0.5.1`
49+
50+
- **FEAT**: Support overriding the discovery document.
51+
- **FEAT**: added `events` stream to `OidcUserManager`.
52+
53+
#### `oidc_core` - `v0.6.1`
54+
55+
- **FEAT**: Support overriding the discovery document.
56+
57+
658
## 2023-10-15
759

860
### Changes

packages/oidc/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.5.1
2+
3+
- **FEAT**: Support overriding the discovery document.
4+
- **FEAT**: added `events` stream to `OidcUserManager`.
5+
16
## 0.5.0+1
27

38
- **DOCS**: added `sessionManagementSettings` to the wiki.

packages/oidc/example/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ dependencies:
1717
logging: ^1.2.0
1818
oidc:
1919
path: ../
20-
oidc_core: ^0.6.0
21-
oidc_default_store: ^0.2.0+6
20+
oidc_core: ^0.6.1
21+
oidc_default_store: ^0.2.0+7
2222
url_strategy: ^0.2.0
2323

2424
dev_dependencies:

packages/oidc/pubspec.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc
22
description: A comprehensive OpenIdConnect plugin that works on all platforms (android, ios, windows, linux, web, macos)
3-
version: 0.5.0+1
3+
version: 0.5.1
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc
55
topics: ['oidc', 'openidconnect', 'oauth', 'authentication']
66
homepage: https://bdaya-dev.github.io/oidc/
@@ -27,14 +27,14 @@ dependencies:
2727
flutter:
2828
sdk: flutter
2929
# Endorsed packages
30-
oidc_android: ^0.3.1
31-
oidc_core: ^0.6.0
32-
oidc_ios: ^0.3.0+6
33-
oidc_linux: ^0.3.0+6
34-
oidc_macos: ^0.3.0+6
35-
oidc_platform_interface: ^0.3.1
36-
oidc_web: ^0.3.1
37-
oidc_windows: ^0.3.1
30+
oidc_android: ^0.3.1+1
31+
oidc_core: ^0.6.1
32+
oidc_ios: ^0.3.0+7
33+
oidc_linux: ^0.3.0+7
34+
oidc_macos: ^0.3.0+7
35+
oidc_platform_interface: ^0.3.1+1
36+
oidc_web: ^0.3.1+1
37+
oidc_windows: ^0.3.1+1
3838
# ====================
3939
http: ^1.1.0
4040
jose_plus: ^0.4.3

packages/oidc_android/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.1+1
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.3.1
26

37
- **FEAT**: implement the session management spec.

packages/oidc_android/example/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ dependencies:
1515
logging: ^1.2.0
1616
oidc_android:
1717
path: ../
18-
oidc_core: ^0.6.0
19-
oidc_default_store: ^0.2.0+6
20-
oidc_platform_interface: ^0.3.1
18+
oidc_core: ^0.6.1
19+
oidc_default_store: ^0.2.0+7
20+
oidc_platform_interface: ^0.3.1+1
2121
url_strategy: ^0.2.0
2222

2323
dev_dependencies:

packages/oidc_android/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_android
22
description: Android implementation of the oidc plugin
3-
version: 0.3.1
3+
version: 0.3.1+1
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_android
55
homepage: https://bdaya-dev.github.io/oidc/
66

@@ -21,9 +21,9 @@ dependencies:
2121
flutter:
2222
sdk: flutter
2323
flutter_appauth: ^6.0.2
24-
oidc_core: ^0.6.0
25-
oidc_flutter_appauth: ^0.2.0+6
26-
oidc_platform_interface: ^0.3.1
24+
oidc_core: ^0.6.1
25+
oidc_flutter_appauth: ^0.2.0+7
26+
oidc_platform_interface: ^0.3.1+1
2727

2828
dev_dependencies:
2929
flutter_test:

packages/oidc_core/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.1
2+
3+
- **FEAT**: Support overriding the discovery document.
4+
15
## 0.6.0+1
26

37
- **DOCS**: fixed docs link.

packages/oidc_core/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_core
22
description: A dart package containing models and helpers for OpenId Connect spec.
3-
version: 0.6.0+1
3+
version: 0.6.1
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_core
55
topics: ['oidc', 'openidconnect', 'oauth', 'authentication']
66
homepage: https://bdaya-dev.github.io/oidc/

packages/oidc_default_store/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.0+7
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.2.0+6
26

37
- Update a dependency to the latest release.

packages/oidc_default_store/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_default_store
22
description: The default OidcStore implementation for package:oidc
3-
version: 0.2.0+6
3+
version: 0.2.0+7
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_default_store
55
homepage: https://bdaya-dev.github.io/oidc/
66
environment:
@@ -13,7 +13,7 @@ dependencies:
1313
sdk: flutter
1414
flutter_secure_storage: ^9.0.0
1515
logging: ^1.2.0
16-
oidc_core: ^0.6.0
16+
oidc_core: ^0.6.1
1717
shared_preferences: ^2.2.1
1818
universal_html: ^2.2.3
1919
dev_dependencies:

packages/oidc_desktop/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.0+7
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.2.0+6
26

37
- Update a dependency to the latest release.

packages/oidc_desktop/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_desktop
22
description: Base Implementation for oidc_* desktop plugins (mainly windows/linux)
3-
version: 0.2.0+6
3+
version: 0.2.0+7
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_flutter_appauth
55
homepage: https://bdaya-dev.github.io/oidc/
66
environment:
@@ -11,9 +11,9 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
logging: ^1.2.0
14-
oidc_core: ^0.6.0
14+
oidc_core: ^0.6.1
1515
oidc_loopback_listener: ^0.2.0
16-
oidc_platform_interface: ^0.3.1
16+
oidc_platform_interface: ^0.3.1+1
1717
url_launcher: ^6.1.14
1818
window_to_front: ^0.0.3
1919
dev_dependencies:

packages/oidc_flutter_appauth/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.0+7
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.2.0+6
26

37
- Update a dependency to the latest release.

packages/oidc_flutter_appauth/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_flutter_appauth
22
description: Base Implementation connecting oidc_* packages with flutter_appauth
3-
version: 0.2.0+6
3+
version: 0.2.0+7
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_flutter_appauth
55
homepage: https://bdaya-dev.github.io/oidc/
66
environment:
@@ -11,8 +11,8 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
flutter_appauth: ^6.0.2
14-
oidc_core: ^0.6.0
15-
oidc_platform_interface: ^0.3.1
14+
oidc_core: ^0.6.1
15+
oidc_platform_interface: ^0.3.1+1
1616

1717

1818
dev_dependencies:

packages/oidc_ios/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.0+7
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.3.0+6
26

37
- Update a dependency to the latest release.

packages/oidc_ios/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_ios
22
description: iOS implementation of the oidc plugin
3-
version: 0.3.0+6
3+
version: 0.3.0+7
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_ios
55
homepage: https://bdaya-dev.github.io/oidc/
66
environment:
@@ -19,9 +19,9 @@ dependencies:
1919
flutter:
2020
sdk: flutter
2121
flutter_appauth: ^6.0.2
22-
oidc_core: ^0.6.0
23-
oidc_flutter_appauth: ^0.2.0+6
24-
oidc_platform_interface: ^0.3.1
22+
oidc_core: ^0.6.1
23+
oidc_flutter_appauth: ^0.2.0+7
24+
oidc_platform_interface: ^0.3.1+1
2525

2626
dev_dependencies:
2727
flutter_test:

packages/oidc_linux/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.0+7
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.3.0+6
26

37
- Update a dependency to the latest release.

packages/oidc_linux/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_linux
22
description: Linux implementation of the oidc plugin
3-
version: 0.3.0+6
3+
version: 0.3.0+7
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_linux
55
homepage: https://bdaya-dev.github.io/oidc/
66
environment:
@@ -19,9 +19,9 @@ dependencies:
1919
flutter:
2020
sdk: flutter
2121
logging: ^1.2.0
22-
oidc_core: ^0.6.0
23-
oidc_desktop: ^0.2.0+6
24-
oidc_platform_interface: ^0.3.1
22+
oidc_core: ^0.6.1
23+
oidc_desktop: ^0.2.0+7
24+
oidc_platform_interface: ^0.3.1+1
2525

2626
dev_dependencies:
2727
flutter_test:

packages/oidc_macos/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.0+7
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.3.0+6
26

37
- Update a dependency to the latest release.

packages/oidc_macos/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_macos
22
description: MacOS implementation of the oidc plugin
3-
version: 0.3.0+6
3+
version: 0.3.0+7
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_macos
55
homepage: https://bdaya-dev.github.io/oidc/
66
environment:
@@ -19,9 +19,9 @@ dependencies:
1919
flutter:
2020
sdk: flutter
2121
flutter_appauth: ^6.0.2
22-
oidc_core: ^0.6.0
23-
oidc_flutter_appauth: ^0.2.0+6
24-
oidc_platform_interface: ^0.3.1
22+
oidc_core: ^0.6.1
23+
oidc_flutter_appauth: ^0.2.0+7
24+
oidc_platform_interface: ^0.3.1+1
2525

2626
dev_dependencies:
2727
flutter_test:

packages/oidc_platform_interface/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.1+1
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.3.1
26

37
- **FEAT**: implement the session management spec.

packages/oidc_platform_interface/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_platform_interface
22
description: A common platform interface for the oidc plugin.
3-
version: 0.3.1
3+
version: 0.3.1+1
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_platform_interface
55
homepage: https://bdaya-dev.github.io/oidc/
66
environment:
@@ -10,7 +10,7 @@ dependencies:
1010
flutter:
1111
sdk: flutter
1212
json_annotation: ^4.8.1
13-
oidc_core: ^0.6.0
13+
oidc_core: ^0.6.1
1414
plugin_platform_interface: ^2.1.0
1515

1616
dev_dependencies:

packages/oidc_web/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.1+1
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.3.1
26

37
- **FEAT**: implement the session management spec.

packages/oidc_web/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oidc_web
22
description: Web implementation of the oidc plugin
3-
version: 0.3.1
3+
version: 0.3.1+1
44
repository: https://github.com/Bdaya-Dev/oidc/tree/main/packages/oidc_web
55
homepage: https://bdaya-dev.github.io/oidc/
66
environment:
@@ -22,8 +22,8 @@ dependencies:
2222
sdk: flutter
2323
js: '>=0.6.6 <1.0.0'
2424
logging: ^1.2.0
25-
oidc_core: ^0.6.0
26-
oidc_platform_interface: ^0.3.1
25+
oidc_core: ^0.6.1
26+
oidc_platform_interface: ^0.3.1+1
2727
rxdart: ^0.27.7
2828
url_launcher: ^6.1.14
2929

packages/oidc_windows/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.1+1
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.3.1
26

37
- **FEAT**: implement the session management spec.

0 commit comments

Comments
 (0)