Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update inquirer to the latest version 🚀 #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

greenkeeper[bot]
Copy link

@greenkeeper greenkeeper bot commented Nov 12, 2017

Version 4.0.0 of inquirer was just published.

Dependency inquirer
Current Version 3.3.0
Type devDependency

The version 4.0.0 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of inquirer.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Release Notes v4.0.0

Breaking

The core codebase went through a major es5 to 6 refactor. As such, we're dropping support for Node 4.

This change will likely require changes to the community Plugins as es6 classes are enforcing more restriction (like constructor can only be invoked with new).

New features / Bug fixes

  • list, expand and rawlist prompts now accepts the value as default (previously it would only accept the choice index).
  • The pagination now properly handles multiline choices.
  • Fix bug where invalid default choices would break the UI.
Commits

The new version differs by 11 commits.

  • 984de6a 4.0.0
  • 0f41188 Add Node 4 deprecation notice
  • a8ee5d0 Officially drop node 4 support
  • 1674919 Get rid of code cimate (isn't useful enough and always start failing at some point on PR...)
  • 5b4253c es6ification of the code base, bye bye gulp, hello Prettier
  • 70174ed Paginator now handles multiple lines (#602)
  • b701876 Adds string default option for list and rawlist (#609)
  • ce4e858 Guard list against invalid string defaults (#607)
  • 651a569 Update eslint-config-xo-space to the latest version 🚀 (#600)
  • 60b9ba7 chore(package): update mocha to version 4.0.0 (#594)
  • 23d440e chore(package): update sinon to version 4.0.0 (#591)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper bot 🌴

greenkeeper bot added a commit that referenced this pull request Nov 29, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 29, 2017

Version 4.0.1 just got published.

Update to this version instead 🚀

Release Notes v4.0.1
  • Update dependency to fix a LGPL license issue.
Commits

The new version differs by 3 commits.

  • 00f5050 4.0.1
  • 9895054 Bumped version to 4.1.0, bumped external-editor dependency to ^2.1.0 … (#616)
  • 62a72d4 Fix typo (#612)

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 2, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 2, 2018

Version 4.0.2 just got published.

Update to this version instead 🚀

Release Notes v4.0.2

Improve Windows rendering to properly match terminal size

Commits

The new version differs by 5 commits.

  • fb37720 4.0.2
  • 84cfd77 Bump dependencies
  • a88346c Use SVG examples
  • 5f83804 Fix extra newline on windows without decremented width. (#601)
  • 9135e38 Update lint-staged to the latest version 🚀 (#618)

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 8, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 8, 2018

Version 5.0.0 just got published.

Update to this version instead 🚀

Release Notes v5.0.0

Breaking: Upgrade to RxJS v5 which updates a bunch of Reactive interface method names.

For people not using the Reactive interface directly, this new major release should just work out of the box.

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 20, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 20, 2018

Version 5.0.1 just got published.

Update to this version instead 🚀

Release Notes v5.0.1
  • Fix bug with the editor prompt.
Commits

The new version differs by 2 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 5, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 5, 2018

Version 5.1.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 4 commits.

  • c7f99d7 5.1.0
  • b950606 Update mocha to the latest version 🚀 (#638)
  • 57dc2b4 Apply optional transformer to input before accepted (#642)
  • 45f324d Fix test runner

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 26, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 26, 2018

Version 5.2.0 just got published.

Update to this version instead 🚀

Release Notes v5.2.0

Now passing the answers hash in the transformer function arguments.

Commits

The new version differs by 8 commits.

  • 2fe70c0 5.2.0
  • 0146dbd Add transformer example (#660)
  • 9bed102 Pass answers object to transformer functions (#659)
  • 11c52fd Add Checkbox Plus Plugin (#655)
  • dc8b44a Update lint-staged to the latest version 🚀 (#649)
  • f91fa52 Add inquirer-search-checkbox to plugins list in readme (#648)
  • ec428d8 chore(package): update eslint-config-xo to version 0.20.0 (#647)
  • 0f1199c Missing word in README.md (#644)

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 2, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 2, 2018

Version 6.0.0 just got published.

Update to this version instead 🚀

Release Notes v6.0.0

Breaking

  • Update to Rx.js v6

New features

  • New prompt type number.
  • transformer option now receive { isFinal } as a flag to allow transforming the final answer differently.
  • Use name as default message if message isn't provided.
  • Hide default values for password prompt.
Commits

The new version differs by 14 commits.

  • 5aea0ae 6.0.0
  • e349dfb Add support for transform the answer after accepted (#661)
  • b9c32b6 Update nyc to the latest version 🚀 (#686)
  • bd75b42 Add inquirer-fuzzy-path to README (#680)
  • 2ae8b73 Add inquirer-prompt-suggest plugin to README (#679)
  • 8e0e459 Use name as default message (#636)
  • ff89798 set prompt value in when and return false (#665)
  • 54cc022 Hide default values for passwords (#668)
  • 156e5b0 Adds a NumberPrompt type for convenience when prompting for numbers(#654) (#663)
  • 78bd4da rxjs 6 upgrade (#676)
  • a4cfcd3 Add 'Boolean' as option type to documentation of default (#674)
  • bb9f569 Updated external-editor (#673)
  • 218ac3a Update eslint-config-xo to the latest version 🚀 (#670)
  • 832800c Update sinon to the latest version 🚀 (#657)

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 7, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 7, 2018

Version 6.1.0 just got published.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Aug 23, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 23, 2018

Version 6.2.0 just got published.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Dec 1, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 1, 2018

  • The devDependency inquirer was updated from 3.3.0 to 6.2.1.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jan 31, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 31, 2019

  • The devDependency inquirer was updated from 3.3.0 to 6.2.2.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Apr 14, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 14, 2019

  • The devDependency inquirer was updated from 3.3.0 to 6.3.1.

Update to this version instead 🚀

Commits

The new version differs by 11 commits.

  • ee1cc70 Publish
  • 8535305 Add number support for choices prompt (#796)
  • 0e93c0a Correct link to inquirer-emoji (#795)
  • ff075f5 Publish
  • fc5ae7a Support terminal link in prompt message (#791)
  • 331845b Rename 'LICENSE-MIT' to 'LICENSE' to license package distribution (#788)
  • 3a840ea Add number prompt type to README (#786)
  • 79b60bc Add inquirer-emoji to README (#784)
  • b745c5e Fix babel config
  • aac0d4a Tentative: Fix old Node on CI
  • 5d35cea Bug #776 fixed (#777)

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 20, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 20, 2019

  • The devDependency inquirer was updated from 3.3.0 to 6.4.0.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jun 21, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 21, 2019

  • The devDependency inquirer was updated from 3.3.0 to 6.4.1.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jul 11, 2019
greenkeeper bot added a commit that referenced this pull request Aug 11, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 11, 2019

  • The devDependency inquirer was updated from 3.3.0 to 6.5.1.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Aug 23, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 23, 2019

  • The devDependency inquirer was updated from 3.3.0 to 7.0.0.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Dec 15, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 15, 2019

  • The devDependency inquirer was updated from 3.3.0 to 7.0.1.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jan 25, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 25, 2020

  • The devDependency inquirer was updated from 3.3.0 to 7.0.4.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Feb 29, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 29, 2020

  • The devDependency inquirer was updated from 3.3.0 to 7.0.5.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Mar 4, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 4, 2020

  • The devDependency inquirer was updated from 3.3.0 to 7.0.6.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Mar 10, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 10, 2020

  • The devDependency inquirer was updated from 3.3.0 to 7.0.7.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Mar 10, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 10, 2020

  • The devDependency inquirer was updated from 3.3.0 to 7.1.0.

Update to this version instead 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants