Skip to content

Commit c18b68e

Browse files
authoredSep 14, 2018
v1.6 docs (#595)
1 parent fb4cf11 commit c18b68e

File tree

1 file changed

+25
-36
lines changed

1 file changed

+25
-36
lines changed
 

‎lib/PuppeteerSharp/PuppeteerSharp.csproj

+25-36
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<PackOnBuild>true</PackOnBuild>
5-
<PackageVersion>1.5.0</PackageVersion>
5+
<PackageVersion>1.6.0</PackageVersion>
66
<Authors>Darío Kondratiuk</Authors>
77
<Owners>Darío Kondratiuk</Owners>
88
<PackageProjectUrl>https://github.com/kblok/puppeteer-sharp</PackageProjectUrl>
@@ -13,50 +13,39 @@
1313
<PackageId>PuppeteerSharp</PackageId>
1414
<PackageReleaseNotes>
1515
# New Features
16-
17-
* Browser Contexts.
18-
* Workers
16+
* Support thrown strings and numbers in getExceptionMessage.
17+
* Implement PageError event from a worker.
18+
* Click wrapped links support.
19+
* Add an option to collect coverage of anonymous scripts.
20+
* ElementHandle.IsIntersectingViewportAsync and Offsetclicks.
1921

2022
# New APIs
2123

22-
* Target.Opener.
23-
* Request.IsNavigationRequest.
24-
* Page.IsClosed.
25-
* Change accessibilty on Payload.
26-
* Page.ScreenshotBase64Async and ElementHandle.ScreenshotBase64Async.
27-
* CDPSession.TargetType.
28-
* Page.WorkerCreated.
29-
* Page.WorkerDestroyed.
30-
* Page.Workers.
24+
* Page.WaitForRequestAsync and Page.WaitForResponseAsync.
3125

3226
# Breaking Changes
3327

34-
* Disable crash reporting by default.
35-
* Added .ConfigureAwait(false) to each await.
36-
* Change ScreenshotOptions.Quality type.
37-
* Dropped CDPSession.TargetId.
38-
* Dropped ExecutionContext.FrameId.
39-
* Dropped ExecutionContext.IsDefault.
28+
* Remove throw in case of empty elementHandle.
29+
* EvaluateFunctionAsync and EvaluateFunctionAsync now will throw and EvaluationFailedException.
4030

4131
# Changelog
4232

43-
* Chromium updated to r564778.
44-
* Update PuppeteerSharp.Tests packages versions.
45-
* Launch browser with 'about:blank' by default.
46-
* Respect timeout 0 in Page.waitForFunctionAsync.
47-
* Add a missing test for elementHandle.
48-
* Pass through "background_page" types.
49-
* Ensure first page is created when browser is launched.
50-
* Improve access to files to use true asynchronous methods.
51-
* Add test that validates that pages open with userDataDir arg.
52-
* Normalize scrollbars in headful tests.
53-
* Disable OOPIF by default.
54-
* Not pass user options to browser constructor.
55-
* Verify ignoreHTTPSErrors works with puppeteer.ConnectAsync.
56-
* Update ConsoleType.
57-
* ElementHandle.QuerySelectorAllHandleAsync.
33+
* Roll Chromium to r571375.
34+
* Migrate exposeFunction from console.debug to Runtime.installBinding.
35+
* Don't pass a reference to the page into frames.
36+
* Simplify EmulationManager.
37+
* Clarify docs about waitForNavigation.
38+
* Add new error reasons for request.abort().
39+
* Fix random tests flakiness.
40+
* Test that verifies pptr works with SVG nodes.
41+
* Nicer protocol error messages.
42+
* Add support for target.page for 'backgroud_page'.
43+
* New devices.
44+
* Fix race condition in WaitTask.
45+
* Make Payload constructor Public.
46+
* Fix ContinueAsync payload override.
5847
</PackageReleaseNotes>
59-
<ReleaseVersion>1.5.0</ReleaseVersion>
48+
<ReleaseVersion>1.6.0</ReleaseVersion>
6049
<SynchReleaseVersion>false</SynchReleaseVersion>
6150
</PropertyGroup>
6251
<PropertyGroup>
@@ -72,4 +61,4 @@
7261
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.0.2" />
7362
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.1" />
7463
</ItemGroup>
75-
</Project>
64+
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.