New Upstream Snapshot - node-grunt-legacy-log

Ready changes

Summary

Merged new upstream version: 2.0.0+git20200727.1.bb9c280 (was: 2.0.0).

Resulting package

Built on 2022-10-21T11:33 (took 3m42s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots node-grunt-legacy-log

Lintian Result

Diff

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..6cb24fa
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,40 @@
+name: Tests
+on: [push, pull_request]
+env:
+  CI: true
+
+jobs:
+  run:
+    name: Node ${{ matrix.node }} on ${{ matrix.os }}
+    runs-on: ${{ matrix.os }}
+
+    strategy:
+      fail-fast: false
+      matrix:
+        node: [10, 12, 14]
+        os: [ubuntu-latest, windows-latest]
+
+    steps:
+      - name: Clone repository
+        uses: actions/checkout@v2
+
+      - name: Set Node.js version
+        uses: actions/setup-node@v1
+        with:
+          node-version: ${{ matrix.node }}
+
+      - run: node --version
+      - run: npm --version
+
+      - name: Install npm dependencies
+        run: npm i
+
+      - name: Run tests
+        run: npm test
+
+      # We test multiple Windows shells because of prior stdout buffering issues
+      # filed against Grunt. https://github.com/joyent/node/issues/3584
+      - name: Run PowerShell tests
+        run: "npm test # PowerShell" # Pass comment to PS for easier debugging
+        shell: powershell
+        if: startsWith(matrix.os, 'windows')
diff --git a/CHANGELOG b/CHANGELOG
index b5035d3..a5863ab 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+v3.0.0:
+  date: 2020-07-27
+  changes:
+    - Update dependencies
 v2.0.0:
   date: 2018-05-19
   changes:
diff --git a/README.md b/README.md
index 1481216..3597e5b 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,5 @@
 # grunt-legacy-log
-> The Grunt 0.4.x logger.
-
-[![Build Status](https://secure.travis-ci.org/gruntjs/grunt-legacy-log.png?branch=master)](http://travis-ci.org/gruntjs/grunt-legacy-log)
-[![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com/)
+> The Grunt logger.
 
+[![Built with Grunt](https://cdn.gruntjs.com/builtwith.svg)](http://gruntjs.com/)
+[![Build Status](https://github.com/gruntjs/grunt-legacy-log/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-legacy-log/actions?workflow=Tests)
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 31a7577..0000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-# Fix line endings on Windows
-init:
-  - git config --global core.autocrlf true
-# What combinations to test
-environment:
-  matrix:
-    - nodejs_version: "6"
-    - nodejs_version: "8"
-platform:
-  - x86
-  - x64
-install:
-  - ps: Install-Product node $env:nodejs_version
-  - npm install -g npm
-  - npm install
-test_script:
-  # Output useful info for debugging.
-  - node --version && npm --version
-  # We test multiple Windows shells because of prior stdout buffering issues
-  # filed against Grunt. https://github.com/joyent/node/issues/3584
-  - ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
-  - cmd: npm test
-build: off
-matrix:
-  fast_finish: true
-cache:
-  - node_modules -> package.json # local npm modules
diff --git a/debian/changelog b/debian/changelog
index eedb55b..5869b65 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+node-grunt-legacy-log (2.0.0+git20200727.1.bb9c280-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Fri, 21 Oct 2022 11:31:58 -0000
+
 node-grunt-legacy-log (2.0.0-3) unstable; urgency=medium
 
   * Team upload
diff --git a/package.json b/package.json
index 5c91737..d311286 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
 {
   "name": "grunt-legacy-log",
   "description": "The Grunt 0.4.x logger.",
-  "version": "2.0.0",
+  "version": "3.0.0",
   "author": "\"Cowboy\" Ben Alman (http://benalman.com/)",
   "homepage": "http://gruntjs.com/",
   "repository": {
@@ -25,15 +25,15 @@
   ],
   "dependencies": {
     "colors": "~1.1.2",
-    "grunt-legacy-log-utils": "~2.0.0",
+    "grunt-legacy-log-utils": "~2.1.0",
     "hooker": "~0.2.3",
-    "lodash": "~4.17.5"
+    "lodash": "~4.17.19"
   },
   "devDependencies": {
-    "grunt": "^1.0.1",
-    "grunt-cli": "^1.2.0",
-    "grunt-contrib-jshint": "^1.0.0",
-    "grunt-contrib-nodeunit": "^2.0.0",
-    "grunt-contrib-watch": "^1.0.0"
+    "grunt": "^1.2.1",
+    "grunt-cli": "^1.3.2",
+    "grunt-contrib-jshint": "^2.1.0",
+    "grunt-contrib-nodeunit": "^2.1.0",
+    "grunt-contrib-watch": "^1.1.0"
   }
 }
diff --git a/test/index.js b/test/index.js
index 878c270..4806231 100644
--- a/test/index.js
+++ b/test/index.js
@@ -49,7 +49,7 @@ function repeat(str, n, separator) {
   return result;
 }
 
-var fooBuffer = new Buffer('foo');
+var fooBuffer = Buffer.from('foo');
 
 exports['Log instance'] = {
   setUp: function(done) {

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details