Skip to content

Releases: apertureless/vue-chartjs

💎 Release new version 2.3.9

01 Mar 21:44
Compare
Choose a tag to compare

Update

  • Add src folder to npm package files.
  • Add src/index.js to main npm package entry instead of bundled dist
  • This way the dependencies (vue and chart.js) don't get bundled into the package js.

💎 Release new version 2.3.8

01 Mar 13:50
Compare
Choose a tag to compare

Update

  • vue to 2.2.1

💎 Release new version 2.3.6

22 Feb 14:52
v2.3.6
84dab8c
Compare
Choose a tag to compare

Fixes

  • Fixed #42 in reactiveProp and reactiveData mixin: complete dataset gets replaced in the watcher to also replace color variables etc.

💎 Release new version 2.3.5

15 Feb 14:36
v2.3.5
fc7818d
Compare
Choose a tag to compare

Fixed

  • #35 reactiveProp and reactiveData Mixin: Destroy chart instance before render()

💎 Release new version 2.3.4

11 Feb 11:55
Compare
Choose a tag to compare

Patches

  • Update dependency chart.js to 2.5.0

💎 Release new version 2.3.3

19 Jan 09:28
v2.3.3
Compare
Choose a tag to compare

Patches

  • Updated vue and vue-template-compiler
  • Fix #30

💎 Release new version 2.3.2

23 Dec 11:37
v2.3.2
Compare
Choose a tag to compare

Add new webpack config for release build.
As most people using vue-chartjs in a pipeline with webpack or gulp the new release is not minified and the production env is not set.

This should fix #19 and #26

💎 Release new version 2.3.1

20 Dec 19:20
v2.3.1
7ffefe4
Compare
Choose a tag to compare

Short

Now vue-chartjs uses the runtime-only build. All template tags has been rewritten to render functions.
Based on #22

Change Log

v2.3.1 (2016-12-20)

Full Changelog

Fixed bugs:

  • Issues after using gulp-- production #19

Closed issues:

  • Error in rendering #21

Merged pull requests:

💎 Release new version 2.3.0

17 Dec 17:28
Compare
Choose a tag to compare

Changelog

  • Updated dependencies (vue.js & chart.js)

Breaking Change

  • Changed mixin module imports. Seperated mixins in own module.

Old way was:

import { reactiveProp } from 'vue-chartjs'

Now:

// Load speperate modules 
import { Line, mixins } from 'vue-chartjs'

export default Line.extend({
  mixins: [mixins.reactiveProp],
  props: ["chartData", "options"],
  mounted () {
    this.renderChart(this.chartData, this.options)
  }
})

or with destructive assign:

// Load speperate modules with destructure assign
import { Line, mixins } from 'vue-chartjs'
const { reactiveProp } = mixins

export default Line.extend({
  mixins: [reactiveProp],
  props: ["chartData", "options"],
  mounted () {
    this.renderChart(this.chartData, this.options)
  }
})

💎 Release new version 2.2.1

07 Dec 07:47
d980e32
Compare
Choose a tag to compare

Update chartjs and vuejs dependencies