| 
2 | 2 |   <PropertyGroup>  | 
3 | 3 |     <TargetFramework>netstandard2.0</TargetFramework>  | 
4 | 4 |     <PackOnBuild>true</PackOnBuild>  | 
5 |  | -    <PackageVersion>1.11.2</PackageVersion>  | 
 | 5 | +    <PackageVersion>1.12.0</PackageVersion>  | 
6 | 6 |     <Authors>Darío Kondratiuk</Authors>  | 
7 | 7 |     <Owners>Darío Kondratiuk</Owners>  | 
8 | 8 |     <PackageProjectUrl>https://github.com/kblok/puppeteer-sharp</PackageProjectUrl>  | 
 | 
12 | 12 |     <Description>Headless Chrome .NET API</Description>  | 
13 | 13 |     <PackageId>PuppeteerSharp</PackageId>  | 
14 | 14 |     <PackageReleaseNotes><![CDATA[  | 
15 |  | -# ChangeLog  | 
16 |  | - * No need to fix file permissions on Mac.  | 
17 |  | - * Fix race conditions in SetContentAsync.  | 
18 |  | - * Add missing ConfigureAwait in Accessibility.  | 
19 |  | - * Set headless option to false when Devtools are enabled.  | 
20 |  | - * CloseAsync should wait for the target to be closed.  | 
21 |  | - * Change TextAsync output type.  | 
22 |  | - * Browser.IsClosed should be true when the connection is closed.  | 
 | 15 | +# New Features  | 
23 | 16 | 
  | 
24 |  | -# Internal Changes  | 
 | 17 | + * Introduce Popup event.  | 
 | 18 | + * Add browserUrl option to Puppeteer.ConnectAsync.  | 
 | 19 | + * Introduce ConsoleMessage.Location.  | 
 | 20 | + * Implement support for mouseWheel (Mouse.WheelAsync).  | 
 | 21 | + * Introduce Page.SetDefaultTimeout.  | 
25 | 22 | 
  | 
26 |  | - * Add classes to all Request/Response communications.  | 
27 |  | - * Connection messages should be dispatched synchronously.  | 
28 |  | - * Add TaskCreationOptions.RunContinuationsAsynchronously to TaskCompletionSources.  | 
29 |  | - * Remove Task.Delays.  | 
30 |  | - * Dispose CancellationTokens.  | 
31 |  | - * Add TaskCreationOptions.LongRunning to the WebSocketTransport loop.  | 
32 |  | - * Fix race condition in CloseAsync.  | 
33 |  | - * Prevent race conditions in tests.  | 
34 |  | - * Fix minor typo in XML docs.  | 
35 |  | - * Upgrade .NET Core projects to 2.2.  | 
36 |  | - * Upgrade to C# 7.3.  | 
37 |  | - * Replace timeouts with CancellationTokens.  | 
 | 23 | +# Breaking Changes  | 
 | 24 | +
  | 
 | 25 | + * Provide default quality for jpeg screenshots.  | 
 | 26 | +
  | 
 | 27 | +# Changelog  | 
 | 28 | +   | 
 | 29 | + * Roll Chromium to r624492  | 
 | 30 | + * Improve async loop in AddConsoleMessage.  | 
 | 31 | + * Relax request matching heuristic.  | 
 | 32 | + * Throw on 0x0 screenshots.  | 
 | 33 | + * Make sure evaluation does not hang in detached iframes.  | 
 | 34 | + * Add failing test for skipping all debugger statements.  | 
 | 35 | + * Ignore console messages from destroyed execution contexts.  | 
 | 36 | + * Flexible ResourceType parse.  | 
 | 37 | + * Properly disable translate UI.  | 
 | 38 | + * Filter out "intervention" header.  | 
 | 39 | + * Fix repetitive setContent calls.  | 
 | 40 | + * Force color profile.  | 
 | 41 | + * Add test for waitForFunction with cross-process navigation.  | 
 | 42 | + * Make sure headful browser closes with beforeuload page.  | 
 | 43 | + * Page.WaitForFunctionAsync should work with multiline strings.  | 
 | 44 | + * Update device descriptors.  | 
 | 45 | + * Round the clip dimensions.  | 
 | 46 | + * Enable Network Service by default.  | 
 | 47 | + * Warn on nested js handle.  | 
 | 48 | + * Move to flatten protocol.  | 
 | 49 | + * Introduce DOM World.  | 
 | 50 | + * Use secondary DOMWorld to drive page.Select.  | 
 | 51 | + * Always dispose cancellation token sources.  | 
 | 52 | + * Use secondary world to drive clicks.  | 
 | 53 | + * Sync WaitForSelectorOrXPathAsync code.  | 
 | 54 | + * Teach waitForSelector to return null.  | 
 | 55 | + * Alternative approach to fixing KeyAlreadyAddedException.  | 
 | 56 | + * Fix race condition between disposal and cancellation of CancellationTokenSource.  | 
 | 57 | + * Execute frame.waitFor{Selector,XPath} in secondary world.  | 
38 | 58 |  ]]></PackageReleaseNotes>  | 
39 |  | -    <ReleaseVersion>1.11.2</ReleaseVersion>  | 
 | 59 | +    <ReleaseVersion>1.12.0</ReleaseVersion>  | 
40 | 60 |     <SynchReleaseVersion>false</SynchReleaseVersion>  | 
41 | 61 |   </PropertyGroup>  | 
42 | 62 |   <PropertyGroup>  | 
 | 
0 commit comments