Skip to content

Tags: chaijs/loupe

Tags

v3.1.3

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
chore: install playwright deps before playwright (#86)

* chore: install playwright deps before playwright

We currently install playwright before its dependencies, and this seems
to be causing our CI to fail since a new playwright release at some
point.

Switching them around should fix it.

* chore: bump playwright

* chore: try reinstall web-test-runner

---------

Co-authored-by: Keith Cirkel <keithamus@users.noreply.github.com>

v3.1.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: handle circular refs in errors (#82)

* fix: handle circular refs in errors

Fixes chaijs/chai#1645

We already handle circular references in objects, but do not do the same
for `Error` objects. This change adds the same `seen` logic to error
inspection as we have in object inspection.

v3.1.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: support inspect on strings with unicode (#79)

* Support inspect on strings with unicode

* Update src/helpers.ts

* fix lint

v3.1.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for different types of functions (#77)

add support for different types of functions

v3.0.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: emit declarations and lib via tsc (#76)

This changes from using esbuild to emit library code, and instead uses
typescript itself.

We don't currently ship type declarations since esbuild will not output
them.

v3.0.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
change `postinstall` to `pretest` script. (#73)

* change `postinstall` to `pretest` script.

* comma

* move playright install to pretest:browser

v3.0.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add permissions for provenance (#70)

Update publish.yml

v2.3.7

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
upgrade get-func-name for CVE-2023-43646 (#66)

v2.3.6

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: use a FakeMap to support IE10 (#60)

* fix: use a FakeMap to support IE10

* fix lint

* fix lint

v2.3.5

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: invalid Date object will throw a TypeError (#58) (#59)

* fix: Invalid Date object will throw a TypeError (#58)

* fixed lint error: unnecessary 'else' after 'return'