diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/debian/changelog node-json-stable-stringify-1.0.1+~cs5.2.33/debian/changelog --- node-json-stable-stringify-1.0.1+~cs5.1.32/debian/changelog 2020-11-08 07:33:58.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/debian/changelog 2021-11-06 18:04:37.000000000 +0000 @@ -1,3 +1,19 @@ +node-json-stable-stringify (1.0.1+~cs5.2.33-1) unstable; urgency=medium + + * Team upload + * Declare compliance with policy 4.5.1 + * Add ctype=nodejs to component(s) + * Update standards version to 4.6.0, no changes needed. + * Fix d/watch + * Fix GitHub tags regex + * Fix filenamemangle + * Drop dependency to nodejs + * New upstream version 1.0.1+~cs5.2.33, updates: + + @types/json-stable-stringify 1.0.33 + + @types/fast-json-stable-stringify 2.1.0 + + -- Yadd Sat, 06 Nov 2021 19:04:37 +0100 + node-json-stable-stringify (1.0.1+~cs5.1.32-1) unstable; urgency=medium * Team upload diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/debian/control node-json-stable-stringify-1.0.1+~cs5.2.33/debian/control --- node-json-stable-stringify-1.0.1+~cs5.1.32/debian/control 2020-11-08 07:29:21.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/debian/control 2021-11-06 17:57:33.000000000 +0000 @@ -7,7 +7,7 @@ , dh-sequence-nodejs , node-jsonify , node-tape -Standards-Version: 4.5.0 +Standards-Version: 4.6.0 Vcs-Browser: https://salsa.debian.org/js-team/node-json-stable-stringify Vcs-Git: https://salsa.debian.org/js-team/node-json-stable-stringify.git Homepage: https://github.com/substack/json-stable-stringify @@ -18,7 +18,6 @@ Architecture: all Depends: ${misc:Depends} , node-jsonify - , nodejs Provides: ${nodejs:Provides} Description: deterministic JSON.stringify() It comes with custom sorting to get deterministic hashes from stringified diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/debian/watch node-json-stable-stringify-1.0.1+~cs5.2.33/debian/watch --- node-json-stable-stringify-1.0.1+~cs5.1.32/debian/watch 2020-11-08 07:18:16.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/debian/watch 2021-11-06 18:00:23.000000000 +0000 @@ -1,21 +1,28 @@ version=4 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)(\.\d+)?$//,\ -filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-json-stable-stringify-$1.tar.gz/ \ - https://github.com/substack/json-stable-stringify/tags .*/archive/v?([\d\.]+).tar.gz group +filenamemangle=s/.*?(\d[\d\.-]*@ARCHIVE_EXT@)/node-json-stable-stringify-$1/ \ + https://github.com/substack/json-stable-stringify/tags .*/archive/.*/v?([\d\.]+).tar.gz group -# It is not recommended use npmregistry. Please investigate more. -# Take a look at https://wiki.debian.org/debian/watch/ -opts="searchmode=plain,component=types-json-stable-stringify,pgpmode=none" \ +opts=\ +searchmode=plain,\ +ctype=nodejs,\ +component=types-json-stable-stringify,\ +pgpmode=none,\ +filenamemangle=s/.*?(\d[\d\.]*@ARCHIVE_EXT@)/node-types-json-stable-stringify-$1/ \ https://registry.npmjs.org/@types/json-stable-stringify https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-([\d\.]+)@ARCHIVE_EXT@ checksum opts=\ +ctype=nodejs,\ component=fast-json-stable-stringify,\ dversionmangle=auto,\ -filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-fast-json-stable-stringify-$1.tar.gz/ \ - https://github.com/epoberezkin/fast-json-stable-stringify/tags .*/archive/v?([\d\.]+).tar.gz checksum +filenamemangle=s/.*?(\d[\d\.-]*@ARCHIVE_EXT@)/node-fast-json-stable-stringify-$1/ \ + https://github.com/epoberezkin/fast-json-stable-stringify/tags .*/archive/.*/v?([\d\.]+).tar.gz checksum -# It is not recommended use npmregistry. Please investigate more. -# Take a look at https://wiki.debian.org/debian/watch/ -opts="searchmode=plain,component=types-fast-json-stable-stringify,pgpmode=none" \ +opts=\ +searchmode=plain,\ +ctype=nodejs,\ +component=types-fast-json-stable-stringify,\ +pgpmode=none,\ +filenamemangle=s/.*?(\d[\d\.]*@ARCHIVE_EXT@)/node-types-fast-json-stable-stringify-$1/ \ https://registry.npmjs.org/@types/fast-json-stable-stringify https://registry.npmjs.org/@types/fast-json-stable-stringify/-/fast-json-stable-stringify-([\d\.]+)@ARCHIVE_EXT@ checksum diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/types-fast-json-stable-stringify/index.d.ts node-json-stable-stringify-1.0.1+~cs5.2.33/types-fast-json-stable-stringify/index.d.ts --- node-json-stable-stringify-1.0.1+~cs5.1.32/types-fast-json-stable-stringify/index.d.ts 2018-12-25 05:33:14.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/types-fast-json-stable-stringify/index.d.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -// Type definitions for fast-json-stable-stringify 2.0 -// Project: https://github.com/epoberezkin/fast-json-stable-stringify -// Definitions by: BendingBender -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped - -export = stringify; - -declare function stringify(obj: any, options?: stringify.Options | stringify.Comparator): string; - -declare namespace stringify { - interface Options { - cmp?: (a: CompareDescriptor, b: CompareDescriptor) => number; - cycles?: boolean; - } - - type Comparator = (a: CompareDescriptor, b: CompareDescriptor) => number; - - interface CompareDescriptor { - key: string; - value: any; - } -} diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/types-fast-json-stable-stringify/LICENSE node-json-stable-stringify-1.0.1+~cs5.2.33/types-fast-json-stable-stringify/LICENSE --- node-json-stable-stringify-1.0.1+~cs5.1.32/types-fast-json-stable-stringify/LICENSE 2018-12-25 05:33:14.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/types-fast-json-stable-stringify/LICENSE 2021-05-18 16:31:51.000000000 +0000 @@ -1,21 +1,21 @@ - MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/types-fast-json-stable-stringify/package.json node-json-stable-stringify-1.0.1+~cs5.2.33/types-fast-json-stable-stringify/package.json --- node-json-stable-stringify-1.0.1+~cs5.1.32/types-fast-json-stable-stringify/package.json 2018-12-25 05:33:14.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/types-fast-json-stable-stringify/package.json 2021-05-18 16:31:51.000000000 +0000 @@ -1,23 +1,13 @@ { "name": "@types/fast-json-stable-stringify", - "version": "2.0.0", - "description": "TypeScript definitions for fast-json-stable-stringify", - "license": "MIT", - "contributors": [ - { - "name": "BendingBender", - "url": "https://github.com/BendingBender", - "githubUsername": "BendingBender" - } - ], + "version": "2.1.0", + "typings": null, + "description": "Stub TypeScript definitions entry for fast-json-stable-stringify, which provides its own types definitions", "main": "", - "types": "index", - "repository": { - "type": "git", - "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" - }, "scripts": {}, - "dependencies": {}, - "typesPublisherContentHash": "10ecc071e68a8895448c33e019c987380665fea2ff8d5592670b5bfeb694c772", - "typeScriptVersion": "2.0" + "author": "", + "license": "MIT", + "dependencies": { + "fast-json-stable-stringify": "*" + } } \ No newline at end of file diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/types-fast-json-stable-stringify/README.md node-json-stable-stringify-1.0.1+~cs5.2.33/types-fast-json-stable-stringify/README.md --- node-json-stable-stringify-1.0.1+~cs5.1.32/types-fast-json-stable-stringify/README.md 2018-12-25 05:33:14.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/types-fast-json-stable-stringify/README.md 2021-05-18 16:31:51.000000000 +0000 @@ -1,16 +1,3 @@ -# Installation -> `npm install --save @types/fast-json-stable-stringify` - -# Summary -This package contains type definitions for fast-json-stable-stringify (https://github.com/epoberezkin/fast-json-stable-stringify). - -# Details -Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fast-json-stable-stringify - -Additional Details - * Last updated: Tue, 25 Dec 2018 05:33:14 GMT - * Dependencies: none - * Global values: none - -# Credits -These definitions were written by BendingBender . +This is a stub types definition for @types/fast-json-stable-stringify (https://github.com/epoberezkin/fast-json-stable-stringify). + +fast-json-stable-stringify provides its own type definitions, so you don't need @types/fast-json-stable-stringify installed! \ No newline at end of file diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/types-json-stable-stringify/index.d.ts node-json-stable-stringify-1.0.1+~cs5.2.33/types-json-stable-stringify/index.d.ts --- node-json-stable-stringify-1.0.1+~cs5.1.32/types-json-stable-stringify/index.d.ts 2017-08-21 21:55:03.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/types-json-stable-stringify/index.d.ts 2021-07-06 21:33:48.000000000 +0000 @@ -16,9 +16,9 @@ type Replacer = (key: string, value: any) => any; interface Options { - cmp?: Comparator; - space?: number | string; - replacer?: Replacer; + cmp?: Comparator | undefined; + space?: number | string | undefined; + replacer?: Replacer | undefined; } } diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/types-json-stable-stringify/LICENSE node-json-stable-stringify-1.0.1+~cs5.2.33/types-json-stable-stringify/LICENSE --- node-json-stable-stringify-1.0.1+~cs5.1.32/types-json-stable-stringify/LICENSE 2017-08-21 21:55:03.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/types-json-stable-stringify/LICENSE 2021-07-06 21:33:48.000000000 +0000 @@ -1,6 +1,6 @@ MIT License - Copyright (c) Microsoft Corporation. All rights reserved. + Copyright (c) Microsoft Corporation. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/types-json-stable-stringify/package.json node-json-stable-stringify-1.0.1+~cs5.2.33/types-json-stable-stringify/package.json --- node-json-stable-stringify-1.0.1+~cs5.1.32/types-json-stable-stringify/package.json 2017-08-21 21:55:03.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/types-json-stable-stringify/package.json 2021-07-06 21:33:48.000000000 +0000 @@ -1,21 +1,25 @@ { "name": "@types/json-stable-stringify", - "version": "1.0.32", + "version": "1.0.33", "description": "TypeScript definitions for json-stable-stringify", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-stable-stringify", "license": "MIT", "contributors": [ { "name": "Matt Frantz", - "url": "https://github.com/mhfrantz" + "url": "https://github.com/mhfrantz", + "githubUsername": "mhfrantz" } ], "main": "", + "types": "index.d.ts", "repository": { "type": "git", - "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/json-stable-stringify" }, "scripts": {}, "dependencies": {}, - "typesPublisherContentHash": "efe50198ab5fd6ae636ae6beca8bc95a92c7ca7d68665bb1b4bef58f2ad00037", - "typeScriptVersion": "2.0" + "typesPublisherContentHash": "09ae596403b72c11e892944ab9d3b9c8f772de92aa1a25221b936a48797ae23f", + "typeScriptVersion": "3.6" } \ No newline at end of file diff -Nru node-json-stable-stringify-1.0.1+~cs5.1.32/types-json-stable-stringify/README.md node-json-stable-stringify-1.0.1+~cs5.2.33/types-json-stable-stringify/README.md --- node-json-stable-stringify-1.0.1+~cs5.1.32/types-json-stable-stringify/README.md 2017-08-21 21:55:03.000000000 +0000 +++ node-json-stable-stringify-1.0.1+~cs5.2.33/types-json-stable-stringify/README.md 2021-07-06 21:33:48.000000000 +0000 @@ -5,12 +5,41 @@ This package contains type definitions for json-stable-stringify (https://github.com/substack/json-stable-stringify). # Details -Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-stable-stringify +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-stable-stringify. +## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-stable-stringify/index.d.ts) +````ts +// Type definitions for json-stable-stringify 1.0 +// Project: https://github.com/substack/json-stable-stringify +// Definitions by: Matt Frantz +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +declare function stringify(obj: any, opts?: stringify.Comparator | stringify.Options): string; + +declare namespace stringify { + interface Element { + key: string; + value: any; + } + + type Comparator = (a: Element, b: Element) => number; + + type Replacer = (key: string, value: any) => any; + + interface Options { + cmp?: Comparator | undefined; + space?: number | string | undefined; + replacer?: Replacer | undefined; + } +} + +export = stringify; -Additional Details - * Last updated: Mon, 21 Aug 2017 21:55:03 GMT +```` + +### Additional Details + * Last updated: Tue, 06 Jul 2021 21:33:48 GMT * Dependencies: none * Global values: none # Credits -These definitions were written by Matt Frantz . +These definitions were written by [Matt Frantz](https://github.com/mhfrantz).