Skip to content

Releases: pwmcintyre/dexlog

fix: 🐛 Ensure undefined is not serialzed

21 Feb 03:14
ac41107
Compare
Choose a tag to compare

This fixes an issue when logging undefine objects

Error

TypeError: Cannot read properties of undefined (reading 'type')

feat: stringify buffers 🧵

06 Feb 03:15
2e9ee75
Compare
Choose a tag to compare

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 🧹

04 Jul 11:27
0869e9c
Compare
Choose a tag to compare

fixing the build 🛠

01 Jul 01:23
Compare
Choose a tag to compare
1.0.7

build fixes 🧨

first release 🚀

01 Jul 01:18
Compare
Choose a tag to compare
1.0.6

Merge branch 'master' of github.com:pwmcintyre/dexlog

🌱

01 Jul 01:03
e9f1fff
Compare
Choose a tag to compare
1.0.4

build: add publish GitHub Action