Skip to content

Commit

Permalink
Merge pull request #363 from dappnode/v0.2.32
Browse files Browse the repository at this point in the history
v0.2.32 Release
  • Loading branch information
dapplion authored Jun 8, 2020
2 parents 9c52d86 + 6c63933 commit 6e10ba5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions build/src/src/ethForward/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ export default function startEthForward(): void {
const target = getTargetUrl(content);
logs.debug(`Proxying ${domain} to ${target}`, content);

// Must change the host from something not *.eth, to prevent the IPFS node
// from trying to resolve the domain with DNSLink and causing an error
req.headers.host = "dappmanager.dappnode";

// Note: Must use the promise constructor otherwise proxy.web breaks
// due to no proper binding of its underlying 'this'
// Cannot read property 'length' of undefined
Expand Down
2 changes: 1 addition & 1 deletion dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dappmanager.dnp.dappnode.eth",
"version": "0.2.31",
"version": "0.2.32",
"description": "Dappnode package responsible for providing the DappNode Package Manager",
"type": "dncore",
"author": "DAppNode Association <[email protected]> (https://github.com/dappnode)",
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
build:
context: .
dockerfile: ./build/Dockerfile
image: 'dappmanager.dnp.dappnode.eth:0.2.31'
image: 'dappmanager.dnp.dappnode.eth:0.2.32'
container_name: DAppNodeCore-dappmanager.dnp.dappnode.eth
restart: always
volumes:
Expand Down
8 changes: 8 additions & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,13 @@
"remote": "Thu, 30 Apr 2020 16:55:29 GMT"
},
"link": "http://my.dappnode/#/sdk/publish/r=dappmanager.dnp.dappnode.eth&v=0.2.29&h=%2Fipfs%2FQmc1VT7khMjsCghRKJzULyucVrhLMhZyrLmSDNG2TJSRV4"
},
"0.2.31": {
"hash": "/ipfs/QmZzAVE5EV2oXB7eWMDrbj2hun3ZX3yw8PqJtJcxyQPbem",
"type": "directory",
"uploadedTo": {
"remote": "Thu, 21 May 2020 17:47:34 GMT"
},
"link": "http://my.dappnode/#/sdk/publish/r=dappmanager.dnp.dappnode.eth&v=0.2.31&h=%2Fipfs%2FQmZzAVE5EV2oXB7eWMDrbj2hun3ZX3yw8PqJtJcxyQPbem"
}
}

0 comments on commit 6e10ba5

Please sign in to comment.