Skip to content
This repository was archived by the owner on Jun 24, 2018. It is now read-only.
Merged
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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.14.0] - IN DEVELOPMENT
### Added
- Added description for field field_slideshow_type in paragraph degov_paragraph_slideshow

### Added
- Added description for field field_slideshow_type in paragraph degov_paragraph_slideshow
- Added support for media bundles tweet and instagram to degov_social_media_settings.

### Fixed
- Fixed configurations of degov_media_video configurations

### Changed
## Changed
- Chnage cardinility of simplenews_issue field to 10 in degov_simplenews module.
- Views reference when argument field is empty doesn't try to set the argument,
so the default argument is calculated by the view itself.

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cardinality: 10
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cardinality: 10
8 changes: 8 additions & 0 deletions degov_simplenews/degov_simplenews.install
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,11 @@
* and every minor release as well until 1.14 respectively.
* The fresh install should have all the changes from 1.1 to 1.14.
*/

/**
* Change newsletter field cardinality.
*/
function degov_simplenews_update_8002() {
\Drupal::service('degov_config.module_updater')
->applyUpdates('degov_simplenews', '8002');
}