diff --git a/CHANGELOG.md b/CHANGELOG.md
index c16b86f570..75708dad02 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,36 @@ title: 8.0.0
tags: Changelog
---
+## [8.0.17] (2024-12-05)
+
+### @axelor/aos-mobile-core
+
+#### Changes
+
+- Session card: add possibility to override session removal action
+
+### @axelor/aos-mobile-ui
+
+#### Changes
+
+- Increment: modify format management on blur/focus
+
+#### Fixes
+
+- AutoCompleteSearch: manage margin bottom when the list is empty
+- Increment: save when click outside the input
+
+### @axelor/aos-mobile-stock
+
+#### Changes
+
+- Indicators: move logic to fetch available stock to card components
+
+
+There was a performance problem on the screens requiring the product indicators. To solve this slow performance problem, product indicators are now retrieved from the card component in the background. The old way of working retrieved the indicators for all the products in the list each time they were updated, before displaying them, which is rather cumbersome and shouldn't be used. The functions concerned have been removed.
+
+
+
## [8.0.16] (2024-11-26)
### @axelor/aos-mobile-core
@@ -605,6 +635,7 @@ Changes has been done to get new core and ui improvements: use of ChipSelect, co
Changes has been done to get new core and ui improvements: use of ChipSelect, color differentiation between success and primary, definition of required configs, use of icons for Bootstrap
+[8.0.17]: https://github.com/axelor/axelor-mobile/compare/8.0.16...8.0.17
[8.0.16]: https://github.com/axelor/axelor-mobile/compare/8.0.15...8.0.16
[8.0.15]: https://github.com/axelor/axelor-mobile/compare/8.0.14...8.0.15
[8.0.14]: https://github.com/axelor/axelor-mobile/compare/8.0.13...8.0.14
diff --git a/android/app/build.gradle b/android/app/build.gradle
index d5d57738c2..94ee3039ae 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -139,8 +139,8 @@ android {
applicationId "com.aosmobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 35
- versionName "8.0.16"
+ versionCode 36
+ versionName "8.0.17"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
if (isNewArchitectureEnabled()) {
diff --git a/changelogs/unreleased/87262.json b/changelogs/unreleased/87262.json
deleted file mode 100644
index 7209147a0b..0000000000
--- a/changelogs/unreleased/87262.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "title": "AutoCompleteSearch: manage margin bottom when the list is empty",
- "type": "fix",
- "packages": "ui"
-}
diff --git a/changelogs/unreleased/87393.json b/changelogs/unreleased/87393.json
deleted file mode 100644
index b4c9314ba5..0000000000
--- a/changelogs/unreleased/87393.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "title": "Increment: modify format management on blur/focus",
- "type": "refactor",
- "packages": "ui"
-}
diff --git a/changelogs/unreleased/87714.json b/changelogs/unreleased/87714.json
deleted file mode 100644
index c73eab50f2..0000000000
--- a/changelogs/unreleased/87714.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "title": "Increment: save when click outside the input",
- "type": "fix",
- "packages": "ui"
-}
diff --git a/changelogs/unreleased/87894.json b/changelogs/unreleased/87894.json
deleted file mode 100644
index 7a5a1f9aec..0000000000
--- a/changelogs/unreleased/87894.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "title": "Indicators: move logic to fetch available stock to card components",
- "type": "refactor",
- "packages": "stock",
- "description": "There was a performance problem on the screens requiring the product indicators. To solve this slow performance problem, product indicators are now retrieved from the card component in the background. The old way of working retrieved the indicators for all the products in the list each time they were updated, before displaying them, which is rather cumbersome and shouldn't be used. The functions concerned have been removed. "
-}
diff --git a/changelogs/unreleased/session_removal.json b/changelogs/unreleased/session_removal.json
deleted file mode 100644
index 7d87f8ee3a..0000000000
--- a/changelogs/unreleased/session_removal.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "title": "Session card: add possibility to override session removal action",
- "type": "refactor",
- "packages": "core"
-}
diff --git a/ios/AosMobile/Info.plist b/ios/AosMobile/Info.plist
index 8ae1be55f5..d5ddb9b582 100644
--- a/ios/AosMobile/Info.plist
+++ b/ios/AosMobile/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 8.0.16
+ 8.0.17
CFBundleSignature
????
CFBundleVersion
diff --git a/package.json b/package.json
index f6564845a0..efdd181778 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "aos-mobile",
- "version": "8.0.16",
+ "version": "8.0.17",
"private": true,
"workspaces": {
"packages": [
@@ -31,14 +31,14 @@
"postinstall": "patch-package"
},
"dependencies": {
- "@axelor/aos-mobile-core": "8.0.16",
- "@axelor/aos-mobile-crm": "8.0.16",
- "@axelor/aos-mobile-helpdesk": "8.0.16",
- "@axelor/aos-mobile-hr": "8.0.16",
- "@axelor/aos-mobile-manufacturing": "8.0.16",
- "@axelor/aos-mobile-quality": "8.0.16",
- "@axelor/aos-mobile-stock": "8.0.16",
- "@axelor/aos-mobile-ui": "8.0.16",
+ "@axelor/aos-mobile-core": "8.0.17",
+ "@axelor/aos-mobile-crm": "8.0.17",
+ "@axelor/aos-mobile-helpdesk": "8.0.17",
+ "@axelor/aos-mobile-hr": "8.0.17",
+ "@axelor/aos-mobile-manufacturing": "8.0.17",
+ "@axelor/aos-mobile-quality": "8.0.17",
+ "@axelor/aos-mobile-stock": "8.0.17",
+ "@axelor/aos-mobile-ui": "8.0.17",
"@react-native-clipboard/clipboard": "^1.11.1",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.26.1",
diff --git a/packages/apps/crm/package.json b/packages/apps/crm/package.json
index 1a982a58ef..f070aab352 100644
--- a/packages/apps/crm/package.json
+++ b/packages/apps/crm/package.json
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-crm",
- "version": "8.0.16",
+ "version": "8.0.17",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
@@ -28,8 +28,8 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
- "@axelor/aos-mobile-core": "8.0.16",
- "@axelor/aos-mobile-ui": "8.0.16",
+ "@axelor/aos-mobile-core": "8.0.17",
+ "@axelor/aos-mobile-ui": "8.0.17",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
diff --git a/packages/apps/helpdesk/package.json b/packages/apps/helpdesk/package.json
index 8f8dda80f7..46f5597abb 100644
--- a/packages/apps/helpdesk/package.json
+++ b/packages/apps/helpdesk/package.json
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-helpdesk",
- "version": "8.0.16",
+ "version": "8.0.17",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
@@ -28,8 +28,8 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
- "@axelor/aos-mobile-core": "8.0.16",
- "@axelor/aos-mobile-ui": "8.0.16",
+ "@axelor/aos-mobile-core": "8.0.17",
+ "@axelor/aos-mobile-ui": "8.0.17",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
diff --git a/packages/apps/hr/package.json b/packages/apps/hr/package.json
index cd4ba901b8..6183f8fdee 100644
--- a/packages/apps/hr/package.json
+++ b/packages/apps/hr/package.json
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-hr",
- "version": "8.0.16",
+ "version": "8.0.17",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
@@ -28,8 +28,8 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
- "@axelor/aos-mobile-core": "8.0.16",
- "@axelor/aos-mobile-ui": "8.0.16",
+ "@axelor/aos-mobile-core": "8.0.17",
+ "@axelor/aos-mobile-ui": "8.0.17",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
diff --git a/packages/apps/manufacturing/package.json b/packages/apps/manufacturing/package.json
index 4be121ad69..094995d24f 100644
--- a/packages/apps/manufacturing/package.json
+++ b/packages/apps/manufacturing/package.json
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-manufacturing",
- "version": "8.0.16",
+ "version": "8.0.17",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
@@ -28,9 +28,9 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
- "@axelor/aos-mobile-core": "8.0.16",
- "@axelor/aos-mobile-stock": "8.0.16",
- "@axelor/aos-mobile-ui": "8.0.16",
+ "@axelor/aos-mobile-core": "8.0.17",
+ "@axelor/aos-mobile-stock": "8.0.17",
+ "@axelor/aos-mobile-ui": "8.0.17",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
diff --git a/packages/apps/quality/package.json b/packages/apps/quality/package.json
index 8249e4751d..9b4e46baa2 100644
--- a/packages/apps/quality/package.json
+++ b/packages/apps/quality/package.json
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-quality",
- "version": "8.0.16",
+ "version": "8.0.17",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
@@ -28,8 +28,8 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
- "@axelor/aos-mobile-core": "8.0.16",
- "@axelor/aos-mobile-ui": "8.0.16",
+ "@axelor/aos-mobile-core": "8.0.17",
+ "@axelor/aos-mobile-ui": "8.0.17",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
diff --git a/packages/apps/stock/package.json b/packages/apps/stock/package.json
index 861e41b018..1238c5438e 100644
--- a/packages/apps/stock/package.json
+++ b/packages/apps/stock/package.json
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-stock",
- "version": "8.0.16",
+ "version": "8.0.17",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
@@ -28,8 +28,8 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
- "@axelor/aos-mobile-ui": "8.0.16",
- "@axelor/aos-mobile-core": "8.0.16",
+ "@axelor/aos-mobile-ui": "8.0.17",
+ "@axelor/aos-mobile-core": "8.0.17",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
diff --git a/packages/core/package.json b/packages/core/package.json
index 6f96232d73..057daab536 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-core",
- "version": "8.0.16",
+ "version": "8.0.17",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
@@ -84,8 +84,8 @@
"vision-camera-code-scanner": "^0.2.0"
},
"dependencies": {
- "@axelor/aos-mobile-error": "8.0.16",
- "@axelor/aos-mobile-ui": "8.0.16",
+ "@axelor/aos-mobile-error": "8.0.17",
+ "@axelor/aos-mobile-ui": "8.0.17",
"@react-navigation/drawer": "6.6.3",
"@react-navigation/native": "6.1.7",
"@react-navigation/native-stack": "6.9.13",
diff --git a/packages/error/package.json b/packages/error/package.json
index 1d502814e1..fdc32cd766 100644
--- a/packages/error/package.json
+++ b/packages/error/package.json
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-error",
- "version": "8.0.16",
+ "version": "8.0.17",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 9a972d4af6..164a7cf62c 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-ui",
- "version": "8.0.16",
+ "version": "8.0.17",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {