8000 Tags · elamaran619/chromedp · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: elamaran619/chromedp

Tags

v0.6.8

Toggle v0.6.8's commit message
Adding ignore for experimental page event

v0.6.7

Toggle v0.6.7's commit message
Updating cdproto dependency to 91.0.4437.1_9.1.46 definitions

v0.6.6

Toggle v0.6.6's commit message
Updating to latest dependencies

v0.6.5

Toggle v0.6.5's commit message
Updating cdproto to 90.0.4396.1_9.0.42 definitions

v0.6.4

Toggle v0.6.4's commit message
Minor change to last PR

v0.6.3

Toggle v0.6.3's commit message
Updating emulated device profiles

v0.6.2

Toggle v0.6.2's commit message
Fix deadlock in TestPrematureCancel.

The `c.allocated` channel is only written in `NewContext`, and
subsequently closed when the browser is allocated. But the browser is
allocated in `Run` and this test calls `Cancel` before `Run`, so the
channel couldn't possible receive any more data nor be closed for a
second read to not block.

v0.6.1

Toggle v0.6.1's commit message
Updating cdproto dependency

v0.6.0

Toggle v0.6.0's commit message
Updating cdproto dependency

v0.5.5

Toggle v0.5.5's commit message
Fix Browser goroutine/memory leak race

Previously, the websocket read could race with context cancellation. The
(*Browser).run goroutine would return without signalling the allocator
cleanup goroutine to exit, which leaked a goroutine and prevented
garbage collecting the Browser memory.

Fixes chromedp#552
0