diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 37fcefaab..5fdd88304 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3348eca16..01e5050f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. +## [1.1.0](https://github.com/GoogleChromeLabs/chromium-bidi/compare/chromium-bidi-v1.0.0...chromium-bidi-v1.1.0) (2025-01-17) + + +### Features + +* support `goog:channel` along with `channel` ([#2996](https://github.com/GoogleChromeLabs/chromium-bidi/issues/2996)) ([d7ed911](https://github.com/GoogleChromeLabs/chromium-bidi/commit/d7ed9112dd3c81f893f9a4e902ffa6e237e7d5ac)) + + +### Bug Fixes + +* multi headers reporting incorrectly ([#2987](https://github.com/GoogleChromeLabs/chromium-bidi/issues/2987)) ([0e58eb7](https://github.com/GoogleChromeLabs/chromium-bidi/commit/0e58eb7d43b859b477686aedde6125169b0f14ad)) +* wait for context should respect already existing contexts ([#2998](https://github.com/GoogleChromeLabs/chromium-bidi/issues/2998)) ([f6cb8ec](https://github.com/GoogleChromeLabs/chromium-bidi/commit/f6cb8ec43e9b915f3de7bf51d3627db6b12b2d51)) + ## [1.0.0](https://github.com/GoogleChromeLabs/chromium-bidi/compare/chromium-bidi-v0.12.0...chromium-bidi-v1.0.0) (2025-01-15) diff --git a/package-lock.json b/package-lock.json index 488bfc1cc..c08c7badb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "chromium-bidi", - "version": "1.0.0", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "chromium-bidi", - "version": "1.0.0", + "version": "1.1.0", "license": "Apache-2.0", "dependencies": { "mitt": "3.0.1", diff --git a/package.json b/package.json index a688bd9dc..0e4f56943 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chromium-bidi", - "version": "1.0.0", + "version": "1.1.0", "description": "An implementation of the WebDriver BiDi protocol for Chromium implemented as a JavaScript layer translating between BiDi and CDP, running inside a Chrome tab.", "scripts": { "build": "wireit",