Skip to content

Commit f6bd045

Browse files
authored
Merge pull request #2670 from input-output-hk/release-with-master
Merge release/4.3.0 and release/4.3.1 into master
2 parents f02b4d9 + b3d29da commit f6bd045

File tree

137 files changed

+1804
-1505
lines changed

Some content is hidden

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

137 files changed

+1804
-1505
lines changed

.babelrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"loose": true
1414
}
1515
],
16+
["@babel/plugin-proposal-optional-chaining"],
1617
["@babel/plugin-proposal-object-rest-spread", {}],
1718
["@babel/plugin-transform-runtime", {}],
1819
["@babel/plugin-proposal-unicode-property-regex", { "useUnicodeFlag": false }],

.flowconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ flow/declarations/
2323

2424
[options]
2525
esproposal.decorators=ignore
26+
esproposal.optional_chaining=enable
2627
module.ignore_non_literal_requires=true
2728
module.name_mapper.extension='scss' -> '<PROJECT_ROOT>/flow/mappers/CSSModule.js.flow'

CHANGELOG.md

Lines changed: 32 additions & 0 deletions

README.md

Lines changed: 5 additions & 0 deletions

installer-clusters.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
mainnet mainnet_flight testnet shelley_qa staging
1+
mainnet mainnet_flight testnet shelley_qa staging alonzo_purple

installers/common/MacInstaller.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ buildElectronApp darwinConfig@DarwinConfig{dcAppName, dcAppNameApp} installerCon
282282
, "int64-buffer"
283283
, "call-bind"
284284
, "get-intrinsic"
285+
, "cbor-web"
285286
]
286287
mapM_ (\lib -> do
287288
cptree ("../node_modules" </> lib) ((fromText pathtoapp) </> "Contents/Resources/app/node_modules" </> lib)
@@ -327,7 +328,7 @@ makeComponentRoot Options{oBackend,oCluster} appRoot darwinConfig@DarwinConfig{d
327328
-- Executables (from daedalus-bridge)
328329
forM_ ["cardano-wallet", "cardano-node", "cardano-cli", "cardano-address" ] $ \f ->
329330
cp (bridge </> "bin" </> f) (dir </> f)
330-
forM_ ["config.yaml", "genesis.json", "genesis-byron.json", "genesis-shelley.json", "topology.yaml" ] $ \f ->
331+
forM_ ["config.yaml", "genesis.json", "genesis-byron.json", "genesis-shelley.json", "genesis-alonzo.json", "topology.yaml" ] $ \f ->
331332
cp f (dataDir </> f)
332333

333334
when (oCluster == Selfnode) $ do

installers/common/Types.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ data Cluster
5656
| Staging
5757
| Shelley_QA
5858
| Testnet
59+
| Alonzo_Purple
5960
deriving (Bounded, Enum, Eq, Read, Show)
6061

6162
-- | The wallet backend to include in the installer.
@@ -106,6 +107,7 @@ clusterNetwork Mainnet_Flight = "mainnet_flight"
106107
clusterNetwork Staging = "staging"
107108
clusterNetwork Shelley_QA = "shelley_qa"
108109
clusterNetwork Testnet = "testnet"
110+
clusterNetwork Alonzo_Purple = "alonzo_purple"
109111

110112
packageFileName :: OS -> Cluster -> Version -> Backend -> Text -> Maybe BuildJob -> FilePath
111113
packageFileName _os cluster ver backend _backendVer build = fromText name <.> ext

installers/common/WindowsInstaller.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ writeInstallerNSIS outName (Version fullVersion') InstallerConfig{installDirecto
201201
file [] "genesis.json"
202202
file [] "genesis-byron.json"
203203
file [] "genesis-shelley.json"
204+
file [] "genesis-alonzo.json"
204205
file [] "libsodium-23.dll"
205206
when (clusterName == Selfnode) $ do
206207
file [] "signing.key"
624 KB
1.96 MB

0 commit comments

Comments
 (0)