[rb] Relax base64 dependency version constraint #14678
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
User description
Description
Relax the selenium-webdriver gem dependency on base64 version constraint, including previous versions down to
v0.1.1
Motivation and Context
To be able to specify the webdriver binary path i.e
SE_CHROMEDRIVER
environment variable, we want to use the4.25.0
version at least of the gem which includes these changesVersion
v0.2.0
of base64 has no functional differences with previous versions and some gems still require a previous version of base64.Sometimes it's hard and/or time consuming to update the other gems depending on a specific base64 version and as both
v0.1.1
,v0.1.2
andv0.2.0
have no functional differences, I think selenium-webdriver should allow using a lower version of base64:Types of changes
Checklist
PR Type
Bug fix, Enhancement
Description
base64
gem dependency version inselenium-webdriver.gemspec
to allow versions from0.1.1
to below0.3
.base64
, while maintaining functionality.base64
versions without functional differences.PRDescriptionHeader.CHANGES_WALKTHROUGH
selenium-webdriver.gemspec
Relax base64 dependency version constraints
rb/selenium-webdriver.gemspec
base64
dependency.~> 0.2
to allowing versions>= 0.1.1
and< 0.3
.