Skip to content

Commit

Permalink
Merge pull request #772 from yogeshojha/release/1.3.5
Browse files Browse the repository at this point in the history
Release/1.3.5
  • Loading branch information
yogeshojha committed Dec 30, 2022
2 parents 5fd9417 + d6ea8cf commit 04c5ba4
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 272 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog


## 1.3.5
**Release Date: December 29, 2022**

- Fixed #769, #768, #766, #761, Thanks to, @bin-maker, @carsonchan12345, @paweloque, @opabravo


## 1.3.4
**Release Date: November 16, 2022**

Expand Down
2 changes: 1 addition & 1 deletion config/nginx/rengine.conf
Expand Up @@ -46,7 +46,7 @@ server {
ssl_prefer_server_ciphers on; # Specifies that server ciphers should be preferred over client ciphers.

# ssl_dhparam /etc/ssl/private/private/dh4096.pem; # Diffie-Hellman server params with 4096 bits (generated using `openssl dhparam 4096 -out /etc/ssl/private/private/dh4096.pem`).
ssl_ecdh_curve sect571r1:secp521r1:brainpoolP512r1:secp384r1; # Elliptic Curve Diffie-Hellman server params.
ssl_ecdh_curve secp384r1:X25519:prime256v1; # Elliptic Curve Diffie-Hellman server params.

ssl_session_cache shared:SSL:10m; # Create a shared cache able to store about 80000 sessions (about 4000 for 1MB storage).
ssl_session_timeout 5m; # Timeout before session to be dropped.
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.4'
- RENGINE_CURRENT_VERSION='1.3.5'
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.4'
- RENGINE_CURRENT_VERSION='1.3.5'
volumes:
- ./web:/usr/src/app
- github_repos:/usr/src/github
Expand Down
2 changes: 1 addition & 1 deletion make.bat
Expand Up @@ -14,7 +14,7 @@ if "%1" == "up" docker-compose %COMPOSE_ALL_FILES% up -d --build %SERVICES%
:: Build all services.
if "%1" == "build" docker-compose %COMPOSE_ALL_FILES% build %SERVICES%
:: Generate Username (Use only after make up).
if "%1" == "username" docker-compose %COMPOSE_ALL_FILES% exec web python manage.py createsuperuser
if "%1" == "username" docker-compose %COMPOSE_ALL_FILES% exec web python3 manage.py createsuperuser
:: Pull Docker images.
if "%1" == "pull" docker login docker.pkg.github.com & docker-compose %COMPOSE_ALL_FILES% pull
:: Down all services.
Expand Down
2 changes: 1 addition & 1 deletion scripts/uninstall.sh
@@ -1,6 +1,6 @@
#!/bin/bash

cat ../web/art/1.1.txt
cat ../web/art/rengine.txt
echo "Uninstalling reNgine"

if [ "$EUID" -ne 0 ]
Expand Down
2 changes: 1 addition & 1 deletion web/art/reNgine.txt
Expand Up @@ -3,6 +3,6 @@
_ __ ___| \| | __ _ _ _ __ ___
| '__/ _ \ . ` |/ _` | | '_ \ / _ \
| | | __/ |\ | (_| | | | | | __/
|_| \___|_| \_|\__, |_|_| |_|\___| v1.3.4
|_| \___|_| \_|\__, |_|_| |_|\___| v1.3.5
__/ |
|___/

0 comments on commit 04c5ba4

Please sign in to comment.