Socket
Socket
Sign inDemoInstall

ref-napi

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ref-napi - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

19

CHANGELOG.md

@@ -0,1 +1,20 @@

1.4.1 / 2019-01-07
==================
* [[`f1827f3bdd`](https://github.com/node-ffi-napi/ref-napi/commit/f1827f3bdd)] - Update node-addon-api dependency to ^1.6.2 (Anna Henningsen)
* [[`bf16e880fb`](https://github.com/node-ffi-napi/ref-napi/commit/bf16e880fb)] - chore(package): update marked to version 0.6.0 (#11) (greenkeeper[bot])
* [[`bb92877339`](https://github.com/node-ffi-napi/ref-napi/commit/bb92877339)] - ***Revert*** "Update debug to 4.0.0" (Anna Henningsen)
* [[`6fa4022605`](https://github.com/node-ffi-napi/ref-napi/commit/6fa4022605)] - Update debug to 4.0.0 (Anna Henningsen)
* [[`3c98424bee`](https://github.com/node-ffi-napi/ref-napi/commit/3c98424bee)] - chore(package): update marked to version 0.5.0 (#7) (greenkeeper[bot])
* [[`c9523cd587`](https://github.com/node-ffi-napi/ref-napi/commit/c9523cd587)] - chore(package): update nyc to version 12.0.1 (#6) (greenkeeper[bot])
* [[`3f3f1b8efa`](https://github.com/node-ffi-napi/ref-napi/commit/3f3f1b8efa)] - chore(package): update marked to version 0.4.0 (#5) (greenkeeper[bot])
* [[`1c2a878c7a`](https://github.com/node-ffi-napi/ref-napi/commit/1c2a878c7a)] - chore(package): update mocha to version 5.0.0 (#2) (greenkeeper[bot])
* [[`0b35b34000`](https://github.com/node-ffi-napi/ref-napi/commit/0b35b34000)] - Explicitly test Node v4 (Anna Henningsen)
* [[`74bbaa4cb6`](https://github.com/node-ffi-napi/ref-napi/commit/74bbaa4cb6)] - docs(readme): add Greenkeeper badge (greenkeeper[bot])
* [[`bba04d75ce`](https://github.com/node-ffi-napi/ref-napi/commit/bba04d75ce)] - chore(package): update dependencies (greenkeeper[bot])
* [[`0a77d1edde`](https://github.com/node-ffi-napi/ref-napi/commit/0a77d1edde)] - Bump node-addon-api to ^1.1.0 (Anna Henningsen)
* [[`b8bac0aea0`](https://github.com/node-ffi-napi/ref-napi/commit/b8bac0aea0)] - Use full package name in README heading (Anna Henningsen)
* [[`31bd8454a7`](https://github.com/node-ffi-napi/ref-napi/commit/31bd8454a7)] - Use matching branch name for badges in README.md (Anna Henningsen)
* [[`46b0db449b`](https://github.com/node-ffi-napi/ref-napi/commit/46b0db449b)] - fix up package name in package.json (Anna Henningsen)
1.4.0 / 2017-11-19

@@ -2,0 +21,0 @@ ==================

16

package.json

@@ -24,3 +24,3 @@ {

],
"version": "1.4.0",
"version": "1.4.1",
"license": "MIT",

@@ -40,13 +40,13 @@ "author": "Anna Henningsen <anna@addaleax.net>",

"debug": "^3.1.0",
"node-addon-api": "https://github.com/nodejs/node-addon-api/archive/82656bb.tar.gz"
"node-addon-api": "^1.6.2"
},
"devDependencies": {
"dox": "0.0.4",
"highlight.js": "1",
"jade": "^0.35.0",
"marked": "^0.3.2",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"dox": "0.9.0",
"highlight.js": "^9.12.0",
"jade": "^1.11.0",
"marked": "^0.6.0",
"mocha": "^5.0.0",
"nyc": "^12.0.1",
"weak-napi": "1"
}
}

@@ -1,9 +0,11 @@

ref
===
ref-napi
========
### Turn Buffer instances into "pointers"
[![Greenkeeper badge](https://badges.greenkeeper.io/node-ffi-napi/ref-napi.svg)](https://greenkeeper.io/)
[![NPM Version](https://img.shields.io/npm/v/ref-napi.svg?style=flat)](https://npmjs.org/package/ref-napi)
[![NPM Downloads](https://img.shields.io/npm/dm/ref-napi.svg?style=flat)](https://npmjs.org/package/ref-napi)
[![Build Status](https://travis-ci.org/node-ffi-napi/ref-napi.svg?style=flat&branch=master)](https://travis-ci.org/node-ffi-napi/ref-napi?branch=master)
[![Coverage Status](https://coveralls.io/repos/node-ffi-napi/ref-napi/badge.svg?branch=master)](https://coveralls.io/r/node-ffi-napi/ref-napi?branch=master)
[![Build Status](https://travis-ci.org/node-ffi-napi/ref-napi.svg?style=flat&branch=latest)](https://travis-ci.org/node-ffi-napi/ref-napi?branch=latest)
[![Coverage Status](https://coveralls.io/repos/node-ffi-napi/ref-napi/badge.svg?branch=latest)](https://coveralls.io/r/node-ffi-napi/ref-napi?branch=latest)
[![Dependency Status](https://david-dm.org/node-ffi-napi/ref-napi.svg?style=flat)](https://david-dm.org/node-ffi-napi/ref-napi)

@@ -10,0 +12,0 @@

'use strict';
const assert = require('assert');
const ref = require('../');
const weak = require('weak-napi');
let weak; try { weak = require('weak-napi'); } catch (e) {}

@@ -24,2 +24,4 @@ describe('Object', function() {

it('should retain references to written Objects', function (done) {
if (weak === undefined)
return this.skip('weak not avaialbe');
let o_gc = false;

@@ -26,0 +28,0 @@ let buf_gc = false;

'use strict';
const assert = require('assert');
const ref = require('../');
const weak = require('weak-napi');
let weak; try { weak = require('weak-napi'); } catch (e) {}

@@ -23,2 +23,4 @@ describe('pointer', function() {

it('should retain references to a written pointer in a Buffer', function (done) {
if (weak === undefined)
return this.skip('weak not avaialbe');
let child_gc = false;

@@ -25,0 +27,0 @@ let parent_gc = false;

'use strict';
const assert = require('assert');
const ref = require('../');
const weak = require('weak-napi');
let weak; try { weak = require('weak-napi'); } catch (e) {}

@@ -33,2 +33,4 @@ describe('reinterpret()', function() {

it('should retain a reference to the original Buffer when reinterpreted', function() {
if (weak === undefined)
return this.skip('weak not avaialbe');
let origGCd = false;

@@ -35,0 +37,0 @@ let otherGCd = false;

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc