Skip to content

Commit 38283f0

Browse files
chore(release): 3.8.0-rc.2
1 parent 24b8e5c commit 38283f0

File tree

6 files changed

+22
-8
lines changed

6 files changed

+22
-8
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
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.
44

5+
## [3.8.0-rc.2](https://github.com/pagopa/io-app/compare/3.8.0-rc.1...3.8.0-rc.2) (2025-06-18)
6+
7+
8+
### Features
9+
10+
* **IT Wallet:** [[SIW-2395](https://pagopa.atlassian.net/browse/SIW-2395)] Store Wallet Attestation in multiple formats ([#7077](https://github.com/pagopa/io-app/issues/7077)) ([24b8e5c](https://github.com/pagopa/io-app/commit/24b8e5cc8d6cbf8f1c3590639e4f3364c86b9294))
11+
* [[IOBP-1744](https://pagopa.atlassian.net/browse/IOBP-1744)] Add the possibility to disable FIMS iOS cookie sharing ([#7074](https://github.com/pagopa/io-app/issues/7074)) ([283f66a](https://github.com/pagopa/io-app/commit/283f66abc1bd0f4c85108df6a21aa6be782f7ce9)), closes [/github.com/pagopa/io-services-metadata/blob/b4b3724d10b3645b2d7f5790c49cc0d7bb831ef2/status/backend.json#L55](https://github.com/pagopa//github.com/pagopa/io-services-metadata/blob/b4b3724d10b3645b2d7f5790c49cc0d7bb831ef2/status/backend.json/issues/L55) [/github.com/pagopa/io-dev-api-server/blob/3236722f6a72f034d5b4067417e368a4a7a0c0d0/src/payloads/backend.ts#L77](https://github.com/pagopa//github.com/pagopa/io-dev-api-server/blob/3236722f6a72f034d5b4067417e368a4a7a0c0d0/src/payloads/backend.ts/issues/L77)
12+
* [[IOCOM-2152](https://pagopa.atlassian.net/browse/IOCOM-2152)] empty message search results should be announced ([#7081](https://github.com/pagopa/io-app/issues/7081)) ([e009468](https://github.com/pagopa/io-app/commit/e009468cf148a18c863df0f9e22c98c4a4d0db7b))
13+
14+
15+
### Bug Fixes
16+
17+
* **iOS:** [[SIW-2558](https://pagopa.atlassian.net/browse/SIW-2558)] Restore `Images.xcassets` reference in `project.pbxproj` ([#7091](https://github.com/pagopa/io-app/issues/7091)) ([4e95479](https://github.com/pagopa/io-app/commit/4e9547950f2b432ff0fd466ce37eb2b3f6d9b932))
18+
519
## [3.8.0-rc.1](https://github.com/pagopa/io-app/compare/3.8.0-rc.0...3.8.0-rc.1) (2025-06-17)
620

721

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ android {
119119
applicationId "it.pagopa.io.app"
120120
minSdkVersion rootProject.ext.minSdkVersion
121121
targetSdkVersion rootProject.ext.targetSdkVersion
122-
versionCode 100154998
123-
versionName "3.8.0.1"
122+
versionCode 100154999
123+
versionName "3.8.0.2"
124124
multiDexEnabled true
125125
// The resConfigs attribute will remove all not required localized resources while building the application,
126126
// including the localized resources from libraries.

ios/ItaliaApp.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@
571571
CODE_SIGN_ENTITLEMENTS = ItaliaApp/ItaliaApp.entitlements;
572572
CODE_SIGN_IDENTITY = "iPhone Developer";
573573
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
574-
CURRENT_PROJECT_VERSION = 1;
574+
CURRENT_PROJECT_VERSION = 2;
575575
DEAD_CODE_STRIPPING = YES;
576576
DEVELOPMENT_TEAM = M2X5YQ4BJ7;
577577
ENABLE_BITCODE = NO;
@@ -609,7 +609,7 @@
609609
CODE_SIGN_ENTITLEMENTS = ItaliaApp/ItaliaApp.entitlements;
610610
CODE_SIGN_IDENTITY = "iPhone Distribution";
611611
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
612-
CURRENT_PROJECT_VERSION = 1;
612+
CURRENT_PROJECT_VERSION = 2;
613613
DEAD_CODE_STRIPPING = YES;
614614
DEVELOPMENT_TEAM = M2X5YQ4BJ7;
615615
ENABLE_BITCODE = NO;
@@ -852,7 +852,7 @@
852852
CODE_SIGN_IDENTITY = "Apple Development";
853853
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
854854
CODE_SIGN_STYLE = Manual;
855-
CURRENT_PROJECT_VERSION = 1;
855+
CURRENT_PROJECT_VERSION = 2;
856856
DEAD_CODE_STRIPPING = YES;
857857
DEVELOPMENT_TEAM = "";
858858
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = M2X5YQ4BJ7;

ios/ItaliaApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</dict>
3737
</array>
3838
<key>CFBundleVersion</key>
39-
<string>1</string>
39+
<string>2</string>
4040
<key>ITSAppUsesNonExemptEncryption</key>
4141
<false/>
4242
<key>LSApplicationQueriesSchemes</key>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "italia-app",
3-
"version": "3.8.0-rc.1",
3+
"version": "3.8.0-rc.2",
44
"private": true,
55
"scripts": {
66
"start": "react-native start",

publiccode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ releaseDate: "2024-11-21"
99
url: "https://github.com/pagopa/io-app"
1010
applicationSuite: IO
1111
landingURL: "https://ioapp.it/"
12-
softwareVersion: 3.8.0-rc.1
12+
softwareVersion: 3.8.0-rc.2
1313
developmentStatus: beta
1414
softwareType: standalone/mobile
1515
roadmap: "https://ioapp.it/"

0 commit comments

Comments
 (0)