-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for browser version retrieval (#1090)
* Support for browser version retrieval * Fix parameter bug in version retrieval function * Remove truststore dependency * Fix version retrieval and webdriver caching for IE * Release notes * Fix bug during cache manager initialization * Update release notes and code notes
- Loading branch information
Showing
5 changed files
with
177 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "rpaframework-core" | ||
version = "11.1.1" | ||
version = "11.2.0" | ||
description = "Core utilities used by RPA Framework" | ||
authors = ["RPA Framework <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -36,7 +36,6 @@ pywin32 = { version = ">=300,<304", platform = "win32", python = "!=3.8.1" } | |
uiautomation = { version = "^2.0.15", platform = "win32" } | ||
pillow = "^9.1.1" | ||
packaging = "^23.1" | ||
truststore = { version = "^0.7.0", python = ">=3.10.12" } | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "^22.3.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters