diff --git a/CHANGELOG.md b/CHANGELOG.md index ee0accc0c..328638a91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.1.8](https://github.com/polonel/trudesk/compare/v1.1.7...v1.1.8) (2021-07-25) + + +### Bug Fixes + +* **tickets:** creation has no response [#423](https://github.com/polonel/trudesk/issues/423) by alsemany ([dcfde5f](https://github.com/polonel/trudesk/commit/dcfde5f)) + ## [1.1.7](https://github.com/polonel/trudesk/compare/v1.1.6...v1.1.7) (2021-07-15) diff --git a/LICENSE b/LICENSE index 49776f57b..209614f13 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2014-2019 Trudesk, Inc. +Copyright 2014-2021 Trudesk, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/package.json b/package.json index 203bf9b81..9988024f2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "trudesk", - "version": "1.1.7", + "version": "1.1.8", "private": true, "engines": { "node": ">=9.10.0" diff --git a/src/controllers/install.js b/src/controllers/install.js index 45b312250..2b8c8f0ea 100644 --- a/src/controllers/install.js +++ b/src/controllers/install.js @@ -54,7 +54,7 @@ installController.elastictest = function (req, res) { installController.mongotest = function (req, res) { var data = req.body - var dbPassword = encodeURIComponent(data.password) + var dbPassword = encodeURI(data.password) var CONNECTION_URI = 'mongodb://' + data.username + ':' + dbPassword + '@' + data.host + ':' + data.port + '/' + data.database @@ -150,7 +150,7 @@ installController.install = function (req, res) { fullname: data['account[fullname]'] } - var dbPassword = encodeURIComponent(password) + var dbPassword = encodeURI(password) var conuri = 'mongodb://' + username + ':' + dbPassword + '@' + host + ':' + port + '/' + database if (port === '---') conuri = 'mongodb+srv://' + username + ':' + dbPassword + '@' + host + '/' + database