Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️(dependencies) update python dependencies #1017

Merged
merged 1 commit into from
Jun 14, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 14, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
boto3 ==1.17.88 -> ==1.17.93 age adoption passing confidence
playwright ==1.11.1 -> ==1.12.1 age adoption passing confidence
pytest-playwright ==0.1.1 -> ==0.1.2 age adoption passing confidence

Release Notes

boto/boto3

v1.17.93

Compare Source

=======

  • api-change:ec2: [botocore] Amazon EC2 adds new AMI property to flag outdated AMIs
  • api-change:medialive: [botocore] AWS MediaLive now supports OCR-based conversion of DVB-Sub and SCTE-27 image-based source captions to WebVTT, and supports ingest of ad avail decorations in HLS input manifests.
  • api-change:mediaconnect: [botocore] When you enable source failover, you can now designate one of two sources as the primary source. You can choose between two failover modes to prevent any disruption to the video stream. Merge combines the sources into a single stream. Failover allows switching between a primary and a backup stream.

v1.17.92

Compare Source

=======

  • api-change:sagemaker: [botocore] Using SageMaker Edge Manager with AWS IoT Greengrass v2 simplifies accessing, maintaining, and deploying models to your devices. You can now create deployable IoT Greengrass components during edge packaging jobs. You can choose to create a device fleet with or without creating an AWS IoT role alias.
  • api-change:appmesh: [botocore] AppMesh now supports additional routing capabilities in match and rewrites for Gateway Routes and Routes. Additionally, App Mesh also supports specifying DNS Response Types in Virtual Nodes.
  • api-change:redshift: [botocore] Added InvalidClusterStateFault to the ModifyAquaConfiguration API, thrown when calling the API on a non available cluster.
  • api-change:chime: [botocore] This SDK release adds support for UpdateAccount API to allow users to update their default license on Chime account.
  • api-change:ec2: [botocore] This release adds a new optional parameter connectivityType (public, private) for the CreateNatGateway API. Private NatGateway does not require customers to attach an InternetGateway to the VPC and can be used for communication with other VPCs and on-premise networks.
  • api-change:ram: [botocore] AWS Resource Access Manager (RAM) is releasing new field isResourceTypeDefault in ListPermissions and GetPermission response, and adding permissionArn parameter to GetResourceShare request to filter by permission attached
  • api-change:sagemaker-featurestore-runtime: [botocore] Release BatchGetRecord API for AWS SageMaker Feature Store Runtime.
  • api-change:cognito-idp: [botocore] Amazon Cognito now supports targeted sign out through refresh token revocation
  • api-change:appflow: [botocore] Adding MAP_ALL task type support.
  • api-change:managedblockchain: [botocore] This release supports KMS customer-managed Customer Master Keys (CMKs) on member-specific Hyperledger Fabric resources.

v1.17.91

Compare Source

=======

  • api-change:transfer: [botocore] Documentation updates for the AWS Transfer Family service.
  • api-change:personalize-events: [botocore] Support for unstructured text inputs in the items dataset to to automatically extract key information from product/content description as an input when creating solution versions.
  • api-change:proton: [botocore] This is the initial SDK release for AWS Proton
  • api-change:kendra: [botocore] AWS Kendra now supports checking document status.

v1.17.90

Compare Source

=======

  • api-change:fsx: [botocore] This release adds support for auditing end-user access to files, folders, and file shares using Windows event logs, enabling customers to meet their security and compliance needs.
  • api-change:servicecatalog: [botocore] increase max pagesize for List/Search apis
  • api-change:macie2: [botocore] This release of the Amazon Macie API introduces stricter validation of S3 object criteria for classification jobs.
  • api-change:cognito-idp: [botocore] Documentation updates for cognito-idp

v1.17.89

Compare Source

=======

  • api-change:sagemaker: [botocore] AWS SageMaker - Releasing new APIs related to Callback steps in model building pipelines. Adds experiment integration to model building pipelines.
  • api-change:glue: [botocore] Add SampleSize variable to S3Target to enable s3-sampling feature through API.
  • api-change:personalize: [botocore] Update regex validation in kmsKeyArn and s3 path API parameters for AWS Personalize APIs
  • api-change:eks: [botocore] Added updateConfig option that allows customers to control upgrade velocity in Managed Node Group.
Microsoft/playwright-python

v1.12.1

Compare Source

Highlights

This patch release includes bugfixes for the following issues:

microsoft/playwright#7015 - [BUG] Firefox: strange undefined toJSON property on JS objects
microsoft/playwright#7048 - [BUG] Dialogs cannot be dismissed if tracing is on in Chromium or Webkit
microsoft/playwright#7058 - [BUG] Getting no video frame error for mobile chrome

Browser Versions

  • Chromium 93.0.4530.0
  • Mozilla Firefox 89.0
  • WebKit 14.2

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 91
  • Microsoft Edge 91

v1.12.0

Compare Source

🧟‍♂️ Introducing Playwright Trace & TraceViewer

Playwright Trace Viewer is a new GUI tool that helps exploring recorded Playwright traces after the script ran. Playwright traces let you examine:

  • page DOM before and after each Playwright action
  • page rendering before and after each Playwright action
  • browse network during script execution

Traces are recorded using the new [browser_context.tracing][browser_context.tracing] API:

browser = chromium.launch()
context = browser.new_context()
### Start tracing before creating / navigating a page.
context.tracing.start(screenshots=True, snapshots=True)

page.goto("https://playwright.dev")
### Stop tracing and export it into a zip archive.
context.tracing.stop(path = "trace.zip")

Traces are examined later with the Playwright CLI:

playwright show-trace trace.zip

That will open the following GUI:

image

👉 Read more in trace viewer documentation.


Browser Versions

  • Chromium 93.0.4530.0
  • Mozilla Firefox 89.0
  • WebKit 14.2

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 91
  • Microsoft Edge 91

New APIs

  • reduced_motion option in [page.emulate_media()][page.emulate_media()], [browser_type.launch_persistent_context()][browser_type.launch_persistent_context()], [browser.new_context()][browser.new_context()] and [browser.new_page()][browser.new_page()]
  • [browser_context.on("request")][browser_context.on("request")]
  • [browser_context.on("requestfailed")][browser_context.on("requestfailed")]
  • [browser_context.on("requestfinished")][browser_context.on("requestfinished")]
  • [browser_context.on("response")][browser_context.on("response")]
  • traces_dir option in [browser_type.launch()][browser_type.launch()] and [browser_type.launch_persistent_context()][browser_type.launch_persistent_context()]
  • new [browser_context.tracing][browser_context.tracing] API namespace
  • new [download.page][download.page] getter

v1.11.2

Compare Source

Highlights

This patch includes bug fixes across all languages for the following issues:

Browser Versions

  • Chromium 92.0.4498.0
  • Mozilla Firefox 89.0b6
  • WebKit 14.2

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 90
  • Microsoft Edge 90
microsoft/playwright-pytest

v0.1.2

Compare Source

Changes:

  • fix: make it compatible with unittest.TestCase and pytest-bdd (#​56)

Configuration

📅 Schedule: "before 7am on monday" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 14, 2021
@kernicPanel
Copy link
Member

@lunika , playwright update is ok for me.
Boto3 seems ok too as there is no breaking change announced, and tests passes.
WDYT ?

@lunika
Copy link
Member

lunika commented Jun 14, 2021

@kernicPanel Yes merge it.

@kernicPanel kernicPanel merged commit 549531a into master Jun 14, 2021
@kernicPanel kernicPanel deleted the renovate/python-dependencies branch June 14, 2021 07:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants