Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

object.assign

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

object.assign - npm Package Compare versions

Comparing version 4.1.6 to 4.1.7

16

CHANGELOG.md

@@ -0,9 +1,13 @@

4.1.7 / 2024-12-18
==================
* [Deps] add missing `es-object-atoms` (#86)
4.1.6 / 2024-12-18
==================
[Refactor] use `call-bound` directly; use `es-object-atoms`
[Deps] update `call-bind`, `has-symbols`
[Dev Deps] update `@es-shims/api`, `@ljharb/eslint-config`, `hasown`, `mock-property`, `ses`, `tape`
[actions] split out node 10-20, and 20+
[actions] remove redundant finisher
[Tests] replace `aud` with `npm audit`
* [Refactor] use `call-bound` directly; use `es-object-atoms`
* [Deps] update `call-bind`, `has-symbols`
* [Dev Deps] update `@es-shims/api`, `@ljharb/eslint-config`, `hasown`, `mock-property`, `ses`, `tape`
* [actions] split out node 10-20, and 20+
* [actions] remove redundant finisher
* [Tests] replace `aud` with `npm audit`

@@ -10,0 +14,0 @@ 4.1.5 / 2023-11-30

@@ -303,7 +303,14 @@ (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){

// eslint-disable-next-line no-extra-parens, no-proto
var hasProtoAccessor = /** @type {{ __proto__?: typeof Array.prototype }} */ ([]).__proto__ === Array.prototype;
var hasProtoAccessor;
try {
// eslint-disable-next-line no-extra-parens, no-proto
hasProtoAccessor = /** @type {{ __proto__?: typeof Array.prototype }} */ ([]).__proto__ === Array.prototype;
} catch (e) {
if (!e || typeof e !== 'object' || !('code' in e) || e.code !== 'ERR_PROTO_ACCESS') {
throw e;
}
}
// eslint-disable-next-line no-extra-parens
var desc = hasProtoAccessor && gOPD && gOPD(Object.prototype, /** @type {keyof typeof Object.prototype} */ ('__proto__'));
var desc = !!hasProtoAccessor && gOPD && gOPD(Object.prototype, /** @type {keyof typeof Object.prototype} */ ('__proto__'));

@@ -310,0 +317,0 @@ var $Object = Object;

{
"name": "object.assign",
"version": "4.1.6",
"version": "4.1.7",
"author": "Jordan Harband",

@@ -47,2 +47,3 @@ "funding": {

"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0",
"has-symbols": "^1.1.0",

@@ -60,3 +61,2 @@ "object-keys": "^1.1.1"

"hasown": "^2.0.2",
"is": "^3.3.0",
"mock-property": "^1.1.0",

@@ -63,0 +63,0 @@ "npmignore": "^0.3.1",

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