Skip to content

Commit

Permalink
release(IT Wallet): 0.7.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LazyAfternoons committed Mar 25, 2024
1 parent 98a5f29 commit 4e85a69
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 9 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

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.

## [0.7.0-rc.1](https://github.com/pagopa/io-app/compare/0.6.2-rc.0...0.7.0-rc.1) (2024-03-25)


### Bug Fixes

* **IT Wallet:** [[SIW-779](https://pagopa.atlassian.net/browse/SIW-779),[SIW-781](https://pagopa.atlassian.net/browse/SIW-781)] Add proximity saga ([#5360](https://github.com/pagopa/io-app/issues/5360)) ([20080b1](https://github.com/pagopa/io-app/commit/20080b134fa95a00be082dddbea2755dd07d7489))
* **IT Wallet:** [[SIW-786](https://pagopa.atlassian.net/browse/SIW-786)] Fix CGN test ([#5374](https://github.com/pagopa/io-app/issues/5374)) ([584aacd](https://github.com/pagopa/io-app/commit/584aacdd3f9ae7ee023e45776d419cbd2ed8b631))


### Chores

* **IT Wallet:** [[SIW-709](https://pagopa.atlassian.net/browse/SIW-709)] Update PID issuing saga to match a generic credential ([#5373](https://github.com/pagopa/io-app/issues/5373)) ([7f98216](https://github.com/pagopa/io-app/commit/7f98216a388a45eca33c3464561d1ee5ef819ae9))
* **IT Wallet:** [[SIW-772](https://pagopa.atlassian.net/browse/SIW-772)] Add `BLE` permissions for `iOS` and `Android` ([#5352](https://github.com/pagopa/io-app/issues/5352)) ([ff8f59e](https://github.com/pagopa/io-app/commit/ff8f59ed088d298610f8024a385ac51fd1e898e2))
* **IT Wallet:** [[SIW-773](https://pagopa.atlassian.net/browse/SIW-773)] Add patch to `cipher-base` package ([#5354](https://github.com/pagopa/io-app/issues/5354)) ([a9242c1](https://github.com/pagopa/io-app/commit/a9242c1f07cafcdb5fd8b39ebd8480df94bb2ac8))
* **IT Wallet:** [[SIW-778](https://pagopa.atlassian.net/browse/SIW-778)] Add actions and reducer for proximity flow ([#5359](https://github.com/pagopa/io-app/issues/5359)) ([0dc72d9](https://github.com/pagopa/io-app/commit/0dc72d94f306efdee1b750698676f5fafc00046a))
* **IT Wallet:** [[SIW-780](https://pagopa.atlassian.net/browse/SIW-780)] Update `ItwPrProximityQrCodeScreen` with proximity saga ([#5361](https://github.com/pagopa/io-app/issues/5361)) ([5f55e58](https://github.com/pagopa/io-app/commit/5f55e581a384b755339fc660f338e0a34fab5253))
* **IT Wallet:** [[SIW-783](https://pagopa.atlassian.net/browse/SIW-783)] Update `io-react-native-proximity` to version `0.1.7` ([#5362](https://github.com/pagopa/io-app/issues/5362)) ([4858220](https://github.com/pagopa/io-app/commit/48582208f8a41a8df8c66e815fa30ae7c7bbf26b))
* **IT Wallet:** [[SIW-789](https://pagopa.atlassian.net/browse/SIW-789)] Refactor folders and files structure ([#5384](https://github.com/pagopa/io-app/issues/5384)) ([98a5f29](https://github.com/pagopa/io-app/commit/98a5f291eb410a0884002038b01afcf6684d885b))
* [[SIW-769](https://pagopa.atlassian.net/browse/SIW-769)] Integrate proximity manager ([#5347](https://github.com/pagopa/io-app/issues/5347)) ([8feb31f](https://github.com/pagopa/io-app/commit/8feb31fb9205fd5220c0269e873a8b1d75fc9db4))

## [0.7.0-rc.0](https://github.com/pagopa/io-app/compare/0.6.2-rc.0...0.7.0-rc.0) (2023-12-22)


Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ android {
applicationId "it.pagopa.io.app.poc.itwallet"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 42
versionName "0.7.0.0"
versionCode 43
versionName "0.7.0.1"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
if (isNewArchitectureEnabled()) {
// We configure the NDK build only if you decide to opt-in for the New Architecture.
Expand Down
4 changes: 2 additions & 2 deletions ios/ItaliaApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@
CODE_SIGN_ENTITLEMENTS = ItaliaApp/ItaliaApp.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CURRENT_PROJECT_VERSION = 0;
CURRENT_PROJECT_VERSION = 1;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = M2X5YQ4BJ7;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = M2X5YQ4BJ7;
Expand Down Expand Up @@ -836,7 +836,7 @@
CODE_SIGN_ENTITLEMENTS = ItaliaApp/ItaliaApp.entitlements;
CODE_SIGN_IDENTITY = "iPhone Distribution";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CURRENT_PROJECT_VERSION = 0;
CURRENT_PROJECT_VERSION = 1;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = M2X5YQ4BJ7;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = M2X5YQ4BJ7;
Expand Down
2 changes: 1 addition & 1 deletion ios/ItaliaApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0</string>
<string>1</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/ItaliaAppTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0</string>
<string>1</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "italia-app",
"version": "0.7.0-rc.0",
"version": "0.7.0-rc.1",
"io_backend_api": "https://raw.githubusercontent.com/pagopa/io-backend/v13.20.0-RELEASE/api_backend.yaml",
"io_public_api": "https://raw.githubusercontent.com/pagopa/io-backend/v13.20.0-RELEASE/api_public.yaml",
"io_content_specs": "https://raw.githubusercontent.com/pagopa/io-services-metadata/1.0.28/definitions.yml",
Expand Down
4 changes: 2 additions & 2 deletions publiccode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
publiccodeYmlVersion: '0.2'
name: IO
logo: "img/app-logo.svg"
releaseDate: '2023-12-22'
releaseDate: '2024-03-25'
url: 'https://github.com/pagopa/io-app'
applicationSuite: IO
landingURL: 'https://io.italia.it/'
softwareVersion: 0.7.0-rc.0
softwareVersion: 0.7.0-rc.1
developmentStatus: beta
softwareType: standalone/mobile
roadmap: 'https://io.italia.it/'
Expand Down

0 comments on commit 4e85a69

Please sign in to comment.