Skip to content

Commit 4b7f9dd

Browse files
authored
Merge pull request #183 from mlabs-haskell/gergely/version-bump
- Updated `cardano-wallet` to latest version (compatible with cardano-node 8.1.1) - Updated nixpkgs, haskell.nix (moved to iog branch) , hackage.nix, iohk.nix
2 parents 41376c6 + 1bf0b54 commit 4b7f9dd

18 files changed

+3524
-1331
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This format is based on [Keep A Changelog](https://keepachangelog.com/en/1.0.0).
44

55

66
## Unreleased (Plutip-Core)
7+
8+
### Changed
9+
10+
- Updated `cardano-wallet` (2023-09-15)
711
- No functionality to run test contracts with `Plutip.Contract`
812
- No setup for BPI from cluster setup
913
- No copying of relay node logs
@@ -13,6 +17,9 @@ This format is based on [Keep A Changelog](https://keepachangelog.com/en/1.0.0).
1317
- No `NegativeLovelaces` in `ClusterStartupFailureReason`
1418
- Moved saving keys into 'signing-keys' (before: 'bot-plutus-interface/signing-keys')
1519
- New: withFundedCluster, withCluster (previously withPlutusInterface)
20+
21+
### Added
22+
1623
- Add `dump-info-json` to local-cluster
1724
- Add configurable MaxTxSize and MaxExUnits to `ExtraConfig`
1825

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ requires_nix_shell:
3636
@ [ "$(IN_NIX_SHELL)" ] || echo "The $(MAKECMDGOALS) target must be run from inside a nix shell"
3737
@ [ "$(IN_NIX_SHELL)" ] || (echo " run 'nix develop' first" && false)
3838

39-
FOURMOLU_EXTENSIONS := -o -XTypeApplications -o -XTemplateHaskell -o -XImportQualifiedPost -o -XPatternSynonyms -o -fplugin=RecordDotPreprocessor
39+
FOURMOLU_EXTENSIONS := -o -XTypeApplications -o -XTemplateHaskell -o -XImportQualifiedPost -o -XPatternSynonyms -o
4040

4141
# Add folder locations to the list to be reformatted.
4242
excluded := src/Test/Plutip/Internal/Cluster.hs

cabal.project

+92-29
Original file line numberDiff line numberDiff line change
@@ -9,41 +9,104 @@ repository cardano-haskell-packages
99
c00aae8461a256275598500ea0e187588c35a5d5d7454fb57eac18d9edb86a56
1010
d4a35cd3121aa00d18544bb0ac01c3e1691d618f462c46129271bccf39f7e8ee
1111

12-
index-state: 2022-05-25T00:00:00Z
13-
index-state: cardano-haskell-packages 2022-10-25T20:00:00Z
12+
-- Align index-states with cardano-wallet
13+
index-state: 2023-06-06T00:00:00Z
14+
15+
index-state:
16+
, hackage.haskell.org 2023-06-06T00:00:00Z
17+
, cardano-haskell-packages 2023-06-05T06:39:32Z
1418

1519
packages: ./.
1620

1721
tests: true
1822
benchmarks: true
1923
test-show-details: direct
24+
constraints:
25+
-- TH Name shadowing warnings nconstraints:
26+
bimap >= 0.4.0
27+
, openapi3 >= 3.2.0
28+
, libsystemd-journal >= 1.4.4
29+
, systemd >= 2.3.0
30+
-- dependency of systemd-2.3.0
31+
, network >= 3.1.1.1
32+
-- choose versions that work with base >= 4.12
33+
, hjsonpointer >= 1.5.0
34+
, hjsonschema >= 1.10.0
35+
, Cabal >= 3.4.0.0
36+
, async-timer >= 0.2.0.0
37+
, unliftio-core >= 0.2.0.1
38+
, generic-arbitrary >= 0.2.2
39+
, iohk-monitoring >= 0.1.11
40+
41+
-- lower versions of katip won't build with the Win32-2.12.0.1
42+
-- which is shipped with the ghc-9.2.8
43+
, katip >= 0.8.7.4
44+
45+
-- Cardano Node dependencies:
46+
, cardano-api ^>=8.2
47+
, cardano-slotting >= 0.1
48+
, ouroboros-network ^>= 0.8.1.0
49+
, persistent == 2.13.3.3
50+
51+
package cardano-wallet
52+
optimization: False
53+
package cardano-wallet-core
54+
optimization: False
55+
package cardano-wallet-cli
56+
optimization: False
57+
package cardano-wallet-launcher
58+
optimization: False
59+
package cardano-wallet-core-integration
60+
optimization: False
2061

2162
allow-newer:
22-
*:aeson
23-
, size-based:template-haskell
63+
hjsonschema:*
64+
, hjsonpointer:*
65+
, *:aeson
66+
, *:hashable
67+
, async-timer:unliftio-core
68+
, ekg:*
69+
, ntp-client:*
70+
, libsystemd-journal:base
2471

25-
constraints:
26-
-- cardano-node == 1.35.4
27-
, aeson >= 2
28-
29-
, hedgehog >= 1.1
30-
31-
, cardano-prelude == 0.1.0.0
32-
, base-deriving-via == 0.1.0.0
33-
, cardano-binary == 1.5.0
34-
, cardano-binary-test == 1.3.0
35-
, cardano-crypto-class == 2.0.0.0.1
36-
, cardano-crypto-praos == 2.0.0.0.1
37-
, cardano-crypto-tests == 2.0.0.0.1
38-
, cardano-slotting == 0.1.0.0
39-
, measures == 0.1.0.0
40-
, orphans-deriving-via == 0.1.0.0
41-
, strict-containers == 0.1.0.0
42-
, plutus-core == 1.0.0.1
43-
, plutus-ledger-api == 1.0.0.1
44-
, plutus-tx == 1.0.0.0
45-
, plutus-tx-plugin == 1.0.0.0
46-
, prettyprinter-configurable == 0.1.0.0
47-
, plutus-ghc-stub == 8.6.5
48-
, word-array == 0.1.0.0
49-
, word-array == 0.1.0.0
72+
source-repository-package
73+
type: git
74+
location: https://github.com/cardano-foundation/cardano-wallet
75+
tag: ae6e90b99ff14eda88769211218aaae2b0fe528b
76+
--sha256: 060r6z9sy9r1jr8iinlyirprw4k3s54malp9sz732vl7byh6vylf
77+
subdir:
78+
lib/application-extras
79+
lib/balance-tx
80+
lib/crypto-hash-extra
81+
lib/coin-selection
82+
lib/delta-store
83+
lib/delta-table
84+
lib/delta-types
85+
lib/iohk-monitoring-extra
86+
lib/launcher
87+
lib/local-cluster
88+
lib/numeric
89+
lib/primitive
90+
lib/read
91+
lib/temporary-extra
92+
lib/test-utils
93+
lib/text-class
94+
lib/wai-middleware-logging
95+
lib/wallet-benchmarks
96+
lib/wallet
97+
lib/wallet-e2e
98+
99+
source-repository-package
100+
type: git
101+
location: https://github.com/input-output-hk/cardano-addresses
102+
tag: 44d5a9eb3505b6bfbf281d40fa88531c3253b771
103+
--sha256: 16rja48ryfjw3531kf15w0h3cdmscqgs8l1z1i2mvahq1vlhr2y6
104+
subdir: command-line
105+
core
106+
107+
source-repository-package
108+
type: git
109+
location: https://github.com/cardano-foundation/cardano-wallet-client.git
110+
tag: 353412ca621dc28af53e4a19795338b19bab1b7b
111+
--sha256: 04q58c82wy6x9nkwqbvcxbv6s61fx08h5kf62sb511aqp08id4bb
112+
subdir: generated

cluster-data/conway-genesis.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
genDelegs: {}

0 commit comments

Comments
 (0)