Skip to content

Commit 09aa934

Browse files
runnerrunner
runner
authored and
runner
committed
Version 5.4.0-1182435
1 parent bfa060b commit 09aa934

File tree

1 file changed

+48
-35
lines changed

1 file changed

+48
-35
lines changed

CHANGELOG.md

+48-35
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
22

3+
## [5.4.0\-1182435](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/5.4.0-1182435) (2023-08-15)
4+
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/5.3.1-1170846...5.4.0-1182435)
5+
6+
**Upgraded dependencies:**
7+
8+
- Bump org.jetbrains.kotlinx:atomicfu from 0.21.0 to 0.22.0 [\#283](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/283) ([@dependabot[bot]](https://github.com/apps/dependabot))
9+
- Update to Chrome DevTools Protocol version 1182435 [\#276](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/276) ([@github-actions[bot]](https://github.com/apps/github-actions))
10+
- Bump com.squareup:kotlinpoet from 1.12.0 to 1.14.2 [\#281](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/281) ([@dependabot[bot]](https://github.com/apps/dependabot))
11+
- Bump org.jetbrains.kotlinx:kotlinx\-coroutines\-core from 1.7.2 to 1.7.3 [\#280](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/280) ([@dependabot[bot]](https://github.com/apps/dependabot))
12+
- Bump com.gradle.enterprise from 3.12.4 to 3.14.1 [\#279](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/279) ([@dependabot[bot]](https://github.com/apps/dependabot))
13+
- Bump io.github.gradle\-nexus.publish\-plugin from 1.2.0 to 1.3.0 [\#278](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/278) ([@dependabot[bot]](https://github.com/apps/dependabot))
14+
- Bump ktor from 2.3.2 to 2.3.3 [\#277](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/277) ([@dependabot[bot]](https://github.com/apps/dependabot))
15+
316
## [5.3.1\-1170846](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/5.3.1-1170846) (2023-07-16)
417
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/5.3.0-1170846...5.3.1-1170846)
518

@@ -10,10 +23,6 @@
1023
## [5.3.0\-1170846](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/5.3.0-1170846) (2023-07-16)
1124
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/5.2.0-1167732...5.3.0-1170846)
1225

13-
**Fixed bugs:**
14-
15-
- The error message in session adapters contains escaped variables [\#272](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/272)
16-
1726
**Merged pull requests:**
1827

1928
- Update Gradle Wrapper from 8.2 to 8.2.1 [\#270](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/270) ([@joffrey-bion](https://github.com/joffrey-bion))
@@ -22,6 +31,10 @@
2231

2332
- Update to Chrome DevTools Protocol version 1170846 [\#271](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/271) ([@github-actions[bot]](https://github.com/apps/github-actions))
2433

34+
**Fixed bugs:**
35+
36+
- The error message in session adapters contains escaped variables [\#272](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/272)
37+
2538
## [5.2.0\-1167732](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/5.2.0-1167732) (2023-07-09)
2639
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/5.1.0-1165014...5.2.0-1167732)
2740

@@ -77,15 +90,6 @@ Check out the updated README if the automated migrations aren't working or the d
7790

7891
- Use camelCase for enum values to make them compatible with Kotlin/JS [\#241](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/241)
7992

80-
**Deprecations:**
81-
82-
- Deprecate overload of `awaitNodeBySelector` using milliseconds [\#243](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/243)
83-
84-
**Fixed bugs:**
85-
86-
- Make CDP request consistently fail with the same exception if the WS is closed concurrently [\#247](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/247)
87-
- `awaitNodeBySelector` can potentially throw IAE when cancelled [\#239](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/239)
88-
8993
**Implemented enhancements:**
9094

9195
- Rework page creation / navigation API [\#255](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/255)
@@ -98,6 +102,10 @@ Check out the updated README if the automated migrations aren't working or the d
98102
- Multiplatform support: JVM, JS, linux, windows, macOS, iOS, tvOS, watchOS [\#197](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/197)
99103
- Add helper `awaitNodeAbsentBySelector` [\#240](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/240)
100104

105+
**Deprecations:**
106+
107+
- Deprecate overload of `awaitNodeBySelector` using milliseconds [\#243](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/243)
108+
101109
**Removals:**
102110

103111
- Remove deprecated `captureScreenshotToFile` with Request object [\#237](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/237)
@@ -110,6 +118,11 @@ Check out the updated README if the automated migrations aren't working or the d
110118
- Upgrade kotlinx\-coroutines to version 1.7.0 [\#242](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/242)
111119
- Upgrade Kotlin to 1.8.21 [\#238](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/238)
112120

121+
**Fixed bugs:**
122+
123+
- Make CDP request consistently fail with the same exception if the WS is closed concurrently [\#247](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/247)
124+
- `awaitNodeBySelector` can potentially throw IAE when cancelled [\#239](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/239)
125+
113126
## [4.5.0\-1134181](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/4.5.0-1134181) (2023-04-24)
114127
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/4.4.0-1122837...4.5.0-1134181)
115128

@@ -129,12 +142,6 @@ Check out the updated README if the automated migrations aren't working or the d
129142
## [4.4.0\-1115542](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/4.4.0-1115542) (2023-03-11)
130143
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/4.3.0-1075693...4.4.0-1115542)
131144

132-
**Fixed bugs:**
133-
134-
- HTTP endpoint `/json/new?\{url\}` uses wrong GET method instead of PUT [\#225](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/225)
135-
- Event subscription flows hang if the target crashes [\#222](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/222)
136-
- `navigateAndAwaitPageLoad` hangs if the navigation fails [\#221](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/221)
137-
138145
**Implemented enhancements:**
139146

140147
- Add `Fetch` domain to `SharedWorker` target [\#214](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/214)
@@ -146,6 +153,12 @@ Check out the updated README if the automated migrations aren't working or the d
146153
- Update to Chrome DevTools Protocol version 1115542 [\#216](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/216) ([@github-actions[bot]](https://github.com/apps/github-actions))
147154
- Upgrade Ktor to version 2.2.4 [\#218](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/218)
148155

156+
**Fixed bugs:**
157+
158+
- HTTP endpoint `/json/new?\{url\}` uses wrong GET method instead of PUT [\#225](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/225)
159+
- Event subscription flows hang if the target crashes [\#222](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/222)
160+
- `navigateAndAwaitPageLoad` hangs if the navigation fails [\#221](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/221)
161+
149162
## [4.3.0\-1075693](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/4.3.0-1075693) (2022-11-26)
150163
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/4.3.0-1069585...4.3.0-1075693)
151164

@@ -562,14 +575,14 @@ Check out the updated README if the automated migrations aren't working or the d
562575
## [1.4.0\-881010](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/1.4.0-881010) (2021-05-11)
563576
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/1.3.0-880455...1.4.0-881010)
564577

565-
**Closed issues:**
566-
567-
- Provide stable alternative of awaitNodeBySelector\(\) with long millis [\#82](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/82)
568-
569578
**Implemented enhancements:**
570579

571580
- Mark awaitNodeBySelector\(\) as @ExperimentalTime [\#81](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/81)
572581

582+
**Closed issues:**
583+
584+
- Provide stable alternative of awaitNodeBySelector\(\) with long millis [\#82](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/82)
585+
573586
**Upgraded dependencies:**
574587

575588
- Upgrade Krossbow to 1.4.0 [\#84](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/84)
@@ -783,10 +796,6 @@ Check out the updated README if the automated migrations aren't working or the d
783796
## [0.11.0](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/0.11.0) (2021-01-13)
784797
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/0.10.1...0.11.0)
785798

786-
**Fixed bugs:**
787-
788-
- Race condition in navigateAndWaitLoading [\#25](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/25)
789-
790799
**Implemented enhancements:**
791800

792801
- Add getTargetInfo convenience method [\#27](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/27)
@@ -796,6 +805,10 @@ Check out the updated README if the automated migrations aren't working or the d
796805
- Update to Chrome DevTools Protocol version 0.0.841965 [\#28](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/28) ([@github-actions[bot]](https://github.com/apps/github-actions))
797806
- Upgrade Ktor to 1.5 [\#24](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/24)
798807

808+
**Fixed bugs:**
809+
810+
- Race condition in navigateAndWaitLoading [\#25](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/25)
811+
799812
## [0.10.1](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/0.10.1) (2021-01-09)
800813
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/0.10.0...0.10.1)
801814

@@ -814,14 +827,14 @@ Check out the updated README if the automated migrations aren't working or the d
814827
## [0.9.0](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/0.9.0) (2021-01-05)
815828
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/0.8.2...0.9.0)
816829

817-
**Fixed bugs:**
818-
819-
- ChromeDPClient instances leak open Ktor Apache HTTP client [\#19](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/19)
820-
821830
**Upgraded dependencies:**
822831

823832
- Update to Chrome DevTools Protocol version 0.0.839267 [\#18](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/18) ([@github-actions[bot]](https://github.com/apps/github-actions))
824833

834+
**Fixed bugs:**
835+
836+
- ChromeDPClient instances leak open Ktor Apache HTTP client [\#19](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/19)
837+
825838
## [0.8.2](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/0.8.2) (2020-12-17)
826839
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/0.8.1...0.8.2)
827840

@@ -883,14 +896,14 @@ Check out the updated README if the automated migrations aren't working or the d
883896
## [0.6.0](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/0.6.0) (2020-11-14)
884897
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/0.5.0...0.6.0)
885898

886-
**Fixed bugs:**
887-
888-
- use\(\) and close\(\) on page sessions should NOT close the web socket [\#4](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/4)
889-
890899
**Upgraded dependencies:**
891900

892901
- Update Chrome DevTools Protocol definitions to 0.0.827510 [\#3](https://github.com/joffrey-bion/chrome-devtools-kotlin/pull/3) ([@github-actions[bot]](https://github.com/apps/github-actions))
893902

903+
**Fixed bugs:**
904+
905+
- use\(\) and close\(\) on page sessions should NOT close the web socket [\#4](https://github.com/joffrey-bion/chrome-devtools-kotlin/issues/4)
906+
894907
## [0.5.0](https://github.com/joffrey-bion/chrome-devtools-kotlin/tree/0.5.0) (2020-11-14)
895908
[View commits](https://github.com/joffrey-bion/chrome-devtools-kotlin/compare/0.4.0...0.5.0)
896909

0 commit comments

Comments
 (0)