Skip to content

Commit

Permalink
Changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
danfuzz committed Nov 22, 2024
1 parent a6a3fa9 commit 5c330a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@ Other notable changes:
* general:
* Allow node version 23.
* `loggy-intf` / `loggy`:
* Made several improvements to "human" (non-JSON) log rendering, including
fixing it to be able to log values with reference cycles.
* Improved the data model used to encode logged items, including:
* Representing functions and classes as structured objects instead of just
strings.
* Making it possible to encode values with reference cycles.
* Improved "human" (non-JSON) log rendering, including:
* Correctly rendering shared references.
* Tweaking the styling for readability.
* `structy`:
* Started allowing any object (plain or not) to be used as the argument to the
`BaseStruct` constructor.
Expand Down
1 change: 1 addition & 0 deletions src/host/export/ProductInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export class ProductInfo {
static init() {
this.#extractInfo();
ThisModule.logger?.productInfo(this.#info);
ThisModule.logger?.HELLO_THERE({ abc: 'boop', 'cd-ef': 'floop', 97: 'zoop', [-123]: 'doop' });

Check failure on line 53 in src/host/export/ProductInfo.js

View workflow job for this annotation

GitHub Actions / build

Inconsistently quoted property 'abc' found

Check failure on line 53 in src/host/export/ProductInfo.js

View workflow job for this annotation

GitHub Actions / build

Inconsistently quoted property '97' found
}

/**
Expand Down

0 comments on commit 5c330a5

Please sign in to comment.