Skip to content

Commit a3a942b

Browse files
Merge pull request #181 from iExecBlockchainComputing/release/1.2.1
Release/1.2.1
2 parents a620f7e + a0f9fdc commit a3a942b

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file.
44

5+
## [1.2.1]
6+
7+
### Changed
8+
9+
- Migrated Bellecour subgraph URL to `https://thegraph.iex.ec/...`
10+
511
## [1.2.0]
612

713
### Changed

dapp/tests/e2e/app.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ describe('sendEmail', () => {
350350
expect(out.length).toBe(2);
351351
});
352352

353-
it.skip('should detect non existent email address and exit in error', async () => {
353+
it('should detect non existent email address and exit in error', async () => {
354354
// protected data setup
355355
process.env.IEXEC_DATASET_FILENAME = 'dataEmailUserDoesNotExist.zip';
356356

@@ -363,7 +363,7 @@ describe('sendEmail', () => {
363363
expect(out).toStrictEqual([]);
364364
});
365365

366-
it.skip('should detect disposable email address and exit in error', async () => {
366+
it('should detect disposable email address and exit in error', async () => {
367367
// protected data setup
368368
process.env.IEXEC_DATASET_FILENAME = 'dataDisposableEmail.zip';
369369

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iexec/web3mail",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "This product enables users to confidentially store data–such as mail address, documents, personal information ...",
55
"main": "./dist/index.js",
66
"type": "module",

src/config/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const WEB3_MAIL_DAPP_ADDRESS = 'web3mail.apps.iexec.eth';
22
export const PROD_WORKERPOOL_ADDRESS = 'prod-v8-bellecour.main.pools.iexec.eth';
33
export const DATAPROTECTOR_SUBGRAPH_ENDPOINT =
4-
'https://thegraph-product.iex.ec/subgraphs/name/bellecour/dataprotector-v2';
4+
'https://thegraph.iex.ec/subgraphs/name/bellecour/dataprotector-v2';
55
export const MAX_DESIRED_DATA_ORDER_PRICE = 0;
66
export const MAX_DESIRED_APP_ORDER_PRICE = 0;
77
export const MAX_DESIRED_WORKERPOOL_ORDER_PRICE = 0;

0 commit comments

Comments
 (0)