diff --git a/.github/.keepalive b/.github/.keepalive index d1d4113..42cb4e0 100644 --- a/.github/.keepalive +++ b/.github/.keepalive @@ -1 +1 @@ -2023-07-01T04:18:40.837Z +2023-08-01T04:47:00.300Z diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 26be02d..474004b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -209,7 +209,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/publish_cli.yml b/.github/workflows/publish_cli.yml index 7325aab..02da0eb 100644 --- a/.github/workflows/publish_cli.yml +++ b/.github/workflows/publish_cli.yml @@ -132,7 +132,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cfab743..ecb26b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,7 +89,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index 6d8aa0b..a73c515 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -106,7 +106,7 @@ jobs: # Send Slack notification if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 3aa237e..51ec946 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -75,7 +75,7 @@ jobs: # Send Slack notification if job fails: - name: 'Send notification to Slack in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 0c2727b..93c4bde 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3,28 +3,31 @@ # Contributors listed in alphabetical order. Ali Salesi +Amit Jimiwal Athan Reines Brendan Graetz Bruno Fenzl Christopher Dambamuromo +Dan Rose Dominik Moritz +Dorrin Sotoudeh Frank Kovacs -Harshita Kalani <95532771+HarshitaKalani@users.noreply.github.com> -James +Harshita Kalani +James Gelok Jithin KS Joey Reed -Jordan-Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com> +Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com> Joris Labie Justin Dennison -KATTA NAGA NITHIN <88046362+nithinkatta@users.noreply.github.com> -Marcus +Marcus Fantham Matt Cochrane Milan Raj Momtchil Momtchev -Naresh Jagadeesan <37257700+Infinage@users.noreply.github.com> +Naresh Jagadeesan +Nithin Katta <88046362+nithinkatta@users.noreply.github.com> Ognjen Jevremović Philipp Burckhardt -Pranav <85227306+Pranavchiku@users.noreply.github.com> +Pranav Goswami Ricky Reusser Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Ryan Seal @@ -32,7 +35,5 @@ Seyyed Parsa Neshaei Shraddheya Shendre Stephannie Jiménez Gacha Yernar Yergaziyev -dorrin-sot <59933477+dorrin-sot@users.noreply.github.com> -drunken_devv <90555965+amitjimiwal@users.noreply.github.com> orimiles5 <97595296+orimiles5@users.noreply.github.com> -rei2hu +rei2hu diff --git a/test/test.js b/test/test.js index cbf8925..2dc7c47 100644 --- a/test/test.js +++ b/test/test.js @@ -28,6 +28,6 @@ var httpServer = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof httpServer, 'function', 'main export is a function' ); + t.strictEqual( typeof httpServer, 'function', 'main export is a function' ); t.end(); }); diff --git a/test/test.main.js b/test/test.main.js index d02a6ea..26df59a 100644 --- a/test/test.main.js +++ b/test/test.main.js @@ -38,7 +38,7 @@ var request = require( './fixtures/request.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof httpServer, 'function', 'main export is a function' ); + t.strictEqual( typeof httpServer, 'function', 'main export is a function' ); t.end(); }); diff --git a/test/test.opts.js b/test/test.opts.js index 57ec2c8..c778626 100644 --- a/test/test.opts.js +++ b/test/test.opts.js @@ -28,7 +28,7 @@ var getOpts = require( './../lib/opts.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof getOpts, 'function', 'main export is a function' ); + t.strictEqual( typeof getOpts, 'function', 'main export is a function' ); t.end(); }); diff --git a/test/test.validate.js b/test/test.validate.js index 56afe2b..73f3ebc 100644 --- a/test/test.validate.js +++ b/test/test.validate.js @@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof validate, 'function', 'main export is a function' ); + t.strictEqual( typeof validate, 'function', 'main export is a function' ); t.end(); });