From 51d75a01af5e7d7f41e5df2f222790c8c766bb5d Mon Sep 17 00:00:00 2001 From: Job Guldemeester Date: Fri, 16 Aug 2024 09:56:21 +0200 Subject: [PATCH 1/4] :arrow_up: Updated dependencies --- pubspec.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index e320f5b..7fdb512 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,14 +4,14 @@ version: 1.0.0 homepage: https://github.com/DutchCodingCompany/oauth_chopper environment: - sdk: '>=3.3.0 <4.0.0' + sdk: '>=3.4.0 <4.0.0' dependencies: - chopper: ^8.0.0 - http: ^1.2.1 + chopper: ^8.0.1+1 + http: ^1.2.2 oauth2: ^2.0.2 dev_dependencies: - mocktail: ^1.0.3 - test: ^1.25.2 - very_good_analysis: ^5.1.0 + mocktail: ^1.0.4 + test: ^1.25.7 + very_good_analysis: ^6.0.0 From 29f678d6ff9c49cbfc580e42b1b2d386cf8e9f1f Mon Sep 17 00:00:00 2001 From: Job Guldemeester Date: Fri, 16 Aug 2024 09:59:44 +0200 Subject: [PATCH 2/4] :bookmark: Version bump to 1.0.1 --- CHANGELOG.md | 9 +++++++++ pubspec.yaml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d43a302..a52b7c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.0.1 +- Updated dependencies: + - `sdk` to `>=3.4.0 <4.0.0` + - `chopper` to `8.0.1+1` + - `http` to `1.2.2` + - `mocktail` to `1.0.4` + - `test` to `1.25.7` + - `very_good_analysis` to `6.0.0` + ## 1.0.0 - Updated chopper to v8.0.0 - **BREAKING** Removed oauth_chopper authenticator. Now only the interceptor is needed. diff --git a/pubspec.yaml b/pubspec.yaml index 7fdb512..4e1a1ea 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: oauth_chopper description: Add and manage OAuth2 authentication for your Chopper client. -version: 1.0.0 +version: 1.0.1 homepage: https://github.com/DutchCodingCompany/oauth_chopper environment: From 9e59028985c0d380892b0824cedb3783ed098413 Mon Sep 17 00:00:00 2001 From: Job Guldemeester Date: Fri, 16 Aug 2024 10:58:43 +0200 Subject: [PATCH 3/4] :memo: Updated LICENSE --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 1726c2e..e0165cd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Dutch Coding Company B.V. +Copyright (c) 2024 Dutch Coding Company B.V. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From afd4a7a4d7a99e03e9c554738da070bac00d3365 Mon Sep 17 00:00:00 2001 From: Job Guldemeester Date: Fri, 16 Aug 2024 11:10:41 +0200 Subject: [PATCH 4/4] :rotating_light: Fixed lint --- lib/src/oauth_grant.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/oauth_grant.dart b/lib/src/oauth_grant.dart index cd6c872..6789b7c 100644 --- a/lib/src/oauth_grant.dart +++ b/lib/src/oauth_grant.dart @@ -11,6 +11,8 @@ import 'package:oauth2/oauth2.dart' as oauth; /// - [AuthorizationCodeGrant] /// /// {@endtemplate} +// ignore because we need this interface. +// ignore: one_member_abstracts abstract interface class OAuthGrant { /// {@macro oauth_grant} const OAuthGrant();