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

[Snyk] Upgrade @vx/responsive from 0.0.172 to 0.0.192 #10

Closed

Conversation

snyk-bot
Copy link

Snyk has created this PR to upgrade @vx/responsive from 0.0.172 to 0.0.192.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
  • The recommended version is 10 versions ahead of your current version.
  • The recommended version was released 4 months ago, on 2019-10-03.
Release notes
Package name: @vx/responsive
  • 0.0.192 - 2019-10-03

    See #484 for details.

    💥 Breaking Changes

    • [breaking] Deprecate build/ and dist/, use lib/ and esm/ instead
    • [breaking] Deprecate umd builds

    🏠 Internal

    • use babel not rollup
    • use yarn not npm
      • this will enable workspaces so that we can push all config to the root instead of duplicating across every package as is the case now
    • Stricter linting rules (e.g., .jsx required for React files)
  • 0.0.189 - 2019-05-16

    💥 Breaking Changes

    • [shape] <Arc /> and <Pie pieValue={} /> props now check for !== undefined. Before 0 wouldn't set the prop to 0 because if (0) is false. This is only a breaking change if you were passing 0 before and happy with <Arc /> treating that as undefined and using d3.arc() defaults. #464
    • [zoom] make wheel event active by default. fixes Chrome 73 scroll intervention warning. #456
      • To keep the default behavior before Chrome 73 and remove console warnings in Chrome 73, remove:
        <MyComponent
        - onWheel={zoom.handleWheel}
        />
      • To make the onWheel events passive, add:
        <Zoom
        + passive={true}
        >
          {zoom => {
            return (
              <MyComponent
        +      onWheel={zoom.handleWheel}
              /> 
            );
          }}
        </Zoom>

    🚀 Enhancements

    • [responsive][shape][text][geo] update innerRef propType to include PropType.object. #446

    🐛 Bug Fix

    • [text] move Babel dependencies to dev only. #461
    • [shape] <Arc /> now respects 0 as an allowed prop value. #464
    • [shape] <Pie /> pieValue now respects 0 as an allowed prop value. #464

    📝 Documentation

    • [docs] update docs. #446
    • [glyph] fixes outdated @vx/glyph examples in the readme docs. #454

    🏠 Internal

    • [internal] fix jest code coverage, update jest, move to babel.config.js + jest.config.js. #439
    • [internal] babel preset env target explorer => ie. #446
    • [internal] babel preset env target remove ucandroid. #446
    • [shape] add more <Arc /> tests. #464
    • [shape] convert Arc.test from CRLF => LF. #464

    🏆 Contributors

    Changes:
     - @vx/annotation: 0.0.184 => 0.0.189
     - @vx/axis: 0.0.184 => 0.0.189
     - @vx/bounds: 0.0.182 => 0.0.189
     - @vx/boxplot: 0.0.183 => 0.0.189
     - @vx/brush: 0.0.182 => 0.0.189
     - @vx/chord: 0.0.183 => 0.0.189
     - @vx/clip-path: 0.0.183 => 0.0.189
     - @vx/curve: 0.0.182 => 0.0.189
     - @vx/demo: 0.0.188 => 0.0.189
     - @vx/drag: 0.0.183 => 0.0.189
     - @vx/event: 0.0.182 => 0.0.189
     - @vx/geo: 0.0.187 => 0.0.189
     - @vx/glyph: 0.0.183 => 0.0.189
     - @vx/gradient: 0.0.183 => 0.0.189
     - @vx/grid: 0.0.184 => 0.0.189
     - @vx/group: 0.0.183 => 0.0.189
     - @vx/heatmap: 0.0.183 => 0.0.189
     - @vx/hierarchy: 0.0.183 => 0.0.189
     - @vx/legend: 0.0.183 => 0.0.189
     - @vx/marker: 0.0.184 => 0.0.189
     - @vx/mock-data: 0.0.185 => 0.0.189
     - @vx/network: 0.0.183 => 0.0.189
     - @vx/pattern: 0.0.183 => 0.0.189
     - @vx/point: 0.0.182 => 0.0.189
     - @vx/responsive: 0.0.188 => 0.0.189
     - @vx/scale: 0.0.182 => 0.0.189
     - @vx/shape: 0.0.184 => 0.0.189
     - @vx/stats: 0.0.183 => 0.0.189
     - @vx/text: 0.0.183 => 0.0.189
     - @vx/threshold: 0.0.184 => 0.0.189
     - @vx/tooltip: 0.0.184 => 0.0.189
     - @vx/voronoi: 0.0.183 => 0.0.189
     - @vx/vx: 0.0.188 => 0.0.189
     - @vx/zoom: 0.0.185 => 0.0.189
    
  • 0.0.188 - 2019-03-15

    🐛 Bug Fix

    • [responsive] add debounceTime back to prevent it spreading on children through restProps. #437

    🏆 Contributors

    Changes:
     - @vx/demo: 0.0.187 => 0.0.188
     - @vx/responsive: 0.0.186 => 0.0.188
     - @vx/vx: 0.0.187 => 0.0.188
    
  • 0.0.186 - 2019-02-28

    📝 Documentation

    • [demo] cleanup DragII demo. #424
    • [demo] fixed broken BarStacks example. Bar Stack Horizontal example works correct, but BarStack for some reason uses ({ barStacks }) instead of barStacks. #423

    🐛 Bug Fix

    • [responsive] <ParentSize /> replace for..of with forEach() to fix IE11 error without having to sham Symbol. More info: #258 #428

    🏆 Contributors

    Changes:
     - @vx/demo: 0.0.185 => 0.0.186
     - @vx/responsive: 0.0.184 => 0.0.186
     - @vx/vx: 0.0.185 => 0.0.186
    
  • 0.0.184 - 2019-01-28

    🚀 Enhancements

    • [geo] add albersUsa projection in d3-geo to @vx/geo. #415
    • [geo] add equalEarth projection in d3-geo to @vx/geo. #407

    🐛 Bug Fix

    • [shape] fix proptype for LinePath defined prop. Should use oneOfType rather than oneOf. #414
    • [demo] remove unnecessary destructuring of props in demo code. #409
    • [responsive] fix proptype for ScaleSVG children prop. #408

    📝 Documentation

    • [tooltip] fix tooltip docs. #403

    🏆 Contributors

    Changes:
     - @vx/annotation: 0.0.183 => 0.0.184
     - @vx/axis: 0.0.183 => 0.0.184
     - @vx/demo: 0.0.183 => 0.0.184
     - @vx/geo: 0.0.183 => 0.0.184
     - @vx/grid: 0.0.183 => 0.0.184
     - @vx/marker: 0.0.183 => 0.0.184
     - @vx/responsive: 0.0.183 => 0.0.184
     - @vx/shape: 0.0.183 => 0.0.184
     - @vx/threshold: 0.0.183 => 0.0.184
     - @vx/tooltip: 0.0.182 => 0.0.184
     - @vx/vx: 0.0.183 => 0.0.184
    
  • 0.0.183 - 2019-01-04

    🚀 Enhancements

    • [responsive] add innerRef prop to <ScaleSVG />. #393

    📝 Documentation

    • [docs] use react-docgen to generate docs from prop-types and comments. #399
    • [responsive][docs] add innerRef prop docs. #400
    • [threshold][docs] update clipAboveTo and clipBelowTo prop types to number|func. #401

    🏠 Internal

    🏆 Contributors

  • 0.0.182 - 2018-12-12
  • 0.0.179 - 2018-10-08
  • 0.0.177 - 2018-09-28
  • 0.0.175 - 2018-09-18
  • 0.0.172 - 2018-08-16
from @vx/responsive GitHub release notes

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

@craig-rueda craig-rueda deleted the snyk-upgrade-ddc5cfe70061bbe13b89bd1416700438 branch August 20, 2020 21:47
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.

2 participants