Skip to content

Commit

Permalink
chore: updating to 24.06.00
Browse files Browse the repository at this point in the history
This commit moves database changes to 24.06.00 and updates the correct MD file.
  • Loading branch information
AlexanderBlanchardAC committed May 14, 2024
1 parent 204078c commit 8d71472
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 17 deletions.
10 changes: 10 additions & 0 deletions code/web/release_notes/24.06.00.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Aspen Discovery Updates
//mark


- Added option for Explore More bar to be hidden (*AB*)
- Added control over whether images avaialble from the API are used in a Summon Search or whether Aspen created covers only should be used - impacts load speed. (*AB*)
- Limited Summon Search results to those within each libraries subscription. (*AB / JO*)
- Added limit filters for Summon Search - search by whether record is scholarly and whether it is peer reviewed. (*AB / JO*)
### Koha Updates
- When a user has opted out of auto-renewal, do not show auto-renewal message even if the title is otherwise eligible for auto-renewal. (Ticket 131789) (*MDN*)

Expand All @@ -21,3 +27,7 @@
- Mark Noble (MDN)
- Kirstin Kroeger
- Kodi Lein (KL)

- PTFS Europe
- Alexander Blanchard (AB)
- Jacob O'Mara (JO)
17 changes: 0 additions & 17 deletions code/web/sys/DBMaintenance/version_updates/24.05.00.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,23 +123,6 @@ function getUpdates24_05_00(): array {
'ALTER TABLE javascript_snippets ADD COLUMN containsAnalyticsCookies TINYINT(1)'
]
], //Snippet_Contains_Marketing_Cookies

//alexander - PTFS Europe
'summon_ip_addresses' => [
'title' => 'Summon IP address configuration',
'description' => 'Allow configuration of which IP addresses should automatically authenticate with Summon',
'continueOnError' => true,
'sql' => [
'ALTER TABLE ip_lookup ADD COLUMN authenticatedForSummon TINYINT DEFAULT 0',
]
], //summon authentication
'explore_more_section_control' => [
'title' => 'Explore More Section Control',
'description' => 'Allow control over whether the Explore More Section is displayed',
'sql' => [
"ALTER TABLE layout_settings ADD COLUMN showExploreMoreOptions TINYINT DEFAULT '1'",
]
],//control_whether_the_explore_more_box_is_displayed
];
}

Expand Down
17 changes: 17 additions & 0 deletions code/web/sys/DBMaintenance/version_updates/24.06.00.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,23 @@ function getUpdates24_06_00(): array {

//other

//alexander - PTFS Europe
'summon_ip_addresses' => [
'title' => 'Summon IP address configuration',
'description' => 'Allow configuration of which IP addresses should automatically authenticate with Summon',
'continueOnError' => true,
'sql' => [
'ALTER TABLE ip_lookup ADD COLUMN authenticatedForSummon TINYINT DEFAULT 0',
]
], //summon authentication
'explore_more_section_control' => [
'title' => 'Explore More Section Control',
'description' => 'Allow control over whether the Explore More Section is displayed',
'sql' => [
"ALTER TABLE layout_settings ADD COLUMN showExploreMoreOptions TINYINT DEFAULT '1'",
]
],//control_whether_the_explore_more_box_is_displayed


];
}

0 comments on commit 8d71472

Please sign in to comment.