Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": "9.4.0",
"version": "9.5.0",
"branch": "main",
"types": "./kibana.d.ts",
"tsdocMetadata": "./build/tsdoc-metadata.json",
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
} from '@kbn/migrator-test-kit';
import { baselineTypes, getBaselineDocuments } from '@kbn/migrator-test-kit/fixtures';

export const BASELINE_ELASTICSEARCH_VERSION = '9.4.0';
export const BASELINE_ELASTICSEARCH_VERSION = '9.5.0';
export const BASELINE_DOCUMENTS_PER_TYPE_SMALL = 200;
export const BASELINE_DOCUMENTS_PER_TYPE_LARGE = 100_000;
// we discard the second half with exclude on upgrade (firstHalf !== true)
Expand Down
4 changes: 2 additions & 2 deletions src/platform/packages/shared/kbn-es/src/utils/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { resolve, basename, join } from 'path';
import type { ClientOptions } from '@elastic/elasticsearch';
import { Client, HttpConnection } from '@elastic/elasticsearch';
import type { ToolingLog } from '@kbn/tooling-log';
import { kibanaPackageJson as pkg, REPO_ROOT } from '@kbn/repo-info';
import { REPO_ROOT } from '@kbn/repo-info';
import { CA_CERT_PATH, ES_P12_PASSWORD, ES_P12_PATH } from '@kbn/dev-utils';
import {
MOCK_IDP_REALM_NAME,
Expand Down Expand Up @@ -221,7 +221,7 @@ const DEFAULT_DOCKER_ESARGS: Array<[string, string]> = [
];

export const DOCKER_REPO = `${DOCKER_REGISTRY}/elasticsearch/elasticsearch`;
export const DOCKER_TAG = `${pkg.version}-SNAPSHOT`;
export const DOCKER_TAG = `9.4.0-SNAPSHOT`;
export const DOCKER_IMG = `${DOCKER_REPO}:${DOCKER_TAG}`;

export const ES_SERVERLESS_REPO_KIBANA = `${DOCKER_REGISTRY}/kibana-ci/elasticsearch-serverless`;
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": "9.4.0",
"version": "9.5.0",
"author": "Elastic",
"private": true,
"license": "Elastic-License",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

export const DEFAULT_INITIAL_APP_DATA = {
kibanaVersion: '9.4.0',
kibanaVersion: '9.5.0',
features: {
hasConnectors: true,
hasDefaultIngestPipeline: true,
Expand Down
Loading