Update dependency @podium/utils to v5 #50
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.4.39
->5.4.0
Release Notes
podium-lib/utils (@podium/utils)
v5.4.0
Compare Source
Bug Fixes
Features
5.3.2 (2024-11-04)
Bug Fixes
5.3.1 (2024-09-22)
Bug Fixes
v5.3.2
Compare Source
Bug Fixes
v5.3.1
Compare Source
Bug Fixes
v5.3.0
Compare Source
Features
5.2.1 (2024-09-20)
Bug Fixes
v5.2.1
Compare Source
Bug Fixes
v5.2.0
Compare Source
Features
v5.1.0
Compare Source
Features
5.0.7 (2024-05-15)
Bug Fixes
5.0.6 (2024-05-13)
Bug Fixes
5.0.5 (2024-05-07)
Bug Fixes
5.0.4 (2024-04-23)
Bug Fixes
5.0.3 (2024-04-11)
Bug Fixes
5.0.2 (2024-02-01)
Bug Fixes
5.0.1 (2023-12-07)
Bug Fixes
v5.0.7
Compare Source
Bug Fixes
v5.0.6
Compare Source
Bug Fixes
v5.0.5
Compare Source
Bug Fixes
v5.0.4
Compare Source
Bug Fixes
v5.0.3
Compare Source
Bug Fixes
v5.0.2
Compare Source
Bug Fixes
v5.0.1
Compare Source
Bug Fixes
v5.0.0
Compare Source
Bug Fixes
Features
BREAKING CHANGES
Convert from CommonJS to ESM
feat: convert to ESM
fix: Remove outcommented code
ci: Add build step for backward compat to CJS
ci: Ignore linting dist directory
Co-authored-by: Trygve Lie trygve.lie@finn.no
We've been using Symbols to define private properties in classes up until now. This has the downside that they are not true private and in later versions of node.js one would see these Symbols when inspecting an object. What we want is proper private properties.
This PR does also add a pretty printer which outputs an object literal or the object so when debugging one can see the getters and setters of the object.
Example: printing a object with
console.log()
would previously print the following:PodiumHttpIncoming { [Symbol(podium:httpincoming:development)]: false, [Symbol(podium:httpincoming:response)]: {}, [Symbol(podium:httpincoming:request)]: {}, [Symbol(podium:httpincoming:context)]: {}, [Symbol(podium:httpincoming:params)]: {}, [Symbol(podium:httpincoming:proxy)]: false, [Symbol(podium:httpincoming:name)]: '', [Symbol(podium:httpincoming:view)]: {}, [Symbol(podium:httpincoming:url)]: {}, [Symbol(podium:httpincoming:css)]: [], [Symbol(podium:httpincoming:js)]: [] }
Now the following will be printed:
{ development: false, response: {}, request: {}, context: {}, params: {}, proxy: false, name: '', view: {}, url: {}, css: [], js: [] }
Co-authored-by: Trygve Lie trygve.lie@finn.no
Co-authored-by: Trygve Lie trygve.lie@finn.no
v4.5.1
Compare Source
Bug Fixes
v4.5.0
Compare Source
Features
v4.4.42
Compare Source
Bug Fixes
v4.4.41
Compare Source
Bug Fixes
v4.4.40
Compare Source
Bug Fixes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.