Skip to content

Commit 7c39884

Browse files
authored
chore: release 0.0.5-alpha (#22)
* chore: release 0.0.5-alpha * chore: add signature to mac dmg build
1 parent 4228b97 commit 7c39884

File tree

9 files changed

+32
-22
lines changed

9 files changed

+32
-22
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[![GitHub license](https://img.shields.io/badge/license-Apache%202.0-blue.svg?style=for-the-badge)](LICENSE)
2-
[![GitHub license](https://img.shields.io/badge/install-MacOSX-blue.svg?style=for-the-badge&logo=apple)](https://github.com/dfinity/http-proxy/releases/download/0.0.4-alpha/ic-http-proxy-mac-universal-0.0.4-alpha.dmg)
3-
[![GitHub license](https://img.shields.io/badge/install-Windows-blue.svg?style=for-the-badge&logo=windows)](https://github.com/dfinity/http-proxy/releases/download/0.0.4-alpha/ic-http-proxy-win-x64-0.0.4-alpha.exe)
2+
[![Install MacOS](https://img.shields.io/badge/install-MacOSX-blue.svg?style=for-the-badge&logo=apple)](https://github.com/dfinity/http-proxy/releases/download/0.0.5-alpha/ic-http-proxy-mac-universal-0.0.5-alpha.dmg)
3+
[![Install Windows](https://img.shields.io/badge/install-Windows-blue.svg?style=for-the-badge&logo=windows)](https://github.com/dfinity/http-proxy/releases/download/0.0.5-alpha/ic-http-proxy-win-x64-0.0.5-alpha.exe)
4+
[![Install Debian](https://img.shields.io/badge/install-Debian-blue.svg?style=for-the-badge&logo=debian)](https://github.com/dfinity/http-proxy/releases/download/0.0.5-alpha/ic-http-proxy-linux-arm64-0.0.5-alpha.deb)
45

56
# IC HTTP Proxy
67
> This application is currently only a proof of concept implementation and should be used at your own risk.
@@ -37,6 +38,8 @@ An implementation of the [IC HTTP Gateway Protocol](https://internetcomputer.org
3738

3839
* MacOSX
3940

41+
* Debian
42+
4043
Other platforms can also be supported by adding the generated root certificate to the device trusted store and adding the proxy HTTP server to the active network interface configuration.
4144

4245
## Contributing

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dfinity/http-proxy",
3-
"version": "0.0.4-alpha",
3+
"version": "0.0.5-alpha",
44
"description": "HTTP Proxy to enable trustless access to the Internet Computer.",
55
"author": "Kepler Vital <kepler.vital@dfinity.org>",
66
"license": "Apache-2.0",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dfinity/http-proxy-core",
3-
"version": "0.0.4-alpha",
3+
"version": "0.0.5-alpha",
44
"description": "Gateway server to enable trustless access to the Internet Computer.",
55
"main": "built/main.js",
66
"types": "built/main.d.ts",

packages/daemon/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dfinity/http-proxy-daemon",
3-
"version": "0.0.4-alpha",
3+
"version": "0.0.5-alpha",
44
"description": "Daemon process to enable trustless access to the Internet Computer.",
55
"main": "built/main.js",
66
"types": "built/main.d.ts",
@@ -62,7 +62,7 @@
6262
"typescript": "^4.9.5"
6363
},
6464
"dependencies": {
65-
"@dfinity/http-proxy-core": "0.0.4-alpha",
65+
"@dfinity/http-proxy-core": "0.0.5-alpha",
6666
"http-proxy": "^1.18.1",
6767
"node-cache": "^5.1.2",
6868
"node-forge": "^1.3.1",

packages/server/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dfinity/http-proxy-server",
3-
"version": "0.0.4-alpha",
3+
"version": "0.0.5-alpha",
44
"description": "Gateway server to enable trustless access to the Internet Computer.",
55
"main": "built/main.js",
66
"types": "built/main.d.ts",
@@ -51,8 +51,8 @@
5151
"dependencies": {
5252
"@dfinity/agent": "^0.19.0",
5353
"@dfinity/candid": "^0.19.0",
54-
"@dfinity/http-proxy-core": "0.0.4-alpha",
55-
"@dfinity/http-proxy-daemon": "0.0.4-alpha",
54+
"@dfinity/http-proxy-core": "0.0.5-alpha",
55+
"@dfinity/http-proxy-daemon": "0.0.5-alpha",
5656
"@dfinity/principal": "^0.19.0",
5757
"@dfinity/response-verification": "^1.0.2",
5858
"http-proxy": "^1.18.1",

packages/server/src/commons/configs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { EnvironmentConfiguration } from './typings';
33

44
const environment: EnvironmentConfiguration = {
55
platform: os.platform(),
6-
userAgent: 'ICHttpProxy/0.0.4-alpha',
6+
userAgent: 'ICHttpProxy/0.0.5-alpha',
77
certificate: {
88
storage: {
99
folder: 'certs',

packages/ui/build/mac.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,14 @@ const build = async () => {
6767
await builder
6868
.build({
6969
targets: Platform.MAC.createTarget('dmg', builder.Arch.universal),
70-
config: options,
70+
config: {
71+
...options,
72+
mac: {
73+
...options.mac,
74+
// since the dmg is not deterministic, we want to sign it with the default identity
75+
identity: undefined,
76+
}
77+
},
7178
})
7279
.then(async (builtFiles) => createReleaseHashFile(builtFiles));
7380
};

packages/ui/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dfinity/http-proxy-ui",
3-
"version": "0.0.4-alpha",
3+
"version": "0.0.5-alpha",
44
"description": "Desktop interface to facilitate user interaction with the HTTP Proxy server.",
55
"main": "built/main.js",
66
"scripts": {
@@ -37,8 +37,8 @@
3737
},
3838
"homepage": "https://github.com/dfinity/http-proxy/tree/main/packages/ui#readme",
3939
"dependencies": {
40-
"@dfinity/http-proxy-core": "0.0.4-alpha",
41-
"@dfinity/http-proxy-server": "0.0.4-alpha"
40+
"@dfinity/http-proxy-core": "0.0.5-alpha",
41+
"@dfinity/http-proxy-server": "0.0.5-alpha"
4242
},
4343
"devDependencies": {
4444
"@types/node": "^18.14.0",

yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ __metadata:
102102
languageName: node
103103
linkType: hard
104104

105-
"@dfinity/http-proxy-core@0.0.4-alpha, @dfinity/http-proxy-core@workspace:packages/core":
105+
"@dfinity/http-proxy-core@0.0.5-alpha, @dfinity/http-proxy-core@workspace:packages/core":
106106
version: 0.0.0-use.local
107107
resolution: "@dfinity/http-proxy-core@workspace:packages/core"
108108
dependencies:
@@ -127,11 +127,11 @@ __metadata:
127127
languageName: unknown
128128
linkType: soft
129129

130-
"@dfinity/http-proxy-daemon@0.0.4-alpha, @dfinity/http-proxy-daemon@workspace:packages/daemon":
130+
"@dfinity/http-proxy-daemon@0.0.5-alpha, @dfinity/http-proxy-daemon@workspace:packages/daemon":
131131
version: 0.0.0-use.local
132132
resolution: "@dfinity/http-proxy-daemon@workspace:packages/daemon"
133133
dependencies:
134-
"@dfinity/http-proxy-core": 0.0.4-alpha
134+
"@dfinity/http-proxy-core": 0.0.5-alpha
135135
"@types/node": ^18.14.0
136136
"@types/node-forge": ^1.3.1
137137
"@types/pako": ^2.0.0
@@ -155,14 +155,14 @@ __metadata:
155155
languageName: unknown
156156
linkType: soft
157157

158-
"@dfinity/http-proxy-server@0.0.4-alpha, @dfinity/http-proxy-server@workspace:packages/server":
158+
"@dfinity/http-proxy-server@0.0.5-alpha, @dfinity/http-proxy-server@workspace:packages/server":
159159
version: 0.0.0-use.local
160160
resolution: "@dfinity/http-proxy-server@workspace:packages/server"
161161
dependencies:
162162
"@dfinity/agent": ^0.19.0
163163
"@dfinity/candid": ^0.19.0
164-
"@dfinity/http-proxy-core": 0.0.4-alpha
165-
"@dfinity/http-proxy-daemon": 0.0.4-alpha
164+
"@dfinity/http-proxy-core": 0.0.5-alpha
165+
"@dfinity/http-proxy-daemon": 0.0.5-alpha
166166
"@dfinity/principal": ^0.19.0
167167
"@dfinity/response-verification": ^1.0.2
168168
"@types/isomorphic-fetch": ^0.0.36
@@ -191,8 +191,8 @@ __metadata:
191191
version: 0.0.0-use.local
192192
resolution: "@dfinity/http-proxy-ui@workspace:packages/ui"
193193
dependencies:
194-
"@dfinity/http-proxy-core": 0.0.4-alpha
195-
"@dfinity/http-proxy-server": 0.0.4-alpha
194+
"@dfinity/http-proxy-core": 0.0.5-alpha
195+
"@dfinity/http-proxy-server": 0.0.5-alpha
196196
"@types/node": ^18.14.0
197197
"@typescript-eslint/eslint-plugin": ^5.54.1
198198
"@typescript-eslint/parser": ^5.54.1

0 commit comments

Comments
 (0)