New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

has-proto

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

has-proto - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

9

CHANGELOG.md

@@ -8,2 +8,11 @@ # Changelog

## [v1.2.0](https://github.com/inspect-js/has-proto/compare/v1.1.0...v1.2.0) - 2024-12-06
### Commits
- [Refactor] use `dunder-proto` instead of `call-bind` [`6e5e76c`](https://github.com/inspect-js/has-proto/commit/6e5e76ce3bf4c01ebb99b38dcd61bee1ba35073f)
- [actions] split out node 10-20, and 20+ [`3b8e9e6`](https://github.com/inspect-js/has-proto/commit/3b8e9e651431ef5e9725dae68881b8107e812ee0)
- [Dev Deps] update `@ljharb/tsconfig`, `gopd` [`57bcd00`](https://github.com/inspect-js/has-proto/commit/57bcd000625c7d1e7f41fd10b4a8e1ea380029dd)
- [actions] skip `npm ls` in node < 10 [`ce3a4d7`](https://github.com/inspect-js/has-proto/commit/ce3a4d76d4f15d94540cb5f2ae50967cc6299ee3)
## [v1.1.0](https://github.com/inspect-js/has-proto/compare/v1.0.3...v1.1.0) - 2024-12-01

@@ -10,0 +19,0 @@

2

mutator.js

@@ -10,3 +10,3 @@ 'use strict';

var setter = require('./helpers/setDunder');
var setter = require('dunder-proto/set');

@@ -13,0 +13,0 @@ /** @type {import('./mutator')} */

{
"name": "has-proto",
"version": "1.1.0",
"version": "1.2.0",
"description": "Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?",

@@ -56,4 +56,3 @@ "main": "index.js",

"@ljharb/eslint-config": "^21.1.1",
"@ljharb/tsconfig": "^0.2.0",
"@types/call-bind": "^1.0.5",
"@ljharb/tsconfig": "^0.2.2",
"@types/gopd": "^1.0.3",

@@ -65,3 +64,3 @@ "@types/tape": "^5.6.5",

"evalmd": "^0.0.19",
"gopd": "^1.1.0",
"gopd": "^1.2.0",
"in-publish": "^2.0.1",

@@ -92,4 +91,4 @@ "npmignore": "^0.3.1",

"dependencies": {
"call-bind": "^1.0.7"
"dunder-proto": "^1.0.0"
}
}

@@ -10,3 +10,3 @@ 'use strict';

var getter = require('../helpers/getDunder');
var getter = require('dunder-proto/get');

@@ -13,0 +13,0 @@ test('hasProtoAccessor', function (t) {

@@ -9,3 +9,3 @@ 'use strict';

var getter = require('../helpers/getDunder');
var getter = require('dunder-proto/get');

@@ -12,0 +12,0 @@ test('hasProto', function (t) {

@@ -10,3 +10,3 @@ 'use strict';

var getter = require('../helpers/getDunder');
var getter = require('dunder-proto/get');

@@ -13,0 +13,0 @@ test('hasProtoMutator', function (t) {

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