Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 2.0.0 Beta 3 #1577

Draft
wants to merge 5 commits into
base: 2.0.x
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# ImpressCMS ChangeLog

## ImpressCMS 2.0.0 beta 3
skenow marked this conversation as resolved.
Show resolved Hide resolved
* Date: 15 Oct 2024
skenow marked this conversation as resolved.
Show resolved Hide resolved
* DB Version: 48
* Build Version: 110
skenow marked this conversation as resolved.
Show resolved Hide resolved
### What's Changed
* fix indirect variable handling in IPF select form element by @fiammybe in https://github.com/ImpressCMS/impresscms/pull/1574
skenow marked this conversation as resolved.
Show resolved Hide resolved
skenow marked this conversation as resolved.
Show resolved Hide resolved
* Remove use of $icmsModule in notification Handler.php by @fiammybe in https://github.com/ImpressCMS/impresscms/pull/1576
skenow marked this conversation as resolved.
Show resolved Hide resolved
* fix the module update by @fiammybe in https://github.com/ImpressCMS/impresscms/pull/1572
skenow marked this conversation as resolved.
Show resolved Hide resolved
* some last lingering $icmsModule uses by @fiammybe in https://github.com/ImpressCMS/impresscms/pull/1573
skenow marked this conversation as resolved.
Show resolved Hide resolved

## ImpressCMS 2.0.0 beta 2
* Date: 26 Sept 2024
* DB Version: 48
Expand Down
4 changes: 2 additions & 2 deletions htdocs/include/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @since Xoops
* @author phppp
*/
define('ICMS_VERSION_NAME', 'ImpressCMS 2.0.0 Beta 2');
define('ICMS_VERSION_NAME', 'ImpressCMS 2.0.0 Beta 3');

// For backward compatibility with XOOPS
define('XOOPS_VERSION', ICMS_VERSION_NAME);
Expand All @@ -30,7 +30,7 @@
*/
// 1.5.0 RC = 107; new 2.0.0 Beta 1=108

define('ICMS_VERSION_BUILD', 109);
define('ICMS_VERSION_BUILD', 110);

/**
* Latest dbversion of the System Module
Expand Down
4 changes: 2 additions & 2 deletions htdocs/modules/system/icms_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
'image' => "images/system_slogo.png", /* for backward compatibility */

/** Development information */
'status_version' => "Beta 2",
'status_version' => "Beta 3",
skenow marked this conversation as resolved.
Show resolved Hide resolved
'status' => "beta",
'date' => "25 Sept 2024",
'date' => "15 Oct 2024",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spaces must be used to indent lines; tabs are not allowed

'author_word' => "",
'warning' => _CO_ICMS_WARNING_BETA,

Expand Down
2 changes: 1 addition & 1 deletion release_notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ImpressCMS 2.0.0
# ImpressCMS 2.0.0 beta

This release of ImpressCMS realizes the majority of the original scope of the 2.0 release, started 10 years ago. It has been renamed 2.0.0. The focus is on providing compatibility with newer version of PHP (PHP7.x and PHP 8.x) and code cleanup. Existing modules that are compatible with the newer PHP versions should still work. This version, ImpressCMS 2.0.0, does require PHP versions 7.3 and above, and contains several corrections and security improvements compared to the previous release. Because of this requirement, the only database connection type is PDO, If your site is using the MySQL connection type, you will need to switch prior to moving to this version.

Expand Down