diff --git a/@vates/task/index.test.js b/@vates/task/index.test.js index 3f034c535e..a0febcbbb1 100644 --- a/@vates/task/index.test.js +++ b/@vates/task/index.test.js @@ -29,7 +29,7 @@ function createTask(opts) { } describe('Task', function () { - describe('contructor', function () { + describe('constructor', function () { it('data properties are passed to the start event', async function () { const properties = { foo: 0, bar: 1 } const task = createTask({ properties }) @@ -265,7 +265,7 @@ describe('Task', function () { assert.throws(() => task.set(name, value), { message: /^task has not started yet\b/ }) }) - it(`emits an property message`, async function () { + it(`emits a property message`, async function () { const task = createTask() await task.run(async () => { await Task.run(() => { @@ -339,7 +339,7 @@ describe('Task', function () { Task.warning('foo') }) - it('emits an warning message when run inside a task', async function () { + it('emits a warning message when run inside a task', async function () { const task = createTask() await task.run(() => { Task.warning('foo') diff --git a/CHANGELOG.unreleased.md b/CHANGELOG.unreleased.md index 09405a7758..bb3c5cc993 100644 --- a/CHANGELOG.unreleased.md +++ b/CHANGELOG.unreleased.md @@ -12,6 +12,7 @@ > Users must be able to say: “Nice enhancement, I'm eager to test it” - **XO 6:** + - [Pool/system] Display pool information in pool/system tab (PR [#8581](https://github.com/vatesfr/xen-orchestra/pull/8581)) - [Host/Dashboard] Update RAM usage components wordings and update CPU provisioning logic (PR [#8648](https://github.com/vatesfr/xen-orchestra/pull/8648)) - [Site/Dashboard] Update BackupIssues and VtsBackupState components to display data in table (PR [#8674](https://github.com/vatesfr/xen-orchestra/pull/8674) @@ -19,6 +20,7 @@ - [Site] Add "Site" level in treeview and add "Site" header and tabs (PR [#8694](https://github.com/vatesfr/xen-orchestra/pull/8694)) - **Migrated REST API endpoints** + - `/rest/v0/pools//actions/emergency_shutdown` (PR [#8653](https://github.com/vatesfr/xen-orchestra/pull/8653)) - `/rest/v0/pools//actions/rolling_reboot` (PR [#8653](https://github.com/vatesfr/xen-orchestra/pull/8653)) - `/rest/v0/pools//actions/rolling_update` (PR [#8653](https://github.com/vatesfr/xen-orchestra/pull/8653)) @@ -65,6 +67,7 @@ +- @vates/task patch - @vates/types minor - @xen-orchestra/backups patch - @xen-orchestra/backups-cli minor