Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/3.5.9-p1 #1020

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.9 has been released. See https://github.com/naver/ngrinder/releases
* nGrinder 3.5.9-p1 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
5 changes: 5 additions & 0 deletions RELEASE-NOTE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
3.5.9-p1 (2023.06.13)
=================
- Changes
- Fix security vulnerability

3.5.9 (2023.02.28)
=================
- 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.9"
version = "3.5.9-p1"

idea {
module {
Expand Down
10 changes: 5 additions & 5 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ nGrinder consists of two major components.

Version
---------
Current Version: 3.5.9
Current Version: 3.5.9-p1

How to run nGrinder with dockers
===========================
Expand All @@ -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.9
$ docker pull ngrinder/controller:3.5.9-p1
```

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.9
docker run -d -v ~/ngrinder-controller:/opt/ngrinder-controller -p 80:80 -p 16001:16001 -p 12000-12009:12000-12009 ngrinder/controller:3.5.9-p1
```

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 @@ -56,11 +56,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.9
$ docker pull ngrinder/agent:3.5.9-p1
```

Start agent.

```
docker run -v ~/ngrinder-agent:/opt/ngrinder-agent -d ngrinder/agent:3.5.9 controller_ip:controller_web_port
docker run -v ~/ngrinder-agent:/opt/ngrinder-agent -d ngrinder/agent:3.5.9-p1 controller_ip:controller_web_port
```
Binary file removed lib/grinder-3.9.1-patch.jar
Binary file not shown.
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.9
version: 3.5.9-p1

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.9"
ngrinder_version = "3.5.9-p1"
}

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.9",
"version": "3.5.9-p1",
"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.9';
var ngrinderVersion = '3.5.9-p1';
if (env !== undefined && env.ngrinderVersion !== undefined) {
ngrinderVersion = env.ngrinderVersion;
}
Expand Down
Loading