[8.6] Sync bundled packages with Package Storage (#146492)

Automated by
https://internal-ci.elastic.co/job/package_storage/job/sync-bundled-packages-job/job/main/691/

Co-authored-by: apmmachine <infra-root+apmmachine@elastic.co>
Co-authored-by: Andrew Wilkins <axw@elastic.co>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Mario Rodriguez Molins <mario.rodriguez@elastic.co>
This commit is contained in:
Elastic Machine 2022-11-30 20:02:10 -05:00 committed by GitHub
parent 35cf7309fd
commit cfeb5a7f37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View file

@ -20,7 +20,7 @@
[
{
"name": "apm",
"version": "8.6.0-preview-1663775281",
"version": "8.6.0-preview-1668602604",
"forceAlignStackVersion": true
},
{
@ -29,7 +29,7 @@
},
{
"name": "endpoint",
"version": "8.5.0"
"version": "8.6.0"
},
{
"name": "fleet_server",
@ -37,6 +37,6 @@
},
{
"name": "synthetics",
"version": "0.10.3"
"version": "0.11.3"
}
]
]

View file

@ -364,7 +364,7 @@ export default function ({ getService }: FtrProviderContext) {
expect(packagePolicy.package.version).eql('0.10.3');
await supertestAPI
.post('/api/fleet/epm/packages/synthetics/0.11.2')
.post('/api/fleet/epm/packages/synthetics/0.11.3')
.set('kbn-xsrf', 'true')
.send({ force: true });
@ -376,7 +376,7 @@ export default function ({ getService }: FtrProviderContext) {
(pkgPolicy: PackagePolicy) =>
pkgPolicy.id === monitorId + '-' + testFleetPolicyID + `-default`
);
expect(packagePolicyAfterUpgrade.package.version).eql('0.11.2');
expect(packagePolicyAfterUpgrade.package.version).eql('0.11.3');
} finally {
await supertestAPI
.delete(API_URLS.SYNTHETICS_MONITORS + '/' + monitorId)