Skip to content

Bump mason_logger from 0.1.2 to 0.2.2#11

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

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

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 7, 2022

Bumps mason_logger from 0.1.2 to 0.2.2.

Release notes

Sourced from mason_logger's releases.

mason_logger-v0.2.2

  • fix: only animate progress on terminals

mason_logger-v0.2.1

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.

... (truncated)

Commits
  • f7c00b2 chore(mason_logger): v0.2.2 (#589)
  • 1797631 fix(mason_logger): only animate progress on terminals (#582)
  • 83c16d1 feat(mason)!: avoid templating hook contents (#581)
  • 713a853 chore(deps-dev): bump eslint from 8.25.0 to 8.26.0 in /extensions/vscode (#575)
  • b8d291a chore(deps-dev): bump typescript in /extensions/vscode (#569)
  • c8f405d chore(deps-dev): bump @​typescript-eslint/eslint-plugin (#578)
  • b1f89ca chore(deps-dev): bump @​typescript-eslint/parser in /extensions/vscode (#577)
  • 1931b67 chore(deps-dev): bump eslint from 8.13.0 to 8.25.0 in /extensions/vscode (#572)
  • 7290ea0 chore(deps-dev): bump prettier from 2.6.0 to 2.7.1 in /extensions/vscode (#571)
  • 978b81a chore(deps-dev): bump @​types/vscode in /extensions/vscode (#567)
  • 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.2.
- [Release notes](https://github.com/felangel/mason/releases)
- [Commits](felangel/mason@mason_logger-v0.1.2...mason_logger-v0.2.2)

---
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 Nov 7, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Nov 14, 2022

Superseded by #13.

@dependabot dependabot bot closed this Nov 14, 2022
@dependabot dependabot bot deleted the dependabot/pub/mason_logger-0.2.2 branch November 14, 2022 00:15
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