Skip to content

Commit

Permalink
Merge branch 'master' into docs/update_readme_precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
ahrar-deriv authored Jul 2, 2024
2 parents bc80924 + 93dc49a commit 471e726
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/check_versioning_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
check-version-pr:
runs-on: ubuntu-latest
if: ${{ ! startsWith(github.event.pull_request.title , 'chore(version)') }}
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-07-02

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`deriv_auth` - `v6.7.9`](#deriv_auth---v679)

---

#### `deriv_auth` - `v6.7.9`

- **REFACTOR**(deriv_auth): Replace uni_links2 with app_links ([#664](https://github.com/regentmarkets/flutter-deriv-packages/issues/664)). ([f99554bc](https://github.com/regentmarkets/flutter-deriv-packages/commit/f99554bc134b7fe7fe0b3f5bf7555728868176c9))


## 2024-07-02

### Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ curl --fail -o $HOME/.git/hooks/commit-msg $HOME/Downloads/commit-msg \

## Using the packages

Each package has been released as git tag with convention as **packageName-vVersionNumber**`(Example: deriv_auth-v6.7.8)`. To use the package, add the following to your pubspec.yaml file:
Each package has been released as git tag with convention as **packageName-vVersionNumber**`(Example: deriv_auth-v6.7.9)`. To use the package, add the following to your pubspec.yaml file:

```yaml
deriv_ui:
Expand All @@ -30,7 +30,7 @@ deriv_ui:
| Name | Description | Version |
| ------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------- |
| [analytics](./packages/analytics) | Used to collect and send analytical information to 'Firebase' and 'Segment'. | [v2.1.0](./packages/analytics/CHANGELOG.md) |
| [deriv_auth](./packages/deriv_auth) | A Dart package that provides Authentication logic for Deriv applications. | [v6.7.8 ](./packages/deriv_auth/CHANGELOG.md) |
| [deriv_auth](./packages/deriv_auth) | A Dart package that provides Authentication logic for Deriv applications. | [v6.7.9 ](./packages/deriv_auth/CHANGELOG.md) |
| [deriv_banner](./packages/deriv_banner) | A widget to show banner in apps. | [v0.0.1+1](./packages/deriv_banner/CHANGELOG.md) |
| [deriv_bloc_manager](./packages/deriv_bloc_manager) | Provides some tools to manage blocs. | [v0.0.1](./packages/deriv_bloc_manager/CHANGELOG.md) |
| [deriv_datadog](./packages/deriv_datadog) | A package that helps you monitor the performance and user interactions of your Flutter app by sending data to Datadog. | [v0.0.1](./packages/deriv_datadog/CHANGELOG.md) |
Expand Down
4 changes: 4 additions & 0 deletions packages/deriv_auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.7.9

- **REFACTOR**(deriv_auth): Replace uni_links2 with app_links ([#664](https://github.com/regentmarkets/flutter-deriv-packages/issues/664)). ([f99554bc](https://github.com/regentmarkets/flutter-deriv-packages/commit/f99554bc134b7fe7fe0b3f5bf7555728868176c9))

## 6.7.8

- **FIX**(deriv_auth): fix_error_when_initializing_mock_auth_service ([#660](https://github.com/regentmarkets/flutter-deriv-packages/issues/660)). ([30aa969f](https://github.com/regentmarkets/flutter-deriv-packages/commit/30aa969f7ed3f083ab1610518eded103d0aa2eb7))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import 'dart:async';

import 'package:app_links/app_links.dart';
import 'package:deriv_auth/deriv_auth.dart';
import 'package:deriv_web_view/web_view.dart';
import 'package:flutter_deriv_api/helpers/miscellaneous_helper.dart';
import 'package:uni_links2/uni_links.dart';

/// Service to handle social auth web view.
final class SocialAuthWebViewService implements BaseSocialWebViewService {
Expand Down Expand Up @@ -36,7 +36,7 @@ final class SocialAuthWebViewService implements BaseSocialWebViewService {
}

void _setupLinkStream(SocialAuthUriHandler uriHandler) {
_uriLinkStream = uriLinkStream.listen(
_uriLinkStream = AppLinks().uriLinkStream.listen(
(Uri? uri) {
_uriLinkStream?.cancel();

Expand Down
4 changes: 2 additions & 2 deletions packages/deriv_auth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: deriv_auth
description: Provides deriv authentication functionalities for dart/flutter apps.
version: 6.7.8
version: 6.7.9

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down Expand Up @@ -72,7 +72,7 @@ dependencies:
package_info_plus: ^4.2.0
crypto: ^3.0.2
http: ^0.13.5
uni_links2: ^0.6.0+2
app_links: ^3.4.5

dependency_overrides:
deriv_ui:
Expand Down

0 comments on commit 471e726

Please sign in to comment.