Skip to content

Commit

Permalink
Release 7.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lme-axelor committed Nov 10, 2023
1 parent 2000fc9 commit f83256b
Show file tree
Hide file tree
Showing 12 changed files with 143 additions and 43 deletions.
104 changes: 102 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,108 @@ title: 7.1.0
tags: Changelog
---

## [7.1.2] (2023-11-10)

This version adds unit test management. The application's global test has been corrected and the components of the ui package are currently being tested.

This version also correct the yarn dev command. It's now fully working and enable developpers to get immediat refresh when working on packages.

### @axelor/aos-mobile-helpdesk

#### Fixes

- Export all content of package

#### Changes

- Create TicketStopwatch component to remove logic from details screen.

### @axelor/aos-mobile-crm

#### Fixes

- Export all content of package
- DropdownContactView : wrong display condition on address
- ProspectDropdownCards : wrong field name used for the category
- Rename company reducer to avoid issue with stock module (company -> crm_company)

### @axelor/aos-mobile-manufacturing

#### Fixes

- Export all content of package

### @axelor/aos-mobile-stock

#### Fixes

- Export all content of package
- StockCorrection : prevent update if there is no reason
- SmallPropertyCard : wrong alert disabled condition

#### Changes

- Remove save status management on internal move to match behaviour of the other screens

### @axelor/aos-mobile-core

#### Features

- Add generic tool to display object's barcode in header actions
- Add SocialNetworkLinks component to do quick research on Google/LinkedIn
- UploadFileInput : add camera option on component and improve design
- Add CameraButton component to take quick picture
- Add generic tool to create Criteria query depending on selected chips
- Add generic tool to format request body to reduce data

#### Fixes

- Error management on requests : consider AOP status -1 as error & show the right toast with error message
- Stopwatch : prevent refresh issue when app is inactive
- Sessions : improve logic with camera display
- LoginButton : modify disabled condition to manage case where sessions are disabled
- Prevent refresh issue with translations on user screen when changing language
- Delay internet connection check from 2s to 5s to avoid having to many requests

#### Changes

- create TranslationsButton component to contain translations sending logic

### @axelor/aos-mobile-ui

#### Features

- ScrollView : add props to enable pull to refresh
- Add RadioButton & RadioSelect components
- Increase writing theme font sizes
- SwitchCard : improve design to match form inputs
- ObjectCard : display title on two lines and add `leftContainerFlex` prop to manage size of text container and `iconLeftMargin` to manage space between icon and badges
- InfoBubble : add coloredBubble props to cirectly color icon instead of circle container
- Switch : add refresh on component when default value change
- ChipSelect : manage refresh on default value with prop `isRefresh`
- Picker : add displayValue props to give custom function to display value of item
- AutoCompleteSearch : add props `title`, `readonly` et `required`
- FormHtmlInput : add prop `hideIfNull` to hide component when it's readonly with no value

#### Fixes

- Image : remove refresh issue
- ObjectCard : reduce size of image replacement icon
- SearchDetailsPopUp : manage too long titles display

#### Changes

- Icon : remove `disabled` props to only keep `touchable` one
- ChipSelect : simplify logic inside component
- Picker : simplify component design & transform `disabled` props to `readonly`
- AutoCompleteSearch : simplify component design
- MultiValuePicker : simplify component design & transform `disabled` props to `readonly`
- Remove MultiSelectValue component, which should be replaced by MultiValuePicker in readonly mode
- FormHtmlInput : simplify component design

## [7.1.1] (2023-08-25)

### New package : @axelor/aos-mobile-helpdesk
### @axelor/aos-mobile-helpdesk

#### Fixes

Expand Down Expand Up @@ -123,5 +222,6 @@ This update breaks the compatability with AOS Stock module under version 7.1 due
- Add number decimal digit config management system
- Manage multilines input with auto height resize on FormInput

[7.1.2]: https://github.com/axelor/axelor-mobile/compare/7.1.1...7.1.2
[7.1.1]: https://github.com/axelor/axelor-mobile/compare/7.1.0...7.1.1
[7.1.0]: https://github.com/axelor/axelor-mobile/compare/7.0.4...7.1.0
[7.1.0]: https://github.com/axelor/axelor-mobile/compare/7.0.5...7.1.0
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ android {
applicationId "com.aosmobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 11
versionName "7.1.1"
versionCode 12
versionName "7.1.2"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()

if (isNewArchitectureEnabled()) {
Expand Down
4 changes: 2 additions & 2 deletions ios/AosMobile/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>7.1.1</string>
<string>7.1.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>5</string>
<string>6</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>tel</string>
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aos-mobile",
"version": "7.1.1",
"version": "7.1.2",
"private": true,
"workspaces": {
"packages": [
Expand All @@ -27,12 +27,12 @@
"build-storybook": "build-storybook"
},
"dependencies": {
"@axelor/aos-mobile-core": "7.1.1",
"@axelor/aos-mobile-crm": "7.1.1",
"@axelor/aos-mobile-helpdesk": "7.1.1",
"@axelor/aos-mobile-manufacturing": "7.1.1",
"@axelor/aos-mobile-stock": "7.1.1",
"@axelor/aos-mobile-ui": "7.1.1",
"@axelor/aos-mobile-core": "7.1.2",
"@axelor/aos-mobile-crm": "7.1.2",
"@axelor/aos-mobile-helpdesk": "7.1.2",
"@axelor/aos-mobile-manufacturing": "7.1.2",
"@axelor/aos-mobile-stock": "7.1.2",
"@axelor/aos-mobile-ui": "7.1.2",
"@react-native-clipboard/clipboard": "^1.11.1",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.26.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/apps/crm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-crm",
"version": "7.1.1",
"version": "7.1.2",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
Expand Down Expand Up @@ -28,8 +28,8 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
"@axelor/aos-mobile-core": "7.1.1",
"@axelor/aos-mobile-ui": "7.1.1",
"@axelor/aos-mobile-core": "7.1.2",
"@axelor/aos-mobile-ui": "7.1.2",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/apps/helpdesk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-helpdesk",
"version": "7.1.1",
"version": "7.1.2",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
Expand Down Expand Up @@ -28,8 +28,8 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
"@axelor/aos-mobile-core": "7.1.1",
"@axelor/aos-mobile-ui": "7.1.1",
"@axelor/aos-mobile-core": "7.1.2",
"@axelor/aos-mobile-ui": "7.1.2",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions packages/apps/manufacturing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-manufacturing",
"version": "7.1.1",
"version": "7.1.2",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
Expand Down Expand Up @@ -28,9 +28,9 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
"@axelor/aos-mobile-core": "7.1.1",
"@axelor/aos-mobile-stock": "7.1.1",
"@axelor/aos-mobile-ui": "7.1.1",
"@axelor/aos-mobile-core": "7.1.2",
"@axelor/aos-mobile-stock": "7.1.2",
"@axelor/aos-mobile-ui": "7.1.2",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/apps/stock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-stock",
"version": "7.1.1",
"version": "7.1.2",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
Expand Down Expand Up @@ -28,8 +28,8 @@
"react-i18next": "^11.18.6"
},
"dependencies": {
"@axelor/aos-mobile-ui": "7.1.1",
"@axelor/aos-mobile-core": "7.1.1",
"@axelor/aos-mobile-ui": "7.1.2",
"@axelor/aos-mobile-core": "7.1.2",
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-core",
"version": "7.1.1",
"version": "7.1.2",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
Expand Down Expand Up @@ -84,8 +84,8 @@
"vision-camera-code-scanner": "^0.2.0"
},
"dependencies": {
"@axelor/aos-mobile-error": "7.1.1",
"@axelor/aos-mobile-ui": "7.1.1",
"@axelor/aos-mobile-error": "7.1.2",
"@axelor/aos-mobile-ui": "7.1.2",
"@react-navigation/drawer": "6.6.3",
"@react-navigation/native": "6.1.7",
"@react-navigation/native-stack": "6.9.13",
Expand Down
2 changes: 1 addition & 1 deletion packages/error/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-error",
"version": "7.1.1",
"version": "7.1.2",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axelor/aos-mobile-ui",
"version": "7.1.1",
"version": "7.1.2",
"author": "Axelor",
"license": "AGPL-3.0-only",
"publishConfig": {
Expand Down
24 changes: 12 additions & 12 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7627,9 +7627,9 @@ ee-first@1.1.1:
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==

electron-to-chromium@^1.4.535:
version "1.4.579"
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.579.tgz#40ddec29bb5549908e82ccd652cf5da2e5900c23"
integrity sha512-bJKvA+awBIzYR0xRced7PrQuRIwGQPpo6ZLP62GAShahU9fWpsNN2IP6BSP1BLDDSbxvBVRGAMWlvVVq3npmLA==
version "1.4.580"
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.580.tgz#2f8f70f70733a6be1fb6f31de1224e6dc4bb196d"
integrity sha512-T5q3pjQon853xxxHUq3ZP68ZpvJHuSMY2+BZaW3QzjS4HvNuvsMmZ/+lU+nCrftre1jFZ+OSlExynXWBihnXzw==

elliptic@^6.5.3, elliptic@^6.5.4:
version "6.5.4"
Expand Down Expand Up @@ -7927,9 +7927,9 @@ es-iterator-helpers@^1.0.12:
safe-array-concat "^1.0.1"

es-module-lexer@^1.2.1:
version "1.3.1"
resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.1.tgz#c1b0dd5ada807a3b3155315911f364dc4e909db1"
integrity sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==
version "1.4.0"
resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.0.tgz#285182e7f8f536ff5f4c57f2309836ef851474d8"
integrity sha512-lcCr3v3OLezdfFyx9r5NRYHOUTQNnFEQ9E87Mx8Kc+iqyJNkO7MJoB4GQRTlIMw9kLLTwGw0OAkm4BQQud/d9g==

es-set-tostringtag@^2.0.1:
version "2.0.2"
Expand Down Expand Up @@ -8746,9 +8746,9 @@ flatted@^3.2.9:
integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==

flow-parser@0.*:
version "0.220.1"
resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.220.1.tgz#8302ef224e2efb549cccb69fcfb8fb8fb2346668"
integrity sha512-RoM3ARqVYvxnwtkM36RjQFzo5Z9p22jUqtuMrN8gzA/8fU6iMLFE3cXkdSFPyfHRXLU8ILH8TCtSFADk1ACPCg==
version "0.221.0"
resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.221.0.tgz#e11d7b7d19fb4ce08c3e54461476af4111a62fd0"
integrity sha512-i+GzdLcKYy5bxhx1N+FIcR1bTqssuVWTJcuytMhwqLAxifz46g4BSNicWXGrtzT0HibJUBIzZOYA3FveJucTPg==

flow-parser@^0.121.0:
version "0.121.0"
Expand Down Expand Up @@ -16236,9 +16236,9 @@ url@^0.11.0:
qs "^6.11.2"

use-latest-callback@^0.1.7:
version "0.1.7"
resolved "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.1.7.tgz#f189fa4e58ee18c7a2d9de53f92210e118d1b14f"
integrity sha512-Hlrl0lskgZZpo2vIpZ4rA7qA/rAGn2PcDvDH1M47AogqMPB0qlGEdsa66AVkIUiEEDpfxA9/N6hY6MqtaNoqWA==
version "0.1.9"
resolved "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.1.9.tgz#10191dc54257e65a8e52322127643a8940271e2a"
integrity sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==

"use-subscription@>=1.0.0 <1.6.0":
version "1.5.1"
Expand Down

0 comments on commit f83256b

Please sign in to comment.