From 59dfd157d79d805c498b30db51cb68a919ec245d Mon Sep 17 00:00:00 2001 From: Federico Mastrini Date: Wed, 19 Jun 2024 17:03:56 +0200 Subject: [PATCH] chore(release): 2.63.0-rc.0 --- CHANGELOG.md | 26 +++ android/app/build.gradle | 4 +- ios/ItaliaApp.xcodeproj/project.pbxproj | 4 +- ios/ItaliaApp/Info.plist | 294 ++++++++++++------------ ios/ItaliaAppTests/Info.plist | 4 +- package.json | 2 +- publiccode.yml | 4 +- 7 files changed, 182 insertions(+), 156 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4db9e5f2746..d3911893d6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,32 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.63.0-rc.0](https://github.com/pagopa/io-app/compare/2.62.0-rc.2...2.63.0-rc.0) (2024-06-19) + + +### Features + +* [[IOBP-689](https://pagopa.atlassian.net/browse/IOBP-689),[IOBP-699](https://pagopa.atlassian.net/browse/IOBP-699)] Add new payment method management type handling ([#5860](https://github.com/pagopa/io-app/issues/5860)) ([3e3a79e](https://github.com/pagopa/io-app/commit/3e3a79ee0695ffb7344a8fc2a4b219f157e18586)) +* [[IOCOM-832](https://pagopa.atlassian.net/browse/IOCOM-832)] Next message page loading ([#5854](https://github.com/pagopa/io-app/issues/5854)) ([77da2f2](https://github.com/pagopa/io-app/commit/77da2f2985e8bd536caf6811e2e4b65e5edbc79d)) +* **IT Wallet:** [[SIW-1036](https://pagopa.atlassian.net/browse/SIW-1036)] Add eID detail screen ([#5801](https://github.com/pagopa/io-app/issues/5801)) ([f6e0e19](https://github.com/pagopa/io-app/commit/f6e0e19415494591a97255d7f810d9d142e3024c)) +* [[IOBP-652](https://pagopa.atlassian.net/browse/IOBP-652)] Add biz events download PDF receipt ([#5797](https://github.com/pagopa/io-app/issues/5797)) ([257c7d5](https://github.com/pagopa/io-app/commit/257c7d5e83d183f165ff22441307dad66dc3db37)) +* [[IOPID-1899](https://pagopa.atlassian.net/browse/IOPID-1899)] Upgrade DS lib to `1.39.0` ([#5858](https://github.com/pagopa/io-app/issues/5858)) ([e5de0d3](https://github.com/pagopa/io-app/commit/e5de0d310c767d096adee4e6bf5c64f1085b44b5)) + + +### Bug Fixes + +* [[IOPAE-1253](https://pagopa.atlassian.net/browse/IOPAE-1253)] Set `keepCancelVisible` prop to true on SearchInput ([#5863](https://github.com/pagopa/io-app/issues/5863)) ([9e382c2](https://github.com/pagopa/io-app/commit/9e382c2cc5e847b5c5979391b3bf8ef3b64c8031)) + + +### Chores + +* [[IOBP-695](https://pagopa.atlassian.net/browse/IOBP-695)] Add banner of service to payments home screen ([#5855](https://github.com/pagopa/io-app/issues/5855)) ([71b76b4](https://github.com/pagopa/io-app/commit/71b76b42fce69ce1f693421c2a5873ce88f73e60)) +* **Cross:** [[IOAPPX-292](https://pagopa.atlassian.net/browse/IOAPPX-292)] Update iOS deployment version to `14.0` ([#5751](https://github.com/pagopa/io-app/issues/5751)) ([73e689f](https://github.com/pagopa/io-app/commit/73e689f8d49667d5427992b560a1344a1e22b104)) +* [[IOCOM-1541](https://pagopa.atlassian.net/browse/IOCOM-1541)] Show push notification token in the profile section (dev mode on) ([#5874](https://github.com/pagopa/io-app/issues/5874)) ([50203de](https://github.com/pagopa/io-app/commit/50203de0a873dfba4e68eea73b820827177f4f50)) +* **Cross:** [[IOAPPX-320](https://pagopa.atlassian.net/browse/IOAPPX-320)] Completely replace `TitilliumWeb` with `TitilliumSansPro` ([#5859](https://github.com/pagopa/io-app/issues/5859)) ([c97c2ef](https://github.com/pagopa/io-app/commit/c97c2effe41e115180ada39d683727eb4ef98e42)) +* [[IOPID-1787](https://pagopa.atlassian.net/browse/IOPID-1787)] Add `TRACKING` Profile Property ([#5857](https://github.com/pagopa/io-app/issues/5857)) ([c0fe107](https://github.com/pagopa/io-app/commit/c0fe10726c91cc7a8e641352dd0cabbe2c9398c9)) +* [[IOPID-1844](https://pagopa.atlassian.net/browse/IOPID-1844)] Edit preferences screen ([#5862](https://github.com/pagopa/io-app/issues/5862)) ([181a295](https://github.com/pagopa/io-app/commit/181a295571289995ba51116e7df74a8d58b034e1)) + ## [2.62.0-rc.2](https://github.com/pagopa/io-app/compare/2.62.0-rc.1...2.62.0-rc.2) (2024-06-12) diff --git a/android/app/build.gradle b/android/app/build.gradle index 791cd648487..823e6c62d19 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -145,8 +145,8 @@ android { applicationId "it.pagopa.io.app" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 100154822 - versionName "2.62.0.2" + versionCode 100154823 + versionName "2.63.0.0" buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() if (isNewArchitectureEnabled()) { // We configure the CMake build only if you decide to opt-in for the New Architecture. diff --git a/ios/ItaliaApp.xcodeproj/project.pbxproj b/ios/ItaliaApp.xcodeproj/project.pbxproj index b41279ae9ec..8964b8ba833 100644 --- a/ios/ItaliaApp.xcodeproj/project.pbxproj +++ b/ios/ItaliaApp.xcodeproj/project.pbxproj @@ -744,7 +744,7 @@ CODE_SIGN_ENTITLEMENTS = ItaliaApp/ItaliaApp.entitlements; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = M2X5YQ4BJ7; ENABLE_BITCODE = NO; @@ -785,7 +785,7 @@ CODE_SIGN_ENTITLEMENTS = ItaliaApp/ItaliaApp.entitlements; CODE_SIGN_IDENTITY = "iPhone Distribution"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = M2X5YQ4BJ7; ENABLE_BITCODE = NO; diff --git a/ios/ItaliaApp/Info.plist b/ios/ItaliaApp/Info.plist index 00f51fccb52..c7c9554aa28 100644 --- a/ios/ItaliaApp/Info.plist +++ b/ios/ItaliaApp/Info.plist @@ -1,150 +1,150 @@ - - CFBundleDevelopmentRegion - en - CFBundleDisplayName - IO - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 2.62.0 - CFBundleSignature - ???? - CFBundleURLTypes - - - CFBundleTypeRole - Editor - CFBundleURLName - ioit - CFBundleURLSchemes - - ioit - - - - CFBundleVersion - 2 - ITSAppUsesNonExemptEncryption - - LSApplicationQueriesSchemes - - http - https - - LSRequiresIPhoneOS - - LSSupportsOpeningDocumentsInPlace - - NFCReaderUsageDescription - NFC tag to read NDEF messages into the application - NSAppTransportSecurity - - NSExceptionDomains - - localhost - - NSExceptionAllowsInsecureHTTPLoads - - - - - NSAppleMusicUsageDescription - The app needs NSAppleMusicUsageDescription permission - NSBluetoothAlwaysUsageDescription - The app needs NSBluetoothAlwaysUsageDescription permission - NSBluetoothPeripheralUsageDescription - The app needs NSBluetoothPeripheralUsageDescription permission - NSCalendarsUsageDescription - So that you’ll be able to add deadlines to your calendar and set a reminder. - NSCameraUsageDescription - You’ll be able to read QR codes and pay pagoPA notices. - NSContactsUsageDescription - IO needs access to your contacts to let you add them in calendar events - NSFaceIDUsageDescription - Enable Face ID for a faster identification. - NSLocationAlwaysUsageDescription - The app needs NSLocationAlwaysUsageDescription permission - NSLocationUsageDescription - The app needs NSLocationUsageDescription permission - NSLocationWhenInUseUsageDescription - The app needs NSLocationWhenInUseUsageDescription permission - NSMicrophoneUsageDescription - IO needs access to the microphone in case you want to leave a voice note - NSMotionUsageDescription - The app needs NSMotionUsageDescription permission - NSPhotoLibraryAddUsageDescription - You will be able to save pictures from the app to your device. - NSPhotoLibraryUsageDescription - You’ll be able to save bonuses, certificates and upload screenshots or payment notices. - NSSpeechRecognitionUsageDescription - The app needs NSSpeechRecognitionUsageDescription permission - UIAppFonts - - RobotoMono-Bold.ttf - RobotoMono-BoldItalic.ttf - RobotoMono-Light.ttf - RobotoMono-LightItalic.ttf - RobotoMono-Regular.ttf - RobotoMono-RegularItalic.ttf - ReadexPro-Regular.ttf - DMMono-Medium.ttf - TitilliumSansPro-Black.otf - TitilliumSansPro-Bold.otf - TitilliumSansPro-Light.otf - TitilliumSansPro-Regular.otf - TitilliumSansPro-Semibold.otf - TitilliumSansPro-Thin.otf - TitilliumSansPro-BlackItalic.otf - TitilliumSansPro-BoldItalic.otf - TitilliumSansPro-Italic.otf - TitilliumSansPro-LightItalic.otf - TitilliumSansPro-SemiboldItalic.otf - TitilliumSansPro-ThinItalic.otf - - UIBackgroundModes - - remote-notification - - UIFileSharingEnabled - - UILaunchStoryboardName - LaunchScreen - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - - UIViewControllerBasedStatusBarAppearance - - CADisableMinimumFrameDurationOnPhone - - com.apple.developer.nfc.readersession.iso7816.select-identifiers - - com.apple.developer.nfc.readersession.iso7816.select-identifiers - A0000000308000000009816001 - A00000000039 - A0000002471001 - 00000000000000 - - method - app-store - UIStatusBarStyle - UIStatusBarStyleLightContent - UIUserInterfaceStyle - Light - - + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + IO + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 2.63.0 + CFBundleSignature + ???? + CFBundleURLTypes + + + CFBundleTypeRole + Editor + CFBundleURLName + ioit + CFBundleURLSchemes + + ioit + + + + CFBundleVersion + 0 + ITSAppUsesNonExemptEncryption + + LSApplicationQueriesSchemes + + http + https + + LSRequiresIPhoneOS + + LSSupportsOpeningDocumentsInPlace + + NFCReaderUsageDescription + NFC tag to read NDEF messages into the application + NSAppTransportSecurity + + NSExceptionDomains + + localhost + + NSExceptionAllowsInsecureHTTPLoads + + + + + NSAppleMusicUsageDescription + The app needs NSAppleMusicUsageDescription permission + NSBluetoothAlwaysUsageDescription + The app needs NSBluetoothAlwaysUsageDescription permission + NSBluetoothPeripheralUsageDescription + The app needs NSBluetoothPeripheralUsageDescription permission + NSCalendarsUsageDescription + So that you’ll be able to add deadlines to your calendar and set a reminder. + NSCameraUsageDescription + You’ll be able to read QR codes and pay pagoPA notices. + NSContactsUsageDescription + IO needs access to your contacts to let you add them in calendar events + NSFaceIDUsageDescription + Enable Face ID for a faster identification. + NSLocationAlwaysUsageDescription + The app needs NSLocationAlwaysUsageDescription permission + NSLocationUsageDescription + The app needs NSLocationUsageDescription permission + NSLocationWhenInUseUsageDescription + The app needs NSLocationWhenInUseUsageDescription permission + NSMicrophoneUsageDescription + IO needs access to the microphone in case you want to leave a voice note + NSMotionUsageDescription + The app needs NSMotionUsageDescription permission + NSPhotoLibraryAddUsageDescription + You will be able to save pictures from the app to your device. + NSPhotoLibraryUsageDescription + You’ll be able to save bonuses, certificates and upload screenshots or payment notices. + NSSpeechRecognitionUsageDescription + The app needs NSSpeechRecognitionUsageDescription permission + UIAppFonts + + RobotoMono-Bold.ttf + RobotoMono-BoldItalic.ttf + RobotoMono-Light.ttf + RobotoMono-LightItalic.ttf + RobotoMono-Regular.ttf + RobotoMono-RegularItalic.ttf + ReadexPro-Regular.ttf + DMMono-Medium.ttf + TitilliumSansPro-Black.otf + TitilliumSansPro-Bold.otf + TitilliumSansPro-Light.otf + TitilliumSansPro-Regular.otf + TitilliumSansPro-Semibold.otf + TitilliumSansPro-Thin.otf + TitilliumSansPro-BlackItalic.otf + TitilliumSansPro-BoldItalic.otf + TitilliumSansPro-Italic.otf + TitilliumSansPro-LightItalic.otf + TitilliumSansPro-SemiboldItalic.otf + TitilliumSansPro-ThinItalic.otf + + UIBackgroundModes + + remote-notification + + UIFileSharingEnabled + + UILaunchStoryboardName + LaunchScreen + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + + UIViewControllerBasedStatusBarAppearance + + CADisableMinimumFrameDurationOnPhone + + com.apple.developer.nfc.readersession.iso7816.select-identifiers + + com.apple.developer.nfc.readersession.iso7816.select-identifiers + A0000000308000000009816001 + A00000000039 + A0000002471001 + 00000000000000 + + method + app-store + UIStatusBarStyle + UIStatusBarStyleLightContent + UIUserInterfaceStyle + Light + + \ No newline at end of file diff --git a/ios/ItaliaAppTests/Info.plist b/ios/ItaliaAppTests/Info.plist index 89120fab781..ad5c69c105d 100644 --- a/ios/ItaliaAppTests/Info.plist +++ b/ios/ItaliaAppTests/Info.plist @@ -15,10 +15,10 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 2.62.0 + 2.63.0 CFBundleSignature ???? CFBundleVersion - 2 + 0 \ No newline at end of file diff --git a/package.json b/package.json index a8570525179..9b4b0c793a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "italia-app", - "version": "2.62.0-rc.2", + "version": "2.63.0-rc.0", "io_backend_api": "https://raw.githubusercontent.com/pagopa/io-backend/v13.39.1-RELEASE/api_backend.yaml", "io_public_api": "https://raw.githubusercontent.com/pagopa/io-backend/v13.39.1-RELEASE/api_public.yaml", "io_content_specs": "https://raw.githubusercontent.com/pagopa/io-services-metadata/1.0.33/definitions.yml", diff --git a/publiccode.yml b/publiccode.yml index f79bbd8e861..7cd90abfb71 100644 --- a/publiccode.yml +++ b/publiccode.yml @@ -5,11 +5,11 @@ publiccodeYmlVersion: '0.2' name: IO logo: "img/app-logo.svg" -releaseDate: '2024-06-12' +releaseDate: '2024-06-19' url: 'https://github.com/pagopa/io-app' applicationSuite: IO landingURL: 'https://io.italia.it/' -softwareVersion: 2.62.0-rc.2 +softwareVersion: 2.63.0-rc.0 developmentStatus: beta softwareType: standalone/mobile roadmap: 'https://io.italia.it/'