diff -Nru node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/changelog node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/changelog --- node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/changelog 2020-12-07 19:05:41.000000000 +0000 +++ node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/changelog 2020-12-08 11:13:36.000000000 +0000 @@ -1,3 +1,9 @@ +node-copy-webpack-plugin (5.1.2+~cs9.0.2-4) unstable; urgency=medium + + * Adapt for node-uuid 8.x API + + -- Pirate Praveen Tue, 08 Dec 2020 16:43:36 +0530 + node-copy-webpack-plugin (5.1.2+~cs9.0.2-3) unstable; urgency=medium * Fix typo in symbolic link path diff -Nru node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/patches/series node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/patches/series --- node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/patches/series 2020-12-08 11:13:36.000000000 +0000 @@ -0,0 +1 @@ +uuid-8-compat.patch diff -Nru node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/patches/uuid-8-compat.patch node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/patches/uuid-8-compat.patch --- node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/patches/uuid-8-compat.patch 1970-01-01 00:00:00.000000000 +0000 +++ node-copy-webpack-plugin-5.1.2+~cs9.0.2/debian/patches/uuid-8-compat.patch 2020-12-08 11:13:36.000000000 +0000 @@ -0,0 +1,13 @@ +Adapt for uuid 8 API + +--- a/webpack-log/src/index.js ++++ b/webpack-log/src/index.js +@@ -6,7 +6,7 @@ + no-param-reassign, + space-before-function-paren + */ +-const uuid = require('uuid/v4'); ++const { v4: uuid } = require('uuid') + const colors = require('ansi-colors'); + const loglevel = require('./loglevel'); +