next version 6.7.0 (#21617)

* next version 6.7.0

* updates grafana/toolkit and co

* Verison: manually fixed version
pull/21646/head
Leonard Gram 6 years ago committed by GitHub
parent e8be2bbbec
commit 4a1f993fd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lerna.json
  2. 2
      package.json
  3. 2
      packages/grafana-data/package.json
  4. 2
      packages/grafana-e2e/package.json
  5. 6
      packages/grafana-runtime/package.json
  6. 12
      packages/grafana-toolkit/package.json
  7. 4
      packages/grafana-ui/package.json

@ -2,5 +2,5 @@
"npmClient": "yarn", "npmClient": "yarn",
"useWorkspaces": true, "useWorkspaces": true,
"packages": ["packages/*"], "packages": ["packages/*"],
"version": "6.6.0-pre" "version": "6.7.0-pre"
} }

@ -3,7 +3,7 @@
"license": "Apache-2.0", "license": "Apache-2.0",
"private": true, "private": true,
"name": "grafana", "name": "grafana",
"version": "6.6.0-pre", "version": "6.7.0-pre",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "http://github.com/grafana/grafana.git" "url": "http://github.com/grafana/grafana.git"

@ -2,7 +2,7 @@
"author": "Grafana Labs", "author": "Grafana Labs",
"license": "Apache-2.0", "license": "Apache-2.0",
"name": "@grafana/data", "name": "@grafana/data",
"version": "6.6.0-pre", "version": "6.7.0-pre",
"description": "Grafana Data Library", "description": "Grafana Data Library",
"keywords": [ "keywords": [
"typescript" "typescript"

@ -2,7 +2,7 @@
"author": "Grafana Labs", "author": "Grafana Labs",
"license": "Apache-2.0", "license": "Apache-2.0",
"name": "@grafana/e2e", "name": "@grafana/e2e",
"version": "6.4.0-pre", "version": "6.7.0-pre",
"description": "Grafana End to End Test Library", "description": "Grafana End to End Test Library",
"keywords": [ "keywords": [
"grafana", "grafana",

@ -2,7 +2,7 @@
"author": "Grafana Labs", "author": "Grafana Labs",
"license": "Apache-2.0", "license": "Apache-2.0",
"name": "@grafana/runtime", "name": "@grafana/runtime",
"version": "6.6.0-pre", "version": "6.7.0-pre",
"description": "Grafana Runtime Library", "description": "Grafana Runtime Library",
"keywords": [ "keywords": [
"grafana", "grafana",
@ -21,8 +21,8 @@
"build": "grafana-toolkit package:build --scope=runtime" "build": "grafana-toolkit package:build --scope=runtime"
}, },
"dependencies": { "dependencies": {
"@grafana/data": "^6.6.0-pre", "@grafana/data": "6.7.0-pre",
"@grafana/ui": "^6.6.0-pre", "@grafana/ui": "6.7.0-pre",
"systemjs": "0.20.19", "systemjs": "0.20.19",
"systemjs-plugin-css": "0.1.37" "systemjs-plugin-css": "0.1.37"
}, },

@ -2,7 +2,7 @@
"author": "Grafana Labs", "author": "Grafana Labs",
"license": "Apache-2.0", "license": "Apache-2.0",
"name": "@grafana/toolkit", "name": "@grafana/toolkit",
"version": "6.6.0-pre", "version": "6.7.0-pre",
"description": "Grafana Toolkit", "description": "Grafana Toolkit",
"keywords": [ "keywords": [
"grafana", "grafana",
@ -28,8 +28,8 @@
"dependencies": { "dependencies": {
"@babel/core": "7.6.4", "@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3", "@babel/preset-env": "7.6.3",
"@grafana/data": "^6.6.0-pre", "@grafana/data": "6.7.0-pre",
"@grafana/ui": "^6.6.0-pre", "@grafana/ui": "6.7.0-pre",
"@types/command-exists": "^1.2.0", "@types/command-exists": "^1.2.0",
"@types/execa": "^0.9.0", "@types/execa": "^0.9.0",
"@types/expect-puppeteer": "3.3.1", "@types/expect-puppeteer": "3.3.1",
@ -65,6 +65,8 @@
"jest-cli": "^24.8.0", "jest-cli": "^24.8.0",
"jest-coverage-badges": "^1.1.2", "jest-coverage-badges": "^1.1.2",
"jest-junit": "^6.4.0", "jest-junit": "^6.4.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lodash": "4.17.15", "lodash": "4.17.15",
"md5-file": "^4.0.0", "md5-file": "^4.0.0",
"mini-css-extract-plugin": "^0.7.0", "mini-css-extract-plugin": "^0.7.0",
@ -95,9 +97,7 @@
"tslint-config-prettier": "^1.18.0", "tslint-config-prettier": "^1.18.0",
"typescript": "3.7.2", "typescript": "3.7.2",
"url-loader": "^2.0.1", "url-loader": "^2.0.1",
"webpack": "4.35.0", "webpack": "4.35.0"
"less": "^3.10.3",
"less-loader": "^5.0.0"
}, },
"_moduleAliases": { "_moduleAliases": {
"puppeteer": "node_modules/puppeteer-core" "puppeteer": "node_modules/puppeteer-core"

@ -2,7 +2,7 @@
"author": "Grafana Labs", "author": "Grafana Labs",
"license": "Apache-2.0", "license": "Apache-2.0",
"name": "@grafana/ui", "name": "@grafana/ui",
"version": "6.6.0-pre", "version": "6.7.0-pre",
"description": "Grafana Components Library", "description": "Grafana Components Library",
"keywords": [ "keywords": [
"grafana", "grafana",
@ -25,7 +25,7 @@
"build": "grafana-toolkit package:build --scope=ui" "build": "grafana-toolkit package:build --scope=ui"
}, },
"dependencies": { "dependencies": {
"@grafana/data": "^6.6.0-pre", "@grafana/data": "6.7.0-pre",
"@grafana/slate-react": "0.22.9-grafana", "@grafana/slate-react": "0.22.9-grafana",
"@torkelo/react-select": "2.1.1", "@torkelo/react-select": "2.1.1",
"@types/react-color": "2.17.0", "@types/react-color": "2.17.0",

Loading…
Cancel
Save