## [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
---
-[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
* 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) {
it('covers', function () {
const d = new Dingus({}, {});
assert(d);
- assert('log' in d.logger);
});
}); // constructor
assert(dingus.serveFile.called);
});
}); // handlerGetStaticFile
-});
\ No newline at end of file
+});