Skip to content

Commit

Permalink
Merge pull request #12866 from totten/5.5-notes-cleanup
Browse files Browse the repository at this point in the history
5.5.3 - Set version; add release notes; add more data-cleanup
  • Loading branch information
totten authored Sep 25, 2018
2 parents f89bb87 + 87cd0ed commit 5bc7db5
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CRM/Upgrade/Incremental/sql/5.5.3.mysql.tpl
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
#fix typo when setting default in https://github.com/civicrm/civicrm-core/pull/12410
ALTER TABLE civicrm_option_group MODIFY COLUMN is_locked TINYINT(4) NOT NULL DEFAULT 0 COMMENT 'A lock to remove the ability to add new options via the UI.';

UPDATE civicrm_option_group
SET is_locked = 0
WHERE name REGEXP '.*_2018[0-9]+$'
AND id IN (SELECT DISTINCT option_group_id FROM civicrm_custom_field);
37 changes: 37 additions & 0 deletions release-notes/5.5.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# CiviCRM 5.5.3

Released 25 Sep 2018

- **[Synopsis](#synopsis)**
- **[Bugs resolved](#bugs)**
- **[Credits](#credits)**
- **[Feedback](#feedback)**

## <a name="synopsis"></a>Synopsis

| *Does this version...?* | |
|:--------------------------------------------------------------- |:-------:|
| Fix security vulnerabilities? | no |
| Change the database schema? | no |
| Alter the API? | no |
| Require attention to configuration options? | no |
| **Fix problems installing or upgrading from previous version?** | **yes** |
| Introduce features? | no |
| **Fix bugs?** | **yes** |

## <a name="bugs"></a>Bugs resolved

- **Fix regression in editing of newly created option-groups ([12862](https://github.com/civicrm/civicrm-core/pull/12862))**

## <a name="credits"></a>Credits

This release was developed by the following authors, reviewers, investigators:

Wikimedia Foundation - Eileen McNaughton; MJW Consulting - Matt Wire;
CiviCRM - Coleman Watts, Tim Otten

## <a name="feedback"></a>Feedback

These release notes are edited by Tim Otten and Andrew Hunt. If you'd like to
provide feedback on them, please login to https://chat.civicrm.org/civicrm and
contact `@agh1`.
2 changes: 1 addition & 1 deletion sql/civicrm_generated.mysql
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ UNLOCK TABLES;

LOCK TABLES `civicrm_domain` WRITE;
/*!40000 ALTER TABLE `civicrm_domain` DISABLE KEYS */;
INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `config_backend`, `version`, `contact_id`, `locales`, `locale_custom_strings`) VALUES (1,'Default Domain Name',NULL,NULL,'5.5.2',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `config_backend`, `version`, `contact_id`, `locales`, `locale_custom_strings`) VALUES (1,'Default Domain Name',NULL,NULL,'5.5.3',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
/*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down
2 changes: 1 addition & 1 deletion xml/version.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<version>
<version_no>5.5.2</version_no>
<version_no>5.5.3</version_no>
</version>

0 comments on commit 5bc7db5

Please sign in to comment.