Skip to content

Commit

Permalink
Bump version to 7.16.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Jul 10, 2022
1 parent beac4ab commit 1e537d1
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
34 changes: 17 additions & 17 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ cd ~/dev/kibana-7.x-git/kibana
git fetch --all --tags

# Check out the release in Kibana
git checkout v7.16.1
git checkout v7.16.2

# Switch to updated node-js if necessary
nvm use
Expand Down Expand Up @@ -55,22 +55,22 @@ yarn kbn bootstrap
yarn build

# Next, download, install and run the corresponding Elasticsearch
mkdir ~/dev/elasticsearch-7.16.1-release
cd ~/dev/elasticsearch-7.16.1-release
curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.16.1-darwin-x86_64.tar.gz
gunzip -c elasticsearch-7.16.1-darwin-x86_64.tar.gz | tar xopf -
cd elasticsearch-7.16.1
mkdir ~/dev/elasticsearch-7.16.2-release
cd ~/dev/elasticsearch-7.16.2-release
curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.16.2-darwin-x86_64.tar.gz
gunzip -c elasticsearch-7.16.2-darwin-x86_64.tar.gz | tar xopf -
cd elasticsearch-7.16.2
./bin/elasticsearch

# Next, in another terminal tab, download and install the corresponding Kibana release to test the build
mkdir ~/dev/kibana-7.16.1-release
cd ~/dev/kibana-7.16.1-release/
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.16.1-darwin-x86_64.tar.gz
gunzip -c kibana-7.16.1-darwin-x86_64.tar.gz | tar xopf -
cd kibana-7.16.1-darwin-x86_64
mkdir ~/dev/kibana-7.16.2-release
cd ~/dev/kibana-7.16.2-release/
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.16.2-darwin-x86_64.tar.gz
gunzip -c kibana-7.16.2-darwin-x86_64.tar.gz | tar xopf -
cd kibana-7.16.2-darwin-x86_64

# Install the built plugin
./bin/kibana-plugin install 'file:///<your-path>/kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.16.1.zip'
./bin/kibana-plugin install 'file:///<your-path>/kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.16.2.zip'

# Start Kibana and test the UI if the plugin works.
# Use Kibana's `flights` sample dataset and create a milestones visualization.
Expand All @@ -81,15 +81,15 @@ cd ~/dev/kibana-7.x-git/kibana/plugins/kibana_milestones_vis
git add DEVELOPMENT.md
git add README.md
git add package.json
git commit -m "Bump version to 7.16.1."
git tag v7.16.1
git commit -m "Bump version to 7.16.2."
git tag v7.16.2
git push origin 7.16
git push --tags

# On Github, edit the new release at
# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.16.1
# Use `Kibana v7.16.1 compatibility release.` as the release text.
# Add the build file `kibanaMilestonesVis-7.16.1.zip` to the releases' binaries.
# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.16.2
# Use `Kibana v7.16.2 compatibility release.` as the release text.
# Add the build file `kibanaMilestonesVis-7.16.2.zip` to the releases' binaries.

# 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.
rm -r ~/dev/kibana-7.x-git/kibana/plugins/plugin_tmp
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ The releases of this plugin are synced with Kibana's release cycle. In the "Asse
Run the following from within your Kibana folder:

```
bin/kibana-plugin install https://github.com/walterra/kibana-milestones-vis/releases/download/v7.16.1/kibanaMilestonesVis-7.16.1.zip
bin/kibana-plugin install https://github.com/walterra/kibana-milestones-vis/releases/download/v7.16.2/kibanaMilestonesVis-7.16.2.zip
```

### Installing by first downloading a zipped release

- Head over to https://github.com/walterra/kibana-milestones-vis/releases and download the ZIP of the version you want to use, e.g. https://github.com/walterra/kibana-milestones-vis/releases/download/v7.16.1/kibanaMilestonesVis-7.16.1.zip
- Inside your kibana directory, run `bin/kibana-plugin install file:///<path-to-file>/kibanaMilestonesVis-7.16.1.zip`, then `npm run start`
- Head over to https://github.com/walterra/kibana-milestones-vis/releases and download the ZIP of the version you want to use, e.g. https://github.com/walterra/kibana-milestones-vis/releases/download/v7.16.2/kibanaMilestonesVis-7.16.2.zip
- Inside your kibana directory, run `bin/kibana-plugin install file:///<path-to-file>/kibanaMilestonesVis-7.16.2.zip`, then `npm run start`

## Usage

Expand Down
2 changes: 1 addition & 1 deletion kibana.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "kibanaMilestonesVis",
"version": "7.16.1",
"version": "7.16.2",
"kibanaVersion": "kibana",
"owner": {
"name": "Walter Rafelsberger <walter.rafelsberger@elastic.co",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kibana-milestones-vis",
"version": "7.16.1",
"version": "7.16.2",
"private": false,
"description": "A d3 based timeline visualization kibana plugin.",
"main": "index.js",
Expand Down

0 comments on commit 1e537d1

Please sign in to comment.