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

Update minor and patch #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 6, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/cytoscape (source) 3.19.7 -> 3.19.9 age adoption passing confidence
@types/react-syntax-highlighter (source) 15.5.4 -> 15.5.5 age adoption passing confidence
@types/styled-components (source) 5.1.25 -> 5.1.26 age adoption passing confidence
@vitejs/plugin-react (source) 2.0.0 -> 2.1.0 age adoption passing confidence
cytoscape (source) 3.22.1 -> 3.23.0 age adoption passing confidence
eslint (source) 8.20.0 -> 8.24.0 age adoption passing confidence
react-flow-renderer 10.3.12 -> 10.3.17 age adoption passing confidence
styled-components (source) 5.3.5 -> 5.3.6 age adoption passing confidence
vite (source) 3.0.4 -> 3.1.4 age adoption passing confidence
vitest 0.20.2 -> 0.23.4 age adoption passing confidence

Release Notes

vitejs/vite (@​vitejs/plugin-react)

v2.1.0

Compare Source

v2.0.1

Compare Source

cytoscape/cytoscape.js

v3.23.0

Compare Source

eslint/eslint

v8.24.0

Compare Source

Features

  • 1729f9e feat: account for sourceType: "commonjs" in the strict rule (#​16308) (Milos Djermanovic)
  • b0d72c9 feat: add rule logical-assignment-operators (#​16102) (fnx)
  • f02bcd9 feat: array-callback-return support findLast and findLastIndex (#​16314) (Sosuke Suzuki)

Documentation

Chores

v8.23.1

Compare Source

Bug Fixes

  • b719893 fix: Upgrade eslintrc to stop redefining plugins (#​16297) (Brandon Mills)
  • 734b54e fix: improve autofix for the prefer-const rule (#​16292) (Nitin Kumar)
  • 6a923ff fix: Ensure that glob patterns are normalized (#​16287) (Nicholas C. Zakas)
  • c6900f8 fix: Ensure globbing doesn't include subdirectories (#​16272) (Nicholas C. Zakas)

Documentation

  • 16cba3f docs: fix mobile double tap issue (#​16293) (Sam Chen)
  • e098b5f docs: keyboard control to search results (#​16222) (Shanmughapriyan S)
  • 1b5b2a7 docs: add Consolas font and prioritize resource loading (#​16225) (Amaresh S M)
  • 1ae8236 docs: copy & use main package version in docs on release (#​16252) (Jugal Thakkar)
  • 279f0af docs: Improve id-denylist documentation (#​16223) (Mert Ciflikli)

Chores

v8.23.0

Compare Source

Features

  • 3e5839e feat: Enable eslint.config.js lookup from CLI (#​16235) (Nicholas C. Zakas)
  • 30b1a2d feat: add allowEmptyCase option to no-fallthrough rule (#​15887) (Amaresh S M)
  • 43f03aa feat: no-warning-comments support comments with decoration (#​16120) (Lachlan Hunt)

Documentation

Chores

v8.22.0

Compare Source

Features

  • 2b97607 feat: Implement caching for FlatESLint (#​16190) (Nicholas C. Zakas)
  • fd5d3d3 feat: add methodsIgnorePattern option to object-shorthand rule (#​16185) (Milos Djermanovic)

Documentation

Chores

  • 10a6e0e chore: remove deploy workflow for playground (#​16186) (Milos Djermanovic)

v8.21.0

Compare Source

Features

  • 7b43ea1 feat: Implement FlatESLint (#​16149) (Nicholas C. Zakas)
  • 92bf49a feat: improve the key width calculation in key-spacing rule (#​16154) (Nitin Kumar)
  • c461542 feat: add new allowLineSeparatedGroups option to the sort-keys rule (#​16138) (Nitin Kumar)
  • 1cdcbca feat: add deprecation warnings for legacy API in RuleTester (#​16063) (Nitin Kumar)

Bug Fixes

  • 0396775 fix: lines-around-comment apply allowBlockStart for switch statements (#​16153) (Nitin Kumar)

Documentation

Chores

wbkd/react-flow

v10.3.17

Compare Source

Fixes and Refactorings

  • chore(node-edges): add data-testid (4e9cc37)
  • fix(edge-renderer): fallback to default edge if type is invalid (23d1dd0)
  • chore(isInputDOMNode): add event.target as fallback (0891b83)
  • Use event.composedPath for getting event target (a766ba3) by @​jwm0
  • Snap node to grid relative to 0,0 instead of relative to starting point of node (ac11a18) by @​wardoost

💯 Thanks @​jwm0 and @​wardoost for your contributions!

v10.3.16

Compare Source

v10.3.15

Compare Source

Fix

  • fix(useReactFlow): prevent unnecessary re-renderings (bb00e87)

Refactoring & Chore

v10.3.14

Compare Source

  • fix(store): set domNode (daf677d)

v10.3.13

Compare Source

Fixes
  • fix(minZoom,maxZoom): pass min- maxZoom for initial view closes #​2343 (d07e760)
  • fix(validation): Remove css-classes if mouse moves directly to different handle. (49636be)
styled-components/styled-components

v5.3.6

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v5.3.5...v5.3.6

vitejs/vite (vite)

v3.1.4

Compare Source

Please refer to CHANGELOG.md for details.

v3.1.3

Compare Source

v3.1.2

Compare Source

v3.1.1

Compare Source

v3.1.0

Compare Source

Main Changes
  • Vite now uses parse5, which parses HTML in the same way as the latest browser versions. This migration gives us a more robust HTML story moving forward (#​9678).
  • Vite now supports using objects as hooks to change execution order (#​9634). Check out the RFC and the implementation upstream at rollup/rollup#​4600 for details and rationale.
      import { resolve } from 'node:path';
      import { readdir } from 'node:fs/promises';
    
      export default function getFilesOnDisk() {
        return {
          name: 'getFilesOnDisk',
          writeBundle: {
            // run this hook sequentially even if the hook is parallel
            sequential: true,
            // push this hook to the 'post' stage, after all normal hooks
            order: 'post',
            // hook implementation
            async handler({ dir }) {
              const topLevelFiles = await readdir(resolve(dir))
              console.log(topLevelFiles)
            }
          }
        }
      }
    Read the updated Rollup Plugin docs for more information.

Note
After Vite 3.1, you are no longer going to see [vite] hot updated log messages in the browser console. These messages have been moved to the debug channel (#​8855). Check your browser docs to show debug logs.

Features
Bug Fixes
Previous Changelogs
3.1.0-beta.2 (2022-09-02)

See 3.1.0-beta.2 changelog

3.1.0-beta.1 (2022-08-29)

See 3.1.0-beta.1 changelog

3.1.0-beta.0 (2022-08-25)

See 3.1.0-beta.0 changelog

v3.0.9

Compare Source

v3.0.8

Compare Source

v3.0.7

Compare Source

v3.0.6

Compare Source

v3.0.5

Compare Source

vitest-dev/vitest

v0.23.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.23.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.23.1

Compare Source

   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - "after 10pm every weekend,before 5am every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/minor-and-patch branch from ae11c71 to 93d0f13 Compare August 9, 2022 11:58
@renovate renovate bot changed the title Update minor and patch Update minor and patch to v8.21.0 Aug 9, 2022
@renovate renovate bot changed the title Update minor and patch to v8.21.0 Update minor and patch Aug 10, 2022
@renovate renovate bot force-pushed the renovate/minor-and-patch branch 8 times, most recently from a1d2a41 to dace981 Compare August 16, 2022 23:16
@renovate renovate bot force-pushed the renovate/minor-and-patch branch 3 times, most recently from cda7a9e to ee7b156 Compare August 24, 2022 13:31
@renovate renovate bot force-pushed the renovate/minor-and-patch branch from ee7b156 to 7653897 Compare August 26, 2022 23:41
@renovate renovate bot force-pushed the renovate/minor-and-patch branch 4 times, most recently from 48cd73d to 3204f01 Compare September 10, 2022 09:44
@renovate renovate bot force-pushed the renovate/minor-and-patch branch 6 times, most recently from 7481ec4 to 138d84e Compare September 18, 2022 05:20
@renovate renovate bot force-pushed the renovate/minor-and-patch branch 2 times, most recently from bf30b09 to e887dd0 Compare September 23, 2022 23:58
@renovate renovate bot force-pushed the renovate/minor-and-patch branch 2 times, most recently from 678d52f to 157132a Compare September 28, 2022 12:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants