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

chore(deps): update all dependencies #106

Merged
merged 1 commit into from Nov 15, 2021
Merged

chore(deps): update all dependencies #106

merged 1 commit into from Nov 15, 2021

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 15, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nrwl/cli (source) 13.1.3 -> 13.1.4 age adoption passing confidence
@nrwl/cypress (source) 13.1.3 -> 13.1.4 age adoption passing confidence
@nrwl/eslint-plugin-nx (source) 13.1.3 -> 13.1.4 age adoption passing confidence
@nrwl/jest (source) 13.1.3 -> 13.1.4 age adoption passing confidence
@nrwl/linter (source) 13.1.3 -> 13.1.4 age adoption passing confidence
@nrwl/node (source) 13.1.3 -> 13.1.4 age adoption passing confidence
@nrwl/tao (source) 13.1.3 -> 13.1.4 age adoption passing confidence
@nrwl/web (source) 13.1.3 -> 13.1.4 age adoption passing confidence
@nrwl/workspace (source) 13.1.3 -> 13.1.4 age adoption passing confidence
@types/node 16.11.6 -> 16.11.7 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.3.0 -> 5.3.1 age adoption passing confidence
@typescript-eslint/parser 5.3.0 -> 5.3.1 age adoption passing confidence
cypress ^8.0.0 -> ^9.0.0 age adoption passing confidence
eslint-plugin-import 2.25.2 -> 2.25.3 age adoption passing confidence
eslint-plugin-jsx-a11y 6.4.1 -> 6.5.1 age adoption passing confidence
eslint-plugin-react 7.26.1 -> 7.27.0 age adoption passing confidence
eslint-plugin-react-hooks (source) 4.2.0 -> 4.3.0 age adoption passing confidence
react-router-dom 6.0.1 -> 6.0.2 age adoption passing confidence

Release Notes

nrwl/nx

v13.1.4

Compare Source

Bug Fixes
typescript-eslint/typescript-eslint

v5.3.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

cypress-io/cypress

v9.0.0

Compare Source

Released 11/10/2021

Breaking Changes:

  • The nodeVersion configuration option now defaults to system. The behavior
    of the system option has changed to always use the Node.js binary/version
    that launched Cypress. If Cypress was not launched via the terminal, Cypress
    will use the bundled Node.js version. This could change the behavior of code
    within your pluginsFile since it may be run in your system Node.js
    version. Addresses
    #​18684.
  • Windows 32-bit is no longer supported in Cypress. Addresses
    #​17962.
  • An error will now be thrown if an invalid value is passed to Cypress.config.
    Previously invalid values were ignored and could cause unexpected behavior.
    Addresses #​18589.
  • cy.contains() no longer yields the <body> element when it matches the
    content of <script> or <style> tags. Addresses
    #​14861.
  • Attempting to add an existing built-in Cypress command using
    Cypress.Commands.add() will now throw an error, indicating that
    Cypress.Commands.overwrite() should be used instead to overwrite the
    behavior of existing commands. Addresses
    #​18572.
  • Custom command implementations are now typed based on the declared custom
    chainables. Addresses
    #​17496.
  • The bundled Node.js version was upgraded from 14.17.0 to 16.5.0. This
    could change the behavior of code within the pluginsFile when using the
    bundled Node.js version of Cypress. Addressed in
    #​18317.

Deprecations:

  • The nodeVersion configuration option has been deprecated and will be removed
    in a future release.

Features:

  • When null is passed as the encoding to cy.readFile() or cy.fixture(),
    the file is treated as binary and read as a Buffer. Similarly, null passed
    as the encoding to cy.writeFile() allows direct writing of buffers. If the
    encoding is unspecified, the default remains utf8, matching the current
    behavior. Addresses
    #​18534.

Bugfixes:

  • Sticky elements within a fixed container will now be able to be properly
    scrolled to during action commands. Fixes
    #​4233.
  • document.referrer will now correctly reflect the correct value from the
    application under test after cy.visit(). Fixes
    #​4295.

Dependencies:

  • Upgraded Chrome browser version used during cypress run and when selecting
    Electron browser in cypress open from 91 to 94. Addressed in
    #​15292.
  • Upgraded bundled Node.js version from 14.17.0 to 16.5.0. Addressed in
    #​15292.
  • Upgraded electron from 14.1.0 to 15.2.0. Addressed in
    #​15292.

v8.7.0

Compare Source

Released 10/25/2021

Features:

  • There are changes to how "slow" tests are determined and displayed in Cypress.
    Addresses #​18496.
    • Added a slowTestThreshold
      configuration option to customize when tests are considered "slow" during
      cypress run. A test that runs slower than the given threshold will display
      in orange text in the default 'spec' reporter. This configuration can be set
      in your Cypress config file or via specific
      test configuration.
    • The default slow test threshold was changed from 75ms (Mocha's default) to
      10000ms for e2e tests and 250ms for component tests. To restore the old
      behavior, you can add "slowTestThreshold": 75 to your Cypress config file.
    • All tests will show the time the test ran in milliseconds during
      cypress run with the default 'spec' reporter.
  • Users can pass an overwrite: true option to Cypress.Screenshot.defaults to
    change default behavior to overwrite existing screenshots without having to
    set overwrite for each cy.screenshot() command. Addresses
    #​7955.

Bugfixes:

  • Fixed a regression introduced in 8.6.0 where videos recorded in
    Electron to the Dashboard were not playable in the Firefox or Safari browser
    and were not compatible with QuickTime player in MacOS.
  • Fixed a regression introduced in 8.6.0 so that the warning about the
    projectRoot directory not being writeable will now display correctly. Fixes
    #​18485.
  • Improved the error message when running Cypress without non-root permissions.
    Fixes #​18445.
  • An error now throws when invalid options are passed to the selectorPriority
    configuration option of Cypress.SelectorPlayground.defaults. Valid values
    are data-*, id, class, tag, attribute, or nth-child. Fixes
    #​7745.

Dependency Updates:

  • Pinned resolution of ua-parser-js to 0.7.24 to avoid dependency resolution
    to the compromised package versions. Please read the
    security advisory and
    take actions advised as soon as possible. Addressed in
    #​18611

v8.6.0

Compare Source

Released 10/11/2021

Features:

  • cy.screenshot() now accepts overwrite: true as an option to overwrite
    existing screenshots with the same file name. Addresses
    #​7955.
  • cy.select([]) can now be used to clear any selected options in a multi-value
    select. Addresses #​4318.
  • Using cy.pause() when using cypress run --headed --no-exit will now pause
    a test. Addresses #​4044.

Bugfixes:

  • Fixed a regression introduced in 8.2.0 where certain XMLHttpRequests
    would not display their response bodies in the DevTools Console when clicked.
    Fixes #​17656.
  • Fixed a regression in 8.3.0 where capturing videos in Chrome
    versions earlier than 89 would result in choppy videos and skipped frames.
    Fixes #​18021.
  • Cypress displays the correct error when certain custom error types are thrown
    within a test. Fixes
    #​18259.
  • The Cypress App will no longer crash when passed a --spec: {} from the CLI
    and instead error when passed an invalid object argument. Fixes
    #​3957.
  • Logging a plain object no longer results in the error "Cannot convert object
    to primitive value". Fixes #​18143.

Misc:

  • Updated the cy.request() error message when conflicting failOnStatusCode
    and retryOnStatusCodeFailure options are passed to be clearer. Fixes
    #​18271.

Dependency Updates:

  • Upgraded the Chromium browser version used during cypress run and when
    selecting Electron browser in cypress open from 91.0.4472.164 to
    93.0.4577.58.
  • Upgraded electron from 13.2.0 to 14.1.0. Addressed in
    #​18318 and
    #​18384.

v8.5.0

Compare Source

Released 09/27/2021

Features:

  • You can now select an option by index within the
    .select() command. Addresses
    #​757.
  • Cypress now captures the repository URL on Drone CI. Addresses
    #​18210.

Bugfixes:

  • The download of Cypress now respects the NO_PROXY environment variable when
    one is set. Fixes
    #​17702.
  • When using a custom config file and setting it up to record to the Dashboard,
    Cypress now writes the projectId in the custom config file instead of
    cypress.json. Fixes
    #​5747.

Misc:

  • Windows 32-bit has been deprecated and support will be removed in a later
    release. A deprecation warning will now display when using Cypress in a
    Windows 32-bit OS. See
    #​17962 for more detail.
    Addresses #​18094.
  • Improved the error messages when an invalid argument type is passed to the .select() command. Addressed in #​18234.

v8.4.1

Compare Source

Released 09/17/2021

Bugfixes:

  • Cypress will no longer crash when setting up a project to record to the
    Dashboard or viewing the runs or record key for a previously set up project.
    Fixes #​18129.
  • The branch collected for Drone CI now correctly reflects the source PR branch
    for showing in the Cypress Dashboard. Fixes
    #​17860.

v8.4.0

Compare Source

Released 09/13/2021

Features:

  • When the URL contains non-ASCII characters, you can use the new decode
    option of cy.url() to decode it. Addresses
    #​17399.

Bugfixes:

  • Cypress now better handles situations where the extension was installed in a
    read-only location. Fixes
    #​3852.
  • A clearer error message is now thrown for .check() or .uncheck() when
    there are no matching value attributes found.
    Fixes#​7379.
  • Hooks will no longer rerun on unrelated tests in some situations after a
    domain navigation. Fixes
    #​17705.
  • clientCertificate types have been added for the Cypress configuration. Fixes
    #​17799.

v8.3.1

Compare Source

Released 08/27/2021

Performance:

  • Projects will now open much faster on MacOS Big Sur with improved browser
    detection performance. Fixes
    #​17773.

Bugfixes:

  • Fixed a regression in 8.3.0 where the
    correct exit code would not be issued during cypress run-ct while running in
    the Electron browser. Fixes
    #​17752 and
    #​17885.
  • Fixed a regression in 8.3.0 where
    Cypress would cause a SIGSEGV error on Mac when closing the Cypress app
    opened via cypress open. Fixes
    #​17766.
  • The beforeinput event now correctly fires in Firefox during keyboard events.
    Fixes #​17583.

Misc:

  • cy.document() typings now allow for the timeout option. Fixes
    #​17695.
  • cy.title() typings now allow for the timeout option. Fixes
    #​17781

Dependency Updates:

  • Upgraded electron from 13.1.7 to 13.2.0. Addressed in
    #​17772.
  • Upgraded @cypress/request from 2.88.5 to 2.88.6. Addresses
    #​17622.

v8.3.0

Compare Source

Released 08/16/2021

Features:

  • The instructions for recording a run have been updated for some users.
    Addressed in #​17317.

Performance:

  • We addressed an issue that increased CPU usage during video recording in
    Chrome 89+/Electron 12+. Fixes
    #​16152.
  • Fixed a regression in 7.2.0 that would
    cause cy.visit() to take longer to fire its load event in some
    circumstances. Fixes
    #​16671.

Bugfixes:

  • Fixed an issue that could cause intermittent OpenSSL errors when the local CA
    cert cache becomes corrupted. Fixes
    #​8705.
  • Fixed a regression in 7.2.0 causing the
    menu bar of Cypress to not be clickable in Windows. Fixes
    #​16323.
  • res.send of cy.intercept() will no longer override JSON-related content
    types. Fixes #​17084.
  • The times option of cy.intercept now works properly with req.reply.
    Fixes #​17139.
  • Fixed a regression in 8.0.0 where
    Cypress would always warn that chromeWebSecurity is set to "false" when it
    wasn't. Fixes #​17614.

Dependency Updates:

  • Upgraded Chrome browser version used during cypress run and when selecting
    Electron browser in cypress open from 89 to 91. Addressed in
    #​17408.
  • Upgraded bundled Node.js version from 14.6.0 to 14.17.0. Addressed in
    #​17408.
  • Upgraded electron from 12.0.0-beta.14 to 13.1.7. Addressed in
    #​17408.
  • Upgraded url-parse from 1.5.1 to 1.5.2. Addressed in
    #​17719.

v8.2.0

Compare Source

Released 08/04/2021

Features:

  • You can now cache and restore cookies,
    localStorage,
    and
    sessionStorage
    in order to reduce test setup times by using
    cy.session(). The session API is experimental and
    can be enabled by setting the
    experimentalSessionSupport flag to true
    in your Cypress config. See
    our blog
    and the cy.session() doc for more detail.
  • The logging experience around HTTP requests has been updated.
    • fetch requests are always displayed in the Command Log, regardless of if
      experimentalFetchSupport is enabled.
    • Duplicate logs for XHRs, fetches, and cy.intercept() have been
      consolidated - Fixes
      #​14843.
    • The user experience around the information displayed in the console when
      clicking on cy.intercept() request logs has been improved.
    • Request logs now indicate if a request has gone to the origin or if it has
      been stubbed by displaying a filled or empty circle in the request log.
    • Request logs now display information about if the request and/or response
      was modified by a cy.intercept().
    • The tooltip displayed when mousing over a request log now displays
      information about the matched cy.intercept()/cy.route() rules.
    • Fixed an issue where pending request logs were not ended between tests.
      Fixes #​14655.
  • There's now a Cypress.currentTest property to access name the currently
    executing test via Cypress.currentTest.title and
    Cypress.currentTest.titlePath. Addresses
    #​2972.

Bugfixes:

  • A "removing cookie failed" error will no longer throw when cookies are cleared
    in Firefox. Fixes #​6375.
  • Cypress no longer throws the error "cannot read property split of undefined"
    in certain circumstances when application errors are thrown. Fixes
    #​17378.
  • Cypress now properly runs the final test when nested in a suite with a
    before hook. Fixes
    #​9026.
  • Fixed a regression in 8.0.0 where an
    error would longer throw when there is no /etc/passwd entry for the current
    user, such as in some Docker and GitHub Action setups. Fixes
    #​17415.
  • Cypress now throws if a function is incorrectly passed as the second argument
    to cy.wait(). Fixes
    #​17436.

v8.1.0

Compare Source

Released 07/29/2021

Features:

  • When using experimentalStudio, you can now generate assertions in
    Cypress Studio by right clicking on an
    element. Addressed in
    #​16295.
  • When searching specs in the Test Runner during end-to-end testing, characters
    that are not letters will be ignored and don't have to be typed. Addressed in
    #​17346.

Performance:

  • The Test Runner's performance has been improved when running a large number of
    commands within a single test. Fixes
    #​6783.

Bugfixes:

  • Add Yarn v2 pnp support to our default webpack processor. Fixes
    #​8008 and
    #​16111.
  • When running Cypress in global mode, an error will no longer be thrown when
    trying to add a new project to the Dashboard. Addressed in
    #​17514.
  • The Test Runner will no longer crash in some instances when creating a new
    spec file from the GUI.
    #​17430.
import-js/eslint-plugin-import

v2.25.3

Compare Source

Fixed
Changed
jsx-eslint/eslint-plugin-jsx-a11y

v6.5.1

Compare Source

==================

v6.5.0

Compare Source

==================

  • 0f5f582 [New] support ESLint 8.x (#​810)
  • 1dbc416 [Deps] update @babel/runtime, axe-core
  • 4043d31 [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, eslint-config-airbnb-base
  • d143cba [Docs] HTTP => HTTPS (#​823)
  • 309b040 [Docs] anchor-has-content: add missing close / for jsx succeed example (#​821)
  • ba1e312 [eslint] simplify eslint command
  • 0269025 [meta] change all master references in URLs to HEAD
  • f1414cf [Dev Deps] add eslint-plugin-eslint-plugin (#​818)
  • f44fc05 [meta] update URLs
  • df34872 [Refactor] switch to export default syntax for exporting rules (#​819)
  • ff26b82 [meta] fix prepublish scripts
  • d4a57d8 [Deps] update @babel/runtime, array-includes, axe-core, jsx-ast-utils
  • bd1dec6 [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, eslint-plugin-import, estraverse, safe-publish-latest
  • 434c4cf [Tests] do not test eslint 7 on node 11
  • aed7a20 [Tests] use @babel/eslint-parser instead of babel-eslint (#​811)
  • 0021489 [actions] use codecov action
  • 1251088 [meta] delete FUNDING.yml in favor of .github repo
  • ecf7a27 [Docs] scope: replace duplicate scope word (#​799)
  • 952af25 [Fix] no-access-key: Fix wording and grammar (#​800)
  • 6cf7ac0 [Dev Deps] update @babel/cli, @babel/core, @babel/plugin-transform-flow-strip-types, aud, eslint-plugin-flowtype, eslint-plugin-import
  • 79a35d4 [Deps] update @babel/runtime, axe-core, damerau-levenshtein
  • 2a9ab71 [Tests] delete src/util/getComputedRole-test.js test in node 6
  • 0c1c587 [Tests] autocomplete-valid: move some failed tests to passing
  • 8830902 [Tests] fix eslint < 7 not understanding import type
  • d57887c [Tests] ensure all tests run
  • 55e5c11 Support img role for canvas (#​796)
  • 36102cd [meta] use prepublishOnly script for npm 7+
  • 2501a7f Remove the link-button focus css from the anchor-is-valid doc (#​662)
  • d927625 Update recommended config to allow fieldset to have the radiogroup role (#​746)
  • 5aa8db9 [Docs] Clarify the title of the strictness table in the main doc (#​786)
  • df3c7ad [Docs] Document the similarity between html-has-lang and lang (#​778)
  • 426d4c2 Fix Flow warnings (#​785)
  • ecec8e4 Fully deprecate accessible-emoji rule (#​782)
  • 8a0e43c [Tests] remove .travis.yml
  • f88bf6b [Dev Deps] update flow-bin to support aarch64 (#​784)
  • 369f9db [Dev Deps] update @babel/cli, @babel/core, @babel/plugin-transform-flow-strip-types, aud, eslint-plugin-flowtype, jscodeshift
  • ce0785f [Deps] update @babel/runtime, array-includes, axe-core, emoji-regex
  • 2c2a2ad [actions] update to use node/install action
  • c275964 [Docs] anchor-is-valid: general cleanup (#​728)
  • 3df059e [Docs] no-redundant-roles: Adds missing closing square bracket (#​775)
  • 42ce5b7 [Docs] anchor-is-valid: Add Next.js case (#​769)
  • 2e5df91 [Tests] fix tests breaking on npm 7
  • 066ccff [Docs] no-noninteractive-tabindex: Add example for tabIndex on seemingly non-interactive element (#​760)
  • 6b19aa5 [Tests] migrate tests to Github Actions (#​764)
  • 7e158e3 [meta] run aud in posttest
  • 71f390f [Tests] stop using coveralls
  • e54b466 [meta] add Automatic Rebase and Require Allow Edits workflows
  • 7d5511d [New] label-has-associated-control: Add glob support (#​749)
  • 854da0c Ran npm update; latest packages (#​763)
  • 8637aa7 (source/pr/734, fork/pr/26) [patch] strict config: Turn off label-has-for (#​734)
  • d85ce54 [doc] Add link to MDN Aria documentation (#​762)
  • 20b48a4 [patch] no-onchange: Remove rule from recommended/strict configs, and deprecate (#​757)
yannickcr/eslint-plugin-react

v7.27.0

Compare Source

Added
Fixed
  • propTypes: add VoidFunctionComponent to react generic list (#​3092 @​vedadeepta)
  • [jsx-fragments], [jsx-no-useless-fragment]: avoid a crash on fragment syntax in typescript-eslint parser (@​ljharb)
  • [jsx-props-no-multi-spaces]: avoid a crash on long member chains in tag names in typescript-eslint parser (@​ljharb)
  • [no-unused-prop-types], usedPropTypes: avoid crash with typescript-eslint parser (@​ljharb)
  • [display-name]: unwrap TS as expressions (#​3110 @​ljharb)
  • [destructuring-assignment]: detect refs nested in functions (#​3102 @​ljharb)
  • [no-unstable-components]: improve handling of objects containing render function properties (#​3111 @​fizwidget)
  • [prop-types], propTypes: add forwardRef<>, ForwardRefRenderFunction<> prop-types (#​3112 @​vedadeepta)
  • [no-typos]: prevent a crash when using private methods (@​ljharb)
  • [destructuring-assignment], component detection: improve component detection (#​3122 @​vedadeepta)
  • [no-invalid-html-attribute]: avoid crash on spread props (#​3126 @​ljharb)
Changed
facebook/react

v4.3.0

Features
  • Show component location for selected element in bottom/right panel (bvaughn in #​17567)
  • Improved inspected element values with inline previews (bvaughn in #​17579)
  • Improved selection and toggling for inspected element panel (bvaughn in #​17588)
  • Copy context menu for inspecting and copying props/state/hooks/context values (bvaughn in #​17608)
Bug fixes
  • Fix serialization for BigInt type so that it does not break inspection panel. (nutboltu in #​17233)
  • Fix display name logic for forwardRefs that use displayName property (zthxxx in #​17613)
remix-run/react-router

v6.0.2

Compare Source

✨ Features

  • Added the reloadDocument prop to <Link>. This allows <Link> to function like a normal anchor tag by reloading the document after navigation while maintaining the relative to resolution.

🗒️ Docs

  • Fixed several issues in docblocks and the docs themselves. See the full changelog for the deets!

🤝 New Contributors


Configuration

📅 Schedule: "before 3am on Monday" (UTC).

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

Rebasing: Whenever PR becomes conflicted, 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, click this checkbox.

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

@vercel
Copy link

vercel bot commented Nov 15, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/alphaolomi/hyper-chat/EfFS1HjcQRfCj6nH4pwytXx6z3mZ
✅ Preview: Failed

@alphaolomi alphaolomi merged commit d8188d4 into main Nov 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants