diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ae4ec682..87a9aa497 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # 4.0.4 +## Bug Fixes: +- Fixed: avoiding IDs override/conflict while creating concurrent runtime notifications by reading/updating the `nextEntityId` from the `overlay` instead of DB - [#342](https://github.com/Joystream/orion/pull/342) +- Fixed: removed possibility of creating duplicate CRT notifications in `processAmmActivatedEvent` and `processTokenSaleInitializedEvent` mappings if the account being notified is both channel follower as well as token holder - [#343](https://github.com/Joystream/orion/pull/343) + +# 4.0.4 + ## Bug Fixes: - Fixed: improve the accuracy of `Video.orionLanguage` field by reworking the `predictVideoLanguage` function in `src/utils/language.ts` diff --git a/package-lock.json b/package-lock.json index a0650bcdd..9f82045bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "orion", - "version": "4.0.4", + "version": "4.0.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "orion", - "version": "4.0.4", + "version": "4.0.5", "hasInstallScript": true, "workspaces": [ "network-tests" diff --git a/package.json b/package.json index f2ec73eda..ef4247b79 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "orion", - "version": "4.0.4", + "version": "4.0.5", "engines": { "node": ">=16" },