zendesk_apps_support 4.42.0 → 4.43.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: bb1263460bfbe9c194c8fda9e78daf072564bef7a21aedb306de03b559ce5421
|
4
|
+
data.tar.gz: ddabccda72e04ab33db2a26175ca262da66981b683b1a1c5160553d14b59ebfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44bc5bd9f53ed9a6b3d7ddd41fa235056967e5cd53a6b8e6a12cd5cc27e69e4cf3314e8f2b318cc336d182295965aa14f54b29de8d923915b2aec4bc007ea8a3
|
7
|
+
data.tar.gz: faaa6f86ad8e7cf652853817570b8b56b3fc27121a8d6c6451b4c07492582432a7794929d2dbe9890639883a017628ea8eda1c0afda0dcecf114d2ad18f53fa8
|
data/README.md
CHANGED
@@ -15,9 +15,24 @@ Very likely you want to try out your changes with the use of ZAT. See [ZAT](http
|
|
15
15
|
This project uses Rspec, which can be run with `bundle exec rake`.
|
16
16
|
|
17
17
|
## Contribute
|
18
|
-
* Put up a PR into the
|
18
|
+
* Put up a PR into the main branch.
|
19
19
|
* CC and get two +1 from @zendesk/wattle.
|
20
20
|
|
21
|
+
### Releasing a new version
|
22
|
+
A new version is published to RubyGems.org every time a change to `version.rb` is pushed to the `main` branch.
|
23
|
+
In short, follow these steps:
|
24
|
+
1. Update `version.rb`,
|
25
|
+
2. run `bundle lock` to update `Gemfile.lock`,
|
26
|
+
3. merge this change into `main`, and
|
27
|
+
4. look at [the action](https://github.com/zendesk/zendesk_apps_support/actions/workflows/publish.yml) for output.
|
28
|
+
|
29
|
+
To create a pre-release from a non-main branch:
|
30
|
+
1. change the version in `version.rb` to something like `1.2.0.pre.1` or `2.0.0.beta.2`,
|
31
|
+
2. push this change to your branch,
|
32
|
+
3. go to [Actions → “Publish to RubyGems.org” on GitHub](https://github.com/zendesk/zendesk_apps_support/actions/workflows/publish.yml),
|
33
|
+
4. click the “Run workflow” button,
|
34
|
+
5. pick your branch from a dropdown.
|
35
|
+
|
21
36
|
## Bugs
|
22
37
|
Bugs can be reported as an issue here on github, or submitted to support@zendesk.com. By mentioning this project it will assigned to the right team.
|
23
38
|
|
@@ -9,7 +9,7 @@ module ZendeskAppsSupport
|
|
9
9
|
].freeze
|
10
10
|
|
11
11
|
APPLICATION_SECRETS = {
|
12
|
-
# rubocop:disable
|
12
|
+
# rubocop:disable Layout/LineLength
|
13
13
|
'Slack Token' => /(xox[p|b|o|a]-*.[a-z0-9])/,
|
14
14
|
'RSA Private Key' => /-----BEGIN RSA PRIVATE KEY-----/,
|
15
15
|
'SSH Private Key (OpenSSH)' => /-----BEGIN OPENSSH PRIVATE KEY-----/,
|
@@ -45,7 +45,7 @@ module ZendeskAppsSupport
|
|
45
45
|
'Attachment Token Key' => /(attachment_token_key.*.[0-9a-f]{24,72})/,
|
46
46
|
'Password' => /([pP][aA][sS][sS][wW][oO][rR][dD].*.[0-9a-zA-Z+_.-]{4,156})/,
|
47
47
|
'Token' => /([tT][oO][kK][eE][nN]( [:\"=-]|[:\"=-]).*.[0-9a-zA-Z+_.-]{4,156})/
|
48
|
-
# rubocop:enable
|
48
|
+
# rubocop:enable Layout/LineLength
|
49
49
|
}.freeze
|
50
50
|
|
51
51
|
class << self
|
@@ -19,7 +19,7 @@ module ZendeskAppsSupport
|
|
19
19
|
errors << locale_error(file, path_match[1]) << json_error(file) << format_error(file)
|
20
20
|
next unless errors.compact.empty?
|
21
21
|
if file.relative_path == 'translations/en.json'
|
22
|
-
# rubocop:disable
|
22
|
+
# rubocop:disable Layout/LineLength
|
23
23
|
errors.push(*validate_marketplace_content(file, package, opts.fetch(:skip_marketplace_translations, false)))
|
24
24
|
end
|
25
25
|
end.compact
|
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.43.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: 2025-
|
14
|
+
date: 2025-07-15 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: i18n
|
@@ -233,16 +233,16 @@ dependencies:
|
|
233
233
|
name: byebug
|
234
234
|
requirement: !ruby/object:Gem::Requirement
|
235
235
|
requirements:
|
236
|
-
- - "
|
236
|
+
- - ">="
|
237
237
|
- !ruby/object:Gem::Version
|
238
|
-
version:
|
238
|
+
version: '0'
|
239
239
|
type: :development
|
240
240
|
prerelease: false
|
241
241
|
version_requirements: !ruby/object:Gem::Requirement
|
242
242
|
requirements:
|
243
|
-
- - "
|
243
|
+
- - ">="
|
244
244
|
- !ruby/object:Gem::Version
|
245
|
-
version:
|
245
|
+
version: '0'
|
246
246
|
- !ruby/object:Gem::Dependency
|
247
247
|
name: bundler
|
248
248
|
requirement: !ruby/object:Gem::Requirement
|
@@ -334,6 +334,7 @@ files:
|
|
334
334
|
- lib/zendesk_apps_support/validations/templates.rb
|
335
335
|
- lib/zendesk_apps_support/validations/translations.rb
|
336
336
|
- lib/zendesk_apps_support/validations/validation_error.rb
|
337
|
+
- lib/zendesk_apps_support/version.rb
|
337
338
|
homepage: http://github.com/zendesk/zendesk_apps_support
|
338
339
|
licenses:
|
339
340
|
- Apache License Version 2.0
|
@@ -346,14 +347,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
346
347
|
requirements:
|
347
348
|
- - ">="
|
348
349
|
- !ruby/object:Gem::Version
|
349
|
-
version: '2
|
350
|
+
version: '3.2'
|
350
351
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
351
352
|
requirements:
|
352
353
|
- - ">="
|
353
354
|
- !ruby/object:Gem::Version
|
354
355
|
version: 1.3.6
|
355
356
|
requirements: []
|
356
|
-
rubygems_version: 3.
|
357
|
+
rubygems_version: 3.4.19
|
357
358
|
signing_key:
|
358
359
|
specification_version: 4
|
359
360
|
summary: Support to help you develop Zendesk Apps.
|