Skip to content

Commit

Permalink
chore(NA): bump version to 8.17.0 (#196605)
Browse files Browse the repository at this point in the history
Usually bump from 8.16.0 to 8.17.0
  • Loading branch information
mistic authored Oct 17, 2024
1 parent e0cbcd6 commit a473036
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dashboarding"
],
"private": true,
"version": "8.16.0",
"version": "8.17.0",
"branch": "8.x",
"types": "./kibana.d.ts",
"tsdocMetadata": "./build/tsdoc-metadata.json",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import {
readLog,
clearLog,
currentVersion,
nextMinor,
} from '../kibana_migrator_test_kit';
import {
BASELINE_COMPLEX_DOCUMENTS_500K_AFTER,
Expand Down Expand Up @@ -86,12 +85,14 @@ describe('v2 migration', () => {
expect(migrationResults.map((result) => omit(result, 'elapsedMs'))).toMatchInlineSnapshot(`
Array [
Object {
"destIndex": ".kibana_migrator_${currentVersion}_001",
"status": "patched",
"destIndex": ".kibana_migrator_8.16.0_001",
"sourceIndex": ".kibana_migrator_8.16.0_001",
"status": "migrated",
},
Object {
"destIndex": ".kibana_migrator_tasks_${currentVersion}_001",
"status": "patched",
"destIndex": ".kibana_migrator_tasks_8.16.0_001",
"sourceIndex": ".kibana_migrator_tasks_8.16.0_001",
"status": "migrated",
},
]
`);
Expand Down Expand Up @@ -320,19 +321,19 @@ describe('v2 migration', () => {
// omit elapsedMs as it varies in each execution
expect(migrationResults.map((result) => omit(result, 'elapsedMs')))
.toMatchInlineSnapshot(`
Array [
Object {
"destIndex": ".kibana_migrator_${nextMinor}_001",
"sourceIndex": ".kibana_migrator_${currentVersion}_001",
"status": "migrated",
},
Object {
"destIndex": ".kibana_migrator_tasks_${currentVersion}_001",
"sourceIndex": ".kibana_migrator_tasks_${currentVersion}_001",
"status": "migrated",
},
]
`);
Array [
Object {
"destIndex": ".kibana_migrator_8.18.0_001",
"sourceIndex": ".kibana_migrator_8.16.0_001",
"status": "migrated",
},
Object {
"destIndex": ".kibana_migrator_tasks_8.16.0_001",
"sourceIndex": ".kibana_migrator_tasks_8.16.0_001",
"status": "migrated",
},
]
`);
});

it('each migrator takes less than 60 seconds', () => {
Expand Down
2 changes: 1 addition & 1 deletion x-pack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "x-pack",
"version": "8.16.0",
"version": "8.17.0",
"author": "Elastic",
"private": true,
"license": "Elastic-License",
Expand Down

0 comments on commit a473036

Please sign in to comment.