Skip to content

Commit

Permalink
Update util to 0.12.4
Browse files Browse the repository at this point in the history
Chrome 92 started to disable `SharedArrayBuffer` without cross-origin isolation which can be enabled by [sending the page with special HTTP headers](https://web.dev/cross-origin-isolation-guide/). This change causes Chrome to emit a warning in DevTools console and [developers are confused with the message](vercel/next.js#21708). `util` is one of the libraries that uses `SharedArrayBuffer` and is causing the warning to appear in the console.

Luckily, the issue in `util` has been resolved in v0.12.4 and I would like to propose applying the fixed version to this library.
  • Loading branch information
agektmr committed Aug 11, 2021
1 parent bba838e commit c369d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@
"es6-object-assign": "^1.1.0",
"is-nan": "^1.2.1",
"object-is": "^1.0.1",
"util": "^0.12.0"
"util": "^0.12.4"
}
}

0 comments on commit c369d9b

Please sign in to comment.