From cd0f1ab29668f3b09000ff4d99d3bc69d717645b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Apr 2026 21:31:32 +0000 Subject: [PATCH] chore(main): release dom 1.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 21 +++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 25 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 53b7bc9..c3f1463 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.2" + ".": "1.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8996cab..177f895 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file. The format is based on Keep a Changelog and this project follows Semantic Versioning. +## [1.2.0](https://github.com/pokujs/dom/compare/dom-v1.1.2...dom-v1.2.0) (2026-04-05) + + +### Features + +* add commandBuilder hook to FrameworkDescriptor ([#6](https://github.com/pokujs/dom/issues/6)) ([b6d7ecd](https://github.com/pokujs/dom/commit/b6d7ecdbaa38f03f664e388192c031bead76fb12)) + + +### Bug Fixes + +* lazily re-evaluate screen queries on each access ([#1](https://github.com/pokujs/dom/issues/1)) ([4ac921a](https://github.com/pokujs/dom/commit/4ac921aa9a9c96eb75937ffe4c9d4a5240e6f703)) +* preserve native dispatchEvent for Deno compatibility ([#7](https://github.com/pokujs/dom/issues/7)) ([a510a86](https://github.com/pokujs/dom/commit/a510a86696b6ccfbc7750a77507683760ca4dd51)) +* preserve native Event/dispatchEvent in jsdom setup for Deno compatibility ([#9](https://github.com/pokujs/dom/issues/9)) ([3e734f6](https://github.com/pokujs/dom/commit/3e734f6a6591c18b7d3f2744cc64b5667307a3d9)) +* preserve node builtin specifiers in published ESM output ([f034757](https://github.com/pokujs/dom/commit/f034757e35dac9becd14115f31e78c6945395029)) +* preserve node builtin specifiers in published ESM output ([#5](https://github.com/pokujs/dom/issues/5)) ([09ef83b](https://github.com/pokujs/dom/commit/09ef83b5fad0ff84a528133342c7175ec071445e)) + + +### Performance Improvements + +* cache createScreen queries by body ref + add wrapFireEventMethods helper ([#11](https://github.com/pokujs/dom/issues/11)) ([6bb4ffa](https://github.com/pokujs/dom/commit/6bb4ffa2b1e4abe488a057786802879334c0f6b3)) + ## [1.1.2](https://github.com/pokujs/dom/compare/v1.1.1...v1.1.2) (2026-04-05) diff --git a/package-lock.json b/package-lock.json index edf134a..24fcf9a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@pokujs/dom", - "version": "1.1.2", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@pokujs/dom", - "version": "1.1.2", + "version": "1.2.0", "license": "MIT", "dependencies": { "@testing-library/dom": "^10.4.1" diff --git a/package.json b/package.json index c0213af..9bdee2e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pokujs/dom", - "version": "1.1.2", + "version": "1.2.0", "private": false, "description": "Shared DOM testing core for Poku framework adapters.", "type": "module",