- updated exmple in README to show how to use class to render full height (by Eric Masseran)
- Using vite-plugin-dts to generate type declaration files (by n0099)
- Using enum for regexp matches in plan-service
- Misc fixes on text parsing
- Don't show Triggers in stats line if not available
- Better parse WorkTable Scan nodes from text
- Fix misaligned columns headers in Grid
- Misc packages updates
- Disable IO tab in Diagram if not relevant
- Avoid floating-point precision errors on exclusive values
- Use component instead of directive for vue-tippy
- Handle more I/O Timings formats (versions > PG15)
- Don't round values for durations in Grid
- Don't rely on execution time for rows removed color
- Take index recheck into account
- Fix exclusive duration for node relying on subplans
- Don't take subplans into account when computing exclusives
- Don't take initPlans into when computing exclusive cost
- Display rows removed in Grid for other filters
Breaking changes
When using PEV2 integrated in an application, changes are required:
- the VueTippy plugin needs to be activated: in your main application file, add
.use(VueTippy, { defaultProps: { theme: "light" } })
after the call tocreateApp()
. cf. 06dcea9