Skip to content

Commit de56cc9

Browse files
Bump flutter_lints from 5.0.0 to 6.0.0 in /deeplink_cookbook (#2317)
Bumps [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 5.0.0 to 6.0.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/flutter/packages/commit/6eebe72ca3975373a5fab06a009ec5ffeabdb495"><code>6eebe72</code></a> [flutter_lints] Bump lints dependency to 6.0.0 and bump package to 6.0.0 (<a href="https://github.com/flutter/packages/tree/main/packages/issues/9108">#9108</a>)</li> <li><a href="https://github.com/flutter/packages/commit/0093e2ecd5e3e83c04864b076564e1020ada532f"><code>0093e2e</code></a> [video_player_android] Add note about Android platform views known issue (<a href="https://github.com/flutter/packages/tree/main/packages/issues/9312">#9312</a>)</li> <li><a href="https://github.com/flutter/packages/commit/62f38a1abb95fccabd865cef8b107d515bfbf93d"><code>62f38a1</code></a> [camera_android_camerax] Implement <code>enableAudio</code> for video recording (<a href="https://github.com/flutter/packages/tree/main/packages/issues/9264">#9264</a>)</li> <li><a href="https://github.com/flutter/packages/commit/9c11e9b8b845235c8d6bd120b89238dc580ab973"><code>9c11e9b</code></a> [video_player_android] isBuffering flag always return true after calling seek...</li> <li><a href="https://github.com/flutter/packages/commit/6efa04bfdb94f14236a9f9f85a6ebb367a94e81d"><code>6efa04b</code></a> [camera,video_player] replace onSurfaceDestroyed with onSurfaceCleanup (<a href="https://github.com/flutter/packages/tree/main/packages/issues/9316">#9316</a>)</li> <li><a href="https://github.com/flutter/packages/commit/c33fa390d6866405334adc56d38b70ea2ee3ab6e"><code>c33fa39</code></a> [camera,video_player] Update Android to 3.29 minimum (<a href="https://github.com/flutter/packages/tree/main/packages/issues/9317">#9317</a>)</li> <li><a href="https://github.com/flutter/packages/commit/5a7d40f877274916bdd81ba18a6b508e2d266aa3"><code>5a7d40f</code></a> Update repo for 3.32 stable (<a href="https://github.com/flutter/packages/tree/main/packages/issues/9311">#9311</a>)</li> <li><a href="https://github.com/flutter/packages/commit/2a847d78641de3eba95ba22b3a01db5ee24c93b3"><code>2a847d7</code></a> [camera_avfoundation] Correct pigeon configuration output paths (<a href="https://github.com/flutter/packages/tree/main/packages/issues/9313">#9313</a>)</li> <li><a href="https://github.com/flutter/packages/commit/d692e43dba6c8dcfdd3659fd6681a3c9505307ae"><code>d692e43</code></a> [process] Remove from the repository (<a href="https://github.com/flutter/packages/tree/main/packages/issues/9310">#9310</a>)</li> <li><a href="https://github.com/flutter/packages/commit/fe5dd86d6232c1ca2eacc50efe38db5dd2a6f815"><code>fe5dd86</code></a> Ensure Example Packages Work on Android API 36 (<a href="https://github.com/flutter/packages/tree/main/packages/issues/9241">#9241</a>)</li> <li>Additional commits viewable in <a href="https://github.com/flutter/packages/commits/flutter_lints-v6.0.0/packages">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=flutter_lints&package-manager=pub&previous-version=5.0.0&new-version=6.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Brett Morgan <[email protected]>
1 parent 8847ad0 commit de56cc9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

deeplink_cookbook/lib/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ final router = GoRouter(
88
routes: [
99
GoRoute(
1010
path: '/',
11-
builder: (_, __) =>
11+
builder: (_, _) =>
1212
Scaffold(appBar: AppBar(title: const Text('Home Screen'))),
1313
routes: [
1414
GoRoute(
1515
path: 'details',
16-
builder: (_, __) =>
16+
builder: (_, _) =>
1717
Scaffold(appBar: AppBar(title: const Text('Details Screen'))),
1818
),
1919
],

deeplink_cookbook/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dev_dependencies:
4545
# activated in the `analysis_options.yaml` file located at the root of your
4646
# package. See that file for information about deactivating specific lint
4747
# rules and activating additional ones.
48-
flutter_lints: ^5.0.0
48+
flutter_lints: ^6.0.0
4949

5050
# For information on the generic Dart part of this file, see the
5151
# following page: https://dart.dev/tools/pub/pubspec

0 commit comments

Comments
 (0)