Skip to content

Bump mason_logger from 0.1.2 to 0.2.0#6

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pub/mason_logger-0.2.0
Closed

Bump mason_logger from 0.1.2 to 0.2.0#6
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pub/mason_logger-0.2.0

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Oct 17, 2022

Bumps mason_logger from 0.1.2 to 0.2.0.

Release notes

Sourced from mason_logger's releases.

mason_logger-v0.2.0

  • BREAKING feat: add generic support to chooseOne and chooseAny (@​wolfenrain)

    enum Shape { square, circle, triangle}
    void main() {
    final logger = Logger();
    final shape = logger.chooseOne<Shape>(
    'What is your favorite shape?',
    choices: Shape.values,
    display: (shape) => '${shape.name}',
    );
    logger.info('You chose: $shape');
    final shapes = logger.chooseAny<Shape>(
    'Or did you want to choose multiples?',
    choices: Shape.values,
    defaultValues: [shape],
    display: (shape) => '${shape.name}',
    );
    logger.info('You chose: $shapes');
    }

mason_logger-v0.1.4

  • feat: add ProgressOptions API (@​LukeMoody01)

    import 'package:mason_logger/mason_logger.dart';
    Future<void> main() async {
    // 1. ✨ Create a custom ProgressOptions.
    const progressOptions = ProgressOptions(
    animation: ProgressAnimation(
    frames: ['🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘'],
    ),
    );
    // 2. 💉 Inject progressOptions into your Logger.
    final logger = Logger(progressOptions: progressOptions);
    // 3. 🤤 Admire your custom progress animation.
    final progress = logger.progress('Calculating');
    await Future.delayed(const Duration(seconds: 3));
    progress.complete('Done!');
    }

... (truncated)

Commits
  • 46e8014 chore(mason_logger): v0.2.0 (#542)
  • 8adaa25 feat(mason_logger): generic support for chooseOne and chooseAny (#539)
  • 0184b2b chore(mason_logger): v0.1.4 (#540)
  • 43eae9f feat(mason_logger): add ProgressOptions API (#478)
  • 4aa7e9b docs(mason_cli): update README to include new add <brick> <version> usage
  • 530bc3a chore(mason_cli): v0.1.0-dev.36 (#538)
  • 729bdc9 feat(mason_cli): add <brick> <version> (#537)
  • 9eab851 chore(mason_api): v0.1.0-dev.8 (#534)
  • 4631d95 fix(mason_api): login sets in-memory credentials (#533)
  • 1f9ffef chore(mason_cli): v0.1.0-dev.35 (#524)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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 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)

Bumps [mason_logger](https://github.com/felangel/mason) from 0.1.2 to 0.2.0.
- [Release notes](https://github.com/felangel/mason/releases)
- [Commits](felangel/mason@mason_logger-v0.1.2...mason_logger-v0.2.0)

---
updated-dependencies:
- dependency-name: mason_logger
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 17, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 24, 2022

Superseded by #8.

@dependabot dependabot bot closed this Oct 24, 2022
@dependabot dependabot bot deleted the dependabot/pub/mason_logger-0.2.0 branch October 24, 2022 01:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants