kiwix-js
kiwix-js copied to clipboard
Bump netmask and nightwatch
Bumps netmask to 2.0.2 and updates ancestor dependency nightwatch. These dependencies need to be updated together.
Updates netmask from 1.0.6 to 2.0.2
Changelog
Sourced from netmask's changelog.
v2.0.2 (Apr 2, 2021)
Bugfixes
- Fix
08parsed as decimal while018rejected. (commit)v2.0.1 (Mar 29, 2021)
IMPORTANT: Security Fix
This version contains an important security fix. If you are using netmask
<=2.0.0, please upgrade to2.0.1or above.
- Rewrite byte parsing without using JS
parseInt()(commit)
- This is CVE-2021-29418.
Bugfixes
- Add checks on spaces before and after bytes
- This will now throw an exception when spaces are present like ' 1.2.3.4' or '1. 2.3.4' or '1.2.3.4 '.
Internal Changes
v2.0.0 (Mar 19, 2021)
Breaking Change
Previous API was treating IPs with less than four bytes as IP with a netmask of the size of the provided bytes (1=8, 2=16, 3=24) and was interpreting the IP as if it was completed with 0s on the right side.
Proper IP parsing for these is to consider missing bytes as being 0s on the left side.
Mask size is no longer infered by the number of bytes provided.
This means that the input
216.240will no longer be interpreted as216.240.0.0/16, but as0.0.216.240/32, as per convention.See the change.
Bugfixes
- Fix improper parsing of hex bytes
v1.1.0 (Mar 18, 2021)
IMPORTANT: Security Fix
... (truncated)
Commits
cfc331dBump version to 2.0.250a0053Fix 08 parsed as decimal while 018 rejected.eb8b2c5Merge pull request #43 from Ry0taK/masterd07b29bRemove unrelated link210e1baAdd CVE-2021-29418 to CHANGELOG.mdfb14b4fMerge pull request #39 from STRML/docs/changelog6dcd6a8Add CHANGELOGfe5ec55Merge pull request #38 from olleolleolle/patch-18f036c9README: Highlight JS syntax5827917Fix "class notations" parsing- Additional commits viewable in compare view
Updates nightwatch from 1.5.1 to 1.7.13
Release notes
Sourced from nightwatch's releases.
v1.7.11
- This version is only updating the
proxy-agentdependency package to the latest version.v1.7.10
- Fixed #2899 – an issue with setValue/sendKeys commands
- Added new
updateValuecommandv1.7.9
- Fixed an issue where
selenium_hostconfig property wasn't set (#2892 )- Added support to set
browserNametonullin order to accommodate Appium (#2882)v1.7.8
- Fixed #2777 – an issue with using Chrome and Edge in parallel (#2790)
- Fixed #2794 – using
.verifyasserts withawaitorwaitForcommands withabortOnFailure=falsedidn't work in case of test failure (#2802, #2797)- Fixed #2817 – inconsistent response format when using
findElementscommand (#2820)- Added support to send last error as failure reason in Browserstack transport (#2778)
v1.7.7
- Fixed #2748 - tests not running in parallel when source folder is specified as cli argument
v1.7.6
- Fixed #2755 – npm postinstall issue on windows
v1.7.5
- Fixed an issue with parallel running where the number of available workers wasn't set correctly in some cases - 7754054b34fcc750549d6a204f7f03dbaec97a41
- Fixed xml output generation when running tests with multiple environments in parallel (#2734)
v1.7.3
Nightwatch v1.7
New features
Nightwatch v1.7.0 introduces a few major new features and improvements for the test runner and also regarding the test syntax, such as:
Fluent API
It is now possible to use ES6 async/await syntax and also chain api commands together in the same test case; e.g.:
it('find elements example', async function(browser) { const resultElements = await browser .url('https://nightwatchjs.org') .findElements('.features-container li');resultElements.forEach(item => console.log('Element Id:', item.getId()))});
Integrated support for Microsoft Edge
You can now use the newer (Chromium-based) Microsoft Edge browser to run your Nightwatch tests. The auto-generated
nightwatch.conf.jsalready includes configuration, so you can just run by passing theedgeenvironment:</tr></table>
... (truncated)
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.