Skip to content

Commit f6958b3

Browse files
prepare for 4.1 release
1 parent 963db60 commit f6958b3

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
4.1
2+
* Update dependencies (Jetty + SSH lib)
3+
* Improve monitoring + retry mechanisms
4+
* Drop support for JDK 8
5+
* Improve `--doctor` checks
6+
17
4.0
28
* Update dependencies (Jetty 11)
39
* Websocket + Server Sent Events support

README.markdown

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is a Java-based application to test websites on your local computer or staging environment with the TestingBot.com browser cloud.
44
A secure connection is established between your machine and the TestingBot.com cloud.
5-
You can find more information on https://testingbot.com/support/other/tunnel
5+
You can find more information on https://testingbot.com/support/tunnel
66

77
About
88
-------
@@ -20,7 +20,10 @@ Below are some of the features of the TestingBot Tunnel:
2020
Prerequisites
2121
-------
2222

23-
This version of the tunnel requires Java 8 or higher. If you'd like to run on Java < 8, please use [TestingBot Tunnel 1.21](https://github.com/testingbot/Testingbot-Tunnel/tree/TestingBotTunnel-1.21) (no longer maintained)
23+
This version of the tunnel requires Java 11 or higher.
24+
25+
- If you need Java 8, you can use TestingBot Tunnel 4.0(https://github.com/testingbot/Testingbot-Tunnel/tree/TestingBotTunnel-4.0).
26+
- If you'd like to run on Java < 8, please use [TestingBot Tunnel 1.21](https://github.com/testingbot/Testingbot-Tunnel/tree/TestingBotTunnel-1.21) (no longer maintained)
2427

2528
**NOTE:** If you use the containerized tunnel, Java is not needed. See below under the *Docker*-header.
2629

@@ -125,7 +128,7 @@ To build the docker image, run:
125128
docker buildx build --platform linux/amd64,linux/arm64 \
126129
--no-cache \
127130
--push \
128-
-t testingbot/tunnel:4.0 \
131+
-t testingbot/tunnel:4.1 \
129132
-t testingbot/tunnel:latest .
130133
```
131134

src/main/java/com/testingbot/tunnel/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import ssh.TunnelPoller;
2626

2727
public class App {
28-
public static final Float VERSION = 4.0f;
28+
public static final Float VERSION = 4.1f;
2929
private Api api;
3030
private String clientKey;
3131
private String clientSecret;

0 commit comments

Comments
 (0)