From d2b288c2336bf6c1e8e6a70b05bf4245bc9ef4ff Mon Sep 17 00:00:00 2001 From: Hassan Ben Jobrane Date: Fri, 27 Oct 2023 16:57:52 +0100 Subject: [PATCH] chore: upgrade deps --- .../example/pubspec_overrides.yaml | 6 ++++++ packages/nhost_auth_dart/pubspec.yaml | 2 +- .../nhost_auth_dart/pubspec_overrides.yaml | 4 ++++ packages/nhost_dart/example/pubspec.yaml | 4 ++-- .../nhost_dart/example/pubspec_overrides.yaml | 16 +++++++++++++++ packages/nhost_dart/pubspec.yaml | 9 ++++----- packages/nhost_dart/pubspec_overrides.yaml | 14 +++++++++++++ .../Flutter/GeneratedPluginRegistrant.swift | 4 ++-- .../example/pubspec_overrides.yaml | 18 +++++++++++++++++ .../flutter/generated_plugin_registrant.cc | 6 +++--- .../windows/flutter/generated_plugins.cmake | 2 +- .../nhost_flutter_auth/pubspec_overrides.yaml | 16 +++++++++++++++ .../Flutter/GeneratedPluginRegistrant.swift | 4 ++-- .../example/pubspec_overrides.yaml | 20 +++++++++++++++++++ .../flutter/generated_plugin_registrant.cc | 2 +- .../windows/flutter/generated_plugins.cmake | 2 +- .../pubspec_overrides.yaml | 18 +++++++++++++++++ .../example/pubspec_overrides.yaml | 6 ++++++ packages/nhost_functions_dart/pubspec.yaml | 2 +- .../pubspec_overrides.yaml | 4 ++++ packages/nhost_gql_links/pubspec.yaml | 14 ++++++------- .../nhost_gql_links/pubspec_overrides.yaml | 4 ++++ .../example/pubspec.yaml | 4 ++-- .../example/pubspec_overrides.yaml | 16 +++++++++++++++ packages/nhost_graphql_adapter/pubspec.yaml | 6 +++--- .../pubspec_overrides.yaml | 6 ++++++ packages/nhost_sdk/pubspec.yaml | 5 ++--- .../example/pubspec_overrides.yaml | 8 ++++++++ packages/nhost_storage_dart/pubspec.yaml | 2 +- .../nhost_storage_dart/pubspec_overrides.yaml | 4 ++++ pubspec.yaml | 4 ++-- 31 files changed, 195 insertions(+), 37 deletions(-) create mode 100644 packages/nhost_auth_dart/example/pubspec_overrides.yaml create mode 100644 packages/nhost_auth_dart/pubspec_overrides.yaml create mode 100644 packages/nhost_dart/example/pubspec_overrides.yaml create mode 100644 packages/nhost_dart/pubspec_overrides.yaml create mode 100644 packages/nhost_flutter_auth/example/pubspec_overrides.yaml create mode 100644 packages/nhost_flutter_auth/pubspec_overrides.yaml create mode 100644 packages/nhost_flutter_graphql/example/pubspec_overrides.yaml create mode 100644 packages/nhost_flutter_graphql/pubspec_overrides.yaml create mode 100644 packages/nhost_functions_dart/example/pubspec_overrides.yaml create mode 100644 packages/nhost_functions_dart/pubspec_overrides.yaml create mode 100644 packages/nhost_gql_links/pubspec_overrides.yaml create mode 100644 packages/nhost_graphql_adapter/example/pubspec_overrides.yaml create mode 100644 packages/nhost_graphql_adapter/pubspec_overrides.yaml create mode 100644 packages/nhost_storage_dart/example/pubspec_overrides.yaml create mode 100644 packages/nhost_storage_dart/pubspec_overrides.yaml diff --git a/packages/nhost_auth_dart/example/pubspec_overrides.yaml b/packages/nhost_auth_dart/example/pubspec_overrides.yaml new file mode 100644 index 00000000..91b75bcf --- /dev/null +++ b/packages/nhost_auth_dart/example/pubspec_overrides.yaml @@ -0,0 +1,6 @@ +# melos_managed_dependency_overrides: nhost_auth_dart,nhost_sdk +dependency_overrides: + nhost_auth_dart: + path: .. + nhost_sdk: + path: ../../nhost_sdk diff --git a/packages/nhost_auth_dart/pubspec.yaml b/packages/nhost_auth_dart/pubspec.yaml index 5f8c468c..ee0ab4a8 100644 --- a/packages/nhost_auth_dart/pubspec.yaml +++ b/packages/nhost_auth_dart/pubspec.yaml @@ -6,7 +6,7 @@ repository: https://github.com/nhost/nhost-dart/tree/main/packages/nhost_sdk issue_tracker: https://github.com/nhost/nhost-dart/issues environment: - sdk: ">=2.14.0 <3.0.0" + sdk: ">=2.14.0 <=3.1.5" dependencies: http_parser: ^4.0.1 diff --git a/packages/nhost_auth_dart/pubspec_overrides.yaml b/packages/nhost_auth_dart/pubspec_overrides.yaml new file mode 100644 index 00000000..e3a8a0d2 --- /dev/null +++ b/packages/nhost_auth_dart/pubspec_overrides.yaml @@ -0,0 +1,4 @@ +# melos_managed_dependency_overrides: nhost_sdk +dependency_overrides: + nhost_sdk: + path: ../nhost_sdk diff --git a/packages/nhost_dart/example/pubspec.yaml b/packages/nhost_dart/example/pubspec.yaml index d133ae09..61d28751 100644 --- a/packages/nhost_dart/example/pubspec.yaml +++ b/packages/nhost_dart/example/pubspec.yaml @@ -1,11 +1,11 @@ name: nhost_dart_example -description: 'nhost Dart sdk example' +description: "nhost Dart sdk example" private: true version: 1.0.0+1 publish_to: none environment: - sdk: '>=2.14.0 <3.0.0' + sdk: ">=2.14.0 <=3.1.5" dependencies: # Nhost packages diff --git a/packages/nhost_dart/example/pubspec_overrides.yaml b/packages/nhost_dart/example/pubspec_overrides.yaml new file mode 100644 index 00000000..6d83ef52 --- /dev/null +++ b/packages/nhost_dart/example/pubspec_overrides.yaml @@ -0,0 +1,16 @@ +# melos_managed_dependency_overrides: nhost_auth_dart,nhost_dart,nhost_functions_dart,nhost_gql_links,nhost_graphql_adapter,nhost_sdk,nhost_storage_dart +dependency_overrides: + nhost_auth_dart: + path: ../../nhost_auth_dart + nhost_dart: + path: .. + nhost_functions_dart: + path: ../../nhost_functions_dart + nhost_gql_links: + path: ../../nhost_gql_links + nhost_graphql_adapter: + path: ../../nhost_graphql_adapter + nhost_sdk: + path: ../../nhost_sdk + nhost_storage_dart: + path: ../../nhost_storage_dart diff --git a/packages/nhost_dart/pubspec.yaml b/packages/nhost_dart/pubspec.yaml index c8fc17bc..064e2d0c 100644 --- a/packages/nhost_dart/pubspec.yaml +++ b/packages/nhost_dart/pubspec.yaml @@ -6,7 +6,7 @@ repository: https://github.com/nhost/nhost-dart/tree/main/packages/nhost_sdk issue_tracker: https://github.com/nhost/nhost-dart/issues environment: - sdk: ">=2.14.9 <3.0.0" + sdk: ">=2.14.9 <=3.1.5" dependencies: http_parser: ^4.0.1 @@ -22,9 +22,8 @@ dependencies: nhost_functions_dart: ^1.0.0 nhost_graphql_adapter: ^3.0.0 dev_dependencies: - betamax: ^2.0.0 fake_async: ^1.3.1 - graphql: ^5.1.3 + graphql: 5.2.0-beta.5 lints: any mockito: ^5.3.2 nock: ^1.2.1 @@ -32,8 +31,8 @@ dev_dependencies: stack_trace: ^1.11.0 test_api: ^0.4.16 test: ^1.22.0 - gql: ^0.14.0 - gql_exec: ^0.4.3 + gql: ^1.0.0 + gql_exec: ^1.0.0 nhost_gql_links: ^3.0.0 async: ^2.10.0 stream_channel: ^2.1.1 diff --git a/packages/nhost_dart/pubspec_overrides.yaml b/packages/nhost_dart/pubspec_overrides.yaml new file mode 100644 index 00000000..ab2ebc77 --- /dev/null +++ b/packages/nhost_dart/pubspec_overrides.yaml @@ -0,0 +1,14 @@ +# melos_managed_dependency_overrides: nhost_auth_dart,nhost_functions_dart,nhost_gql_links,nhost_graphql_adapter,nhost_sdk,nhost_storage_dart +dependency_overrides: + nhost_auth_dart: + path: ../nhost_auth_dart + nhost_functions_dart: + path: ../nhost_functions_dart + nhost_gql_links: + path: ../nhost_gql_links + nhost_graphql_adapter: + path: ../nhost_graphql_adapter + nhost_sdk: + path: ../nhost_sdk + nhost_storage_dart: + path: ../nhost_storage_dart diff --git a/packages/nhost_flutter_auth/example/macos/Flutter/GeneratedPluginRegistrant.swift b/packages/nhost_flutter_auth/example/macos/Flutter/GeneratedPluginRegistrant.swift index 07c7521c..a620c94b 100644 --- a/packages/nhost_flutter_auth/example/macos/Flutter/GeneratedPluginRegistrant.swift +++ b/packages/nhost_flutter_auth/example/macos/Flutter/GeneratedPluginRegistrant.swift @@ -5,8 +5,8 @@ import FlutterMacOS import Foundation -import app_links_macos -import shared_preferences_macos +import app_links +import shared_preferences_foundation import url_launcher_macos func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { diff --git a/packages/nhost_flutter_auth/example/pubspec_overrides.yaml b/packages/nhost_flutter_auth/example/pubspec_overrides.yaml new file mode 100644 index 00000000..53f652b3 --- /dev/null +++ b/packages/nhost_flutter_auth/example/pubspec_overrides.yaml @@ -0,0 +1,18 @@ +# melos_managed_dependency_overrides: nhost_auth_dart,nhost_dart,nhost_flutter_auth,nhost_functions_dart,nhost_gql_links,nhost_graphql_adapter,nhost_sdk,nhost_storage_dart +dependency_overrides: + nhost_auth_dart: + path: ../../nhost_auth_dart + nhost_dart: + path: ../../nhost_dart + nhost_flutter_auth: + path: .. + nhost_functions_dart: + path: ../../nhost_functions_dart + nhost_gql_links: + path: ../../nhost_gql_links + nhost_graphql_adapter: + path: ../../nhost_graphql_adapter + nhost_sdk: + path: ../../nhost_sdk + nhost_storage_dart: + path: ../../nhost_storage_dart diff --git a/packages/nhost_flutter_auth/example/windows/flutter/generated_plugin_registrant.cc b/packages/nhost_flutter_auth/example/windows/flutter/generated_plugin_registrant.cc index 96d0d6df..785a046f 100644 --- a/packages/nhost_flutter_auth/example/windows/flutter/generated_plugin_registrant.cc +++ b/packages/nhost_flutter_auth/example/windows/flutter/generated_plugin_registrant.cc @@ -6,12 +6,12 @@ #include "generated_plugin_registrant.h" -#include +#include #include void RegisterPlugins(flutter::PluginRegistry* registry) { - AppLinksWindowsPluginRegisterWithRegistrar( - registry->GetRegistrarForPlugin("AppLinksWindowsPlugin")); + AppLinksPluginCApiRegisterWithRegistrar( + registry->GetRegistrarForPlugin("AppLinksPluginCApi")); UrlLauncherWindowsRegisterWithRegistrar( registry->GetRegistrarForPlugin("UrlLauncherWindows")); } diff --git a/packages/nhost_flutter_auth/example/windows/flutter/generated_plugins.cmake b/packages/nhost_flutter_auth/example/windows/flutter/generated_plugins.cmake index 9a732f70..8f8ee4f2 100644 --- a/packages/nhost_flutter_auth/example/windows/flutter/generated_plugins.cmake +++ b/packages/nhost_flutter_auth/example/windows/flutter/generated_plugins.cmake @@ -3,7 +3,7 @@ # list(APPEND FLUTTER_PLUGIN_LIST - app_links_windows + app_links url_launcher_windows ) diff --git a/packages/nhost_flutter_auth/pubspec_overrides.yaml b/packages/nhost_flutter_auth/pubspec_overrides.yaml new file mode 100644 index 00000000..f2ea6a4d --- /dev/null +++ b/packages/nhost_flutter_auth/pubspec_overrides.yaml @@ -0,0 +1,16 @@ +# melos_managed_dependency_overrides: nhost_auth_dart,nhost_dart,nhost_functions_dart,nhost_gql_links,nhost_graphql_adapter,nhost_sdk,nhost_storage_dart +dependency_overrides: + nhost_auth_dart: + path: ../nhost_auth_dart + nhost_dart: + path: ../nhost_dart + nhost_functions_dart: + path: ../nhost_functions_dart + nhost_gql_links: + path: ../nhost_gql_links + nhost_graphql_adapter: + path: ../nhost_graphql_adapter + nhost_sdk: + path: ../nhost_sdk + nhost_storage_dart: + path: ../nhost_storage_dart diff --git a/packages/nhost_flutter_graphql/example/macos/Flutter/GeneratedPluginRegistrant.swift b/packages/nhost_flutter_graphql/example/macos/Flutter/GeneratedPluginRegistrant.swift index 79818f90..ec592a91 100644 --- a/packages/nhost_flutter_graphql/example/macos/Flutter/GeneratedPluginRegistrant.swift +++ b/packages/nhost_flutter_graphql/example/macos/Flutter/GeneratedPluginRegistrant.swift @@ -5,8 +5,8 @@ import FlutterMacOS import Foundation -import connectivity_plus_macos -import path_provider_macos +import connectivity_plus +import path_provider_foundation func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { ConnectivityPlugin.register(with: registry.registrar(forPlugin: "ConnectivityPlugin")) diff --git a/packages/nhost_flutter_graphql/example/pubspec_overrides.yaml b/packages/nhost_flutter_graphql/example/pubspec_overrides.yaml new file mode 100644 index 00000000..cfb03746 --- /dev/null +++ b/packages/nhost_flutter_graphql/example/pubspec_overrides.yaml @@ -0,0 +1,20 @@ +# melos_managed_dependency_overrides: nhost_auth_dart,nhost_dart,nhost_flutter_auth,nhost_flutter_graphql,nhost_functions_dart,nhost_gql_links,nhost_graphql_adapter,nhost_sdk,nhost_storage_dart +dependency_overrides: + nhost_auth_dart: + path: ../../nhost_auth_dart + nhost_dart: + path: ../../nhost_dart + nhost_flutter_auth: + path: ../../nhost_flutter_auth + nhost_flutter_graphql: + path: .. + nhost_functions_dart: + path: ../../nhost_functions_dart + nhost_gql_links: + path: ../../nhost_gql_links + nhost_graphql_adapter: + path: ../../nhost_graphql_adapter + nhost_sdk: + path: ../../nhost_sdk + nhost_storage_dart: + path: ../../nhost_storage_dart diff --git a/packages/nhost_flutter_graphql/example/windows/flutter/generated_plugin_registrant.cc b/packages/nhost_flutter_graphql/example/windows/flutter/generated_plugin_registrant.cc index 8083d749..8777c93d 100644 --- a/packages/nhost_flutter_graphql/example/windows/flutter/generated_plugin_registrant.cc +++ b/packages/nhost_flutter_graphql/example/windows/flutter/generated_plugin_registrant.cc @@ -6,7 +6,7 @@ #include "generated_plugin_registrant.h" -#include +#include void RegisterPlugins(flutter::PluginRegistry* registry) { ConnectivityPlusWindowsPluginRegisterWithRegistrar( diff --git a/packages/nhost_flutter_graphql/example/windows/flutter/generated_plugins.cmake b/packages/nhost_flutter_graphql/example/windows/flutter/generated_plugins.cmake index 8cf5d426..cc1361d8 100644 --- a/packages/nhost_flutter_graphql/example/windows/flutter/generated_plugins.cmake +++ b/packages/nhost_flutter_graphql/example/windows/flutter/generated_plugins.cmake @@ -3,7 +3,7 @@ # list(APPEND FLUTTER_PLUGIN_LIST - connectivity_plus_windows + connectivity_plus ) list(APPEND FLUTTER_FFI_PLUGIN_LIST diff --git a/packages/nhost_flutter_graphql/pubspec_overrides.yaml b/packages/nhost_flutter_graphql/pubspec_overrides.yaml new file mode 100644 index 00000000..e8fa5379 --- /dev/null +++ b/packages/nhost_flutter_graphql/pubspec_overrides.yaml @@ -0,0 +1,18 @@ +# melos_managed_dependency_overrides: nhost_auth_dart,nhost_dart,nhost_flutter_auth,nhost_functions_dart,nhost_gql_links,nhost_graphql_adapter,nhost_sdk,nhost_storage_dart +dependency_overrides: + nhost_auth_dart: + path: ../nhost_auth_dart + nhost_dart: + path: ../nhost_dart + nhost_flutter_auth: + path: ../nhost_flutter_auth + nhost_functions_dart: + path: ../nhost_functions_dart + nhost_gql_links: + path: ../nhost_gql_links + nhost_graphql_adapter: + path: ../nhost_graphql_adapter + nhost_sdk: + path: ../nhost_sdk + nhost_storage_dart: + path: ../nhost_storage_dart diff --git a/packages/nhost_functions_dart/example/pubspec_overrides.yaml b/packages/nhost_functions_dart/example/pubspec_overrides.yaml new file mode 100644 index 00000000..c8cfaf0a --- /dev/null +++ b/packages/nhost_functions_dart/example/pubspec_overrides.yaml @@ -0,0 +1,6 @@ +# melos_managed_dependency_overrides: nhost_functions_dart,nhost_sdk +dependency_overrides: + nhost_functions_dart: + path: .. + nhost_sdk: + path: ../../nhost_sdk diff --git a/packages/nhost_functions_dart/pubspec.yaml b/packages/nhost_functions_dart/pubspec.yaml index 7c04951a..88a7609f 100644 --- a/packages/nhost_functions_dart/pubspec.yaml +++ b/packages/nhost_functions_dart/pubspec.yaml @@ -6,7 +6,7 @@ repository: https://github.com/nhost/nhost-dart/tree/main/packages/nhost_sdk issue_tracker: https://github.com/nhost/nhost-dart/issues environment: - sdk: ">=2.14.9 <3.0.0" + sdk: ">=2.14.9 <=3.1.5" dependencies: http_parser: ^4.0.1 diff --git a/packages/nhost_functions_dart/pubspec_overrides.yaml b/packages/nhost_functions_dart/pubspec_overrides.yaml new file mode 100644 index 00000000..e3a8a0d2 --- /dev/null +++ b/packages/nhost_functions_dart/pubspec_overrides.yaml @@ -0,0 +1,4 @@ +# melos_managed_dependency_overrides: nhost_sdk +dependency_overrides: + nhost_sdk: + path: ../nhost_sdk diff --git a/packages/nhost_gql_links/pubspec.yaml b/packages/nhost_gql_links/pubspec.yaml index 577e86a7..d8ee323f 100644 --- a/packages/nhost_gql_links/pubspec.yaml +++ b/packages/nhost_gql_links/pubspec.yaml @@ -6,15 +6,15 @@ repository: https://github.com/nhost/nhost-dart/tree/main/packages/nhost_gql_lin issue_tracker: https://github.com/nhost/nhost-dart/issues environment: - sdk: '>=2.14.0 <3.0.0' + sdk: ">=2.14.0 <=3.1.5" dependencies: - gql_exec: ^0.4.3 - gql_http_link: ^0.4.5 - gql_link: ^0.5.0+1 - gql_websocket_link: ^0.3.4+1 - gql: ^0.14.0 - http: ^0.13.5 + gql_exec: ^1.0.0 + gql_http_link: ^1.0.1 + gql_link: ^1.0.0 + gql_websocket_link: ^1.1.0 + gql: ^1.0.0 + http: ^1.1.0 logging: ^1.1.0 meta: ^1.7.0 web_socket_channel: ^2.2.0 diff --git a/packages/nhost_gql_links/pubspec_overrides.yaml b/packages/nhost_gql_links/pubspec_overrides.yaml new file mode 100644 index 00000000..e3a8a0d2 --- /dev/null +++ b/packages/nhost_gql_links/pubspec_overrides.yaml @@ -0,0 +1,4 @@ +# melos_managed_dependency_overrides: nhost_sdk +dependency_overrides: + nhost_sdk: + path: ../nhost_sdk diff --git a/packages/nhost_graphql_adapter/example/pubspec.yaml b/packages/nhost_graphql_adapter/example/pubspec.yaml index 72899076..da314da6 100644 --- a/packages/nhost_graphql_adapter/example/pubspec.yaml +++ b/packages/nhost_graphql_adapter/example/pubspec.yaml @@ -4,10 +4,10 @@ publish_to: none version: 2.0.1 environment: - sdk: '>=2.18.0 <3.0.0' + sdk: ">=2.18.0 <3.0.0" dependencies: - graphql: ^5.1.3 + graphql: 5.2.0-beta.5 # Nhost packages nhost_dart: ^1.0.1 diff --git a/packages/nhost_graphql_adapter/example/pubspec_overrides.yaml b/packages/nhost_graphql_adapter/example/pubspec_overrides.yaml new file mode 100644 index 00000000..f3ba9975 --- /dev/null +++ b/packages/nhost_graphql_adapter/example/pubspec_overrides.yaml @@ -0,0 +1,16 @@ +# melos_managed_dependency_overrides: nhost_auth_dart,nhost_dart,nhost_functions_dart,nhost_gql_links,nhost_graphql_adapter,nhost_sdk,nhost_storage_dart +dependency_overrides: + nhost_auth_dart: + path: ../../nhost_auth_dart + nhost_dart: + path: ../../nhost_dart + nhost_functions_dart: + path: ../../nhost_functions_dart + nhost_gql_links: + path: ../../nhost_gql_links + nhost_graphql_adapter: + path: .. + nhost_sdk: + path: ../../nhost_sdk + nhost_storage_dart: + path: ../../nhost_storage_dart diff --git a/packages/nhost_graphql_adapter/pubspec.yaml b/packages/nhost_graphql_adapter/pubspec.yaml index 3f106aba..9396b138 100644 --- a/packages/nhost_graphql_adapter/pubspec.yaml +++ b/packages/nhost_graphql_adapter/pubspec.yaml @@ -6,11 +6,11 @@ repository: https://github.com/nhost/nhost-dart/tree/main/packages/nhost_graphql issue_tracker: https://github.com/nhost/nhost-dart/issues environment: - sdk: '>=2.14.0 <3.0.0' + sdk: ">=2.14.0 <=3.1.5" dependencies: - graphql: ^5.1.3 - http: ^0.13.5 + graphql: 5.2.0-beta.5 + http: ^1.1.0 meta: ^1.7.0 #Nhost_dart diff --git a/packages/nhost_graphql_adapter/pubspec_overrides.yaml b/packages/nhost_graphql_adapter/pubspec_overrides.yaml new file mode 100644 index 00000000..7b7b1994 --- /dev/null +++ b/packages/nhost_graphql_adapter/pubspec_overrides.yaml @@ -0,0 +1,6 @@ +# melos_managed_dependency_overrides: nhost_gql_links,nhost_sdk +dependency_overrides: + nhost_gql_links: + path: ../nhost_gql_links + nhost_sdk: + path: ../nhost_sdk diff --git a/packages/nhost_sdk/pubspec.yaml b/packages/nhost_sdk/pubspec.yaml index b95269b9..5b208c33 100644 --- a/packages/nhost_sdk/pubspec.yaml +++ b/packages/nhost_sdk/pubspec.yaml @@ -6,7 +6,7 @@ repository: https://github.com/nhost/nhost-dart/tree/main/packages/nhost_sdk issue_tracker: https://github.com/nhost/nhost-dart/issues environment: - sdk: ">=2.14.0 <3.0.0" + sdk: ">=2.14.0 <=3.1.5" dependencies: http_parser: ^4.0.1 @@ -17,9 +17,8 @@ dependencies: path: ^1.8.0 dev_dependencies: - betamax: ^2.0.0 fake_async: ^1.3.1 - graphql: ^5.1.3 + graphql: 5.2.0-beta.5 lints: any mockito: ^5.3.2 nock: ^1.2.1 diff --git a/packages/nhost_storage_dart/example/pubspec_overrides.yaml b/packages/nhost_storage_dart/example/pubspec_overrides.yaml new file mode 100644 index 00000000..03abf642 --- /dev/null +++ b/packages/nhost_storage_dart/example/pubspec_overrides.yaml @@ -0,0 +1,8 @@ +# melos_managed_dependency_overrides: nhost_auth_dart,nhost_sdk,nhost_storage_dart +dependency_overrides: + nhost_auth_dart: + path: ../../nhost_auth_dart + nhost_sdk: + path: ../../nhost_sdk + nhost_storage_dart: + path: .. diff --git a/packages/nhost_storage_dart/pubspec.yaml b/packages/nhost_storage_dart/pubspec.yaml index f4004111..cdb5bb58 100644 --- a/packages/nhost_storage_dart/pubspec.yaml +++ b/packages/nhost_storage_dart/pubspec.yaml @@ -6,7 +6,7 @@ repository: https://github.com/nhost/nhost-dart/tree/main/packages/nhost_sdk issue_tracker: https://github.com/nhost/nhost-dart/issues environment: - sdk: ">=2.14.9 <3.0.0" + sdk: ">=2.14.9 <=3.1.5" dependencies: http_parser: ^4.0.1 diff --git a/packages/nhost_storage_dart/pubspec_overrides.yaml b/packages/nhost_storage_dart/pubspec_overrides.yaml new file mode 100644 index 00000000..e3a8a0d2 --- /dev/null +++ b/packages/nhost_storage_dart/pubspec_overrides.yaml @@ -0,0 +1,4 @@ +# melos_managed_dependency_overrides: nhost_sdk +dependency_overrides: + nhost_sdk: + path: ../nhost_sdk diff --git a/pubspec.yaml b/pubspec.yaml index b408e520..88766bab 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -5,9 +5,9 @@ homepage: https://nhost.io repository: https://github.com/nhost/nhost-dart environment: - sdk: ">=2.14.0 <3.0.0" + sdk: ">=2.14.0 <=3.1.5" dev_dependencies: - dotenv: ^3.0.0 + dotenv: ^4.2.0 melos: ^3.2.0 path: ^1.8.3