[Pkg-javascript-commits] [Git][js-team/node-gauge][master] 4 commits: Set upstream metadata fields: Security-Contact.
Yadd (@yadd)
gitlab at salsa.debian.org
Thu Feb 24 07:57:21 GMT 2022
Yadd pushed to branch master at Debian JavaScript Maintainers / node-gauge
Commits:
90ef73d8 by Yadd at 2022-02-24T08:54:52+01:00
Set upstream metadata fields: Security-Contact.
Changes-By: lintian-brush
- - - - -
254b1b0f by Yadd at 2022-02-24T08:55:18+01:00
New upstream version 4.0.2
- - - - -
1d095fcb by Yadd at 2022-02-24T08:55:19+01:00
Update upstream source from tag 'upstream/4.0.2'
Update to upstream version '4.0.2'
with Debian dir af0898c5b1803e195ea76b34ac6a54fd174dee8f
- - - - -
7b270162 by Yadd at 2022-02-24T08:56:56+01:00
releasing package node-gauge version 4.0.2-1
- - - - -
8 changed files:
- + .commitlintrc.js
- + .npmrc
- CHANGELOG.md
- debian/changelog
- debian/upstream/metadata
- lib/themes.js
- − package-lock.json
- package.json
Changes:
=====================================
.commitlintrc.js
=====================================
@@ -0,0 +1,11 @@
+// This file is automatically added by @npmcli/template-oss. Do not edit..
+
+module.exports = {
+ extends: ['@commitlint/config-conventional'],
+ // If you change rules be sure to also update release-please.yml
+ rules: {
+ 'type-enum': [2, 'always', ['feat', 'fix', 'docs', 'chore', 'deps']],
+ 'header-max-length': [2, 'always', 80],
+ 'subject-case': [0, 'always', ['lower-case', 'sentence-case', 'start-case']],
+ },
+}
=====================================
.npmrc
=====================================
@@ -0,0 +1,3 @@
+;This file is automatically added by @npmcli/template-oss. Do not edit.
+
+package-lock=false
=====================================
CHANGELOG.md
=====================================
@@ -7,6 +7,23 @@
* fix: Remove remaining uses of object-assign
* fix: remove object-assign
+### [4.0.2](https://www.github.com/npm/gauge/compare/v4.0.1...v4.0.2) (2022-02-16)
+
+
+### Dependencies
+
+* update color-support requirement from ^1.1.2 to ^1.1.3 ([5921a0f](https://www.github.com/npm/gauge/commit/5921a0f89e6c4c10ea047a219230809fd4118409))
+* update console-control-strings requirement from ^1.0.0 to ^1.1.0 ([a5ac787](https://www.github.com/npm/gauge/commit/a5ac787a3771e8882f9837fab08ca2985cad609f))
+* update signal-exit requirement from ^3.0.0 to ^3.0.7 ([3e0d399](https://www.github.com/npm/gauge/commit/3e0d39917b10e0f94efd4a4c74a46fa8e21e768a))
+* update wide-align requirement from ^1.1.2 to ^1.1.5 ([ddc9048](https://www.github.com/npm/gauge/commit/ddc90480a6c1caa8c176e0b65a9d8207be846f94))
+
+### [4.0.1](https://www.github.com/npm/gauge/compare/v4.0.0...v4.0.1) (2022-02-15)
+
+
+### Bug Fixes
+
+* use more commonly available character for pre/post progressbar ([#141](https://www.github.com/npm/gauge/issues/141)) ([13d3046](https://www.github.com/npm/gauge/commit/13d30466b56015cb75df366371cf85234a8a517f))
+
### v3.0.1
* deps: object-assign at 4.1.1
=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+node-gauge (4.0.2-1) unstable; urgency=medium
+
+ * Team upload
+ * Set upstream metadata fields: Security-Contact.
+ * New upstream version 4.0.2
+
+ -- Yadd <yadd at debian.org> Thu, 24 Feb 2022 08:55:31 +0100
+
node-gauge (4.0.0-1) unstable; urgency=medium
* Team upload
=====================================
debian/upstream/metadata
=====================================
@@ -2,3 +2,4 @@ Bug-Database: https://github.com/npm/gauge/issues
Bug-Submit: https://github.com/npm/gauge/issues/new
Repository: https://github.com/npm/gauge.git
Repository-Browse: https://github.com/npm/gauge
+Security-Contact: https://github.com/npm/gauge/tree/HEAD/SECURITY.md
=====================================
lib/themes.js
=====================================
@@ -27,8 +27,8 @@ themes.addTheme('colorASCII', themes.getTheme('ASCII'), {
})
themes.addTheme('brailleSpinner', {
- preProgressbar: '⸨',
- postProgressbar: '⸩',
+ preProgressbar: '(',
+ postProgressbar: ')',
progressbarTheme: {
complete: '#',
remaining: '⠂',
=====================================
package-lock.json deleted
=====================================
The diff for this file was not included because it is too large.
=====================================
package.json
=====================================
@@ -1,6 +1,6 @@
{
"name": "gauge",
- "version": "4.0.0",
+ "version": "4.0.2",
"description": "A terminal based horizontal gauge",
"main": "lib",
"scripts": {
@@ -12,7 +12,8 @@
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"snap": "tap",
- "posttest": "npm run lint"
+ "posttest": "npm run lint",
+ "template-copy": "npm-template-copy --force"
},
"repository": {
"type": "git",
@@ -32,18 +33,18 @@
"dependencies": {
"ansi-regex": "^5.0.1",
"aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.2",
- "console-control-strings": "^1.0.0",
+ "color-support": "^1.1.3",
+ "console-control-strings": "^1.1.0",
"has-unicode": "^2.0.1",
- "signal-exit": "^3.0.0",
+ "signal-exit": "^3.0.7",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
- "wide-align": "^1.1.2"
+ "wide-align": "^1.1.5"
},
"devDependencies": {
- "@npmcli/template-oss": "^2.3.0",
+ "@npmcli/template-oss": "^2.7.1",
"readable-stream": "^3.6.0",
- "tap": "^15.0.10"
+ "tap": "^15.1.6"
},
"files": [
"bin",
@@ -58,5 +59,7 @@
"functions": 92,
"lines": 90
},
- "templateVersion": "2.3.0"
+ "templateOSS": {
+ "version": "2.7.1"
+ }
}
View it on GitLab: https://salsa.debian.org/js-team/node-gauge/-/compare/681a7b4df28b06a024af6eeb2ed9b3ee91823639...7b2701629a10e9023d282964ade0ad131bda9200
--
View it on GitLab: https://salsa.debian.org/js-team/node-gauge/-/compare/681a7b4df28b06a024af6eeb2ed9b3ee91823639...7b2701629a10e9023d282964ade0ad131bda9200
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-javascript-commits/attachments/20220224/24814435/attachment-0001.htm>
More information about the Pkg-javascript-commits
mailing list