deprecate common.ensureLoggerLevels and no longer use
authorJustin Wind <justin.wind+git@gmail.com>
Wed, 19 Jul 2023 19:35:06 +0000 (12:35 -0700)
committerJustin Wind <justin.wind+git@gmail.com>
Wed, 19 Jul 2023 19:36:54 +0000 (12:36 -0700)
CHANGELOG.md
lib/common.js
lib/dingus.js
test/lib/dingus.js

index 0a69b5c51505d51ab1e760fc65b67fcc15bf7994..a17357611fd565e289367e6aeefe60e47c1ff3d8 100644 (file)
@@ -4,6 +4,37 @@ Releases and notable changes to this project are documented here.
 
 ## [Unreleased]
 
+- matched route path stored on ctx is now string, not array
+- minor cleanups
+- no longer add missing log levels to logger objects, that is a logger problem
+- updated devDependencies
+
+## [v1.2.9] - 2022-09-16
+
+### Added
+
+- updated dependencies
+
+## [v1.2.8] - 2022-06-10
+
+### Added
+
+- updated devDependencies
+
+## [v1.2.7] - 2022-05-06
+
+### Added
+
+- updated devDependencies
+
+## [v1.2.6] - 2022-04-29
+
+### Added
+
+- simplified some logging, other minor refactors
+- bodyData can now return a buffer
+- updated dependencies
+
 ## [v1.2.5] - 2022-03-12
 
 ### Added
@@ -58,7 +89,11 @@ Releases and notable changes to this project are documented here.
 
 ---
 
-[Unreleased]: https://git.squeep.com/?p=squeep-api-dingus;a=commitdiff;h=HEAD;hp=v1.2.5
+[Unreleased]: https://git.squeep.com/?p=squeep-api-dingus;a=commitdiff;h=HEAD;hp=v1.2.9
+[v1.2.9]: https://git.squeep.com/?p=squeep-api-dingus;a=commitdiff;h=v1.2.9;hp=v1.2.8
+[v1.2.8]: https://git.squeep.com/?p=squeep-api-dingus;a=commitdiff;h=v1.2.8;hp=v1.2.7
+[v1.2.7]: https://git.squeep.com/?p=squeep-api-dingus;a=commitdiff;h=v1.2.7;hp=v1.2.6
+[v1.2.6]: https://git.squeep.com/?p=squeep-api-dingus;a=commitdiff;h=v1.2.6;hp=v1.2.5
 [v1.2.5]: https://git.squeep.com/?p=squeep-api-dingus;a=commitdiff;h=v1.2.5;hp=v1.2.4
 [v1.2.4]: https://git.squeep.com/?p=squeep-api-dingus;a=commitdiff;h=v1.2.4;hp=v1.2.3
 [v1.2.3]: https://git.squeep.com/?p=squeep-api-dingus;a=commitdiff;h=v1.2.3;hp=v1.2.2
index 60e0d20a24ef7008cc189b5103e03278ce6e7302..d1abf3ec3cce231f6b0332b2dcf8a13beadf71d2 100644 (file)
@@ -289,6 +289,7 @@ const nullLogger = {
  * Populates any absent logger level functions on a logger object.
  * @param {Object} logger
  * @returns {Object}
+ * @deprecated after v1.2.9 (this is not our responsibility)
  */
 const ensureLoggerLevels = (logger = {}) => {
   for (const level in nullLogger) {
index 943aa2f91e7bfc141960b35182bbbc23ef816f16..f55ad06961b4cd65b1f6ecb04e5ff711e35872cf 100644 (file)
@@ -60,7 +60,6 @@ class Dingus {
     ];
 
     this.logger = logger;
-    common.ensureLoggerLevels(this.logger);
   }
 
 
index ab61256b3a89162c17bfb002a0569f7975786efc..12f40e8a83dad33690f7bbc535d68dfc19a4c9c3 100644 (file)
@@ -25,7 +25,6 @@ describe('Dingus', function () {
     it('covers', function () {
       const d = new Dingus({}, {});
       assert(d);
-      assert('log' in d.logger);
     });
   }); // constructor
 
@@ -1026,4 +1025,4 @@ Content-Type: image/sgi
       assert(dingus.serveFile.called);
     });
   }); // handlerGetStaticFile
-});
\ No newline at end of file
+});