Skip to content

Commit fddd053

Browse files
Merge branch 'hotfix/2.0.0-beta.19'
2 parents 584c551 + 390791d commit fddd053

39 files changed

+2064
-1192
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,4 @@ Jonathan Munz <[email protected]>
6565
Chris Alvino <[email protected]>
6666
Emiliano Guevara <[email protected]>
6767
Wang Xuan <[email protected]>
68+
Ethan Jewett <[email protected]>

Changelog.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
# 2.0 Series
2+
## 2.0.0 beta 19
3+
* Allow d3.selection to be passed as parent, as documented ([#1006](https://github.com/dc-js/dc.js/issues/1006))
4+
* Properly derive dc.errors from Error prototype to get stack
5+
* Add BadArgumentException and make .anchor() parent argument mandatory
6+
* Enable crossfilter optimizations by not resetting the filter and by using filterExact and filterRange, by Ethan Jewett ([#990](https://github.com/dc-js/dc.js/pull/990) / [#989](https://github.com/dc-js/dc.js/issues/989) / [#478](https://github.com/dc-js/dc.js/issues/478))
7+
* Add `filterType` to dc.filters, for filter optimizations and [easier serialization](https://github.com/dc-js/dc.js/issues/819)
8+
* More documentation improvements, by Matt Traynham ([#999](https://github.com/dc-js/dc.js/pull/999))
9+
* Fix method name in documentation ([#1009](https://github.com/dc-js/dc.js/issues/1009))
10+
* Move x axis when row chart size changes, by Wang Xuan ([#1001](https://github.com/dc-js/dc.js/pull/1001)
11+
* Fix css rule that was improperly selecting all axes, not just dc.js ones ([#1011](https://github.com/dc-js/dc.js/pull/1011) / ([#1005](https://github.com/dc-js/dc.js/issues/1007))
12+
* Add pre-commit hook to hopefully avoid ever checking in merge artifacts again.
13+
214
## 2.0.0 beta 18
315
* Fixes resizing examples to use `rescale` - currently all coordinate grid charts need to call this when changing width/height, in order to get axes moved ([#974](https://github.com/dc-js/dc.js/issues/974))
416
* Update all dependencies, continued linting, by Matt Traynham ([#975](https://github.com/dc-js/dc.js/pull/975))
517
* Bubble mixin minimum radius accessor ([#687](https://github.com/dc-js/dc.js/issues/687))
618
* Example of single selection of ordinal bar chart (for [#996](https://github.com/dc-js/dc.js/issues/996))
719
* Move documentation to JSDoc toolchain, by Matt Traynham ([#978](https://github.com/dc-js/dc.js/pull/978) / [#994](https://github.com/dc-js/dc.js/pull/994))
20+
* Resize heat map axes when chart size changes, by Wang Xuan ([#995](https://github.com/dc-js/dc.js/pull/995)
821

922
## 2.0.0 beta 17
1023
* Fixes issue where transitions were applied to the brush as it's being applied, causing it to lag ([#973](https://github.com/dc-js/dc.js/issues/973))

Gruntfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ module.exports = function (grunt) {
7474
watch: {
7575
jsdoc2md: {
7676
files: ['<%= conf.src %>/**/*.js'],
77-
tasks: ['jsdoc2md']
77+
tasks: ['build', 'jsdoc2md']
7878
},
7979
scripts: {
8080
files: ['<%= conf.src %>/**/*.js', '<%= conf.web %>/stock.js'],
@@ -350,14 +350,14 @@ module.exports = function (grunt) {
350350
grunt.registerTask('docs', ['build', 'copy', 'jsdoc2md', 'docco', 'fileindex']);
351351
grunt.registerTask('web', ['docs', 'gh-pages']);
352352
grunt.registerTask('server', ['docs', 'fileindex', 'jasmine:specs:build', 'connect:server', 'watch:jasmine-docs']);
353-
grunt.registerTask('test', ['build', 'jasmine:specs', 'shell:hooks']);
353+
grunt.registerTask('test', ['build', 'jasmine:specs']);
354354
grunt.registerTask('test-browserify', ['build', 'browserify', 'jasmine:browserify']);
355355
grunt.registerTask('coverage', ['build', 'jasmine:coverage']);
356356
grunt.registerTask('ci', ['test', 'jasmine:specs:build', 'connect:server', 'saucelabs-jasmine']);
357357
grunt.registerTask('ci-pull', ['test', 'jasmine:specs:build', 'connect:server']);
358358
grunt.registerTask('lint', ['jshint', 'jscs']);
359-
grunt.registerTask('default', ['build']);
360-
grunt.registerTask('jsdoc', ['jsdoc2md', 'watch:jsdoc2md']);
359+
grunt.registerTask('default', ['build', 'shell:hooks']);
360+
grunt.registerTask('jsdoc', ['build', 'jsdoc2md', 'watch:jsdoc2md']);
361361
};
362362

363363
module.exports.jsFiles = [

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dc.js",
33
"repository": "dc-js/dc.js",
44
"description": "Multi-Dimensional charting built to work natively with crossfilter rendered with d3.js",
5-
"version": "2.0.0-beta.18",
5+
"version": "2.0.0-beta.19",
66
"keywords": [
77
"visualization",
88
"svg",

dc.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ div.dc-chart {
6565
fill: #ccc;
6666
}
6767

68-
.dc-chart .axis path, .axis line {
68+
.dc-chart .axis path,
69+
.dc-chart .axis line {
6970
fill: none;
7071
stroke: #000;
7172
shape-rendering: crispEdges;
@@ -253,7 +254,8 @@ div.dc-chart {
253254
stroke-opacity: 0.2;
254255
}
255256

256-
.dc-chart path.dc-symbol, g.dc-legend-item.fadeout {
257+
.dc-chart path.dc-symbol,
258+
g.dc-legend-item.fadeout {
257259
fill-opacity: 0.5;
258260
stroke-opacity: 0.5;
259261
}

0 commit comments

Comments
 (0)