-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRELEASE
More file actions
42 lines (32 loc) · 1.72 KB
/
RELEASE
File metadata and controls
42 lines (32 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
OJS 3.4.0 Release Notes
Git tag: 3_4_0-0
Release date:
==============================
Configuration Changes
---------------------
See config.TEMPLATE.inc.php for a description and examples of all supported
configuration parameters.
- The date/time formats in config.inc.php should be converted from the format
specified in https://www.php.net/manual/en/function.strftime.php to the format
specified in https://www.php.net/manual/en/datetime.format.php. If you're not
sure how, use the values below. The following settings are affected:
date_format_short = "Y-m-d"
date_format_long = "F n, Y"
datetime_format_short = "Y-m-d h:i A"
datetime_format_long = "F n, Y - h:i A"
time_format = "h:i A"
The old formats will continue to work for now but are deprecated.
- An allowed_hosts option was added to protect against HOST injection attacks.
We recommend configuring this setting! See "Recommended Configuration" in
docs/README.md for details. (https://github.com/pkp/pkp-lib/issues/7649)
- The captcha.captcha_on_login option for displaying a captcha challenge in
the login interface has been added (default: on)
- The setting i18n.client_charset was removed. It used to support two options "ISO-8859-1" (LATIN1) and "UTF-8", now we're UTF-8 only.
New config.inc.php section for queues is added, with the following parameters:
- default_connection (default value: database), being the default queue driver to be used;
- default_queue (default value: queue), being the default queue to be used if someone forgot to associate a queue during Queue::push()
- disable_jobs_run_at_shutdown (default value: off), being a flag to disable the jobs to run at php shutdown
New Features
------------
Bug Fixes
---------