Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch default from 11.6 to 11.4 #387

Merged
merged 1 commit into from
Nov 19, 2024
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
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*

Expand Down
2 changes: 1 addition & 1 deletion resources/client_install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion resources/repository.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion resources/server_install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/cookbooks/test/attributes/default.rb
Original file line number Diff line number Diff line change
@@ -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'