Skip to content

Commit

Permalink
Merge pull request #4536 from consul/release_1.3.1
Browse files Browse the repository at this point in the history
Release version 1.3.1
  • Loading branch information
javierm committed Jun 3, 2021
2 parents 3e921ec + 4d314b0 commit e9fb95d
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
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.3.1](https://github.com/consul/consul/tree/1.3.1) (2021-06-03)

[Full Changelog](https://github.com/consul/consul/compare/1.3.0...1.3.1)

### Added

- **Translations:** Update translations from Crowdin [\#4537](https://github.com/consul/consul/pull/4537)

### Changed

- **Maintenance-Deployment:** Upgrade Ruby to version 2.6.7 [\#4524](https://github.com/consul/consul/pull/4524) and [\#4535](https://github.com/consul/consul/pull/4535)
- **Maintenance-Gems:** Bump nokogiri from 1.11.2 to 1.11.6 [\#4529](https://github.com/consul/consul/pull/4529)
- **Maintenance-Gems:** Bump rails from 5.2.4.5 to 5.2.4.6 [\#4525](https://github.com/consul/consul/pull/4525)
- **Maintenance-Gems:** Bump puma from 4.3.6 to 4.3.8 [\#4519](https://github.com/consul/consul/pull/4519)
- **Maintenance-Gems:** Bump rexml from 3.2.4 to 3.2.5 [\#4500](https://github.com/consul/consul/pull/4500)

### Fixed

- **Accessibility:** Increase menu button touch area on small screens [\#4503](https://github.com/consul/consul/pull/4503)
- **Admin:** Fix crash destroying budget with administrators [\#4528](https://github.com/consul/consul/pull/4528)
- **Admin:** Fix crash with budgets with disabled current phase [\#4522](https://github.com/consul/consul/pull/4522)
- **Legislation:** Validate process dates depending on enabled phases [\#4521](https://github.com/consul/consul/pull/4521)
- **Maintenance:** Fix order loading custom styles [\#4515](https://github.com/consul/consul/pull/4515)
- **Maintenance-Specs:** Fix header card factory [\#4512](https://github.com/consul/consul/pull/4512)
- **Translations:** Fix exception using locales with no help images [\#4518](https://github.com/consul/consul/pull/4518)

## [1.3.0](https://github.com/consul/consul/tree/1.3.0) (2021-04-27)

[Full Changelog](https://github.com/consul/consul/compare/1.2.0...1.3.0)
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ if Rails.env.development?
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.user = "consul"
config.project = "consul"
config.since_tag = "1.2.0"
config.future_release = "1.3.0"
config.since_tag = "1.3.0"
config.future_release = "1.3.1"
config.base = "#{Rails.root}/CHANGELOG.md"
config.token = Rails.application.secrets.github_changelog_token
config.issues = false
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/installation_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def details

def consul_installation_details
{
release: "1.3.0"
release: "1.3.1"
}.merge(features: settings_feature_flags)
end

Expand Down
3 changes: 1 addition & 2 deletions lib/tasks/consul.rake
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
namespace :consul do
desc "Runs tasks needed to upgrade to the latest version"
task execute_release_tasks: ["settings:rename_setting_keys",
"settings:add_new_settings",
"execute_release_1.3.0_tasks"]
"settings:add_new_settings"]

desc "Runs tasks needed to upgrade from 1.2.0 to 1.3.0"
task "execute_release_1.3.0_tasks": [
Expand Down

0 comments on commit e9fb95d

Please sign in to comment.