From 9f9dd099854cfff61f226d6a15f599f23c685214 Mon Sep 17 00:00:00 2001 From: lybrus Date: Mon, 18 Oct 2021 11:45:04 +0300 Subject: [PATCH 1/3] chore: .env.example MAILER_SENDER_EMAIL put value in quotes (#3226) Signed-off-by: Damir Rashidov --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 447c2f4ef..ef74a7c0f 100644 --- a/.env.example +++ b/.env.example @@ -41,7 +41,7 @@ RAILS_MAX_THREADS=5 # The email from which all outgoing emails are sent # could user either `email@yourdomain.com` or `BrandName ` -MAILER_SENDER_EMAIL=Chatwoot +MAILER_SENDER_EMAIL="Chatwoot " #SMTP domain key is set up for HELO checking From 6de964a0bd74906409b8f7854d66d1739230e541 Mon Sep 17 00:00:00 2001 From: Pranav Raj S Date: Mon, 18 Oct 2021 14:20:48 +0530 Subject: [PATCH 2/3] fix: HTTP parser error in linux installations (#3232) --- deployment/nginx_chatwoot.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/nginx_chatwoot.conf b/deployment/nginx_chatwoot.conf index b1f991781..8359431c9 100644 --- a/deployment/nginx_chatwoot.conf +++ b/deployment/nginx_chatwoot.conf @@ -30,7 +30,7 @@ server { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_http_version 1.1; - proxy_set_header Connection “”; + proxy_set_header Connection ""; proxy_buffering off; client_max_body_size 0; proxy_read_timeout 36000s; From 58ad0e6fd6097159568afed357d7799e523e5d38 Mon Sep 17 00:00:00 2001 From: Sojan Date: Mon, 18 Oct 2021 14:33:46 +0530 Subject: [PATCH 3/3] Bump version to 1.21.1 --- config/app.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/app.yml b/config/app.yml index eaaed2980..65b08332a 100644 --- a/config/app.yml +++ b/config/app.yml @@ -1,5 +1,5 @@ shared: &shared - version: '1.21.0' + version: '1.21.1' development: <<: *shared diff --git a/package.json b/package.json index 59d534ee8..b51f11f53 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@chatwoot/chatwoot", - "version": "1.21.0", + "version": "1.21.1", "license": "MIT", "scripts": { "eslint": "eslint app/javascript --fix",