Skip to content

Commit

Permalink
Merge pull request #725 from yogeshojha/release/1.3.3
Browse files Browse the repository at this point in the history
fix nuclei issue #723,
  • Loading branch information
yogeshojha committed Oct 9, 2022
2 parents d6045fe + 51d29fd commit de8ef7e
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## 1.3.3
**Release Date: October 9, 2022**

# Fixes
- #723, Upgraded Go to 1.18.2


## 1.3.2
**Release Date: August 20, 2022**

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Expand Up @@ -96,7 +96,7 @@ services:
- POSTGRES_HOST=${POSTGRES_HOST}
# THIS IS A MUST FOR CHECKING UPDATE, EVERYTIME A COMMIT IS MERGED INTO
# MASTER, UPDATE THIS!!! MAJOR.MINOR.PATCH https://semver.org/
- RENGINE_CURRENT_VERSION='1.3.2'
- RENGINE_CURRENT_VERSION='1.3.3'
volumes:
- ./web:/usr/src/app
- github_repos:/usr/src/github
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Expand Up @@ -95,7 +95,7 @@ services:
- POSTGRES_HOST=${POSTGRES_HOST}
# THIS IS A MUST FOR CHECKING UPDATE, EVERYTIME A COMMIT IS MERGED INTO
# MASTER, UPDATE THIS!!! MAJOR.MINOR.PATCH https://semver.org/
- RENGINE_CURRENT_VERSION='1.3.2'
- RENGINE_CURRENT_VERSION='1.3.3'
volumes:
- ./web:/usr/src/app
- github_repos:/usr/src/github
Expand Down
8 changes: 4 additions & 4 deletions web/Dockerfile
Expand Up @@ -41,10 +41,10 @@ RUN apt update -y && apt install -y --no-install-recommends \
geoip-database


# Download and install go 1.17
RUN wget https://golang.org/dl/go1.17.2.linux-amd64.tar.gz
RUN tar -xvf go1.17.2.linux-amd64.tar.gz
RUN rm go1.17.2.linux-amd64.tar.gz
# Download and install go 1.18
RUN wget https://golang.org/dl/go1.18.2.linux-amd64.tar.gz
RUN tar -xvf go1.18.2.linux-amd64.tar.gz
RUN rm go1.18.2.linux-amd64.tar.gz
RUN mv go /usr/local

# Download geckodriver
Expand Down
2 changes: 1 addition & 1 deletion web/dashboard/templates/dashboard/index.html
Expand Up @@ -17,7 +17,7 @@
{% endblock custom_js_css_link %}

{% block breadcrumb_title %}
<span class="badge badge-soft-info">reNgine 1.3.2</span>
<span class="badge badge-soft-info">reNgine 1.3.3</span>
{% endblock breadcrumb_title %}

{% block main_content %}
Expand Down
8 changes: 4 additions & 4 deletions web/templates/base/_items/top_bar.html
Expand Up @@ -137,18 +137,18 @@ <h6 class="text-overflow m-0">Welcome {{user.get_username}}!</h6>
<div class="logo-box">
<a href="{% url 'dashboardIndex' %}" class="logo logo-dark text-center">
<span class="logo-sm">
<h3 class="text-logo vertical-center">reNgine<small>1.3.2</small></h3>
<h3 class="text-logo vertical-center">reNgine<small>1.3.3</small></h3>
</span>
<span class="logo-lg">
<h3 class="text-logo vertical-center">reNgine<small>1.3.2</small></h3>
<h3 class="text-logo vertical-center">reNgine<small>1.3.3</small></h3>
</span>
</a>
<a href="{% url 'dashboardIndex' %}" class="logo logo-light text-center">
<span class="logo-sm">
<h3 class="text-sm-logo vertical-center">reNgine<small>1.3.2</small></h3>
<h3 class="text-sm-logo vertical-center">reNgine<small>1.3.3</small></h3>
</span>
<span class="logo-lg">
<h3 class="text-lg-logo vertical-center">reNgine<small>1.3.2</small></h3>
<h3 class="text-lg-logo vertical-center">reNgine<small>1.3.3</small></h3>
</span>
</a>
</div>
Expand Down

0 comments on commit de8ef7e

Please sign in to comment.