Skip to content

Releases: poppinss/dumper

Tighten styles for button and code

28 Nov 10:29

Choose a tag to compare

0.7.0 (2025-11-28)

Features

  • tighten styles for button, code and code span c5956fc

Full Changelog: v0.6.5...v0.7.0

Use overflow auto instead of scroll

03 Nov 04:57

Choose a tag to compare

0.6.5 (2025-11-03)

Bug Fixes

  • hide scrollbar when not needed (#2) (d5c6991)

What's Changed

New Contributors

Full Changelog: v0.6.4...v0.6.5

Update dependencies

04 Jul 09:57

Choose a tag to compare

0.6.4 (2025-07-04)

Full Changelog: v0.6.3...v0.6.4

Fix compatibility with environments without crypto

07 Mar 03:39

Choose a tag to compare

0.6.3 (2025-03-07)

Bug Fixes

  • compatibility with environments without crypto (#1) (4a1419c)

What's Changed

  • fix: compatibility with environments without crypto by @pi0 in #1

New Contributors

  • @pi0 made their first contribution in #1

Full Changelog: v0.6.2...v0.6.3

Update dependencies

27 Dec 11:16

Choose a tag to compare

0.6.2 (2024-12-27)

Full Changelog: v0.6.1...v0.6.2

Remove sourcemaps

23 Nov 03:14

Choose a tag to compare

0.6.1 (2024-11-23)

Full Changelog: v0.6.0...v0.6.1

Add support for rendering expanded output

10 Nov 14:29

Choose a tag to compare

This release adds support for rendering expanded output using the expand property.

import { dump } from '@poppinss/dumper/html'

dump(value, {
  expand: true, // expand first-level
})

dump(value, {
  expand: 'all', // expand recursively
})

Features

  • add support for pre-expanding dumper output (7a74793)

Full Changelog: v0.5.0...v0.6.0

Add CSS variables theme for html formatter

05 Nov 06:32

Choose a tag to compare

The HTML formatter now supports using a CSS variables theme which will not output any colors and leaves it on you to define the colors using the CSS variables. Following is the list of variables you will have to fill out.

:root {
  --pre-bg-color
  --pre-fg-color
  --toggle-fg-color
  --braces-fg-color
  --brackets-fg-color
  --dt-number-fg-color
  --dt-bigint-fg-color
  --dt-boolean-fg-color
  --dt-string-fg-color
  --dt-null-fg-color
  --dt-undefined-fg-color
  --prototype-label-fg-color
  --dt-symbol-fg-color
  --dt-regex-fg-color
  --dt-date-fg-color
  --dt-buffer-fg-color
  --function-label-fg-color
  --array-label-fg-color
  --object-label-fg-color
  --map-label-fg-color
  --set-label-fg-color
  --object-key-fg-color
  --object-key-prefix-fg-color
  --class-label-fg-color
  --collpase-label-fg-color
  --getter-label-fg-color
  --circular-label-fg-color
  --weakset-label-fg-color
  --weakref-label-fg-color
  --weakmap-label-fg-color
  --observable-label-fg-color
  --promise-label-fg-color
  --generator-label-fg-color
  --blob-label-fg-color
  --unknown-label-fg-color
}

Features

Full Changelog: v0.4.2...v0.5.0

More improvements to the static properties display

21 Sep 05:50

Choose a tag to compare

Bug Fixes

  • formatting of static members (c438a75)

Full Changelog: v0.4.1...v0.4.2

Fix styling of static class properties

21 Sep 03:47

Choose a tag to compare

Bug Fixes

  • styling of class static property (c1b9610)

Full Changelog: v0.4.0...v0.4.1