Skip to content

Commit 34f2738

Browse files
authored
Merge pull request #56 from OS2Forms/release/1.14.0
Release/1.14.0
2 parents a7bccd2 + e7973f9 commit 34f2738

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ before starting to add changes.
99

1010
## [Unreleased]
1111

12+
## [1.14.0] - 03.10.2023
13+
14+
- webform_embded remove
15+
- Adding cache_control_override as a soft dependency (composer only)
16+
- Installing cache_control_override module on hook_install
17+
1218
## [1.13.0] - 25.09.2023
1319

1420
- Fixed missing icons on administration menu

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"drupal/core": "^9",
2222
"drush/drush": "^11.4",
2323
"os2forms/os2forms": "^3.6",
24-
"os2web/os2web_simplesaml": "8.x-dev"
24+
"os2web/os2web_simplesaml": "8.x-dev",
25+
"drupal/cache_control_override": "^1.1|^2.0"
2526
},
2627
"require-dev": {
2728
"drupal/coder": "^8.3",

os2forms_forloeb_profile.info.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ install:
8383
- webform_access
8484
- webform_attachment
8585
- webform_composite
86-
- webform_embed
8786
- webform_entity_print
8887
- webform_entity_print_attachment
8988
- webform_migrate

os2forms_forloeb_profile.install

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ function os2forms_forloeb_profile_install() {
4141
->set('default', 'gin')
4242
->set('admin', 'gin')
4343
->save();
44+
45+
// Enable recommended (but optional) modules.
46+
\Drupal::service('module_installer')->install(['cache_control_override']);
4447
}
4548

4649
/**

0 commit comments

Comments
 (0)