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

Update vexana version to 5.0.1 and dio version to 5.7.0 Vexana not su… #116

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
22 changes: 16 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,29 @@
# [5.0.0]

- Added new method for sending request it is enable to "fold" option for every response

# [5.0.1]

- Fixed [#115](https://github.com/VB10/vexana/issues/115)

# [4.1.0]
- Refresh Token Dart Code example update #106 from @behzodfaiziev
- fix formData finalized exception #105 from @aligconnectinno
- Refactor NetworkManagerErrorInterceptor to handle null onResponseParse #100 from @aligconnectinno
- updated issue_tracker link #94 from @behzodfaiziev
- Updated unit test capabilities


- Refresh Token Dart Code example update #106 from @behzodfaiziev
- fix formData finalized exception #105 from @aligconnectinno
- Refactor NetworkManagerErrorInterceptor to handle null onResponseParse #100 from @aligconnectinno
- updated issue_tracker link #94 from @behzodfaiziev
- Updated unit test capabilities

# [4.0.4]

- Removed transformer custom implementation

## [4.0.2]

- Removed unused code with package (Native adapter)

## [4.0.3]

- Updated readme with some invited social media links

## [4.0.1] - 06/04/2024
Expand Down
20 changes: 6 additions & 14 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ packages:
dependency: transitive
description:
name: dio
sha256: e17f6b3097b8c51b72c74c9f071a605c47bcc8893839bd66732457a5ebe73714
sha256: "5598aa796bbf4699afd5c67c0f5f6e2ed542afc956884b9cd58c306966efc260"
url: "https://pub.dev"
source: hosted
version: "5.5.0+1"
version: "5.7.0"
dio_web_adapter:
dependency: transitive
description:
name: dio_web_adapter
sha256: "36c5b2d79eb17cdae41e974b7a8284fec631651d2a6f39a8a2ff22327e90aeac"
sha256: "33259a9276d6cea88774a0000cfae0d861003497755969c92faa223108620dc8"
url: "https://pub.dev"
source: hosted
version: "1.0.1"
version: "2.0.0"
equatable:
dependency: transitive
description:
Expand Down Expand Up @@ -140,10 +140,10 @@ packages:
dependency: transitive
description:
name: leak_tracker_testing
sha256: a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47
sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3"
url: "https://pub.dev"
source: hosted
version: "2.0.1"
version: "3.0.1"
lints:
dependency: transitive
description:
Expand Down Expand Up @@ -412,14 +412,6 @@ packages:
url: "https://pub.dev"
source: hosted
version: "0.5.1"
win32:
dependency: transitive
description:
name: win32
sha256: a79dbe579cb51ecd6d30b17e0cae4e0ea15e2c0e66f69ad4198f22a6789e94f4
url: "https://pub.dev"
source: hosted
version: "5.5.1"
xdg_directories:
dependency: transitive
description:
Expand Down
7 changes: 5 additions & 2 deletions lib/src/feature/adapter/web_adapter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@ import 'package:dio/dio.dart';
/// The function creates and returns an instance of the BrowserHttpClientAdapter
/// class, which implements the HttpClientAdapter
/// interface.
HttpClientAdapter createAdapter({bool isEnableTest = false}) =>
BrowserHttpClientAdapter();
HttpClientAdapter createAdapter({bool isEnableTest = false}) {
final adapter = HttpClientAdapter() as BrowserHttpClientAdapter;
adapter.withCredentials = true;
return adapter;
}
Loading
Loading