diff --git a/CHANGELOG.md b/CHANGELOG.md index 991a1ca..0a58ea0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.0.1-alpha.141](https://github.com/DIG-Network/dig-propagation-server/compare/v0.0.1-alpha.140...v0.0.1-alpha.141) (2024-11-16) + + +### Bug Fixes + +* temp fix for issue store ([200c152](https://github.com/DIG-Network/dig-propagation-server/commit/200c152d9e2cf2857c965e9b7355085017f7d76e)) + ### [0.0.1-alpha.140](https://github.com/DIG-Network/dig-propagation-server/compare/v0.0.1-alpha.139...v0.0.1-alpha.140) (2024-10-28) diff --git a/package-lock.json b/package-lock.json index 6217a54..b951aa3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "dig-propagation-server", - "version": "0.0.1-alpha.140", + "version": "0.0.1-alpha.141", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "dig-propagation-server", - "version": "0.0.1-alpha.140", + "version": "0.0.1-alpha.141", "license": "ISC", "dependencies": { "@dignetwork/datalayer-driver": "^0.1.28", diff --git a/package.json b/package.json index c24b0cf..d17ff7f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dig-propagation-server", - "version": "0.0.1-alpha.140", + "version": "0.0.1-alpha.141", "description": "", "type": "commonjs", "main": "./dist/index.js", diff --git a/src/tasks/sync_stores.ts b/src/tasks/sync_stores.ts index cf79aec..7642fb7 100644 --- a/src/tasks/sync_stores.ts +++ b/src/tasks/sync_stores.ts @@ -256,7 +256,10 @@ const task = new Task("sync-stores", async () => { try { console.log("Starting sync-stores task..."); - const storeList = getStoresList(); + const storeList = getStoresList() + // temp fix for a store that is causing issues + .filter((store) => store !== "a3f1b2c4d5e6f708192a3b4c5d6e7f8091a2b3c4d5e6f708192a3b4c5d6e7f80"); + let publicIp: string | null | undefined; try {