Skip to content

Commit fff2b2a

Browse files
committed
Bump version to 7.13.0. Update react-milestones-vis to 0.4.0-node14.
1 parent dc7081e commit fff2b2a

File tree

4 files changed

+36
-36
lines changed

4 files changed

+36
-36
lines changed

DEVELOPMENT.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cd ~/dev/kibana-7.x-git/kibana
2626
git fetch --all --tags
2727

2828
# Check out the release in Kibana
29-
git checkout v7.12.0
29+
git checkout v7.13.0
3030

3131
# Switch to updated node-js if necessary
3232
nvm use
@@ -38,8 +38,8 @@ yarn kbn bootstrap
3838
node scripts/generate_plugin plugin_tmp
3939

4040
# Once the plugin was created, you need to compare the two following files and if necessary update the dependencies in your `package.json`
41-
# kibana-extra/kibana-milestones-vis/package.json
42-
# kibana-extra/plugin_tmp/package.json
41+
# plugins/kibana_milestones_vis/package.json
42+
# plugins/plugin_tmp/package.json
4343

4444
# After checking/updating `package.json`, run bootstrap inside your plugin's directory
4545
cd plugins/kibana_milestones_vis
@@ -55,22 +55,22 @@ yarn kbn bootstrap
5555
yarn build
5656

5757
# Next, download, install and run the corresponding Elasticsearch
58-
mkdir ~/dev/elasticsearch-7.12.0-release
59-
cd ~/dev/elasticsearch-7.12.0-release
60-
curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.12.0-darwin-x86_64.tar.gz
61-
gunzip -c elasticsearch-7.12.0-darwin-x86_64.tar.gz | tar xopf -
62-
cd elasticsearch-7.12.0
58+
mkdir ~/dev/elasticsearch-7.13.0-release
59+
cd ~/dev/elasticsearch-7.13.0-release
60+
curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.13.0-darwin-x86_64.tar.gz
61+
gunzip -c elasticsearch-7.13.0-darwin-x86_64.tar.gz | tar xopf -
62+
cd elasticsearch-7.13.0
6363
./bin/elasticsearch
6464

6565
# Next, in another terminal tab, download and install the corresponding Kibana release to test the build
66-
mkdir ~/dev/kibana-7.12.0-release
67-
cd ~/dev/kibana-7.12.0-release/
68-
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.12.0-darwin-x86_64.tar.gz
69-
gunzip -c kibana-7.12.0-darwin-x86_64.tar.gz | tar xopf -
70-
cd kibana-7.12.0-darwin-x86_64
66+
mkdir ~/dev/kibana-7.13.0-release
67+
cd ~/dev/kibana-7.13.0-release/
68+
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.13.0-darwin-x86_64.tar.gz
69+
gunzip -c kibana-7.13.0-darwin-x86_64.tar.gz | tar xopf -
70+
cd kibana-7.13.0-darwin-x86_64
7171

7272
# Install the built plugin
73-
./bin/kibana-plugin install 'file:///<your-path>/kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.12.0.zip'
73+
./bin/kibana-plugin install 'file:///<your-path>/kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.13.0.zip'
7474

7575
# Start Kibana and test the UI if the plugin works.
7676
# Use Kibana's `flights` sample dataset and create a milestones visualization.
@@ -81,15 +81,15 @@ cd ~/dev/kibana-7.x-git/kibana/plugins/kibana_milestones_vis
8181
git add DEVELOPMENT.md
8282
git add README.md
8383
git add package.json
84-
git commit -m "Bump version to 7.12.0."
85-
git tag v7.12.0
86-
git push origin 7.11
84+
git commit -m "Bump version to 7.13.0."
85+
git tag v7.13.0
86+
git push origin 7.13
8787
git push --tags
8888

8989
# On Github, edit the new release at
90-
# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.12.0
91-
# Use `Kibana v7.12.0 compatibility release.` as the release text.
92-
# Add the build file `kibanaMilestonesVis-7.12.0.zip` to the releases' binaries.
90+
# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.13.0
91+
# Use `Kibana v7.13.0 compatibility release.` as the release text.
92+
# Add the build file `kibanaMilestonesVis-7.13.0.zip` to the releases' binaries.
9393

9494
# Almost done! Before the next release, a little cleanup: Just delete the temporary plugin you create so you can create another one for comparison for the next release.
9595
rm -r ~/dev/kibana-7.x-git/kibana/plugins/plugin_tmp

kibana.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"id": "kibanaMilestonesVis",
3-
"version": "7.12.0",
3+
"version": "7.13.0",
44
"kibanaVersion": "kibana",
55
"server": true,
66
"ui": true,
7-
"requiredPlugins": ["data", "expressions", "visualizations"],
7+
"requiredPlugins": ["data", "expressions", "kibanaUtils", "visualizations", "visDefaultEditor"],
88
"optionalPlugins": ["home","usageCollection"],
99
"requiredBundles": []
1010
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kibana-milestones-vis",
3-
"version": "7.12.0",
3+
"version": "7.13.0",
44
"private": false,
55
"description": "A d3 based timeline visualization kibana plugin.",
66
"main": "index.js",
@@ -26,7 +26,7 @@
2626
"d3": "3.5.17",
2727
"react": "^16.12.0",
2828
"react-dom": "^16.12.0",
29-
"react-milestones-vis": "^0.3.4-node14"
29+
"react-milestones-vis": "^0.4.0-node14"
3030
},
3131
"resolutions": {
3232
"lodash": "^4.17.21"

yarn.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -887,9 +887,9 @@ camelcase@^6.0.0:
887887
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
888888

889889
caniuse-lite@^1.0.30001286:
890-
version "1.0.30001296"
891-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001296.tgz#d99f0f3bee66544800b93d261c4be55a35f1cec8"
892-
integrity sha512-WfrtPEoNSoeATDlf4y3QvkwiELl9GyPLISV5GejTbbQRtQx4LhsXmc9IQ6XCL2d7UxCyEzToEZNMeqR79OUw8Q==
890+
version "1.0.30001363"
891+
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz"
892+
integrity sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==
893893

894894
capture-exit@^2.0.0:
895895
version "2.0.0"
@@ -1084,10 +1084,10 @@ d3-interpolate@1:
10841084
dependencies:
10851085
d3-color "1"
10861086

1087-
d3-milestones@^1.2.2:
1088-
version "1.2.2"
1089-
resolved "https://registry.yarnpkg.com/d3-milestones/-/d3-milestones-1.2.2.tgz#03dd1eb609117090b256f23ad5083f3e009fa5a0"
1090-
integrity sha512-YIoaYjtVKITwYraWxVlvhMiVWuw8L49AxfliW4N/Vqc9sZdg+quZj6n0GfKR52hejxBF21eNF1qOa2KWc8Fmlw==
1087+
d3-milestones@^1.4.0:
1088+
version "1.4.0"
1089+
resolved "https://registry.yarnpkg.com/d3-milestones/-/d3-milestones-1.4.0.tgz#ee283d57ecceb096a4090908f375cb85c8665cae"
1090+
integrity sha512-JGgHSAr4eqkjzpfHBE4HyvUBP7W6TDGzvDNPrWRCn48Ztng7zX9zxX1G5QR6FD+zujUA10yHp/KXsnov0H2NYA==
10911091
dependencies:
10921092
d3-array "^1.2.0"
10931093
d3-collection "^1.0.4"
@@ -2805,12 +2805,12 @@ react-is@^17.0.1:
28052805
resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"
28062806
integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
28072807

2808-
react-milestones-vis@^0.3.4-node14:
2809-
version "0.3.4-node14"
2810-
resolved "https://registry.yarnpkg.com/react-milestones-vis/-/react-milestones-vis-0.3.4-node14.tgz#8c734995ee76afebd565755999354b390fd27daf"
2811-
integrity sha512-cZK6yjljyGA3+uNKjmbXWQUZx2V4SBFihQi5Gc6mMLSlTEqs5YnLJJRztWcjTSqCZ+qVoEM1slw+KwAF5nXA8Q==
2808+
react-milestones-vis@^0.4.0-node14:
2809+
version "0.4.0-node14"
2810+
resolved "https://registry.yarnpkg.com/react-milestones-vis/-/react-milestones-vis-0.4.0-node14.tgz#500bbecc144fe97a9144dd96c4f9e4150e93af23"
2811+
integrity sha512-BC9cvj+cLYD6hvrRS+87ijXMtR8rl46WRlwtpk2zdbKue0ci/LFSfx5yccmC2yyGFiXB54fH3csAxD1KcBmeaQ==
28122812
dependencies:
2813-
d3-milestones "^1.2.2"
2813+
d3-milestones "^1.4.0"
28142814

28152815
react@^16.12.0:
28162816
version "16.14.0"

0 commit comments

Comments
 (0)