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 chart.js from 2.7.2 to 2.9.3 #4

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

Conversation

snyk-bot
Copy link

@snyk-bot snyk-bot commented Apr 1, 2020

Snyk has created this PR to upgrade chart.js from 2.7.2 to 2.9.3.

ℹ️ 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 7 versions ahead of your current version.
  • The recommended version was released 5 months ago, on 2019-11-14.
Release notes
Package name: chart.js
  • 2.9.3 - 2019-11-14

    Bug Fixes

    • #6698 Fix undefined variable
    • #6719 Don't make legend empty when fill is false

    Thanks to the maintainers and collaborators for their help to improve and test Chart.js (@kurkle, @benmccann, and @etimberg).

  • 2.9.2 - 2019-11-02

    Bug Fixes

    • #6641 IE11 & Edge compatible style injection
    • #6655 Backwards compatible default fill for radar charts
    • #6660 Improve clipping of line charts when border widths are large
    • #6661 When a legend item is clicked, make sure the correct item is hidden
    • #6663 Refresh package-lock file to pick up new dependency

    Performance

    • #6671 Stop unnecessary line calculations

    Documentation

    • #6643 Combine performance documentation sections

    Thanks to the maintainers and collaborators for their help to improve and test Chart.js (@nagix, @kurkle, @benmccann, @etimberg and @simonbrunel).

  • 2.9.1 - 2019-10-27

    Bug Fixes

    • #6603 Fix deprecation warnings for horizontal bar charts
    • #6608 Fix zoom plugin by no longer clipping scale.getDecimalForPixel to the chart area
    • #6617 Non numeric Y axes did not work

    Documentation

    • #6613 Add link to performance documentation

    Development

    • #6609 - Tests no longer use deprecated options

    Thanks to the maintainers and collaborators for their help to improve and test Chart.js (@nagix, @kurkle, @benmccann, @etimberg and @simonbrunel).

  • 2.9.0 - 2019-10-26

    Breaking changes

    • #6131 helpers._decimalPlaces is now private

    Enhancements

    • #6527 Hover styling for dataset in 'dataset' mode
    • #6268 Implement dataset.order
    • #6509 Make autoSkip aware of major ticks
    • #6460 Implemented RTL support for legends and tooltips
    • #6490 HTML DOM building
    • #6326 Draw the rightmost grid line when offsetGridLines is true
    • #6343 Handle reverse support in core.scale
    • #6289 Support spanGaps in radar charts
    • #6323 Support object values for bar charts
    • #6287 Support rotation for pointStyle image
    • #6257 Allow specifying labels in time scale options
    • #6281 Support boundary filling modes in radialLinear scale
    • #6056 Add support for floating bar chart ([start, end])
    • #6241 Implement layers (z-index) for layout items
    • #5621 Make legend appearance consistent with chart elements
    • #5999 Implement per-dataset type (default and per-chart) options
    • #6097 Specify time scale min and max in standard manner
    • #6141 Legend align option. Thanks @dkichler
    • #6128 Make line options scriptable. Thanks @janelledement

    Performance

    • #6594 Remove a couple calls to helpers.each
    • #6247 Remove duplicate scale building
    • #6579 Cache resolved data element options
    • #6575 Simplify line drawing
    • #6508 Add ticks.sampleSize option
    • #6354 Perf improvement for ticks.source:'labels'
    • #6301 Replace helpers.each with for-loops
    • #6304 Refactor core.layout
    • #6307 Faster major tick calculation
    • #6250 Cache getScaleForId() calls in the line controller
    • #6148 Replace helpers.extend

    Bug Fixes

    • #6249 Bar options should be defined on dataset instead of scale
    • #6556 Inject styles into Shadow DOM when inside Shadow DOM
    • #6583 Fix unit determination when autoSkip is enabled
    • #6581 Return correct index/value id in radar/polarArea
    • #6580 Fix logarithmic test to use correct scale
    • #6528 Make sure zeroLineIndex is defined
    • #6523 Fix right side scale ticks
    • #6423 Clamp argument of toExponential between 0 and 20. Thanks @veggiesaurus
    • #6328 Fix getValueForPixel in time scale
    • #6292 Adjust vertical alignment of tooltip items
    • #6321 Update dataset metadata when axisID changes
    • #6291 Assign unique scale IDs
    • #6288 Fix regression in lineTension
    • #6282 Treat null as NaN in radialLinear scale
    • #6285 Keep lines on the left and right edges from being cut
    • #6269 Apply lineJoin style at the first point in radar charts
    • #6280 Fix point label counting in radialLinear scale
    • #6279 Treat 0 as a valid point label
    • #6265 Utilize tick.major in tickFormatFunction
    • #6264 Apply offset regardless of min/max setting
    • #6258 Fix ticks generation for vertical time scale
    • #6259 Fix determineUnitForFormatting floating point error
    • #6115 Fix overlapping auto-generated ticks on time scale
    • #6238 Fix tooltip title in radar charts
    • #6224 Fix arc size calculation when circumference is under 2*PI
    • #6215 Fix arc border with circumference over 2*PI
    • #5961 Fix tick label rotation and layout issues
    • #6182 Use the appropriate time format for auto tick generation
    • #6208 Fill before drawing lines
    • #6209 Fix missing tooltip value in radar charts
    • #6177 Normalize angle for index in radialLinear scale
    • #6102 Fix ticks.minor and ticks.major issues
    • #6129 Fix hover animation
    • #6120 Improved helpers.almostWhole

    Documentation

    • #6585 Add a note to the perf documentation about rotation
    • #6554 Add link to linear radial axis for radar chart doc
    • #6491 Add elements.arc.angle in documentation
    • #6466 Fixed incorrect spelling in pie dataset options. Thanks @SeppPenner
    • #6435 Add link back to home page from docs
    • #6393 Add radar chart config options
    • #6293 Correct descriptions on ticks.display and add pointLabels.display
    • #6263 Add sample for radar scriptable options
    • #6244 Fix data in timeseries sample
    • #6186 Typo in doughnut documentation. Thanks @joshuamcewen
    • #6132 Make docs consistent for cubicInterpolationMode and fill. Thanks @stockiNail
    • #6119 Demonstrate multiple units on timeseries example
    • #6139 Documented tooltip alignment options
    • #6134 Documented date adapter

    Development

    • #6507 Improved minimization when calling helpers
    • #6497 Reduce indentation
    • #6355 Do autoSkip in update
    • #6493 Upgrade rollup and plugins
    • #6362 Improved code minimization
    • #6360 Create helpers.math._factorize
    • #6351 Lazily compute label sizes
    • #6347 Render charts only once in time scale tests
    • #6246 Avoid time related deprecation warnings in tests

    Thanks to the maintainers and collaborators for their help to improve and test Chart.js (@nagix, @kurkle, @benmccann, @etimberg and @simonbrunel).

  • 2.8.0 - 2019-03-14

    Documentation: http://www.chartjs.org/docs/2.8.0/

    Deprecations

    • #5868 Deprecate Chart.{Type} classes
    • #6022 Deprecate configMerge and scaleMerge helpers

    Enhancements

    • #5741 Add minBarLength option for bar chart. Thanks @adube
    • #5780 Bar options are now scriptable
    • #5841 Draw inner border for arc elements
    • #5850 Add support for gridLines/angleLines borderDash for polar area and radar charts
    • #5855 Moved drawing of radial lines before drawing the tick labels. Thanks @fhp
    • #5885 Add support for hiding axis when all datasets are hidden. Thanks @davesalomon
    • #5905 Add support for typed arrays
    • #5908 Add midpoint interpolation to stepped line. Thanks @veggiesaurus
    • #5927 Add reverse support to time scale
    • #5938 Improve tick generation for linear scales
    • #5951 New weight option for pie and doughnut charts
    • #5960 Implement adapter to abstract date/time features
    • #5966 Doughnut options are now scriptable
    • #5973 Line options are now scriptable
    • #5976 Polar area options are now scriptable
    • #5978 Make moment optional from our UMD builds
    • #5982 Remove date auto type conversions
    • #6019 Improve time scale performances
    • #6041 Radar options are now scriptable
    • #6048 Move CSS in a separate file to be CSP-compliant
    • #6059 Add onLeave callback to legend. Thanks @jonrimmer
    • #6077 Allow configuration of borderWidth as object
    • #6105 Optimize the npm package by removing useless files

    Issues Fixed

    • #5331 Make animation duration consistent across browsers. Thanks @serhii-yakymuk
    • #5609 Fix offsetGridLine behavior with a single data point
    • #5750 Ensure that the time scale safely accesses data.labels
    • #5751 Handle axis lineWidth as an array
    • #5752 Ensure that new Number() is correctly handled
    • #5776 Fix legend layout padding at the start of columns. Thanks @jtagscherer
    • #5786 Support decimal stepSize
    • #5790 Add error margin for detecting if a point or line is in the chart area
    • #5816 Fix legend item layout issue
    • #5828 Improve shadow root detection. Thanks @karaxuna
    • #5846 Correct calculation of padding in percent. Thanks @chtheis
    • #5848 Fix radial scale topmost tick label and the bottom of the chart area that were cut off
    • #5857 Fix nearest interaction mode
    • #5858 Adjust the size of rectRounded/rectRot points to fit the circle with pointRadius
    • #5865 Support CanvasGradient for hover colors
    • #5869 Tooltip support for CanvasPattern and CanvasGradient
    • #5880 Fix the rounding issue of floating point numbers in category scale
    • #5884 Remove gaps on the left and right when the axis offset is set to true
    • #5891 Remove autoSkip logic to always display last tick. Thanks @sgray
    • #5909 Remove innerHTML usage from our DOM platform
    • #5913 Re-allow modifying ticks in afterBuildTicks
    • #5914 Add scale.pointLabels.lineHeight and scale.ticks.lineHeight options
    • #5920 Return correct label for value type axis
    • #5922 Properly calculate space needed by tick label when autoSkip is true
    • #5925 Align title, body and footer inside tooltip
    • #5933 Fix time scale ticks.reverse issue
    • #5936 Fix "RangeError" exception when labels are big (>125000). Thanks @ckyycc
    • #5937 Prevent Bezier points from being capped when a data point is off the chart
    • #5947 Cast getRightValue to number in bar chart
    • #5948 Fix ticks generation when working with tiny numbers
    • #5963 Fix fitWithPointLabels calculation in radial linear scale
    • #5996 Replace tooltip item xLabel and yLabel with label and value
    • #6006 Enhance legend label color point when usePointStyle is true. Thanks @alfiehd
    • #6007 Prevent drawing radial linear scale twice
    • #6008 Supply correct start parameter to insertElements
    • #6011 Prevent infinite resize when vertical scrollbar appears
    • #6021 Fix padding of horizontal axes when labels are rotated
    • #6027 Provide a rectangle getArea implementation for horizontal bars
    • #6046 Rename addEventListener and removeEventListener
    • #6058 Ignore invalid log scale min and max
    • #6060 Handle frozen dataset.data arrays
    • #6063 Fix responsive resize on RTL page

    Documentation

    • #5756 Add documentation the aspectRatio property. Thanks @danielcb29
    • #5769 Use parser instead of the deprecated format option. Thanks @Niladri24dutta
    • #5795 Document tick padding option. Thanks @JEphron
    • #5796 Consistent use of punctuation. Thanks @bartdeslagmulder
    • #5813 Add a link to chartjs-plugin-colorschemes
    • #5831 Correct a spelling mistake. Thanks @bakert
    • #5854 Add docs for barThickness. Thanks @jedrekdomanski
    • #5876 Fix descriptions in bar chart doc
    • #5877 Replace repeated function call with compact function, generateData. Thanks @generic-github-user
    • #5912 Add omi-chart to the doc. Thanks @dntzhang
    • #5915 Use HTTPS in documentation links where possible
    • #5958 Use Chart.min.js in samples
    • #5962 Update contributors guide and issue templates
    • #5968 Fix contribution docs. Thanks @mojoaxel
    • #5974 Add a note about maintainAspectRatio. Thanks @janelledement
    • #5975 Fix typo / grammar in docs
    • #5979 Fix labelOffset description
    • #6013 Set pointBackgroundColor in radar sample
    • #6020 Fix typos and minor doc issues
    • #6026 Omit inconsistent note. Thanks @janelledement
    • #6030 Update doc on label types for TooltipItem
    • #6038 Fix duplicate anchor
    • #6042 Add examples of scriptable charts. Thanks @janelledement
    • #6053 Fix typo in broken url. Thanks @janelledement
    • #6054 Simple spelling error fix. Thanks @JABedford
    • #6070 Add a link to chartjs-plugin-crosshair. Thanks @AbelHeinsbroek
    • #6073 Add instructions for image-based tests to the contributors guide
    • #6079 Improve autoSkip documentation
    • #6081 Add a link to chartjs-plugin-rough
    • #6089 Improve financial sample tooltips and interactions
    • #6096 Revamp the README.md and add link to the awesome list
    • #6099 Fix document errors related to ticks
    • #6107 Add a note about how to include an example against master

    Development

    • #5624 Radar code cleanup
    • #5777 Support *.js test fixture configs
    • #5794 Remove dead code from the gulpfile. Thanks @HendrikRoehm
    • #5827 Change .editorconfig file to include newlines at EOF. Thanks @jtagscherer
    • #5833 Use the pixel comparer for logarithmic tests. Thanks @jtagscherer
    • #5840 Upgrade dev dependencies to reduce vulnerabilities
    • #5842 Use short labels for the legend tests so as not to be affected by the font width
    • #5871 Make Chart.controllers.* importable
    • #5872 Fix test failures on Windows
    • #5875 Remove gulp-connect and add jsdelivr/unpkg paths
    • #5904 Migrate from Browserify to rollup
    • #5953 Cleanup scales export for better import strategy
    • #5965 Refactoring using helpers.options.resolve
    • #5967 Update controller.scatter.test.js to test default tooltip callbacks. Thanks @Madrussian
    • #5969 Make the main controller importable
    • #5970 Remove unused parameter when calling removeResizeListener. Thanks @DanielRuf
    • #5991 Trigger mouse events at the center of arc
    • #5994 _resolveElementPoint utility for triggerMouseEvent
    • #6005 Common logic for resolving element options
    • #6017 Fix typo in comment
    • #6032 Replace deprecated gulp-util and remove unused watchify
    • #6033 Use lowercase for primitives in jsdocs
    • #6040 Remove unused ESLint directive
    • #6043 Autoskip cleanup
    • #6061 Fix randomly failing tooltip test

    Thanks to the maintainers and collaborators for their help to improve and test Chart.js (@nagix, @kurkle, @benmccann, @etimberg and @simonbrunel).

    More details in the release PR: #6092

  • 2.8.0-rc.1 - 2019-03-04
    No content.
  • 2.7.3 - 2018-10-15

    Documentation: http://www.chartjs.org/docs/2.7.3/

    Enhancements

    Issues Fixed

    • #4620 Fixed responsive in IE11 with padding as percentage. Thanks @andi-b
    • #5172 Avoid updating Chart when responsive: true and Chart is hidden. Thanks @jcopperfield
    • #5209 Fixed min and max option checks in linear scales. Thanks @teroman
    • #5321 Fixed line clipping at the chart area borders. Thanks @serhii-yakymuk
    • #5401 Proper tick position for right positioned axis
    • #5570 Restore original styles when removing hover
    • #5575 Event handling to use target instead currentTarget. Thanks @teroman
    • #5723 Fixed scale when data is all small numbers. Thanks @costerwi

    Documentation

    Development

    • #5382 Make Chart.Animation/animations/Tooltip importable
    • #5383 Make Chart.Scale/scaleService importable
    • #5478 Update gulpfile.js to use in strict mode. Thanks @ksokolowski7
    • #5595 Use comment for pull request template Thanks @DanielRuf
    • #5629 Disable hardware acceleration for unit tests
    • #5724 Add gulp watch task for docs @wuweiweiwu
    • #5732 Add "point style" image tests

    More details in the release PR: #5732

  • 2.7.2 - 2018-03-01

    Documentation: http://www.chartjs.org/docs/2.7.2/

    Enhancements

    • #4891 Relax dependencies versions. Thanks @jsg2021
    • #4923 Reset only when animating (optimization)
    • #4994 Equally sized bars for bar charts
    • #5062 Improve point.xRange and point.yRange performance. Thanks @fanthos
    • #5076 Prevent double ticks array reverse for logarithmic scale (optimization). Thanks @jcopperfield
    • #5095 Better default tooltip label format in the time scale
    • #5240 Support multiple font colors for radial chart labels. Thanks @flaurida

    Issues Fixed

    Documentation

    Development

    • #4699 Suppress coveralls errors in forks. Thanks @andig
    • #4738 Upgrade to ESLint 4
    • #5053 Update license year and copyright holders
    • #5112 Use the Chart.js shared ESLint config
    • #5113 Make Chart.layout(Service) importable
    • #5114 Make Chart.plugins importable
    • #5118 Rename Chart.layout to Chart.layouts
    • #5138 Ignore package-lock.json
    • #5143 Log gulp error. Thanks @loicbourgois
    • #5150 Test for showLines in scatter chart. Thanks @loicbourgois
    • #5195 Setup HTML and JS linters for samples. Thanks @loicbourgois
    • #5217 Fix Slack invitation link

    More details in the release PR: #5145

from chart.js GitHub release notes
Commit messages
Package name: chart.js
  • 06f73dc Release 2.9.3
  • 26ea9f0 Update version number to 2.9.3 (#6725)
  • a307a2a Don't make legend empty when fill is false (#6719)
  • c44229f Fix undefined variable (#6698)
  • a985fec Stop unnecessary line calculations (#6671)
  • 1cce8a5 Backward compatible default `fill` for radar charts (#6655)
  • a920bfe Hide correct dataset from legend (#6661)
  • 201fe46 Versatile clipping for lines (#6660)
  • ad26311 Refresh package-lock to pick up new version of chartjs-colors (#6663)
  • 8abfbcb Update version number to v2.9.2 (#6657)
  • 45550ed Combine performance docs (#6643)
  • 65421bb Use `document` when `getRootNode` is unsupported (#6641)
  • a92dd7b Release v2.9.1 (#6618)
  • 26b9d1f Merge pull request #6601 from chartjs/master
  • ea100d4 Bump version number to 2.9.0 (#6600)
  • 333118b Hover styling for dataset in 'dataset' mode (#6527)
  • 9ff1c84 Bar options should not be defined on scale (#6249)
  • 0b62f28 Inject styles into Shadow DOM when inside Shadow DOM (#5763) (#6556)
  • 4d7fefc Remove a couple calls to helpers.each (#6594)
  • f606c23 Fix unit determination when autoSkip is enabled (#6583)
  • 6c9f202 Fix autoskip for first segment of chart (#6584)
  • 3cb308d Fix sampleSize option (#6586)
  • c6c991d Add a note to the perf documentation about rotation (#6585)
  • cec2d26 Remove duplicate scale building (#6247)

Compare


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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant