Skip to content

Commit c2802fe

Browse files
Merge pull request #480 from wordpress-mobile/fix/locales-type-hotfix
Revert ConfigItem type to `is_string: false`
2 parents d09d8c6 + 8277b68 commit c2802fe

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ _None_
2020

2121
_None_
2222

23+
## 7.1.2
24+
25+
### Bug Fixes
26+
27+
- Revert the `gp_downloadmetadata_action` `locales` item type from `type: Hash` to `is_string: false`. [#480]
28+
2329
## 7.1.1
2430

2531
### Internal Changes

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
fastlane-plugin-wpmreleasetoolkit (7.1.1)
4+
fastlane-plugin-wpmreleasetoolkit (7.1.2)
55
activesupport (>= 6.1.7.1)
66
bigdecimal (~> 1.4)
77
buildkit (~> 1.5)

lib/fastlane/plugin/wpmreleasetoolkit/actions/common/gp_downloadmetadata_action.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def self.available_options
5959
FastlaneCore::ConfigItem.new(key: :locales,
6060
env_name: 'FL_DOWNLOAD_METADATA_LOCALES',
6161
description: 'The hash with the GlotPress locale and the project locale association',
62-
type: Hash),
62+
is_string: false),
6363
FastlaneCore::ConfigItem.new(key: :source_locale,
6464
env_name: 'FL_DOWNLOAD_METADATA_SOURCE_LOCALE',
6565
description: 'The source locale code',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Fastlane
22
module Wpmreleasetoolkit
3-
VERSION = '7.1.1'
3+
VERSION = '7.1.2'
44
end
55
end

0 commit comments

Comments
 (0)