Skip to content

Commit 3fa72dc

Browse files
author
Marc-André Rivet
committed
bump version to 3.6.0
1 parent a53e491 commit 3fa72dc

File tree

8 files changed

+57
-62
lines changed

8 files changed

+57
-62
lines changed

packages/dash-table/CHANGELOG.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [Unreleased]
5+
## [3.6.0] - 2019-03-04
66
### Fixed
7-
[#387](https://github.com/plotly/dash-core/issues/387)
8-
- Fix filtering conditions using floats
9-
10-
## [3.5.0] - 2019-02-25
11-
### Added
127
[#189](https://github.com/plotly/dash-table/issues/189)
138
- Added `format` nested prop to columns
149
- Applied to columns with `type=numeric` (more to come)
@@ -20,6 +15,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2015
- Python helpers (dash_table.FormatTemplate)
2116
- Added `locale_format` prop to table (default localization configuration, merged with column.format.locale)
2217

18+
[#387](https://github.com/plotly/dash-core/issues/387)
19+
- Fix filtering conditions using floats
20+
21+
## [3.5.0] - 2019-02-25
22+
### Added
2323
[#342](https://github.com/plotly/dash-core/issues/342)
2424
- Added `column_type` condition to style `if`; allows applying styles based on the type of the column for props
2525
- `style_cell_conditional`

packages/dash-table/dash_table/bundle.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dash-table/dash_table/bundle.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dash-table/dash_table/demo.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dash-table/dash_table/demo.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dash-table/dash_table/package-info.json

+16-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-table",
3-
"version": "3.5.0",
3+
"version": "3.6.0",
44
"description": "Dash table",
55
"main": "dash_table/bundle.js",
66
"scripts": {
@@ -11,27 +11,30 @@
1111
"private::build:js-dev": "run-s \"private::build -- --mode development\"",
1212
"private::build:js-test": "run-s \"private::build -- --config webpack.test.config.js\"",
1313
"private::build:js-test-watch": "run-s \"private::build -- --config webpack.test.config.js --watch\"",
14-
"private::build:extract-meta": "node ./extract-meta src/dash-table/DataTable.js > dash_table/metadata.json",
14+
"private::build:extract-meta": "node ./extract-meta src/dash-table/dash/DataTable.js > dash_table/metadata.json",
1515
"private::build:copy-package-info": "cp package.json dash_table/package-info.json",
1616
"private::build:generate-classes": "python -c \"import dash; dash.development.component_loader.generate_classes('dash_table', 'dash_table/metadata.json')\"",
1717
"private::build:py": "run-s private::build:copy-package-info private::build:extract-meta private::build:generate-classes",
1818
"private::host_dash8081": "python tests/cypress/dash/v_be_page.py",
1919
"private::host_dash8082": "python tests/cypress/dash/v_copy_paste.py",
2020
"private::host_dash8083": "python tests/cypress/dash/v_fe_page.py",
2121
"private::host_js": "http-server ./dash_table -c-1 --silent",
22+
"private::lint:ts": "tslint '{src,demo,tests}/**/*.{js,ts,tsx}' --exclude '**/@Types/*.*'",
23+
"private::lint:py": "flake8 --exclude=DataTable.py,__init__.py,_imports_.py --ignore=E501,F401,F841,F811,F821 dash_table",
2224
"private::wait_dash8081": "wait-on http://localhost:8081",
2325
"private::wait_dash8082": "wait-on http://localhost:8082",
2426
"private::wait_dash8083": "wait-on http://localhost:8083",
2527
"private::wait_js": "wait-on http://localhost:8080",
2628
"private::opentests": "cypress open",
29+
"private::runtests:python": "python -m unittest tests/unit/format_test.py",
2730
"private::runtests:unit": "cypress run --browser chrome --spec 'tests/cypress/tests/unit/**/*'",
2831
"private::runtests:standalone": "cypress run --browser chrome --spec 'tests/cypress/tests/standalone/**/*'",
2932
"private::runtests:server": "cypress run --browser chrome --spec 'tests/cypress/tests/server/**/*'",
3033
"private::runtests-v0": "run-s private::runtests:server",
31-
"private::runtests-v1": "run-s private::runtests:unit private::runtests:standalone private::runtests:server",
34+
"private::runtests-v1": "run-s private::runtests:python private::runtests:unit private::runtests:standalone private::runtests:server",
3235
"build.watch": "webpack-dev-server --content-base dash_table --mode development",
3336
"build": "run-s private::build:js private::build:py",
34-
"lint": "tslint '{src,demo,tests}/**/*.{js,ts,tsx}' --exclude '**/@Types/*.*'",
37+
"lint": "run-s private::lint:*",
3538
"test-v0": "run-p --race private::host* private::runtests-v0",
3639
"test-v1": "run-p --race private::host* private::runtests-v1",
3740
"test.visual": "build-storybook && percy-storybook",
@@ -43,22 +46,24 @@
4346
"dependencies": {},
4447
"devDependencies": {
4548
"@babel/cli": "^7.2.3",
46-
"@babel/core": "^7.3.3",
49+
"@babel/core": "^7.3.4",
4750
"@babel/polyfill": "^7.2.5",
48-
"@babel/preset-env": "^7.3.1",
51+
"@babel/preset-env": "^7.3.4",
4952
"@babel/preset-react": "^7.0.0",
5053
"@cypress/webpack-preprocessor": "^4.0.3",
5154
"@percy-io/percy-storybook": "^2.1.0",
5255
"@storybook/cli": "^4.1.13",
5356
"@storybook/react": "^4.1.13",
54-
"@types/ramda": "^0.25.50",
55-
"@types/react": "^16.8.4",
57+
"@types/d3-format": "^1.3.1",
58+
"@types/ramda": "^0.25.51",
59+
"@types/react": "^16.8.5",
5660
"@types/react-dom": "^16.8.2",
5761
"@types/react-select": "^1.3.4",
5862
"babel-loader": "^8.0.5",
5963
"core-js": "^2.6.5",
6064
"css-loader": "^2.1.0",
6165
"cypress": "^3.1.5",
66+
"d3-format": "^1.3.2",
6267
"fast-isnumeric": "^1.1.2",
6368
"file-loader": "^3.0.1",
6469
"http-server": "^0.11.1",
@@ -68,19 +73,19 @@
6873
"npm-run-all": "^4.1.5",
6974
"ramda": "^0.26.1",
7075
"react": "16.8.3",
71-
"react-docgen": "^4.0.0",
76+
"react-docgen": "^4.0.1",
7277
"react-dom": "16.8.3",
7378
"react-select": "^1.3.0",
7479
"remarkable": "^1.7.1",
7580
"sheetclip": "^0.3.0",
7681
"style-loader": "^0.23.1",
7782
"ts-loader": "^5.3.3",
78-
"tslint": "^5.12.1",
83+
"tslint": "^5.13.0",
7984
"typescript": "^3.3.3333",
8085
"wait-on": "^3.2.0",
8186
"webpack": "^4.29.5",
8287
"webpack-cli": "^3.2.3",
83-
"webpack-dev-server": "^3.2.0",
88+
"webpack-dev-server": "^3.2.1",
8489
"webpack-preprocessor": "^0.1.12"
8590
},
8691
"files": [

packages/dash-table/package-lock.json

+26-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dash-table/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-table",
3-
"version": "3.5.0",
3+
"version": "3.6.0",
44
"description": "Dash table",
55
"main": "dash_table/bundle.js",
66
"scripts": {

0 commit comments

Comments
 (0)