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

Release 6.13.1 #494

Merged
merged 23 commits into from Nov 18, 2019
Merged

Release 6.13.1 #494

merged 23 commits into from Nov 18, 2019

Commits on Nov 13, 2019

  1. fix(fund): support funding string shorthand

    In the approved RFC it was documented that `npm fund` should also
    support a shorthand version of the `funding` property using only a
    string instead of an object.
    
    This commit fixes it and adds tests to ensure its behavior.
    
    PR-URL: #472
    Credit: @ruyadorno
    Close: #472
    Reviewed-by: @claudiahdz
    ruyadorno authored and claudiahdz committed Nov 13, 2019
    Configuration menu
    Copy the full SHA
    938d612 View commit details
    Browse the repository at this point in the history
  2. fix: should not publish tap-snapshot folder

    - Add `tap-snapshot` folder to `.npmignore`
    - Fixes #461
    
    PR-URL: #471
    Credit: @ruyadorno
    Close: #471
    Reviewed-by: @claudiahdz
    ruyadorno authored and claudiahdz committed Nov 13, 2019
    Configuration menu
    Copy the full SHA
    b49c553 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2019

  1. feat: added workflow to trigger and run benchmarks [2]

    PR-URL: #278
    Credit: @mikemimik
    Close: #278
    Reviewed-by: @claudiahdz
    Michael Perrotte authored and claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    dbbf977 View commit details
    Browse the repository at this point in the history
  2. windows: Add preliminary WSL support for npm and npx

    This commit would make it possible to run `npm` installed on Windows within Windows Subsystem for Linux.
    
    It is required, however, that the end of line characters of `npm` and `npx` be `\n` for the fix to take effect.
    
    PR-URL: #253
    Credit: @infinnie
    Close: #253
    Reviewed-by: @claudiahdz
    infinnie authored and claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    3471d52 View commit details
    Browse the repository at this point in the history
  3. chore(docs): fix links on markdowns

    chore(docs): fix styling issues on man and html docs
    
    chore(docs): fix absolute links on cli docs
    claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    b8c1576 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    30b013a View commit details
    Browse the repository at this point in the history
  5. docs: compress inlined SVG

    2427 bytes -> 2045 bytes
    
    PR-URL: #463
    Credit: @XhmikosR
    Close: #463
    Reviewed-by: @claudiahdz
    XhmikosR authored and claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    26c1b2e View commit details
    Browse the repository at this point in the history
  6. feat(docs): adding tests and updating docs to reflect changes in regi…

    …stry teams API. The default developers team can not longer be removed
    
    PR-URL: #457
    Credit: @nomadtechie
    Close: #457
    Reviewed-by: @claudiahdz
    Amal Hussein authored and claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    b4f5e38 View commit details
    Browse the repository at this point in the history
  7. chore(docs): docs cleanup

    chore(docs): change chmod markdown files
    
    chore(docs): update gitignore
    claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    9f943a7 View commit details
    Browse the repository at this point in the history
  8. chore(docs): fix spelling mistake in npm-install.md docs

    PR-URL: #285
    Credit: @brettz9
    Close: #285
    Reviewed-by: @claudiahdz
    brettz9 authored and claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    c0346b1 View commit details
    Browse the repository at this point in the history
  9. chore(docs): Added depreciation note in npm-scripts.md

    PR-URL: #268
    Credit: @mkotsollaris
    Close: #268
    Reviewed-by: @claudiahdz
    mkotsollaris authored and claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    8e09d5a View commit details
    Browse the repository at this point in the history
  10. chore(docs): Add how to install all deps when NODE_ENV=production

    PR-URL: #232
    Credit: @mugli
    Close: #232
    Reviewed-by: @claudiahdz
    mugli authored and claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    4a2f551 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    87d6725 View commit details
    Browse the repository at this point in the history
  12. docs: remove coding-style from docs

    PR-URL: #453
    Credit: @claudiahdz
    Close: #453
    Reviewed-by: @claudiahdz
    claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    5c3b327 View commit details
    Browse the repository at this point in the history
  13. test: fix git configs for git 2.23 and above

    Config values are now case-sensitive, so `commit.gpgsign=false` was
    doing nothing.
    
    PR-URL: #456
    Credit: @isaacs
    Close: #456
    Reviewed-by: @claudiahdz
    isaacs authored and claudiahdz committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    454c7dd View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2019

  1. make-fetch-happen@5.0.2

    claudiahdz committed Nov 15, 2019
    Configuration menu
    Copy the full SHA
    661d86c View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2019

  1. docs: package aliases

    PR-URL: #485
    Credit: @claudiahdz
    Close: #485
    Reviewed-by: @claudiahdz
    claudiahdz committed Nov 18, 2019
    Configuration menu
    Copy the full SHA
    b150eae View commit details
    Browse the repository at this point in the history
  2. fix: print quick audit report for human output

    This was broken when the support/funding functionality changed the
    return value to no longer track the promise for the quick audit
    printing.
    
    It was not caught by tests, because they were only running against the
    --json output, and not verifying the quick audit results in any way.
    
    Added a test to track the --json quick audit results (which were not
    broken, but someday could become so) and the human printed quick audit
    results (which were broken).
    
    Paired with @ruyadorno @mikemimik
    
    PR-URL: #486
    Credit: @isaacs
    Close: #486
    Reviewed-by: @claudiahdz
    isaacs authored and claudiahdz committed Nov 18, 2019
    Configuration menu
    Copy the full SHA
    3ef295f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7555a74 View commit details
    Browse the repository at this point in the history
  4. docs: ignore netlify file

    PR-URL: #493
    Credit: @claudiahdz
    Close: #493
    Reviewed-by: @claudiahdz
    claudiahdz committed Nov 18, 2019
    Configuration menu
    Copy the full SHA
    b89423e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1d61a3c View commit details
    Browse the repository at this point in the history
  6. update AUTHORS

    claudiahdz committed Nov 18, 2019
    Configuration menu
    Copy the full SHA
    464036b View commit details
    Browse the repository at this point in the history
  7. 6.13.1

    claudiahdz committed Nov 18, 2019
    Configuration menu
    Copy the full SHA
    b829d62 View commit details
    Browse the repository at this point in the history