Releases: pwmcintyre/dexlog
Releases · pwmcintyre/dexlog
fix: 🐛 Ensure undefined is not serialzed
This fixes an issue when logging undefine objects
Error
TypeError: Cannot read properties of undefined (reading 'type')
feat: stringify buffers 🧵
previously Buffers are stringified as objects - eg:
> JSONSerializer({ word: Buffer.from('example') })
{"word":{"type":"Buffer","data":[101,120,97,109,112,108,101]}}
this proposal updates the default JSON Serializer to stringify buffers - eg:
> JSONSerializer({ word: Buffer.from('example') })
{"word":"example"}
lint and add code-coverage 🧹
1.0.8 v1.0.8
fixing the build 🛠
1.0.7 build fixes 🧨
first release 🚀
1.0.6 Merge branch 'master' of github.com:pwmcintyre/dexlog
🌱
1.0.4 build: add publish GitHub Action