Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.71.1]

### Changed

- Pointed Market Insights digest fallback URL at the production endpoint when `DIGEST_API_URL` is not set at build time (#28098)

## [7.71.0]

### Added
Expand Down Expand Up @@ -11072,7 +11078,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#957](https://github.com/MetaMask/metamask-mobile/pull/957): fix timeouts (#957)
- [#954](https://github.com/MetaMask/metamask-mobile/pull/954): Bugfix: onboarding navigation (#954)

[Unreleased]: https://github.com/MetaMask/metamask-mobile/compare/v7.71.0...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-mobile/compare/v7.71.1...HEAD
[7.71.1]: https://github.com/MetaMask/metamask-mobile/compare/v7.71.0...v7.71.1
[7.71.0]: https://github.com/MetaMask/metamask-mobile/compare/v7.70.1...v7.71.0
[7.70.1]: https://github.com/MetaMask/metamask-mobile/compare/v7.70.0...v7.70.1
[7.70.0]: https://github.com/MetaMask/metamask-mobile/compare/v7.69.1...v7.70.0
Expand Down
2 changes: 1 addition & 1 deletion app/constants/ota.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import otaConfig from '../../ota.config.js';
* Reset to v0 when releasing a new native build
* We keep this OTA_VERSION here to because changes in ota.config.js will affect the fingerprint and break the workflow in Github Actions
*/
export const OTA_VERSION: string = 'v7.70.1';
export const OTA_VERSION: string = 'v7.71.1';
export const RUNTIME_VERSION = otaConfig.RUNTIME_VERSION;
export const PROJECT_ID = otaConfig.PROJECT_ID;
export const UPDATE_URL = otaConfig.UPDATE_URL;
5 changes: 2 additions & 3 deletions app/core/AppConstants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DEFAULT_SERVER_URL } from '@metamask/sdk-communication-layer';
import { CoreTypes } from '@walletconnect/types';
import Device from '../util/device';
import { DEFAULT_SERVER_URL } from '@metamask/sdk-communication-layer';

const DEVELOPMENT = 'development';

Expand Down Expand Up @@ -214,8 +214,7 @@ export default {
process.env.DECODING_API_URL ||
'https://signature-insights.api.cx.metamask.io/v1',
DIGEST_API_URL:
process.env.DIGEST_API_URL ||
'https://digest.dev-api.cx.metamask.io/api/v1',
process.env.DIGEST_API_URL || 'https://digest.api.cx.metamask.io/api/v1',
// Rewards/Baanx: GH Actions use builds.yml (env set per build). Fallback mapping for local when env not set.
REWARDS_API_URL: {
DEV: 'https://rewards.dev-api.cx.metamask.io',
Expand Down
Loading