diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 25a72cd1..3264edf6 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -5,3 +5,4 @@ packages/override_api_endpoint @lukaszgarstecki @Xezolpl packages/leancode_lint @RobertOdrowaz @shilangyu packages/leancode_hooks @bartekpacia packages/enhanced_gradients @kotertom +packages/leancode_flutter_svg_adaptive_loader @Xezolpl diff --git a/.github/workflows/cqrs-publish.yml b/.github/workflows/cqrs-publish.yml index 4991959d..df6b860c 100644 --- a/.github/workflows/cqrs-publish.yml +++ b/.github/workflows/cqrs-publish.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Dart uses: dart-lang/setup-dart@v1 with: - sdk: 3.0.1 + sdk: 3.1 - name: Publish run: dart pub publish -f diff --git a/.github/workflows/cqrs-test.yml b/.github/workflows/cqrs-test.yml index 06e4bf11..b6e92fe2 100644 --- a/.github/workflows/cqrs-test.yml +++ b/.github/workflows/cqrs-test.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - dart_release: ['3.0.1'] + dart_release: ['3.1'] defaults: run: diff --git a/.github/workflows/enhanced_gradients-publish.yml b/.github/workflows/enhanced_gradients-publish.yml index 2f98fdac..1ed5cbec 100644 --- a/.github/workflows/enhanced_gradients-publish.yml +++ b/.github/workflows/enhanced_gradients-publish.yml @@ -25,12 +25,12 @@ jobs: - name: Set up Dart uses: dart-lang/setup-dart@v1 with: - sdk: 3.0.0 + sdk: 3.1 - name: Set up Flutter uses: subosito/flutter-action@v2 with: - flutter-version: 3.10.x + flutter-version: 3.13.x cache: true - name: Publish and release diff --git a/.github/workflows/enhanced_gradients-test.yml b/.github/workflows/enhanced_gradients-test.yml index 20aaef47..dc1543a4 100644 --- a/.github/workflows/enhanced_gradients-test.yml +++ b/.github/workflows/enhanced_gradients-test.yml @@ -3,16 +3,16 @@ name: enhanced_gradients test on: push: branches: [master] - tags-ignore: ["enhanced_gradients-v*"] + tags-ignore: ['enhanced_gradients-v*'] paths: - - "packages/enhanced_gradients/**" + - 'packages/enhanced_gradients/**' pull_request: branches: [master] paths: - - "packages/enhanced_gradients/**" + - 'packages/enhanced_gradients/**' # Run a check daily due to the dependency on `material_color_utilities: any` schedule: - - cron: "0 17 * * *" + - cron: '0 17 * * *' jobs: test: @@ -23,8 +23,8 @@ jobs: fail-fast: false matrix: include: - - version: "3.10.0" - - channel: "stable" + - version: '3.13.x' + - channel: 'stable' defaults: run: diff --git a/.github/workflows/leancode_flutter_svg_adaptive_loader-publish.yml b/.github/workflows/leancode_flutter_svg_adaptive_loader-publish.yml new file mode 100644 index 00000000..aabe1a67 --- /dev/null +++ b/.github/workflows/leancode_flutter_svg_adaptive_loader-publish.yml @@ -0,0 +1,38 @@ +name: leancode_flutter_svg_adaptive_loader publish + +on: + push: + tags: ['leancode_flutter_svg_adaptive_loader-v*'] + +jobs: + publish: + name: Publish to pub.dev + + runs-on: ubuntu-latest + + permissions: + id-token: write + + defaults: + run: + working-directory: packages/leancode_flutter_svg_adaptive_loader + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up Dart + uses: dart-lang/setup-dart@v1 + with: + sdk: 3.1 + + - name: Set up Flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: 3.13.x + cache: true + + - name: Publish and release + uses: leancodepl/mobile-tools/.github/actions/pub-release@pub-release-v1 + with: + path: packages/leancode_flutter_svg_adaptive_loader diff --git a/.github/workflows/leancode_flutter_svg_adaptive_loader-test.yml b/.github/workflows/leancode_flutter_svg_adaptive_loader-test.yml new file mode 100644 index 00000000..8cf5a64d --- /dev/null +++ b/.github/workflows/leancode_flutter_svg_adaptive_loader-test.yml @@ -0,0 +1,57 @@ +name: leancode_flutter_svg_adaptive_loader test + +on: + push: + branches: [master] + tags-ignore: ['leancode_flutter_svg_adaptive_loader-v*'] + paths: + - 'packages/leancode_flutter_svg_adaptive_loader/**' + pull_request: + branches: [master] + paths: + - 'packages/leancode_flutter_svg_adaptive_loader/**' + +jobs: + test: + name: Flutter ${{ matrix.channel }}${{ matrix.version }} + + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - version: 3.13.x + + defaults: + run: + working-directory: packages/leancode_flutter_svg_adaptive_loader + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Flutter + uses: subosito/flutter-action@v1 + with: + channel: ${{ matrix.channel }} + flutter-version: ${{ matrix.version }} + + - name: Flutter version + run: flutter --version + + - name: Cache pub dependencies + uses: actions/cache@v2 + with: + path: ${{ env.FLUTTER_HOME }}/.pub-cache + key: ${{ runner.os }}-pub-${{ hashFiles('**/pubspec.lock') }} + restore-keys: ${{ runner.os }}-pub- + + - name: Download pub dependencies + run: flutter pub get + + - name: Run analyzer + run: flutter analyze + + - name: Dry run pub publish + # We don't want it to fail the CI, it's just to see how would `pub publish` behave. + run: flutter pub publish --dry-run || true diff --git a/.github/workflows/leancode_hooks-publish.yml b/.github/workflows/leancode_hooks-publish.yml index 60041a98..7cc817de 100644 --- a/.github/workflows/leancode_hooks-publish.yml +++ b/.github/workflows/leancode_hooks-publish.yml @@ -21,15 +21,15 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Setup Dart + - name: Set up Dart uses: dart-lang/setup-dart@v1 with: - sdk: 3.0.6 - + sdk: 3.1 + - name: Set up Flutter uses: subosito/flutter-action@v2 with: - flutter-version: 3.10.x + flutter-version: 3.13.x cache: true - name: Publish and release diff --git a/.github/workflows/leancode_hooks-test.yml b/.github/workflows/leancode_hooks-test.yml index ccdbed9c..5c3e29fc 100644 --- a/.github/workflows/leancode_hooks-test.yml +++ b/.github/workflows/leancode_hooks-test.yml @@ -20,8 +20,7 @@ jobs: fail-fast: false matrix: include: - - version: 3.10.6 - - version: 3.13.5 + - version: 3.13.x defaults: run: diff --git a/.github/workflows/leancode_lint-publish.yml b/.github/workflows/leancode_lint-publish.yml index 81ea3848..9158b81c 100644 --- a/.github/workflows/leancode_lint-publish.yml +++ b/.github/workflows/leancode_lint-publish.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Dart uses: dart-lang/setup-dart@v1 with: - sdk: 3.1.0 + sdk: 3.1 - name: Publish run: dart pub publish -f diff --git a/.github/workflows/leancode_lint-test.yml b/.github/workflows/leancode_lint-test.yml index b4d5c952..10cc8b7a 100644 --- a/.github/workflows/leancode_lint-test.yml +++ b/.github/workflows/leancode_lint-test.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false matrix: include: - - version: 3.13.0 + - version: 3.13.x defaults: run: diff --git a/.github/workflows/login_client-publish.yml b/.github/workflows/login_client-publish.yml index 865518f2..b466fc0d 100644 --- a/.github/workflows/login_client-publish.yml +++ b/.github/workflows/login_client-publish.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Dart uses: dart-lang/setup-dart@v1 with: - sdk: 3.0.1 + sdk: 3.1 - name: Publish run: dart pub publish -f diff --git a/.github/workflows/login_client-test.yml b/.github/workflows/login_client-test.yml index 7f9ba6ce..fa9a041a 100644 --- a/.github/workflows/login_client-test.yml +++ b/.github/workflows/login_client-test.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - dart_release: ['3.0.1'] + dart_release: ['3.1'] defaults: run: diff --git a/.github/workflows/login_client_flutter-publish.yml b/.github/workflows/login_client_flutter-publish.yml index 18d2d810..3d0eed72 100644 --- a/.github/workflows/login_client_flutter-publish.yml +++ b/.github/workflows/login_client_flutter-publish.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Dart uses: dart-lang/setup-dart@v1 with: - sdk: 2.18.6 + sdk: 3.1 - name: Publish run: dart pub publish -f diff --git a/.github/workflows/login_client_flutter-test.yml b/.github/workflows/login_client_flutter-test.yml index e72de6c0..e71e4192 100644 --- a/.github/workflows/login_client_flutter-test.yml +++ b/.github/workflows/login_client_flutter-test.yml @@ -20,8 +20,7 @@ jobs: fail-fast: false matrix: include: - - version: '2.5.0' - - version: '3.3' + - version: '3.13.x' defaults: run: diff --git a/.github/workflows/override_api_endpoint-publish.yml b/.github/workflows/override_api_endpoint-publish.yml index 8bd16772..bce35a80 100644 --- a/.github/workflows/override_api_endpoint-publish.yml +++ b/.github/workflows/override_api_endpoint-publish.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Dart uses: dart-lang/setup-dart@v1 with: - sdk: 2.18.6 + sdk: 3.1 - name: Publish run: dart pub publish -f diff --git a/.github/workflows/override_api_endpoint-test.yml b/.github/workflows/override_api_endpoint-test.yml index a4a8931e..dfc0d71a 100644 --- a/.github/workflows/override_api_endpoint-test.yml +++ b/.github/workflows/override_api_endpoint-test.yml @@ -20,8 +20,7 @@ jobs: fail-fast: false matrix: include: - - version: '2.5.0' - - version: '3.3' + - version: '3.13.x' defaults: run: diff --git a/packages/cqrs/pubspec.yaml b/packages/cqrs/pubspec.yaml index 106d202b..d97e62d4 100644 --- a/packages/cqrs/pubspec.yaml +++ b/packages/cqrs/pubspec.yaml @@ -16,6 +16,6 @@ dependencies: dev_dependencies: coverage: ^1.5.0 - leancode_lint: ^4.0.0+1 - mocktail: ^0.3.0 + leancode_lint: ^6.0.0 + mocktail: ^1.0.1 test: ^1.17.5 diff --git a/packages/debug_page/pubspec.yaml b/packages/debug_page/pubspec.yaml index 32c72459..1c7e4989 100644 --- a/packages/debug_page/pubspec.yaml +++ b/packages/debug_page/pubspec.yaml @@ -23,7 +23,7 @@ dev_dependencies: flutter_test: sdk: flutter leancode_lint: ^6.0.0 - mocktail: ^0.3.0 + mocktail: ^1.0.1 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/packages/enhanced_gradients/.gitignore b/packages/enhanced_gradients/.gitignore index a0c1a5a7..ab126e14 100644 --- a/packages/enhanced_gradients/.gitignore +++ b/packages/enhanced_gradients/.gitignore @@ -30,6 +30,7 @@ .pub-cache/ .pub/ /build/ +pubspec.lock # Web related lib/generated_plugin_registrant.dart diff --git a/packages/enhanced_gradients/pubspec.yaml b/packages/enhanced_gradients/pubspec.yaml index 8e5b9905..831ab25e 100644 --- a/packages/enhanced_gradients/pubspec.yaml +++ b/packages/enhanced_gradients/pubspec.yaml @@ -19,5 +19,5 @@ dev_dependencies: flutter_test: sdk: flutter glados: ^1.1.6 - leancode_lint: ^4.0.0 + leancode_lint: ^6.0.0 meta: ^1.9.1 diff --git a/packages/leancode_analytics/lib/core/event.dart b/packages/leancode_analytics/lib/core/event.dart index 91684880..cf1fb117 100644 --- a/packages/leancode_analytics/lib/core/event.dart +++ b/packages/leancode_analytics/lib/core/event.dart @@ -1,5 +1,3 @@ -import 'package:flutter/foundation.dart'; - /// Basic [AnalyticsEvent] - you can send directly this event with /// predefined parameters or extend this class to create more specific events class AnalyticsEvent { diff --git a/packages/leancode_analytics/pubspec.yaml b/packages/leancode_analytics/pubspec.yaml index ff3dc92e..1152cb4c 100644 --- a/packages/leancode_analytics/pubspec.yaml +++ b/packages/leancode_analytics/pubspec.yaml @@ -16,7 +16,7 @@ dependencies: dev_dependencies: flutter_test: sdk: flutter - leancode_lint: ^4.0.0+2 + leancode_lint: ^6.0.0 flutter: diff --git a/packages/leancode_flutter_svg_adaptive_loader/example/lib/adaptive_svg_gen_image.dart b/packages/leancode_flutter_svg_adaptive_loader/example/lib/adaptive_svg_gen_image.dart index ce5c1282..0351fe50 100644 --- a/packages/leancode_flutter_svg_adaptive_loader/example/lib/adaptive_svg_gen_image.dart +++ b/packages/leancode_flutter_svg_adaptive_loader/example/lib/adaptive_svg_gen_image.dart @@ -21,7 +21,7 @@ extension AdaptiveSvgGenImage on SvgGenImage { Clip clipBehavior = Clip.hardEdge, }) { return SvgPicture( - LeancodeFlutterSvgAdaptiveLoader( + FlutterSvgAdaptiveLoader( path, assetBundle: bundle, packageName: package, diff --git a/packages/leancode_flutter_svg_adaptive_loader/example/lib/main.dart b/packages/leancode_flutter_svg_adaptive_loader/example/lib/main.dart index 4aa4c7be..781522b8 100644 --- a/packages/leancode_flutter_svg_adaptive_loader/example/lib/main.dart +++ b/packages/leancode_flutter_svg_adaptive_loader/example/lib/main.dart @@ -27,7 +27,7 @@ class MainApp extends StatelessWidget { child: _SvgPictureWithTitle( text: 'XML-based foo', svgPicture: SvgPicture( - LeancodeFlutterSvgAdaptiveLoader('assets/foo.svg'), + FlutterSvgAdaptiveLoader('assets/foo.svg'), ), ), ), @@ -36,7 +36,7 @@ class MainApp extends StatelessWidget { child: _SvgPictureWithTitle( text: 'Binary compiled foo', svgPicture: SvgPicture( - LeancodeFlutterSvgAdaptiveLoader( + FlutterSvgAdaptiveLoader( 'assets/foo_compiled.svg', ), ), diff --git a/packages/leancode_flutter_svg_adaptive_loader/example/pubspec.lock b/packages/leancode_flutter_svg_adaptive_loader/example/pubspec.lock new file mode 100644 index 00000000..7d1e57ae --- /dev/null +++ b/packages/leancode_flutter_svg_adaptive_loader/example/pubspec.lock @@ -0,0 +1,604 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: eb376e9acf6938204f90eb3b1f00b578640d3188b4c8a8ec054f9f479af8d051 + url: "https://pub.dev" + source: hosted + version: "64.0.0" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: "69f54f967773f6c26c7dcb13e93d7ccee8b17a641689da39e878d5cf13b06893" + url: "https://pub.dev" + source: hosted + version: "6.2.0" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + build: + dependency: transitive + description: + name: build + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_config: + dependency: transitive + description: + name: build_config + sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 + url: "https://pub.dev" + source: hosted + version: "1.1.1" + build_daemon: + dependency: transitive + description: + name: build_daemon + sha256: "5f02d73eb2ba16483e693f80bee4f088563a820e47d1027d4cdfe62b5bb43e65" + url: "https://pub.dev" + source: hosted + version: "4.0.0" + build_resolvers: + dependency: transitive + description: + name: build_resolvers + sha256: "64e12b0521812d1684b1917bc80945625391cb9bdd4312536b1d69dcb6133ed8" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_runner: + dependency: "direct dev" + description: + name: build_runner + sha256: "10c6bcdbf9d049a0b666702cf1cee4ddfdc38f02a19d35ae392863b47519848b" + url: "https://pub.dev" + source: hosted + version: "2.4.6" + build_runner_core: + dependency: transitive + description: + name: build_runner_core + sha256: c9e32d21dd6626b5c163d48b037ce906bbe428bc23ab77bcd77bb21e593b6185 + url: "https://pub.dev" + source: hosted + version: "7.2.11" + built_collection: + dependency: transitive + description: + name: built_collection + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + built_value: + dependency: transitive + description: + name: built_value + sha256: a8de5955205b4d1dbbbc267daddf2178bd737e4bab8987c04a500478c9651e74 + url: "https://pub.dev" + source: hosted + version: "8.6.3" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + checked_yaml: + dependency: transitive + description: + name: checked_yaml + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + url: "https://pub.dev" + source: hosted + version: "2.0.3" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + code_builder: + dependency: transitive + description: + name: code_builder + sha256: "1be9be30396d7e4c0db42c35ea6ccd7cc6a1e19916b5dc64d6ac216b5544d677" + url: "https://pub.dev" + source: hosted + version: "4.7.0" + collection: + dependency: transitive + description: + name: collection + sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 + url: "https://pub.dev" + source: hosted + version: "1.17.2" + color: + dependency: transitive + description: + name: color + sha256: ddcdf1b3badd7008233f5acffaf20ca9f5dc2cd0172b75f68f24526a5f5725cb + url: "https://pub.dev" + source: hosted + version: "3.0.0" + convert: + dependency: transitive + description: + name: convert + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + crypto: + dependency: transitive + description: + name: crypto + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" + source: hosted + version: "3.0.3" + dart_style: + dependency: transitive + description: + name: dart_style + sha256: abd7625e16f51f554ea244d090292945ec4d4be7bfbaf2ec8cccea568919d334 + url: "https://pub.dev" + source: hosted + version: "2.3.3" + dartx: + dependency: transitive + description: + name: dartx + sha256: "8b25435617027257d43e6508b5fe061012880ddfdaa75a71d607c3de2a13d244" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + file: + dependency: transitive + description: + name: file + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_gen_core: + dependency: transitive + description: + name: flutter_gen_core + sha256: "8b4ff1d45d125e576e26ea99d15e0419bb3c45b53696e022880866b78bb6b830" + url: "https://pub.dev" + source: hosted + version: "5.3.2" + flutter_gen_runner: + dependency: "direct dev" + description: + name: flutter_gen_runner + sha256: fd197f8c657e79313d53d3934de602ebe604ba722a84c88ae3a43cd90428c67a + url: "https://pub.dev" + source: hosted + version: "5.3.2" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 + url: "https://pub.dev" + source: hosted + version: "2.0.3" + flutter_svg: + dependency: "direct main" + description: + name: flutter_svg + sha256: "8c5d68a82add3ca76d792f058b186a0599414f279f00ece4830b9b231b570338" + url: "https://pub.dev" + source: hosted + version: "2.0.7" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" + url: "https://pub.dev" + source: hosted + version: "3.2.0" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + graphs: + dependency: transitive + description: + name: graphs + sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + io: + dependency: transitive + description: + name: io + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + js: + dependency: transitive + description: + name: js + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + url: "https://pub.dev" + source: hosted + version: "0.6.7" + json_annotation: + dependency: transitive + description: + name: json_annotation + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" + source: hosted + version: "4.8.1" + leancode_flutter_svg_adaptive_loader: + dependency: "direct main" + description: + path: ".." + relative: true + source: path + version: "1.0.0" + lints: + dependency: transitive + description: + name: lints + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + logging: + dependency: transitive + description: + name: logging + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + url: "https://pub.dev" + source: hosted + version: "0.12.16" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + meta: + dependency: transitive + description: + name: meta + sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + mime: + dependency: transitive + description: + name: mime + sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e + url: "https://pub.dev" + source: hosted + version: "1.0.4" + package_config: + dependency: transitive + description: + name: package_config + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + path: + dependency: transitive + description: + name: path + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + url: "https://pub.dev" + source: hosted + version: "1.8.3" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf + url: "https://pub.dev" + source: hosted + version: "1.0.1" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750 + url: "https://pub.dev" + source: hosted + version: "5.4.0" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + pubspec_parse: + dependency: transitive + description: + name: pubspec_parse + sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 + url: "https://pub.dev" + source: hosted + version: "1.2.3" + shelf: + dependency: transitive + description: + name: shelf + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" + source: hosted + version: "1.4.1" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8" + url: "https://pub.dev" + source: hosted + version: "0.6.0" + time: + dependency: transitive + description: + name: time + sha256: "83427e11d9072e038364a5e4da559e85869b227cf699a541be0da74f14140124" + url: "https://pub.dev" + source: hosted + version: "2.1.3" + timing: + dependency: transitive + description: + name: timing + sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: b16dadf7eb610e20da044c141b4a0199a5e8082ca21daba68322756f953ce714 + url: "https://pub.dev" + source: hosted + version: "1.1.9" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: a4b01403d5c613db115e30e71eca33f7e9e09f2d3c52c3fb84e16333ecddc539 + url: "https://pub.dev" + source: hosted + version: "1.1.9" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: d26c0e2f237476426523eb25512e4c09fa27c6d33ed659a0e69d79e20b5dc47f + url: "https://pub.dev" + source: hosted + version: "1.1.9" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + watcher: + dependency: transitive + description: + name: watcher + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + web: + dependency: transitive + description: + name: web + sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10 + url: "https://pub.dev" + source: hosted + version: "0.1.4-beta" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b + url: "https://pub.dev" + source: hosted + version: "2.4.0" + xml: + dependency: transitive + description: + name: xml + sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84" + url: "https://pub.dev" + source: hosted + version: "6.3.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" + source: hosted + version: "3.1.2" +sdks: + dart: ">=3.1.0-185.0.dev <4.0.0" + flutter: ">=3.10.0" diff --git a/packages/leancode_flutter_svg_adaptive_loader/pubspec.yaml b/packages/leancode_flutter_svg_adaptive_loader/pubspec.yaml index 894fbcff..93527277 100644 --- a/packages/leancode_flutter_svg_adaptive_loader/pubspec.yaml +++ b/packages/leancode_flutter_svg_adaptive_loader/pubspec.yaml @@ -18,5 +18,5 @@ dependencies: dev_dependencies: flutter_test: sdk: flutter - leancode_lint: ^4.0.0 + leancode_lint: ^6.0.0 meta: ^1.9.1 diff --git a/packages/leancode_hooks/pubspec.yaml b/packages/leancode_hooks/pubspec.yaml index ff9b9ac8..7944d423 100644 --- a/packages/leancode_hooks/pubspec.yaml +++ b/packages/leancode_hooks/pubspec.yaml @@ -19,4 +19,4 @@ dev_dependencies: coverage: ^1.2.0 flutter_test: sdk: flutter - leancode_lint: ^5.0.0 + leancode_lint: ^6.0.0 diff --git a/packages/login_client/pubspec.yaml b/packages/login_client/pubspec.yaml index 402b5da1..93494e9d 100644 --- a/packages/login_client/pubspec.yaml +++ b/packages/login_client/pubspec.yaml @@ -18,6 +18,6 @@ dependencies: dev_dependencies: coverage: ^1.6.3 - leancode_lint: ^4.0.0+1 - mocktail: ^0.3.0 + leancode_lint: ^6.0.0 + mocktail: ^1.0.1 test: ^1.16.4 diff --git a/packages/login_client_flutter/pubspec.yaml b/packages/login_client_flutter/pubspec.yaml index a5c83b3f..02f617f8 100644 --- a/packages/login_client_flutter/pubspec.yaml +++ b/packages/login_client_flutter/pubspec.yaml @@ -17,4 +17,4 @@ dependencies: login_client: ^2.0.1 dev_dependencies: - leancode_lint: '>=1.0.2 <1.1.0' + leancode_lint: ^6.0.0 diff --git a/packages/override_api_endpoint/lib/override_api_endpoint.dart b/packages/override_api_endpoint/lib/override_api_endpoint.dart index e0805a2f..543cd7ef 100644 --- a/packages/override_api_endpoint/lib/override_api_endpoint.dart +++ b/packages/override_api_endpoint/lib/override_api_endpoint.dart @@ -1,3 +1 @@ -library override_api_endpoint; - export 'src/override_api_endpoint.dart'; diff --git a/packages/override_api_endpoint/pubspec.yaml b/packages/override_api_endpoint/pubspec.yaml index 41c08881..959822ed 100644 --- a/packages/override_api_endpoint/pubspec.yaml +++ b/packages/override_api_endpoint/pubspec.yaml @@ -16,4 +16,4 @@ dependencies: shared_preferences: ^2.0.6 dev_dependencies: - leancode_lint: 1.0.2 + leancode_lint: ^6.0.0