Skip to content

Commit

Permalink
Release 3.5.7 (#930)
Browse files Browse the repository at this point in the history
* Add release note

* Change version 3.5.6 to 3.5.7
  • Loading branch information
imbyungjun authored Oct 26, 2022
1 parent bf594df commit 8c6711b
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* Please post questions in [Discussions](https://github.com/naver/ngrinder/discussions) not Issues.
* nGrinder 3.5.6 has been released. See https://github.com/naver/ngrinder/releases
* nGrinder 3.5.7 has been released. See https://github.com/naver/ngrinder/releases
* Currently, we are working on the internal project not ngrinder. We will resume ngrinder dev from July, 2022.

nGrinder
Expand Down
9 changes: 9 additions & 0 deletions RELEASE-NOTE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
3.5.7 (2022.10.26)
=================
- Changes
- Bump front-end dependencies up
- Bug fix
- #922 Fix gradle command execution on Oshi 6.1.6
- #928 Fix revision and target hosts reset
- #929 Prevent memory leak on HTTPRequest

3.5.6 (2022.10.10)
==================
- Changes
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ allprojects {
apply plugin: "idea"

group = "org.ngrinder"
version = "3.5.6"
version = "3.5.7"

idea {
module {
Expand Down
8 changes: 4 additions & 4 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ Install docker 1.5.0 or above on your host.
Pull the ngrinder/controller image.

```
$ docker pull ngrinder/controller:3.5.6
$ docker pull ngrinder/controller:3.5.7
```

Start controller.

```
docker run -d -v ~/ngrinder-controller:/opt/ngrinder-controller -p 80:80 -p 16001:16001 -p 12000-12009:12000-12009 ngrinder/controller:3.5.6
docker run -d -v ~/ngrinder-controller:/opt/ngrinder-controller -p 80:80 -p 16001:16001 -p 12000-12009:12000-12009 ngrinder/controller:3.5.7
```

The controller creates a data folder under /opt/ngrinder-controller to maintain test history and configuration data. In order to keep the data persistently, you should map the folder /opt/ngrinder-controller on the container to a folder on your host .
Expand All @@ -54,11 +54,11 @@ Install docker 1.5.0 or above on your another host. You should run your agent on
Pull the ngrinder/agent image.

```
$ docker pull ngrinder/agent:3.5.6
$ docker pull ngrinder/agent:3.5.7
```

Start agent.

```
docker run -v ~/ngrinder-agent:/opt/ngrinder-agent -d ngrinder/agent:3.5.6 controller_ip:controller_web_port
docker run -v ~/ngrinder-agent:/opt/ngrinder-agent -d ngrinder/agent:3.5.7 controller_ip:controller_web_port
```
2 changes: 1 addition & 1 deletion ngrinder-controller/src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ngrinder:
version: 3.5.6
version: 3.5.7

server:
default-encoding: UTF-8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
}

ext {
ngrinder_version = "3.5.6"
ngrinder_version = "3.5.7"
}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions ngrinder-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ngrinder-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngrinder",
"version": "3.5.6",
"version": "3.5.7",
"description": "ngrinder GUI",
"private": true,
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion ngrinder-frontend/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var lessLoader = {
};

module.exports = function (env) {
var ngrinderVersion = '3.5.6';
var ngrinderVersion = '3.5.7';
if (env !== undefined && env.ngrinderVersion !== undefined) {
ngrinderVersion = env.ngrinderVersion;
}
Expand Down

0 comments on commit 8c6711b

Please sign in to comment.