12.1.9
Updates adm-zip
to version 0.5.2
.
12.1.8
Fixes for macOS ChromeDriver download. If you are using a macOS and are
running into a WebDriver.createSession
error, run
webdriver-manager clean
to remove the downloaded ChromeDriver
before running webdriver-manager update
.
12.1.7
Updates to Chromedriver to the LATEST_RELEASE. This should work from here on in when Chrome is updated to a new version.
12.1.6
Update the max Chrome version to 76.
12.1.5
Update the max Chrome version to 75.
12.1.4
Fixes issues introduced by 12.1.3 (--versions.chrome flag and status command did not work). Also prevents downloading version 75 using the config.json file.
Bug Fix
12.1.3
Fixes download issues for chromedriver version 74+.
Bug Fix
(476c117)
fix(chromedriver): support downloads for chromedriver beyond 2.46 (#377)
Versions of Chromdriver were versioned as 2.xx. We previously used to
tack on a '.0' at the end to make it a semver version. This is why it
was not downloading 74.0.3729.6. We now have to change 74.0.3729.6 to be
a semver. We will do this by grabbing 74.0.3729 with a regex.
This should work when downloading the latest chromedriver version since
2.46.0 < 74.0.3729. If Chromedriver releases 75 but we are still on
Chrome 74, this will still break in this version of webdriver-manager.
This does not prevent latest Chromedriver and latest Chrome mismatches.
If you run into an issue where Chromedriver is mismatched with Chrome,
use the --versions.chrome
flag to pass in the version to download.
12.1.2
Fixes download issues for the selenium jar file.
Bug Fix
(7dc17ef)
fix(selenium): download jar files and not zip files (#371)
This fix is here because selenium now has .zip files in the .xml. This worked previously since
there were no .zip files and it would find a version that matched the latest jar file.
Also do not download alpha versions since we are also not downloading beta versions of the jar
file.
closes #370
12.1.1
Bug Fix
Dependencies
12.0.6
Bug Fix
- (708ade3)
fix(responses): response xml and json files (#247)
12.0.5
Bug Fix
- (242a72f)
feat(start): start selenium without making web requests (#232)
12.0.4
Bug Fixes
12.0.3
Bug Fixes
(bb13882)
feat(gecko): Improve error message when Github api limit reached. (#217)
the user. Also, API limit is reached, the error message now directly informs
when any other failure occurs the status code is reported.
This should hopefully give more info for issue #216.
(2cffd30)
fix(ignoressl): pass proxy and ignore ssl down to the binary and config source (#208)
closes #207 and closes #221
12.0.2
- (0bdf6a4)
deps(typescript): use typescript@~2.0.0. fix any types (#203)
12.0.1
- (6209666)
fix(gecko): add additional check for OS when getting latest (#200)
12.0.0
Changes to update
This release gets the latest release for selenium standalone, chromedriver,
iedriver, and gecko driver by downloading and parsing either a json or xml file.
These json or xml files are cached in the selenium directory. This means for
users that provide an alternative cdn will also be required to provide the proper
xml or json server response to find these binaries.
Since we are always downloading the latest, the config.json
versions will no
longer be a place to override these.
Changes to start
If a new release is out and you have old binaries, running webdriver-manager
start
without specifying any versions should throw an error. The error will
tell the user that the binary is not present.
Changes to status
Since we are downloading the latest and not maintaining a default version in
config.json
, we are dropping the default tag.
Features
(fe309ef)
feat(latest): get the latest version from the cdn (#198)
This reads the xml from the CDN to get the latest chromedriver, iedriver,
or standalone version if the version is 'latest'. If the release is from
Github, use the Github API to get the releases. Also store the downloaded
information to a cache in the output directory (default: selenium/). If
the file is older than one hour it will be rewritten.
When getting the status, we are no longer showing the default version.
Default versions will be deprecated and will be removed from the config.json
file.
When starting the standalone server, use the 'latest' version by default
unless specified by --versions.{binary} flag.
Change the gulp update task to use 3.0.0-beta4 so Firefox tests will pass.
11.1.1
Bug Fixes
(70614a2)
fix(ie): Use 32-bit version by default for IEDriver (#181)
closes #180
(6f9a2ab)
fix(gecko): Respect versions.gecko in start command. (#184)
Also bump the geckodriver version to latest.
Dependencies
- (5881c5b)
deps(update): update devDependencies (#187)
11.1.0
- Update to set the default chrome driver version to 2.26
Features
Bug Fixes
10.3
11.0.0
Breaking Change:
Features
(b5638ef)
feat(update): on update, write full binary paths to file (#140)
Adding back in curl calls, these were removed on the new
Downloader.getFile
. Add curl call to reflect proxies.
Fix output dir to read from update's options instead of Config
Feature will help directConnect users for Protractor. The file
will keep track of the last binary version as well as all other
binaries downloaded.
The file will be created in the output directory. By default this is
selenium/update-config.json
. On clean
this file will be removed.
webdriver-manager update --versions.chrome=2.20 --standalone=false
--gecko=false
file created:
{
"chrome": {
"last": "/opt/src/webdriver-manager/selenium/chromedriver_2.20",
"all": ["/opt/src/webdriver-manager/selenium/chromedriver_2.20"]
}
}
then the user wants to use 2.25:
webdriver-manager update --versions.chrome=2.25 --standalone=false
--gecko=false
file created:
{
"chrome": {
"last": "/opt/src/webdriver-manager/selenium/chromedriver_2.25",
"all": ["/opt/src/webdriver-manager/selenium/chromedriver_2.20",
"/opt/src/webdriver-manager/selenium/chromedriver_2.25"]
}
}
(473ab3e)
feat(android): match android arch to os.arch (#164)
The default was x86-64, but x86 cannot be emulated on ARM. This makes more sense
(c864c9a)
feat(shutdown): do not error if you try to shutdown a server which is already off (#162)
When scripting, you might want to defensively run a shutdown
command. If the shutdown fails
because the server is already off, you don't care. If it fails for another reason, you do care.
So I made trying to shutdown a server which is already off just a warning. I added a flag in case
you want the old behavior though.
(338fffd)
feat(quiet/verbose): add --quiet
and --verbose
flags to control the level of output (#156)
I added the --quiet
flag for cases like:
where currently the start --detach; ./tests.sh; webdriver-manager shutdownselenium server output will get mixed in with other output.
I also added the
--verboseflag for
webdriver-manager updatein case you *really* wanted to
see all the output which gets eaten by using
--android-accept-licenses`.
(91e36a3)
feat(android on windows): Support android VMs on windows (#154)
Closes https://github.com/angular/webdriver-manager/issues/51
(d533b03)
feat(start android): extend the --detach flag to wait for appium/android (#141)
Bug fixes
(26586f1)
fix(start): wait for emulated android to really be ready before signaling (#161)
Before, we were just waiting for the emulator to be running, rather than waiting for the OS to be
booted up and ready to instance chrome.
While I was doing that I moved some stuff into lib/utils.ts
since I felt like too much of
lib/cmds/start.ts
was being devoted to this one feature.
Also closes https://github.com/angular/webdriver-manager/issues/166
- (a7c6eb5)
fix(update/android): 2a1505f broke android
- (3ee3e1a)
fix(fs): path.join does not handle absolute paths as desired (#152)
(deead0f)
fix(downloader): destroy the request after receiving the header (#144)
Otherwise we’ll won’t terminate until the whole file was downloaded, even though we don’t need it.
(c16bf90)
chore(es6): allow to use es6 promises (#160)
- with node 6 on LTS, we can update the tsconfig to es6
- update travis tests to use node 6 and 7
10.2.10
- Since 10.2.9 produced breaking changes, released as version 11.0.0
- Version 10.2.8 is the same as 10.2.10 due to issue #170.
10.2.8
Features
Bug fixes
10.2.7
Features
- (66776a0)
feat(start): add way to programmatically detect when the selenium server is running (#120)
Bug fixes
(dc2f9f9)
fix(cli): fix default option values, boolean and string handling (#110) (#122)
- default option values initialize properly for
minimist
- user-supplied boolean-type option values respected
- string-type option values are always strings
- simplify boolean-type option value access
(88d6105)
fix(gecko): Update geckodriver to 0.11.0 and fix suffixes. (#128)
Fixes #111
(707e015)
fix(android): fixed four things for android: (#116)
- Make appium default to 1.6.0 (Android N didn't work on 1.5.x)
- Make virtual devices default to
google_apis
- Don't delete old virtual devices on update
- Update documentation
(9fe4b22)
fix typo in webdriver-manager/spec/files (#125)
10.2.6
Features
- (f892ec4)
chore(chromedriver): update chromedriver version to 2.25
10.2.5
Bug Fixes
10.2.4
Bug Fixes
- (3984ea4)
fix(filemanager): respect proxy/ignoreSSL options in contentLength HEAD request (#101)
Features
10.2.3
Bug Fixes
(fa48354)
fix(downloader): fix against working proxy (#87)
(d6597e8)
fix(start): add the correct flags for windows (#83)
closes #68
(c96090c)
fix(update): download standalone with proxy and ignore ssl (#81)
closes #79
Features
- (7ec082a)
feat(start): add a gecko driver path to the start command (#86)
Dependencies
- (fe85c94)
dep(types): update typescript, remove typings in favor of @types (#84)
10.2.2
Bug Fixes
(236a8ec)
fix(downloader): increase timeouts and unlink sync on download errors (#75)
closes #62 and #63
(fa20ca8)
fix(start): check if edge driver exists before adding to args (#73)
closes #60
(8b61b71)
fix(start): use ie32 if specified via command line (#72)
closes #68
Features
10.2.1
upgrade to latest chrome driver and selenium standalone server versions
10.2.0
- (aa1b8b7)
feat(ios): iOS support (#57)
10.1.0
Bug Fixes
Features
10.0.4
Dependency Upgrades
- (970167a)
dep(typings): update typings (#42)
Bug Fixes
- (5073e23)
fix(folder): fix selenium folder location (#43)
10.0.3
Bug Fixes
10.0.2
Bug Fixes
10.0.1
Bug Fixes
- (a6f1edd)
fix(global): fix finding config.json for global installs and release 10.0.1 (#23)
10.0.0
Bug Fixes
(70d32df)
fix(dir): check selenium dir and warn user that the folder does not exist (#17)
(0ec1443)
fix(binary): file type, unzipping, and permissions
closes #7, #16
(a073fd0)
fix(npm): use global, local, and project without env
closes #20
(6ccb9d8)
fix(versions): versions option should stay consistent with existing webdriver-manager
closes #6
(c34b05c)
fix(bin): local, project, and global usage
(4a0caf5)
fix(dep): fix dependency for chalk
(15ae0e8)
fix(chmod): set permissions to 755
(1820fbc)
Initial commit
Features
(374c3e7)
feat(length): on update, check to see the file is the correct length
closes #8
(8c47291)
feat(local): use the local version of webdriver-tool if it is installed
closes #5
(f0622d2)
feat(logs): add chrome logs command line option
closes #11
- (3b30312)
feat(logger): update logging methods (#5)