Skip to content

Commit

Permalink
Merge pull request #137 from DIG-Network/release/v0.0.1-alpha.141
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.141
  • Loading branch information
MichaelTaylor3D authored Nov 16, 2024
2 parents f6a83e3 + 2734e20 commit fa57c5d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
5 changes: 4 additions & 1 deletion src/tasks/sync_stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit fa57c5d

Please sign in to comment.