Skip to content

Commit

Permalink
bumped to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmittag committed Jun 24, 2023
1 parent 79dd147 commit e3eaa24
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 3 deletions.
11 changes: 9 additions & 2 deletions ReadMe.Md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,21 @@
[![Go Version](https://img.shields.io/github/go-mod/go-version/simonmittag/j8a)](https://img.shields.io/github/go-mod/go-version/simonmittag/j8a)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Docker Pulls](https://img.shields.io/docker/pulls/simonmittag/j8a)](https://hub.docker.com/repository/docker/simonmittag/j8a)
[![Version](https://img.shields.io/docker/v/simonmittag/j8a/1.0.1)](https://hub.docker.com/repository/docker/simonmittag/j8a)
[![Version](https://img.shields.io/docker/v/simonmittag/j8a/1.1.0)](https://hub.docker.com/repository/docker/simonmittag/j8a)

## CVEs
🛡️ J8a has [zero](https://www.cvedetails.com/google-search-results.php?q=j8a&sa=Search) reported CVEs as of 03/06/2023.
🛡️ J8a has [zero](https://www.cvedetails.com/google-search-results.php?q=j8a&sa=Search) reported CVEs as of 24/06/2023.
If you are a security researcher, the project team would like to [hear from you](https://github.com/simonmittag/j8a/issues).

## What's new?

### v1.1.0 (24/06/2023)
* improved error handling for failed upstream requests.
* added new internal status management for server bootstrap and shutdown behaviour.
* bumped several dependencies
* now validating port ranges for http and tls ports downstream during bootstrap
* fixed a bug where acceptableSkewSeconds was incorrectly loaded from config files

### v1.0.1 (26/05/2023)
* can now validate config & files with cli option `-o`
* added cli flags `-h` for usage and `-v` for version
Expand Down
46 changes: 46 additions & 0 deletions integration/j8a9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
connection:
downstream:
readTimeoutSeconds: 3
roundTripTimeoutSeconds: 20
idleTimeoutSeconds: 30
http:
port: 8080
upstream:
socketTimeoutSeconds: 30
readTimeoutSeconds: 120
idleTimeoutSeconds: 120
maxAttempts: 1
tlsInsecureSkipVerify: yes
policies:
ab:
- label: green
weight: 0.8
- label: blue
weight: 0.2
routes:
- path: "/about"
resource: about
- path: "/mse6/some"
resource: mse61
- path: "/mse6/"
resource: mse6
policy: ab
resources:
mse61:
- url:
scheme: 'http:'
host: localhost
port: 60083
mse6:
- labels:
- green
url:
scheme: http://
host: localhost
port: 60083
- labels:
- blue
url:
host: localhost
port: 60084
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
// Version is the server version
const Server string = "Server"

var Version string = "v1.0.1"
var Version string = "v1.1.0"

// ID is a unique server ID
var ID string = "unknown"
Expand Down

0 comments on commit e3eaa24

Please sign in to comment.