From f5ef417eddccfc369d1d7362f9222fee3475ab33 Mon Sep 17 00:00:00 2001 From: Lance Albertson Date: Mon, 18 Nov 2024 08:53:16 -0800 Subject: [PATCH] Switch default from 11.6 to 11.4 11.6 is a development release, 11.4 is the LTS release Signed-off-by: Lance Albertson --- CHANGELOG.md | 7 ++++--- resources/client_install.rb | 2 +- resources/repository.rb | 2 +- resources/server_install.rb | 2 +- test/cookbooks/test/attributes/default.rb | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5b228..89bc1a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased -## 6.1.1 - *2024-11-18* +- Switch default from 11.6 to 11.4 + - 11.6 is a development release, 11.4 is the LTS release -Standardise files with files in sous-chefs/repo-management +## 6.1.1 - *2024-11-18* -Standardise files with files in sous-chefs/repo-management +- Standardise files with files in sous-chefs/repo-management ## 6.1.0 - *2024-11-15* diff --git a/resources/client_install.rb b/resources/client_install.rb index dbb578f..f1c957f 100644 --- a/resources/client_install.rb +++ b/resources/client_install.rb @@ -18,7 +18,7 @@ provides :mariadb_client_install unified_mode true -property :version, String, default: '10.11' +property :version, String, default: '11.4' property :setup_repo, [true, false], default: true property :package_action, [:install, :upgrade], default: :install diff --git a/resources/repository.rb b/resources/repository.rb index 51d3370..a41a993 100644 --- a/resources/repository.rb +++ b/resources/repository.rb @@ -18,7 +18,7 @@ provides :mariadb_repository unified_mode true -property :version, String, default: '11.6' +property :version, String, default: '11.4' property :enable_mariadb_org, [true, false], default: true property :yum_gpg_key_uri, String, default: 'https://mirror.mariadb.org/yum/RPM-GPG-KEY-MariaDB' property :apt_gpg_keyserver, String, default: 'keyserver.ubuntu.com' diff --git a/resources/server_install.rb b/resources/server_install.rb index 7ef7894..21f507f 100644 --- a/resources/server_install.rb +++ b/resources/server_install.rb @@ -20,7 +20,7 @@ include MariaDBCookbook::Helpers -property :version, String, default: '10.11' +property :version, String, default: '11.4' property :setup_repo, [true, false], default: true property :password, [String, nil], default: 'generate' property :install_sleep, Integer, default: 5, desired_state: false diff --git a/test/cookbooks/test/attributes/default.rb b/test/cookbooks/test/attributes/default.rb index 4a40ae8..68b02e1 100644 --- a/test/cookbooks/test/attributes/default.rb +++ b/test/cookbooks/test/attributes/default.rb @@ -1,2 +1,2 @@ # Which default MariaDB version to use for testing (can be overridden in kitchen.yml) -default['mariadb_server_test_version'] = '11.6' +default['mariadb_server_test_version'] = '11.4'