Skip to content

Commit 8a4409d

Browse files
Merge branch '2-dev' into beta
2 parents ff7ba8a + 79a9703 commit 8a4409d

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [2.9.1-dev.1](https://github.com/kuzzleio/kuzzle-device-manager/compare/v2.9.0...v2.9.1-dev.1) (2025-09-19)
2+
3+
4+
### Bug Fixes
5+
6+
* **assetsController:** await promise in try catch ([cc860dc](https://github.com/kuzzleio/kuzzle-device-manager/commit/cc860dc8819f081b69b5053755129c1b22801914))
7+
18
## [2.9.0](https://github.com/kuzzleio/kuzzle-device-manager/compare/v2.8.0...v2.9.0) (2025-08-25)
29

310

lib/modules/asset/AssetsController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ export class AssetsController {
767767
const model = request.getString("model");
768768

769769
try {
770-
return this.assetService.updateModelLocales(request, model);
770+
return await this.assetService.updateModelLocales(request, model);
771771
} catch (e) {
772772
request.response.configure({
773773
status: (e as KuzzleError).status,

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kuzzle-device-manager",
3-
"version": "2.9.0",
3+
"version": "2.9.1-dev.1",
44
"description": "Manage your IoT devices and assets. Choose a provisioning strategy, receive and decode payload, handle your IoT business logic.",
55
"author": "The Kuzzle Team (support@kuzzle.io)",
66
"repository": {

types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kuzzle-device-manager-types",
3-
"version": "2.9.0",
3+
"version": "2.9.1-dev.1",
44
"description": "Shared types for Kuzzle Device Manager",
55
"author": "The Kuzzle Team (support@kuzzle.io)",
66
"main": "index.js",

0 commit comments

Comments
 (0)