Skip to content

Commit 452277d

Browse files
authored
Merge pull request #1995 from input-output-hk/release/1.0.0
Release/1.0.0
2 parents 88c6a6b + c15ebce commit 452277d

File tree

1,449 files changed

+78313
-30533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,449 files changed

+78313
-30533
lines changed

.buildkite/pipeline.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ steps:
88
agents:
99
queue: daedalus
1010
system: x86_64-darwin
11-
- label: 'daedalus-x86_64-linux'
12-
command: 'scripts/build-installer-unix.sh --build-id $BUILDKITE_BUILD_NUMBER'
13-
agents:
14-
system: x86_64-linux
1511
- label: 'daedalus-x86_64-linux-nix'
1612
command: 'scripts/build-installer-nix.sh $BUILDKITE_BUILD_NUMBER'
1713
agents:
@@ -21,7 +17,8 @@ steps:
2117
agents:
2218
system: x86_64-linux
2319

24-
- label: 'release.nix'
25-
command: 'ci/check-hydra.sh'
26-
agents:
27-
system: x86_64-linux
20+
# TODO: Re-enable once script is fixed
21+
# - label: 'release.nix'
22+
# command: 'ci/check-hydra.sh'
23+
# agents:
24+
# system: x86_64-linux

.eslintignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ main.js
55
logs
66
node_modules
77
translations
8-
./tests
9-
features/tests/e2e/documents/*
8+
tests
9+
tests/paper-wallets/e2e/documents/*
10+
tests/wallets/e2e/documents/*
1011
mainnet-genesis-dryrun-with-stakeholders.json
1112
source/renderer/app/i18n/locales
1213
nodemon.json

.eslintrc

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
"import/no-dynamic-require": 0,
3232
"import/no-extraneous-dependencies": 0,
3333
"import/prefer-default-export": 0,
34+
"jsx-a11y/anchor-is-valid": 0,
35+
"jsx-a11y/control-has-associated-label": 0,
36+
"max-classes-per-file": 0,
37+
"no-async-promise-executor": 0,
3438
"no-await-in-loop": 0,
3539
"no-bitwise": 0,
3640
"no-param-reassign": 0,
@@ -40,22 +44,31 @@
4044
"no-underscore-dangle": 0,
4145
"no-unused-expressions": "warn",
4246
"no-use-before-define": 0,
47+
"no-useless-catch": 0,
4348
"no-restricted-syntax": 0,
4449
"prefer-destructuring": "warn",
50+
"prefer-object-spread": 0,
4551
"prefer-promise-reject-errors": "warn",
4652
"prefer-template": "warn",
4753
"react/button-has-type": 0,
54+
"react/default-props-match-prop-types": 0,
4855
"react/destructuring-assignment": 0,
56+
"react/display-name": 0,
57+
"react/jsx-curly-brace-presence": 0,
58+
"react/jsx-filename-extension": 0,
59+
"react/jsx-fragments": 0,
4960
"react/jsx-no-bind": "warn",
61+
"react/jsx-props-no-spreading": 0,
5062
"react/jsx-wrap-multilines": 0,
51-
"react/jsx-filename-extension": 0,
5263
"react/no-access-state-in-setstate": "warn",
5364
"react/no-array-index-key": "warn",
5465
"react/no-unused-prop-types": "warn",
5566
"react/prefer-stateless-function": 0,
5667
"react/prop-types": "warn",
5768
"react/require-default-props": 0,
58-
"react/sort-comp": 0
69+
"react/sort-comp": 0,
70+
"react/state-in-constructor": 0,
71+
"react/static-property-placement": 0
5972
},
6073
"plugins": [
6174
"flowtype",

.flowconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
<PROJECT_ROOT>/release/.*
99
<PROJECT_ROOT>/git/.*
1010
<PROJECT_ROOT>/.cache-loader/.*
11+
<PROJECT_ROOT>/utils/js-launcher/.*
12+
<PROJECT_ROOT>/tests-report/.*
1113

1214
[include]
1315

.github/pull_request_template.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ This PR CHANGES.
2323

2424
- [ ] PR has been assigned and has appropriate labels (`feature`/`bug`/`chore`, `release-x.x.x`)
2525
- [ ] PR is updated to the most recent version of the target branch (and there are no conflicts)
26-
- [ ] PR has a good description that summarizes all changes and shows some screenshots or animated GIFs of important UI changes
26+
- [ ] PR has a good description that summarizes all changes
27+
- [ ] PR has default-sized Daedalus window screenshots or animated GIFs of important UI changes:
28+
- [ ] In English
29+
- [ ] In Japanese
2730
- [ ] CHANGELOG entry has been added to the top of the appropriate section (*Features*, *Fixes*, *Chores*) and is linked to the correct PR on GitHub
2831
- [ ] Automated tests: All acceptance and unit tests are passing (`yarn test`)
2932
- [ ] Manual tests (minimum tests should cover newly added feature/fix): App works correctly in *development* build (`yarn dev`)

.gitignore

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,13 @@ translations/messages
6262
translations/reports
6363

6464
# 'Screenshots' and 'Paper wallet ceritifcate PDF file' generated by acceptance tests
65-
features/tests/e2e/documents/paper_wallet_certificates/paper-wallet-certificate.pdf
66-
features/tests/e2e/screenshots
65+
tests/paper-wallets/e2e/documents/paper-wallet-certificate.pdf
66+
tests-report/
67+
-tests-report/.gitkeep
68+
69+
# Old ignored files
70+
tests/screenshots/
71+
tests/@rerun.txt
6772

6873
# Webpack
6974
.cache
@@ -75,11 +80,9 @@ ci-url
7580
commit-id
7681
mainnet
7782
staging
78-
cardano-node
7983
configuration.yaml
8084
log-config-prod.yaml
8185
mainnet-genesis-dryrun-with-stakeholders.json
82-
wallet-topology.yaml
8386

8487
# nix-build results
8588
result*
@@ -90,3 +93,14 @@ package-lock.json
9093
# cardano public keys
9194
public.key
9295
public.key.lock
96+
97+
# Development executables
98+
cardano-wallet-jormungandr
99+
cardano-wallet-http-bridge
100+
jcli
101+
/jormungandr
102+
cardano-http-bridge
103+
cardano-node
104+
105+
# JS Launcher
106+
utils/js-launcher/state

.prettierignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@
2020

2121
# Ignore the following special folders and files
2222
source/renderer/app/i18n/locales/
23-
features/tests/e2e/documents/*
23+
source/renderer/app/config/newsfeed-files/
24+
tests/paper-wallets/e2e/documents/*
25+
tests/wallets/e2e/documents/*

0 commit comments

Comments
 (0)