diff --git a/NEWS.md b/NEWS.md index bd43f1b340ad..2286f7660512 100644 --- a/NEWS.md +++ b/NEWS.md @@ -17,6 +17,7 @@ This release introduces a new API Key system. In order to migrate existing users * New rake to fix inconsistent permissions (`bundle exec rake cartodb:permissions:fix_permission_acl`) ### Bug fixes / enhancements +* Use setView instead of flyTo to improve zoom transitions (https://github.com/CartoDB/carto.js/pull/2178) * Fix torque layers when filter analysis is added (https://github.com/CartoDB/support/issues/1038) * Copyright symbol not appearing on exported image (https://github.com/CartoDB/cartodb/issues/13411) * Keep selected popup tab after fetch (https://github.com/CartoDB/support/issues/1396) diff --git a/lib/build/tasks/webpack/webpack.config.js b/lib/build/tasks/webpack/webpack.config.js index 88455de9a77e..72209f51cb11 100644 --- a/lib/build/tasks/webpack/webpack.config.js +++ b/lib/build/tasks/webpack/webpack.config.js @@ -45,7 +45,7 @@ module.exports = { path.resolve(path.resolve('.'), 'lib/assets/javascripts/dashboard'), path.resolve(path.resolve('.'), 'lib/assets/test/spec/dashboard'), path.resolve(path.resolve('.'), 'lib/assets/test/spec/fixtures'), - path.resolve(path.resolve('.'), 'lib/assets/javascripts/dashboard') + path.resolve(path.resolve('.'), 'node_modules/internal-carto.js') ], options: { presets: [ diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index eb9c47457c35..8cecff116918 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -3,9 +3,9 @@ "version": "4.12.57", "dependencies": { "@carto/carto.js": { - "version": "4.0.17", + "version": "4.1.0", "from": "@carto/carto.js@>=4.0.6 <5.0.0", - "resolved": "https://registry.npmjs.org/@carto/carto.js/-/carto.js-4.0.17.tgz" + "resolved": "https://registry.npmjs.org/@carto/carto.js/-/carto.js-4.1.0.tgz" }, "@carto/zera": { "version": "1.0.6", @@ -1142,9 +1142,9 @@ } }, "eslint-scope": { - "version": "3.7.1", + "version": "3.7.3", "from": "eslint-scope@>=3.7.1 <4.0.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz", "dependencies": { "estraverse": { "version": "4.2.0", @@ -1519,9 +1519,9 @@ "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz" }, "html-minifier": { - "version": "3.5.18", + "version": "3.5.19", "from": "html-minifier@>=3.2.3 <4.0.0", - "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.18.tgz" + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.19.tgz" }, "html-webpack-plugin": { "version": "3.2.0", @@ -1665,9 +1665,9 @@ } }, "internal-carto.js": { - "version": "4.0.18-0", - "from": "cartodb/carto.js#v4.0.18-0", - "resolved": "git://github.com/cartodb/carto.js.git#f1964aaf454b1bd2221fc45946cc495886152e3b" + "version": "4.1.1-0", + "from": "cartodb/carto.js#v4.1.1-0", + "resolved": "git://github.com/cartodb/carto.js.git#85499951eb4ea2199c6c11db4ce4071f2880fe10" }, "interpret": { "version": "1.1.0", @@ -3392,9 +3392,9 @@ "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.1.tgz" }, "use": { - "version": "3.1.0", + "version": "3.1.1", "from": "use@>=3.1.0 <4.0.0", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz" + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz" }, "util": { "version": "0.10.4", diff --git a/package.json b/package.json index 9394893edfc6..8c7912a041b2 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "d3-queue": "^3.0.7", "fastclick": "^1.0.6", "html-webpack-plugin": "^3.2.0", - "internal-carto.js": "CartoDB/carto.js#v4.0.18-0", + "internal-carto.js": "CartoDB/carto.js#v4.1.1-0", "jquery": "2.1.4", "leaflet": "CartoDB/Leaflet#v1.3.1-carto1", "moment": "2.18.1",