zendesk_apps_support 4.13.0 → 4.14.0
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: 0e7a7bbb2b3cd4e0356373547e4ec5e12dee5ed6f92dbf2f3277578c92233fbd
|
|
4
|
+
data.tar.gz: b1d0befb200a07e1e869839d02bb99cf51499dcb6c0c17da296b6122a19cd34a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abad2984ae088cf5539d969e6129122e487779a3b324d97cbb2092abd652b949e88db757eff543303b4646e17f0b39670fa9504df275e6901651c46931497eb5
|
|
7
|
+
data.tar.gz: cf7b2313454297f8ddf70292dd71bf1c7072a46fd8fe50ada61e1c17a36c4aa8cf425da7e910fde752ca57bc2c2049da8bdb91735cd9f9f386c78e8a72671d7e
|
data/config/locales/en.yml
CHANGED
|
@@ -80,8 +80,6 @@ en:
|
|
|
80
80
|
blank_location_uri: "%{location} location does not specify a URI."
|
|
81
81
|
invalid_location_uri: "%{uri} is either an invalid location URI, refers
|
|
82
82
|
to a missing asset, or does not use HTTPS."
|
|
83
|
-
signed_setting_uri: The url (%{uri}) cannot use a setting because it is
|
|
84
|
-
a signed url.
|
|
85
83
|
name_as_parameter_name: Can't call a parameter 'name'
|
|
86
84
|
invalid_hidden_parameter:
|
|
87
85
|
one: "%{invalid_params} is set to hidden and cannot be required."
|
|
@@ -194,6 +194,7 @@ parts:
|
|
|
194
194
|
title: "App builder job: invalid URI for an iframe in the manifest. The `manifest` is a setting file, the `signed url` is https://cloud.google.com/storage/docs/access-control/signed-urls"
|
|
195
195
|
value: "The url (%{uri}) cannot use a setting because it is a signed url."
|
|
196
196
|
screenshot: "https://drive.google.com/open?id=1oQmBeGfNT5EDaEH3oEQoNjaCzBw5XAvL"
|
|
197
|
+
obsolete: '2019-04-10'
|
|
197
198
|
- translation:
|
|
198
199
|
key: "txt.apps.admin.error.app_build.name_as_parameter_name"
|
|
199
200
|
title: "App builder job: error message when developer names a parameter 'name'"
|
|
@@ -273,9 +273,7 @@ module ZendeskAppsSupport
|
|
|
273
273
|
def invalid_location_uri_error(package, location_options)
|
|
274
274
|
path = location_options.url
|
|
275
275
|
return nil if path == ZendeskAppsSupport::Manifest::LEGACY_URI_STUB
|
|
276
|
-
if path.include?('{{setting.')
|
|
277
|
-
return location_options.signed ? ValidationError.new(:signed_setting_uri, uri: path) : nil
|
|
278
|
-
end
|
|
276
|
+
return nil if path.include?('{{setting.')
|
|
279
277
|
validation_error = ValidationError.new(:invalid_location_uri, uri: path)
|
|
280
278
|
uri = URI.parse(path)
|
|
281
279
|
unless uri.absolute? ? valid_absolute_uri?(uri) : valid_relative_uri?(package, uri)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zendesk_apps_support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.14.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James A. Rosen
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2019-
|
|
14
|
+
date: 2019-04-05 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: i18n
|