From e6d3741e3ea13336632a78ec36790415f951d22d Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Wed, 21 Feb 2024 19:10:19 -0600 Subject: [PATCH 01/16] Always show title in desktop top bar size --- .../presentation/widgets/responsive_scaffold.dart | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/lib/src/routing/presentation/widgets/responsive_scaffold.dart b/lib/src/routing/presentation/widgets/responsive_scaffold.dart index bf0a7de6..e2b21039 100644 --- a/lib/src/routing/presentation/widgets/responsive_scaffold.dart +++ b/lib/src/routing/presentation/widgets/responsive_scaffold.dart @@ -486,15 +486,13 @@ class _ResponsiveScaffoldState extends State child: tabBar, ), ), - if (!isRootRoute) ...[ - gap16, - Expanded( - child: Text( - title, - style: theme.textTheme.titleMedium, - ), + gap16, + Expanded( + child: Text( + title, + style: theme.textTheme.titleMedium, ), - ], + ), ], ), ), From 8320a0dd9b26ea752f04728cb15697a109c6ffd1 Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Wed, 21 Feb 2024 19:22:19 -0600 Subject: [PATCH 02/16] bump version --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c768a44e..31865f3d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: An opinionated template for a Flutter project. publish_to: none -version: 0.6.0 +version: 0.6.1 environment: sdk: ">=3.1.0 <4.0.0" From c72ed1f09fcb0a26c7b35e0bcae4482684c7f30b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:46:41 +0000 Subject: [PATCH 03/16] Bump url_launcher from 6.2.4 to 6.2.5 Bumps [url_launcher](https://github.com/flutter/packages/tree/main/packages/url_launcher) from 6.2.4 to 6.2.5. - [Release notes](https://github.com/flutter/packages/releases) - [Commits](https://github.com/flutter/packages/commits/url_launcher-v6.2.5/packages/url_launcher) --- updated-dependencies: - dependency-name: url_launcher dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pubspec.lock | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index 51fb8821..e19ce35c 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1598,10 +1598,10 @@ packages: dependency: "direct main" description: name: url_launcher - sha256: c512655380d241a337521703af62d2c122bf7b77a46ff7dd750092aa9433499c + sha256: "0ecc004c62fd3ed36a2ffcbe0dd9700aee63bd7532d0b642a488b1ec310f492e" url: "https://pub.dev" source: hosted - version: "6.2.4" + version: "6.2.5" url_launcher_android: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 31865f3d..120019ca 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -57,7 +57,7 @@ dependencies: stock: ^1.0.1 super_clipboard: ^0.8.5 universal_html: ^2.2.4 - url_launcher: ^6.2.4 + url_launcher: ^6.2.5 window_manager: ^0.3.8 wolt_modal_sheet: ^0.4.1 From 8c8137cce916a1713513093a6f88b8daf749f47d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 11:04:47 +0000 Subject: [PATCH 04/16] Bump solid_lints from 0.1.3 to 0.1.4 Bumps [solid_lints](https://github.com/solid-software/solid_lints) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/solid-software/solid_lints/releases) - [Changelog](https://github.com/solid-software/solid_lints/blob/master/CHANGELOG.md) - [Commits](https://github.com/solid-software/solid_lints/compare/0.1.3...0.1.4) --- updated-dependencies: - dependency-name: solid_lints dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pubspec.lock | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index e19ce35c..0f4db6fe 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1390,10 +1390,10 @@ packages: dependency: "direct dev" description: name: solid_lints - sha256: "67b2c0a7052d6c95de4fce442fe926c2a8e2b928115c3a5f633dda5d51c7f12b" + sha256: "1cbc3491be714b2d3660a81feb76e228434a7dc0b5bd308063e75a85cea42d87" url: "https://pub.dev" source: hosted - version: "0.1.3" + version: "0.1.4" source_gen: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 120019ca..7f8852b4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -85,7 +85,7 @@ dev_dependencies: patrol: ^3.5.2 riverpod_generator: ^2.3.10 riverpod_lint: ^2.3.8 - solid_lints: ^0.1.3 + solid_lints: ^0.1.4 test: any flutter: From aed9270b97353ad097a67dd068e907f3fe4b29ca Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:31:46 -0600 Subject: [PATCH 05/16] Add padding to sidebar appbar --- .../widgets/responsive_scaffold.dart | 52 ++++++++++--------- 1 file changed, 28 insertions(+), 24 deletions(-) diff --git a/lib/src/routing/presentation/widgets/responsive_scaffold.dart b/lib/src/routing/presentation/widgets/responsive_scaffold.dart index e2b21039..e5a1ed31 100644 --- a/lib/src/routing/presentation/widgets/responsive_scaffold.dart +++ b/lib/src/routing/presentation/widgets/responsive_scaffold.dart @@ -393,30 +393,34 @@ class _ResponsiveScaffoldState extends State ? SystemUiOverlayStyle.dark : SystemUiOverlayStyle.light, child: SafeArea( - child: ResponsiveNavigationToolbar( - leadingButton: leadingButton, - middle: title != null - ? Text( - title, - style: theme.textTheme.titleMedium, - maxLines: 1, - overflow: TextOverflow.ellipsis, - ) - : null, - action: widget.buildActionButton - ?.call(context, topRoute, widget.currentIndex, false), - actionExpanded: widget.buildActionButton - ?.call(context, topRoute, widget.currentIndex, true), - willShowLeadingButton: willShowLeadingButton, - transitionDuration: widget.transitionDuration, - transitionReverseDuration: widget.transitionReverseDuration, - logoExpanded: widget.buildLogo - ?.call(context, topRoute, widget.currentIndex, true), - logo: widget.buildLogo - ?.call(context, topRoute, widget.currentIndex, false), - minLogoCollapsedWidth: widget.minLogoCollapsedWidth, - minLogoExpandedWidth: widget.minLogoExpandedWidth, - minActionExpandedWidth: widget.minActionExpandedWidth, + child: Padding( + padding: + const EdgeInsetsDirectional.symmetric(horizontal: 8.0), + child: ResponsiveNavigationToolbar( + leadingButton: leadingButton, + middle: title != null + ? Text( + title, + style: theme.textTheme.titleMedium, + maxLines: 1, + overflow: TextOverflow.ellipsis, + ) + : null, + action: widget.buildActionButton + ?.call(context, topRoute, widget.currentIndex, false), + actionExpanded: widget.buildActionButton + ?.call(context, topRoute, widget.currentIndex, true), + willShowLeadingButton: willShowLeadingButton, + transitionDuration: widget.transitionDuration, + transitionReverseDuration: widget.transitionReverseDuration, + logoExpanded: widget.buildLogo + ?.call(context, topRoute, widget.currentIndex, true), + logo: widget.buildLogo + ?.call(context, topRoute, widget.currentIndex, false), + minLogoCollapsedWidth: widget.minLogoCollapsedWidth, + minLogoExpandedWidth: widget.minLogoExpandedWidth, + minActionExpandedWidth: widget.minActionExpandedWidth, + ), ), ), ), From f5dea421a66c685308ceda46dc4931dbd2713dfe Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Sun, 3 Mar 2024 00:18:15 -0600 Subject: [PATCH 06/16] add -d to build runner watch --- melos.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/melos.yaml b/melos.yaml index 7d0bc537..45d819a0 100644 --- a/melos.yaml +++ b/melos.yaml @@ -128,7 +128,7 @@ scripts: ignore: localization watch:pkg: - run: dart run build_runner watch + run: dart run build_runner watch --delete-conflicting-outputs exec: # concurrency: 1 failFast: true From a7b0118022a3b8820502f7456c4bfe4291801829 Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Sun, 3 Mar 2024 00:21:50 -0600 Subject: [PATCH 07/16] mark files as generated --- .gitattributes | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitattributes b/.gitattributes index dfe07704..2334398e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,15 @@ # Auto detect text files and perform LF normalization * text=auto + +# Generated files +**/*.g.dart linguist-generated=true +**/*.mapper.dart linguist-generated=true +**/*.modddel.dart linguist-generated=true +**/*.iconfig.dart linguist-generated=true +**/i18n.dart linguist-generated=true +lib/generated/intl/messages*.dart linguist-generated=true +**/*.chopper.dart linguist-generated=true +**/*.swagger.dart linguist-generated=true +**/client_mapping.dart linguist-generated=true +**/*.auto_mappr.dart linguist-generated=true +**/*.lock linguist-generated=true From 49411ffbcc777de0582483613ab297402fc3ad2c Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Sun, 3 Mar 2024 13:03:44 -0600 Subject: [PATCH 08/16] Add flavor const variables --- packages/env/lib/src/env/config/env_flavor.dart | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages/env/lib/src/env/config/env_flavor.dart b/packages/env/lib/src/env/config/env_flavor.dart index fb281646..1f72f6fe 100644 --- a/packages/env/lib/src/env/config/env_flavor.dart +++ b/packages/env/lib/src/env/config/env_flavor.dart @@ -21,6 +21,20 @@ abstract class EnvFlavor implements EnvFields { ? LocalEnv() : DevEnv(); + static const bool isProd = instance is ProdEnv; + static const bool isStaging = instance is StagingEnv; + static const bool isLocal = instance is LocalEnv; + static const bool isDev = instance is DevEnv; + + static const Flavor flavor = + EnvFlavor.rawFlavor == 'prod' || EnvFlavor.rawFlavor == 'beta' + ? Flavor.prod + : EnvFlavor.rawFlavor == 'staging' + ? Flavor.staging + : EnvFlavor.rawFlavor == 'local' + ? Flavor.local + : Flavor.dev; + const EnvFlavor._(); } From ebe1373655e438c938547b107a9ff54245e86978 Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Sun, 3 Mar 2024 13:20:11 -0600 Subject: [PATCH 09/16] Remove const to support obfuscating in env --- packages/env/lib/src/env/config/env_flavor.dart | 10 +++++----- packages/env/lib/src/env/dev_env.dart | 2 +- packages/env/lib/src/env/local_env.dart | 2 +- packages/env/lib/src/env/prod_env.dart | 2 +- packages/env/lib/src/env/staging_env.dart | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/env/lib/src/env/config/env_flavor.dart b/packages/env/lib/src/env/config/env_flavor.dart index 1f72f6fe..f2931ebd 100644 --- a/packages/env/lib/src/env/config/env_flavor.dart +++ b/packages/env/lib/src/env/config/env_flavor.dart @@ -12,7 +12,7 @@ abstract class EnvFlavor implements EnvFields { ? String.fromEnvironment('FLUTTER_APP_FLAVOR') : 'local'; - static const EnvFlavor instance = + static final EnvFlavor instance = EnvFlavor.rawFlavor == 'prod' || EnvFlavor.rawFlavor == 'beta' ? ProdEnv() : EnvFlavor.rawFlavor == 'staging' @@ -21,10 +21,10 @@ abstract class EnvFlavor implements EnvFields { ? LocalEnv() : DevEnv(); - static const bool isProd = instance is ProdEnv; - static const bool isStaging = instance is StagingEnv; - static const bool isLocal = instance is LocalEnv; - static const bool isDev = instance is DevEnv; + static const bool isProd = flavor == Flavor.prod; + static const bool isStaging = flavor == Flavor.staging; + static const bool isLocal = flavor == Flavor.local; + static const bool isDev = flavor == Flavor.dev; static const Flavor flavor = EnvFlavor.rawFlavor == 'prod' || EnvFlavor.rawFlavor == 'beta' diff --git a/packages/env/lib/src/env/dev_env.dart b/packages/env/lib/src/env/dev_env.dart index 921ade67..7de0ee6b 100644 --- a/packages/env/lib/src/env/dev_env.dart +++ b/packages/env/lib/src/env/dev_env.dart @@ -6,7 +6,7 @@ part 'dev_env.g.dart'; @Envied(name: 'Env', path: 'dev.env', allowOptionalFields: true) class DevEnv implements EnvFlavor, EnvFields { - const DevEnv(); + DevEnv(); // Using nullable types or providing a default value for everything allows // the app to be build without setting up the .env file. This would be diff --git a/packages/env/lib/src/env/local_env.dart b/packages/env/lib/src/env/local_env.dart index 27087bf1..2867cc1a 100644 --- a/packages/env/lib/src/env/local_env.dart +++ b/packages/env/lib/src/env/local_env.dart @@ -6,7 +6,7 @@ part 'local_env.g.dart'; @Envied(name: 'Env', path: 'local.env', allowOptionalFields: true) class LocalEnv implements EnvFlavor, EnvFields { - const LocalEnv(); + LocalEnv(); // Using nullable types or providing a default value for everything allows // the app to be build without setting up the .env file. This would be diff --git a/packages/env/lib/src/env/prod_env.dart b/packages/env/lib/src/env/prod_env.dart index a50dbb4c..145b5aec 100644 --- a/packages/env/lib/src/env/prod_env.dart +++ b/packages/env/lib/src/env/prod_env.dart @@ -6,7 +6,7 @@ part 'prod_env.g.dart'; @Envied(name: 'Env', path: 'prod.env', allowOptionalFields: true) class ProdEnv implements EnvFlavor, EnvFields { - const ProdEnv(); + ProdEnv(); // Using nullable types or providing a default value for everything allows // the app to be build without setting up the .env file. This would be diff --git a/packages/env/lib/src/env/staging_env.dart b/packages/env/lib/src/env/staging_env.dart index b66f06c8..ff5c493b 100644 --- a/packages/env/lib/src/env/staging_env.dart +++ b/packages/env/lib/src/env/staging_env.dart @@ -6,7 +6,7 @@ part 'staging_env.g.dart'; @Envied(name: 'Env', path: 'staging.env', allowOptionalFields: true) class StagingEnv implements EnvFlavor, EnvFields { - const StagingEnv(); + StagingEnv(); // Using nullable types or providing a default value for everything allows // the app to be build without setting up the .env file. This would be From 00a0dba750623210a78b3525f199eafe2a1dabba Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Sun, 3 Mar 2024 13:23:53 -0600 Subject: [PATCH 10/16] fix error --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 246db8a3..68fb29d8 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -14,7 +14,7 @@ void main() async { // * https://docs.flutter.dev/testing/errors registerErrorHandlers(); AppFlavor.initConfig(); - const env = EnvFlavor.instance; + final env = EnvFlavor.instance; if (env.usePathUrlStrategy) { usePathUrlStrategy(); } From 0c4245dede5fc7351982cd2db7e31b9abf092314 Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Sun, 3 Mar 2024 16:23:38 -0600 Subject: [PATCH 11/16] Fix goBack method --- lib/src/routing/router/router_extensions.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/routing/router/router_extensions.dart b/lib/src/routing/router/router_extensions.dart index 4758cb1c..e5667352 100644 --- a/lib/src/routing/router/router_extensions.dart +++ b/lib/src/routing/router/router_extensions.dart @@ -30,7 +30,7 @@ extension GoRouterExtension on GoRouter { } final pathSegments = location.pathSegments; - final newLoc = location.replace(path: '/${pathSegments.join(' / ')}'); + final newLoc = location.replace(path: '/${pathSegments.join('/')}'); go(newLoc.path); return true; From 032f68fbe26eddfdf58987871a427257c98fb721 Mon Sep 17 00:00:00 2001 From: getBoolean <19920697+getBoolean@users.noreply.github.com> Date: Sun, 3 Mar 2024 16:39:49 -0600 Subject: [PATCH 12/16] fix goback --- lib/src/routing/router/router_extensions.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/routing/router/router_extensions.dart b/lib/src/routing/router/router_extensions.dart index e5667352..fdea1ac4 100644 --- a/lib/src/routing/router/router_extensions.dart +++ b/lib/src/routing/router/router_extensions.dart @@ -36,7 +36,7 @@ extension GoRouterExtension on GoRouter { return true; } - bool goBack({bool stripQueryParameters = true}) { + bool goBack({bool stripQueryParameters = false}) { if (!canGoBack()) { return false; } @@ -44,7 +44,7 @@ extension GoRouterExtension on GoRouter { final location = routerDelegate.locationUri; final length = routerDelegate.locationUri.pathSegments.length; final pathSegments = location.pathSegments.slice(0, length - 1).toList(); - final newLoc = location.replace(path: '/${pathSegments.join(' / ')}'); + final newLoc = location.replace(path: '/${pathSegments.join('/')}'); go(stripQueryParameters ? newLoc.path : newLoc.toString()); return true; From 19ca8c1cdf01a8c086af01852541df3f09c6358d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 10:17:00 +0000 Subject: [PATCH 13/16] Bump dart_mappable_builder from 4.2.0 to 4.2.1 Bumps [dart_mappable_builder](https://github.com/schultek/dart_mappable) from 4.2.0 to 4.2.1. - [Release notes](https://github.com/schultek/dart_mappable/releases) - [Commits](https://github.com/schultek/dart_mappable/commits) --- updated-dependencies: - dependency-name: dart_mappable_builder dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pubspec.lock | 8 ++++---- pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index 0f4db6fe..779284d2 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -362,18 +362,18 @@ packages: dependency: "direct main" description: name: dart_mappable - sha256: "7b6d38ae95f1ae8ffa65df9a5464f14b56c2de94699a035202ca4cd3a0ba249e" + sha256: f9f272f2af6c11adf4abc22574eb946df110251052a0d00c03519ecf2442defc url: "https://pub.dev" source: hosted - version: "4.2.0" + version: "4.2.1" dart_mappable_builder: dependency: "direct dev" description: name: dart_mappable_builder - sha256: "98c058f7e80a98ea42d357d888ed1648d96bedac8b16872b58fc7024faefcdfe" + sha256: dd42e99b7e605ad6cf4a5c241a777c0f4f76a9769f27c439795355c444283074 url: "https://pub.dev" source: hosted - version: "4.2.0" + version: "4.2.1" dart_style: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 7f8852b4..87106325 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -68,7 +68,7 @@ dev_dependencies: build_verify: ^3.1.0 change_app_package_name: ^1.1.0 custom_lint: ^0.6.2 - dart_mappable_builder: ^4.2.0 + dart_mappable_builder: ^4.2.1 flutter_launcher_icons: ^0.13.1 flutter_lints: ^3.0.1 flutter_test: From 964816c1d946980fa12b1e07ab76707021c5ba06 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 10:44:52 +0000 Subject: [PATCH 14/16] Bump skeletonizer from 1.0.1 to 1.1.0 Bumps [skeletonizer](https://github.com/Milad-Akarie/skeletonizer) from 1.0.1 to 1.1.0. - [Changelog](https://github.com/Milad-Akarie/skeletonizer/blob/main/CHANGELOG.md) - [Commits](https://github.com/Milad-Akarie/skeletonizer/commits) --- updated-dependencies: - dependency-name: skeletonizer dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pubspec.lock | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index 779284d2..dbf287eb 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1377,10 +1377,10 @@ packages: dependency: "direct main" description: name: skeletonizer - sha256: "86f373126d9a887a2d63f2463a9913a973ce7f282efa7f0d9d06a17e3f19838c" + sha256: "2eb80153c80507359ff05f6a18ed50ae0bafa1b999aa867a8cef0a53387b5650" url: "https://pub.dev" source: hosted - version: "1.0.1" + version: "1.1.0" sky_engine: dependency: transitive description: flutter diff --git a/pubspec.yaml b/pubspec.yaml index 87106325..2ff03ee3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -53,7 +53,7 @@ dependencies: riverpod_annotation: ^2.3.4 sidebarx: path: packages/pub/sidebarx - skeletonizer: ^1.0.1 + skeletonizer: ^1.1.0 stock: ^1.0.1 super_clipboard: ^0.8.5 universal_html: ^2.2.4 From e745bc6ce65859850409efa41ab3c75ce5f6ba6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 15:20:03 +0000 Subject: [PATCH 15/16] Bump google_fonts from 6.1.0 to 6.2.1 Bumps [google_fonts](https://github.com/material-foundation/flutter-packages/tree/main/packages) from 6.1.0 to 6.2.1. - [Commits](https://github.com/material-foundation/flutter-packages/commits/HEAD/packages) --- updated-dependencies: - dependency-name: google_fonts dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pubspec.lock | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index dbf287eb..6f82d1ce 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -703,10 +703,10 @@ packages: dependency: "direct main" description: name: google_fonts - sha256: f0b8d115a13ecf827013ec9fc883390ccc0e87a96ed5347a3114cac177ef18e8 + sha256: b1ac0fe2832c9cc95e5e88b57d627c5e68c223b9657f4b96e1487aa9098c7b82 url: "https://pub.dev" source: hosted - version: "6.1.0" + version: "6.2.1" graphs: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 2ff03ee3..fdbb5888 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -36,7 +36,7 @@ dependencies: fpdart: ^1.1.0 freezed_annotation: ^2.2.0 go_router: ^13.1.0 - google_fonts: ^6.1.0 + google_fonts: ^6.2.1 hive: ^2.2.3 hive_flutter: ^1.1.0 hooks_riverpod: ^2.4.9 From 276360484faa753d603432c64e36ae5f3b74afe0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 15:40:13 +0000 Subject: [PATCH 16/16] Bump flex_color_picker from 3.3.1 to 3.4.0 Bumps [flex_color_picker](https://github.com/rydmike/flex_color_picker) from 3.3.1 to 3.4.0. - [Release notes](https://github.com/rydmike/flex_color_picker/releases) - [Changelog](https://github.com/rydmike/flex_color_picker/blob/master/CHANGELOG.md) - [Commits](https://github.com/rydmike/flex_color_picker/compare/3.3.1...3.4.0) --- updated-dependencies: - dependency-name: flex_color_picker dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pubspec.lock | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index 6f82d1ce..2b7f490f 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -473,10 +473,10 @@ packages: dependency: "direct main" description: name: flex_color_picker - sha256: "0871edc170153cfc3de316d30625f40a85daecfa76ce541641f3cc0ec7757cbf" + sha256: "904373c7b0531fd4a92d29705a80ab4594b7647da2d93044487aaec4614cb6ed" url: "https://pub.dev" source: hosted - version: "3.3.1" + version: "3.4.0" flex_color_scheme: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index fdbb5888..f42640cf 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -22,7 +22,7 @@ dependencies: dart_mappable: ^4.1.0 env: path: packages/env - flex_color_picker: ^3.3.1 + flex_color_picker: ^3.4.0 flex_color_scheme: ^7.3.1 flutter: sdk: flutter