You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,12 @@
1
+
# v3.0.1
2
+
3
+
- This version of Ultraviolet upgrades [bare-mux](https://www.npmjs.com/package/@mercuryworkshop/bare-mux). This solves an issue with websockets not being opened properly.
4
+
- This version of Ultraviolet allows error messages to be iframed on cross origin isolated pages.
5
+
6
+
# v3.0.0
7
+
8
+
- This version of Ultraviolet has support for using [bare-mux](https://github.com/MercuryWorkshop/bare-mux) transports, allowing for use for other implementations like [EpoxyTransport](https://github.com/MercuryWorkshop/EpoxyTransport), [CurlTransport](https://github.com/MercuryWorkshop/CurlTransport), and the existing implementation [Bare-Client](https://github.com/MercuryWorkshop/Bare-as-module3).
9
+
1
10
# v2.0.0
2
11
3
12
- This version of Ultraviolet has support for Bare server v3
A guide for updating from v1 to v2 can be found [here](./docs/V2-UPGRADE-GUIDE.md).
37
+
A guide for updating from any version to v3 can be found [here](https://github.com/titaniumnetwork-dev/Ultraviolet/wiki/Upgrading).
38
38
39
-
## Older Bare servers
39
+
## Older Ultraviolet versions
40
40
41
-
Starting from v2, Ultraviolet only supports Bare servers v3+.
41
+
Starting from v3, Ultraviolet uses [bare-mux](https://github.com/MercuryWorkshop/bare-mux), a library that allows you to switch out your Bare client.
42
42
43
-
If you operate an outdated Bare server, we encourage you to update. If you're using an outdated Bare server, we encourage you to find an updated Bare server or host your own.
43
+
If you operate using an older Ultraviolet, we encourage you to update.
44
44
45
45
If you're too lazy to do either of the above, you can install an outdated and unsupported version of Ultraviolet.
46
46
@@ -58,4 +58,4 @@ This repository can be built, but it can't be deployed to any services. See [Ult
58
58
59
59
## Documentation
60
60
61
-
Documentation can be found in the [wiki](https://github.com/titaniumnetwork-dev/Ultraviolet/wiki).
61
+
Documentation can be found in the [wiki](https://github.com/titaniumnetwork-dev/Ultraviolet/wiki).
Copy file name to clipboardExpand all lines: package.json
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@titaniumnetwork-dev/ultraviolet",
3
-
"version": "2.0.0",
3
+
"version": "3.1.0",
4
4
"description": "Highly sophisticated proxy used for evading internet censorship or accessing websites in a controlled sandbox using the power of service-workers and more!",
5
5
"main": "lib/index.cjs",
6
6
"license": "MIT",
@@ -18,10 +18,12 @@
18
18
"scripts": {
19
19
"build": "node build.js",
20
20
"dev": "node build.js --dev",
21
-
"prepack": "npm run build"
21
+
"prepack": "npm run build",
22
+
"publish": "npm run build && npm publish --access public",
0 commit comments