Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: chartjs/Chart.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.9.2
Choose a base ref
...
head repository: chartjs/Chart.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.9.3
Choose a head ref
  • 12 commits
  • 36 files changed
  • 4 contributors

Commits on Nov 2, 2019

  1. Copy the full SHA
    65421bb View commit details
  2. Combine performance docs (#6643)

    benmccann authored and etimberg committed Nov 2, 2019
    Copy the full SHA
    45550ed View commit details
  3. Copy the full SHA
    8abfbcb View commit details
  4. Copy the full SHA
    ad26311 View commit details
  5. Versatile clipping for lines (#6660)

    kurkle authored and etimberg committed Nov 2, 2019
    Copy the full SHA
    201fe46 View commit details
  6. Copy the full SHA
    a920bfe View commit details
  7. Backward compatible default fill for radar charts (#6655)

    * Backward compatible fill behavior for radar
    kurkle authored and etimberg committed Nov 2, 2019
    Copy the full SHA
    1cce8a5 View commit details
  8. Copy the full SHA
    a985fec View commit details

Commits on Nov 10, 2019

  1. Fix undefined variable (#6698)

    benmccann authored and etimberg committed Nov 10, 2019
    Copy the full SHA
    c44229f View commit details

Commits on Nov 11, 2019

  1. Copy the full SHA
    a307a2a View commit details
  2. Update version number to 2.9.3 (#6725)

    benmccann authored and etimberg committed Nov 11, 2019
    Copy the full SHA
    26ea9f0 View commit details

Commits on Nov 14, 2019

  1. Release 2.9.3

    chartjs-ci committed Nov 14, 2019
    Copy the full SHA
    06f73dc View commit details
Showing with 37,653 additions and 303 deletions.
  1. +16 −0 bower.json
  2. +20,755 −0 dist/Chart.bundle.js
  3. +7 −0 dist/Chart.bundle.min.js
  4. +47 −0 dist/Chart.css
  5. +16,151 −0 dist/Chart.js
  6. +1 −0 dist/Chart.min.css
  7. +7 −0 dist/Chart.min.js
  8. +1 −0 docs/SUMMARY.md
  9. +2 −72 docs/charts/line.md
  10. +81 −6 docs/general/performance.md
  11. +207 −206 package-lock.json
  12. +1 −1 package.json
  13. +58 −10 src/controllers/controller.line.js
  14. +1 −0 src/controllers/controller.radar.js
  15. +1 −1 src/core/core.datasetController.js
  16. +1 −1 src/core/core.scale.js
  17. +1 −1 src/platforms/platform.dom.js
  18. +3 −3 src/plugins/plugin.legend.js
  19. +38 −0 test/fixtures/controller.line/clip/default-x-max.json
  20. BIN test/fixtures/controller.line/clip/default-x-max.png
  21. +38 −0 test/fixtures/controller.line/clip/default-x-min.json
  22. BIN test/fixtures/controller.line/clip/default-x-min.png
  23. +39 −0 test/fixtures/controller.line/clip/default-x.json
  24. BIN test/fixtures/controller.line/clip/default-x.png
  25. +38 −0 test/fixtures/controller.line/clip/default-y-max.json
  26. BIN test/fixtures/controller.line/clip/default-y-max.png
  27. +38 −0 test/fixtures/controller.line/clip/default-y-min.json
  28. BIN test/fixtures/controller.line/clip/default-y-min.png
  29. +39 −0 test/fixtures/controller.line/clip/default-y.json
  30. BIN test/fixtures/controller.line/clip/default-y.png
  31. +77 −0 test/fixtures/controller.line/clip/specified.json
  32. BIN test/fixtures/controller.line/clip/specified.png
  33. +1 −0 test/fixtures/controller.radar/backgroundColor/scriptable.js
  34. +1 −0 test/fixtures/controller.radar/backgroundColor/value.js
  35. +1 −0 test/fixtures/controller.radar/borderDash/scriptable.js
  36. +2 −2 test/specs/plugin.legend.tests.js
16 changes: 16 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "chart.js",
"description": "Simple HTML5 charts using the canvas element.",
"homepage": "https://www.chartjs.org",
"license": "MIT",
"version": "2.9.3",
"main": "./dist/Chart.js",
"ignore": [
".github",
".codeclimate.yml",
".gitignore",
".npmignore",
".travis.yml",
"scripts"
]
}
Loading