fastlane-plugin-stream_actions 0.4.6 → 0.4.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '055284ce7665f25768ac9f5fae0b7e09c35b971f9dd7b1b15f54eb90d257d638'
|
|
4
|
+
data.tar.gz: bf845ed3db8e5b1cff88acc700190ab9735e0349dbde1bc1f2d31fc31644c3d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38f2c907628a4ea73b7150f91106f1f89eb5e2d9913ba7fefc4c2f61116a48356556c708e6a2ce107196b422cd8f1ad7d8f6f175e969bd9d052bd51cf600e5d2
|
|
7
|
+
data.tar.gz: 3c902fe10e1676a649653ae6e35f91b1c22665fb06a0f9744a8e4e37f48aaf2dc0e06fe2107e1b830c7e9b362b6f4051e6c5574769125ab9dca4a858b689f0ac
|
|
@@ -43,10 +43,14 @@ module Fastlane
|
|
|
43
43
|
changelog =
|
|
44
44
|
if params[:use_changelog]
|
|
45
45
|
version = params[:is_manual_upload] ? 'Upcoming' : params[:app_version]
|
|
46
|
+
# Strip variation selectors and ZWJ: pilot removes emoji from the changelog, but leaves
|
|
47
|
+
# these invisible companions behind, and App Store Connect rejects them in whatsNew
|
|
46
48
|
other_action.read_changelog(
|
|
47
49
|
version: version,
|
|
48
50
|
changelog_path: params[:changelog_path]
|
|
49
|
-
).gsub(/^### (.+)$/) { $1.upcase }
|
|
51
|
+
).gsub(/^### (.+)$/) { $1.upcase }
|
|
52
|
+
.gsub(%r{\[(#\d+)\]\(https?://[^)]+\)}, '(\1)')
|
|
53
|
+
.gsub(/[\u{FE0E}\u{FE0F}\u{200D}]/, '')
|
|
50
54
|
else
|
|
51
55
|
testflight_instructions(params)
|
|
52
56
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-stream_actions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GetStream
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-08-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xctest_list
|