Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/string_decoder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 18c7f89c894ced5f610505bb006dfde9a3d1ac5e
Choose a base ref
...
head repository: nodejs/string_decoder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 60db81e031c126112039157ba9437484b1329dff
Choose a head ref
  • 8 commits
  • 2 files changed
  • 4 contributors

Commits on Nov 22, 2018

  1. Update package.json

    fabiosantoscode authored Nov 22, 2018
    Copy the full SHA
    5bfd45b View commit details

Commits on Nov 27, 2018

  1. Merge pull request #11 from fabiosantoscode/patch-1

    Update package.json
    mcollina authored Nov 27, 2018
    Copy the full SHA
    65c2618 View commit details
  2. Use npm legacy in node 4

    mcollina committed Nov 27, 2018
    Copy the full SHA
    2a2d8af View commit details
  3. Merge pull request #12 from nodejs/use-npm-legacy-node-4

    Use npm legacy in node 4
    mcollina authored Nov 27, 2018
    Copy the full SHA
    204c9a6 View commit details
  4. Bumped v1.2.0.

    mcollina committed Nov 27, 2018
    Copy the full SHA
    6e0a928 View commit details

Commits on Aug 7, 2019

  1. safe-buffer@~5.2.0

    feross authored Aug 7, 2019
    Copy the full SHA
    2d94d60 View commit details
  2. Merge pull request #15 from feross/patch-1

    safe-buffer@~5.2.0
    mcollina authored Aug 7, 2019
    Copy the full SHA
    ac99ee3 View commit details
  3. Bumped v1.3.0.

    mcollina committed Aug 7, 2019
    Copy the full SHA
    60db81e View commit details
Showing with 11 additions and 4 deletions.
  1. +6 −2 .travis.yml
  2. +5 −2 package.json
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -37,9 +37,13 @@ matrix:
- TASK=test
- NPM_LEGACY=true
- node_js: 4
env: TASK=test
env:
- TASK=test
- NPM_LEGACY=true
- node_js: 5
env: TASK=test
env:
- TASK=test
- NPM_LEGACY=true
- node_js: 6
env: TASK=test
- node_js: 7
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"name": "string_decoder",
"version": "1.1.1",
"version": "1.3.0",
"description": "The string_decoder module from Node core",
"main": "lib/string_decoder.js",
"files": [
"lib"
],
"dependencies": {
"safe-buffer": "~5.1.0"
"safe-buffer": "~5.2.0"
},
"devDependencies": {
"babel-polyfill": "^6.23.0",