Skip to content

Commit 71ca92e

Browse files
sgillespiekderme
authored andcommitted
chore: Update URL references to IntersectMBO repos
1 parent fe45fe9 commit 71ca92e

34 files changed

+88
-93
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Add your description here, if it fixes a particular issue please provide a [link
77
- [ ] Commit sequence broadly makes sense
88
- [ ] Commits have useful messages
99
- [ ] New tests are added if needed and existing tests are updated
10-
- [ ] Any changes are noted in the [changelog](https://github.com/input-output-hk/cardano-db-sync/blob/master/cardano-db-sync/CHANGELOG.md)
10+
- [ ] Any changes are noted in the [changelog](https://github.com/IntersectMBO/cardano-db-sync/blob/master/cardano-db-sync/CHANGELOG.md)
1111
- [ ] Code is formatted with [`fourmolu`](https://github.com/fourmolu/fourmolu) on version 0.10.1.0 (which can be run with `scripts/fourmolize.sh`)
1212
- [ ] Self-reviewed the diff
1313

1414
# Migrations
1515

16-
- [ ] The pr causes a [breaking change](https://github.com/input-output-hk/cardano-db-sync/blob/master/doc/migrations.md) of type a,b or c
16+
- [ ] The pr causes a [breaking change](https://github.com/IntersectMBO/cardano-db-sync/blob/master/doc/migrations.md) of type a,b or c
1717
- [ ] If there is a breaking change, the pr includes a database migration and/or a fix process for old values, so that upgrade is possible
1818
- [ ] Resyncing and running the migrations provided will result in the same database semantically
1919

CODEOWNERS

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
# General reviewers per PR
2-
* @input-output-hk/core-tech-dbsync
2+
* @IntersectMBO/core-tech-dbsync
33

44
# Specific reviewers for code pieces
55
# NB - The last matching pattern takes precedence
66

77
# /doc folder and README.* needs to be owned by @docs-access
8-
doc @input-output-hk/docs-access @input-output-hk/core-tech-dbsync
9-
Readme.* @input-output-hk/docs-access @input-output-hk/core-tech-dbsync
10-
CONTRIBUTING.rst @input-output-hk/docs-access @input-output-hk/core-tech-dbsync
8+
doc @input-output-hk/docs-access @IntersectMBO/core-tech-dbsync
9+
Readme.* @input-output-hk/docs-access @IntersectMBO/core-tech-dbsync
10+
CONTRIBUTING.rst @input-output-hk/docs-access @IntersectMBO/core-tech-dbsync
1111

1212
# DevOps
13-
.buildkite @input-output-hk/core-tech-devx @input-output-hk/core-tech-release
14-
.github @input-output-hk/core-tech-devx @input-output-hk/core-tech-release
15-
/config @input-output-hk/core-tech-devx @input-output-hk/core-tech-release
16-
nix @input-output-hk/core-tech-devx @input-output-hk/core-tech-release
17-
*.nix @input-output-hk/core-tech-devx @input-output-hk/core-tech-release
18-
flake.lock @input-output-hk/core-tech-devx @input-output-hk/core-tech-release
19-
bors.toml @input-output-hk/core-tech-devx @input-output-hk/core-tech-release
20-
docker-compose.yml @input-output-hk/core-tech-devx @input-output-hk/core-tech-release
21-
scripts/postgresql-setup.sh @input-output-hk/core-tech-devx @input-output-hk/core-tech-release
13+
.github @IntersectMBO/core-tech-devx @IntersectMBO/core-tech-release
14+
/config @IntersectMBO/core-tech-devx @IntersectMBO/core-tech-release
15+
nix @IntersectMBO/core-tech-devx @IntersectMBO/core-tech-release
16+
*.nix @IntersectMBO/core-tech-devx @IntersectMBO/core-tech-release
17+
flake.lock @IntersectMBO/core-tech-devx @IntersectMBO/core-tech-release
18+
bors.toml @IntersectMBO/core-tech-devx @IntersectMBO/core-tech-release
19+
docker-compose.yml @IntersectMBO/core-tech-devx @IntersectMBO/core-tech-release
20+
scripts/postgresql-setup.sh @IntersectMBO/core-tech-devx @IntersectMBO/core-tech-release

CONTRIBUTING.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ deployments.
88

99
On how to set up Nix for ``cardano-db-sync`` development, please see `Building Cardano
1010
Node with nix
11-
<https://github.com/input-output-hk/cardano-node/tree/master/doc/getting-started/building-the-node-using-nix.md>`_.
11+
<https://github.com/IntersectMBO/cardano-node/tree/master/doc/getting-started/building-the-node-using-nix.md>`_.
1212

1313
Roles and Responsibilities
1414
==========================
@@ -77,6 +77,6 @@ Releasing a New Version
7777

7878
See `<doc/release-process.md>`__
7979

80-
.. _CODEOWNERS: https://github.com/input-output-hk/cardano-db-sync/blob/master/CODEOWNERS
81-
.. _cardano-haskell-packages: https://github.com/input-output-hk/cardano-haskell-packages
80+
.. _CODEOWNERS: https://github.com/IntersectMBO/cardano-db-sync/blob/master/CODEOWNERS
81+
.. _cardano-haskell-packages: https://github.com/IntersectMBO/cardano-haskell-packages
8282
.. _fourmolu: https://github.com/fourmolu/fourmolu

Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ above is met).
7171

7272
Install db-sync with one of the following methods:
7373

74-
* [Static Binaries](https://github.com/input-output-hk/cardano-db-sync/releases/latest)
74+
* [Static Binaries](https://github.com/IntersectMBO/cardano-db-sync/releases/latest)
7575
* [Installing with Nix][InstallingNix]
7676
* [Installing from Source][Installing]
7777
* [Docker][Docker]

cabal.project

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
repository cardano-haskell-packages
2-
url: https://input-output-hk.github.io/cardano-haskell-packages
2+
url: https://chap.intersectmbo.org/
33
secure: True
44
root-keys:
55
3e0cce471cf09815f930210f7827266fd09045445d65923e6d0238a6cd15126f
@@ -73,7 +73,7 @@ allow-newer:
7373

7474
source-repository-package
7575
type: git
76-
location: https://github.com/input-output-hk/cardano-node
76+
location: https://github.com/IntersectMBO/cardano-node
7777
tag: 34d89af65439db92293b88967c299c20692abc1c
7878
--sha256: sha256-pVUWfzVnM4RvpFlJNH2ZmWPZzmkGT1Ty8B1p7NFh69M=
7979
subdir:

cardano-chain-gen/cardano-chain-gen.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ name: cardano-chain-gen
44
version: 13.2.0.0
55
synopsis: A fake chain generator for testing cardano DB sync.
66
description: A fake chain generator for testing cardano DB sync.
7-
homepage: https://github.com/input-output-hk/cardano-db-sync
8-
bug-reports: https://github.com/input-output-hk/cardano-db-sync/issues
7+
homepage: https://github.com/IntersectMBO/cardano-db-sync
8+
bug-reports: https://github.com/IntersectMBO/cardano-db-sync/issues
99
license: Apache-2.0
1010
license-file: LICENSE
1111
author: IOHK Engineering Team

cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Alonzo/PoolAndSmash.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ poolReg =
7474
where
7575
testLabel = "poolReg-alonzo"
7676

77-
-- Issue https://github.com/input-output-hk/cardano-db-sync/issues/997
77+
-- Issue https://github.com/IntersectMBO/cardano-db-sync/issues/997
7878
nonexistantPoolQuery :: IOManager -> [(Text, Text)] -> Assertion
7979
nonexistantPoolQuery =
8080
withFullConfig alonzoConfigDir testLabel $ \interpreter mockServer dbSync -> do

cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Babbage/Other.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ poolReg =
147147
where
148148
testLabel = "poolReg"
149149

150-
-- Issue https://github.com/input-output-hk/cardano-db-sync/issues/997
150+
-- Issue https://github.com/IntersectMBO/cardano-db-sync/issues/997
151151
nonexistantPoolQuery :: IOManager -> [(Text, Text)] -> Assertion
152152
nonexistantPoolQuery =
153153
withFullConfig babbageConfigDir testLabel $ \interpreter mockServer dbSync -> do

cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Babbage/Reward.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ simpleRewards =
109109

110110
-- This test is the same as the previous, but in Shelley era. Rewards result
111111
-- should be different because of the old Shelley bug.
112-
-- https://github.com/input-output-hk/cardano-db-sync/issues/959
112+
-- https://github.com/IntersectMBO/cardano-db-sync/issues/959
113113
--
114114
-- The differenece in rewards is triggered when a reward address of a pool A
115115
-- delegates to a pool B and is not an owner of pool B. In this case it receives

cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Other.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ poolReg =
137137
where
138138
testLabel = "conwayPoolReg"
139139

140-
-- Issue https://github.com/input-output-hk/cardano-db-sync/issues/997
140+
-- Issue https://github.com/IntersectMBO/cardano-db-sync/issues/997
141141
nonexistentPoolQuery :: IOManager -> [(Text, Text)] -> Assertion
142142
nonexistentPoolQuery =
143143
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do

cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Reward.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ simpleRewards =
8080

8181
-- This test is the same as the previous, but in Shelley era. Rewards result
8282
-- should be different because of the old Shelley bug.
83-
-- https://github.com/input-output-hk/cardano-db-sync/issues/959
83+
-- https://github.com/IntersectMBO/cardano-db-sync/issues/959
8484
--
8585
-- The differenece in rewards is triggered when a reward address of a pool A
8686
-- delegates to a pool B and is not an owner of pool B. In this case it receives

cardano-db-sync/CHANGELOG.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ It is advised to resync from genesis when using a new version a or b.
1212

1313
Some useful links (adjust the numbers to the correct tag):
1414

15-
- Changelog: https://github.com/input-output-hk/cardano-db-sync/blob/sancho-2-0-0/cardano-db-sync/CHANGELOG.md#13200
16-
- Schema docs https://github.com/input-output-hk/cardano-db-sync/blob/sancho-2-0-0/doc/schema.md
17-
- Postgres migrations https://github.com/input-output-hk/cardano-db-sync/tree/sancho-2-0-0/schema
15+
- Changelog: https://github.com/IntersectMBO/cardano-db-sync/blob/sancho-2-0-0/cardano-db-sync/CHANGELOG.md#13200
16+
- Schema docs https://github.com/IntersectMBO/cardano-db-sync/blob/sancho-2-0-0/doc/schema.md
17+
- Postgres migrations https://github.com/IntersectMBO/cardano-db-sync/tree/sancho-2-0-0/schema
1818

1919
In the schema docs, you can search for `13.2` or `Conway` for schema changes from the previous official release.
2020

@@ -59,7 +59,7 @@ In the schema docs, you can search for `13.2` or `Conway` for schema changes fro
5959
- is compatible with node-8.3-pre. There are no schema changes over sancho-1-0-0.
6060

6161
### sancho-1.0.0
62-
The schema is quite close to the [initial design](https://github.com/input-output-hk/cardano-db-sync/blob/conway-schema-design-13.2/doc/schema.md). You may find some differences: ie the `param_proposals` and `epoch_param` are not extended yet,
62+
The schema is quite close to the [initial design](https://github.com/IntersectMBO/cardano-db-sync/blob/conway-schema-design-13.2/doc/schema.md). You may find some differences: ie the `param_proposals` and `epoch_param` are not extended yet,
6363
Some tables/fields are created but are not populated yet: `anchor_offline_data`, `anchor_offline_fetch_error` , `drep_distr` , `governance_action.x_epoch` , `delegation_vote.redeemer_id`
6464

6565
### sancho-0.0.0
@@ -127,10 +127,10 @@ It's very early stage and is missing all Conway specific feautures and some Shel
127127
* Bump to the latest node release.
128128

129129
## 13.0.3
130-
* Integrated the fix for the missused minfee function in ledger (https://github.com/input-output-hk/cardano-ledger/pull/2938)
130+
* Integrated the fix for the missused minfee function in ledger (https://github.com/IntersectMBO/cardano-ledger/pull/2938)
131131

132132
## 13.0.2
133-
* Integrated the fix of the obsolete check in the new 'Praos' protocol (https://github.com/input-output-hk/ouroboros-network/pull/3891)
133+
* Integrated the fix of the obsolete check in the new 'Praos' protocol (https://github.com/IntersectMBO/ouroboros-network/pull/3891)
134134

135135
## 13.0.1
136136
* Ensure Babbage TxOut decoder can't fail due to malformed Ptr. This bug manifests itself if db-sync is running in the Babbage era and shuts down, it has to re-sync from an Alonzo snapshot, or from Genesis if it doesn't exist. (#1181)

cardano-db-sync/app/cardano-db-sync.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ main = do
3636
stateDirErrorMsg :: [Char]
3737
stateDirErrorMsg =
3838
"Error: If not using --state-dir then make sure to have --disable-ledger. "
39-
<> "For more details view https://github.com/input-output-hk/cardano-db-sync/blob/master/doc/syncing-and-rollbacks.md#ledger-state"
39+
<> "For more details view https://github.com/IntersectMBO/cardano-db-sync/blob/master/doc/syncing-and-rollbacks.md#ledger-state"
4040

4141
run :: SyncNodeParams -> IO ()
4242
run prms = do

cardano-db-sync/cardano-db-sync.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ version: 13.2.0.0
55
synopsis: The Cardano DB Sync node
66
description: A Cardano node that follows the Cardano chain and inserts data from the
77
chain into a PostgresQL database.
8-
homepage: https://github.com/input-output-hk/cardano-db-sync
9-
bug-reports: https://github.com/input-output-hk/cardano-db-sync/issues
8+
homepage: https://github.com/IntersectMBO/cardano-db-sync
9+
bug-reports: https://github.com/IntersectMBO/cardano-db-sync/issues
1010
license: Apache-2.0
1111
license-file: LICENSE
1212
author: IOHK Engineering Team

cardano-db-sync/src/Cardano/DbSync/Api.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ mkSyncEnv trce backend connectionString syncOptions protoInfo nw nwMagic systemS
372372
(Just _, False) -> do
373373
logWarning trce $
374374
"Using `--disable-ledger` doesn't require having a --state-dir."
375-
<> " For more details view https://github.com/input-output-hk/cardano-db-sync/blob/master/doc/configuration.md#--disable-ledger"
375+
<> " For more details view https://github.com/IntersectMBO/cardano-db-sync/blob/master/doc/configuration.md#--disable-ledger"
376376
NoLedger <$> mkNoLedgerEnv trce protoInfo nw systemStart
377377
-- This won't ever call because we error out this combination at parse time
378378
(Nothing, True) -> NoLedger <$> mkNoLedgerEnv trce protoInfo nw systemStart

cardano-db-sync/src/Cardano/DbSync/Era/Shelley/Generic/Witness.hs

+3-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ import Cardano.Ledger.Mary (MaryEra)
1414
import Cardano.Ledger.Shelley (ShelleyEra)
1515
import Ouroboros.Consensus.Cardano.Block (StandardCrypto)
1616

17-
-- Cargo culted from ledger-specs. Written by Tim Sheard and PRed in
18-
-- https://github.com/input-output-hk/cardano-ledger-specs/pull/2173
19-
-- Even once it is merged, will need to wait until the node moves to a
20-
-- version that this feature.
17+
-- Cargo culted from ledger. Written by Tim Sheard and PRed in
18+
-- https://github.com/IntersectMBO/cardano-ledger/pull/2173 Even once it is merged, will
19+
-- need to wait until the node moves to a version that this feature.
2120

2221
-- | Evidence that a valid (predefined) crypto exists
2322
data Evidence c where

cardano-db-sync/src/Cardano/DbSync/Era/Shelley/Insert.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ insertPoolRegister _tracer cache isMember network (EpochNo epoch) blkId txId idx
761761
pure $ if otherUpdates then 3 else 2
762762

763763
-- Ignore the network in the `RewardAcnt` and use the provided one instead.
764-
-- This is a workaround for https://github.com/input-output-hk/cardano-db-sync/issues/546
764+
-- This is a workaround for https://github.com/IntersectMBO/cardano-db-sync/issues/546
765765
adjustNetworkTag :: Ledger.RewardAcnt StandardCrypto -> Ledger.RewardAcnt StandardCrypto
766766
adjustNetworkTag (Shelley.RewardAcnt _ cred) = Shelley.RewardAcnt network cred
767767

cardano-db-sync/src/Cardano/DbSync/Era/Util.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ safeDecodeToJson tracer tracePrefix x = do
4444
-- We have to insert
4545
pure Nothing
4646
Right json ->
47-
-- See https://github.com/input-output-hk/cardano-db-sync/issues/297
47+
-- See https://github.com/IntersectMBO/cardano-db-sync/issues/297
4848
if containsUnicodeNul json
4949
then do
5050
liftIO $ logWarning tracer $ tracePrefix <> ": dropped due to a Unicode NUL character."

cardano-db-sync/src/Cardano/DbSync/OffChain/Types.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ instance ToSchema PoolOffChainMetadata
7676

7777
-- -------------------------------------------------------------------------------------------------
7878

79-
-- Copied from https://github.com/input-output-hk/cardano-node/pull/1299
79+
-- Copied from https://github.com/IntersectMBO/cardano-node/pull/1299
8080

8181
-- | Parse and validate the stake pool metadata name from a JSON object.
8282
--

cardano-db-sync/src/Cardano/DbSync/StateQuery.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import Ouroboros.Consensus.HardFork.History.Qry (
3030
-- -------------------------------------------------------------------------------------------------
3131

3232
-- TODO: Switch back to the old version of this when this is fixed:
33-
-- https://github.com/input-output-hk/cardano-db-sync/issues/276
33+
-- https://github.com/IntersectMBO/cardano-db-sync/issues/276
3434
querySlotDetails :: SystemStart -> SlotNo -> Qry SlotDetails
3535
querySlotDetails start absSlot = do
3636
absTime <- qryFromExpr $

cardano-db-tool/cardano-db-tool.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ version: 13.2.0.0
55
synopsis: Utilities to manage the cardano-db-sync databases.
66
description: Utilities and executable, used to manage and validate the
77
PostgreSQL db and the ledger database of the cardano-db-sync node
8-
homepage: https://github.com/input-output-hk/cardano-db-sync
9-
bug-reports: https://github.com/input-output-hk/cardano-db-sync/issues
8+
homepage: https://github.com/IntersectMBO/cardano-db-sync
9+
bug-reports: https://github.com/IntersectMBO/cardano-db-sync/issues
1010
license: Apache-2.0
1111
license-file: LICENSE
1212
author: IOHK Engineering Team

cardano-db/cardano-db.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ version: 13.2.0.0
55
synopsis: A base PostgreSQL component for the cardano-db-sync node.
66
description: Code for the Cardano DB Sync node that is shared between the
77
cardano-db-node and other components.
8-
homepage: https://github.com/input-output-hk/cardano-db-sync
9-
bug-reports: https://github.com/input-output-hk/cardano-db-sync/issues
8+
homepage: https://github.com/IntersectMBO/cardano-db-sync
9+
bug-reports: https://github.com/IntersectMBO/cardano-db-sync/issues
1010
license: Apache-2.0
1111
license-file: LICENSE
1212
author: IOHK Engineering Team

cardano-db/test/cardano-db-test.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ version: 13.2.0.0
55
synopsis: Tests for the base functionality of the cardano-db library
66
description: Code for the Cardano DB Sync node that is shared between the
77
cardano-db-node and other components.
8-
homepage: https://github.com/input-output-hk/cardano-db-sync
9-
bug-reports: https://github.com/input-output-hk/cardano-db-sync/issues
8+
homepage: https://github.com/IntersectMBO/cardano-db-sync
9+
bug-reports: https://github.com/IntersectMBO/cardano-db-sync/issues
1010
license: Apache-2.0
1111
license-file: LICENSE
1212
author: IOHK Engineering Team

cardano-smash-server/cardano-smash-server.cabal

+3-6
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ name: cardano-smash-server
44
version: 13.2.0.0
55
synopsis: The Cardano smash server
66
description: Please see the README on GitHub at
7-
<https://github.com/input-output-hk/cardano-db-sync/cardano-smash-server/#readme>
8-
homepage: https://github.com/input-output-hk/cardano-db-sync
9-
bug-reports: https://github.com/input-output-hk/cardano-db-sync/issues
7+
<https://github.com/IntersectMBO/cardano-db-sync/cardano-smash-server/#readme>
8+
homepage: https://github.com/IntersectMBO/cardano-db-sync
9+
bug-reports: https://github.com/IntersectMBO/cardano-db-sync/issues
1010
license: Apache-2.0
1111
license-file: LICENSE
1212
author: IOHK Engineering Team
@@ -113,6 +113,3 @@ executable cardano-smash-server
113113
, cardano-prelude
114114
, optparse-applicative
115115
, text
116-
117-
118-

cardano-smash-server/src/Cardano/SMASH/Server/Impl.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ todoSwagger =
7070
Just $
7171
License
7272
{ _licenseName = "APACHE2"
73-
, _licenseUrl = Just $ URL "https://github.com/input-output-hk/cardano-db-sync/blob/master/LICENSE"
73+
, _licenseUrl = Just $ URL "https://github.com/IntersectMBO/cardano-db-sync/blob/master/LICENSE"
7474
}
7575
, _infoVersion = smashVersion
7676
}

0 commit comments

Comments
 (0)