urbanairship 9.1.0 → 9.1.1
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 +4 -4
- data/.github/workflows/release.yaml +2 -3
- data/CHANGELOG +5 -0
- data/docs/push.rst +1 -0
- data/lib/urbanairship/push/payload.rb +3 -2
- data/lib/urbanairship/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ae923395b8a39ca5c21187a0f20a1a722e493758dd39a6896345a6982469d3a
|
|
4
|
+
data.tar.gz: 71f45b035e2db2726b77a543e15c1538c95d88def506586413f61486f48e9b0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88ad9d5d947d5c545d14626cc5c02704f019077842f0349d1975c498419b812ec89f07dbd28bd91d8c36394132b42a06ac6998264b67d71bfb051416ce8185a4
|
|
7
|
+
data.tar.gz: dfefec7dbe7349ecba36d935fab3ba1a0a88290ce527fc1b27ce47bd036b5f5526f238d7be7e5170160fe349f2dc313387e8f787f6bfebfa8a4e7cfb72c004e3
|
|
@@ -6,7 +6,6 @@ on:
|
|
|
6
6
|
|
|
7
7
|
jobs:
|
|
8
8
|
test:
|
|
9
|
-
|
|
10
9
|
runs-on: ubuntu-latest
|
|
11
10
|
|
|
12
11
|
strategy:
|
|
@@ -27,5 +26,5 @@ jobs:
|
|
|
27
26
|
uses: cadwallion/publish-rubygems-action@master
|
|
28
27
|
env:
|
|
29
28
|
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
|
|
30
|
-
|
|
31
|
-
RELEASE_COMMAND: rake release
|
|
29
|
+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
30
|
+
RELEASE_COMMAND: rake release
|
data/CHANGELOG
CHANGED
data/docs/push.rst
CHANGED
|
@@ -218,6 +218,7 @@ platform-specific alerts, and we set a number of other platform-specific options
|
|
|
218
218
|
extra: { 'key' => 'value', 'key2' => 'value2' },
|
|
219
219
|
expiry: '2019-01-01 12:45:00',
|
|
220
220
|
category: 'category_name',
|
|
221
|
+
thread_id: 'thread_test',
|
|
221
222
|
interactive: UA.interactive(
|
|
222
223
|
type: 'ua_share',
|
|
223
224
|
button_actions: {
|
|
@@ -34,7 +34,7 @@ module Urbanairship
|
|
|
34
34
|
def ios(alert: nil, badge: nil, sound: nil, content_available: nil,
|
|
35
35
|
extra: nil, expiry: nil, priority: nil, category: nil,
|
|
36
36
|
interactive: nil, mutable_content: nil, media_attachment: nil,
|
|
37
|
-
title: nil, subtitle: nil, collapse_id: nil)
|
|
37
|
+
title: nil, subtitle: nil, collapse_id: nil, thread_id: nil)
|
|
38
38
|
compact_helper({
|
|
39
39
|
alert: alert,
|
|
40
40
|
badge: badge,
|
|
@@ -49,7 +49,8 @@ module Urbanairship
|
|
|
49
49
|
media_attachment: media_attachment,
|
|
50
50
|
title: title,
|
|
51
51
|
subtitle: subtitle,
|
|
52
|
-
collapse_id: collapse_id
|
|
52
|
+
collapse_id: collapse_id,
|
|
53
|
+
thread_id: thread_id
|
|
53
54
|
})
|
|
54
55
|
end
|
|
55
56
|
|
data/lib/urbanairship/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: urbanairship
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.1.
|
|
4
|
+
version: 9.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Airship
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-10-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -215,7 +215,7 @@ licenses:
|
|
|
215
215
|
- Apache-2.0
|
|
216
216
|
metadata:
|
|
217
217
|
allowed_push_host: https://rubygems.org
|
|
218
|
-
post_install_message:
|
|
218
|
+
post_install_message:
|
|
219
219
|
rdoc_options: []
|
|
220
220
|
require_paths:
|
|
221
221
|
- lib
|
|
@@ -230,8 +230,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
230
230
|
- !ruby/object:Gem::Version
|
|
231
231
|
version: '0'
|
|
232
232
|
requirements: []
|
|
233
|
-
rubygems_version: 3.
|
|
234
|
-
signing_key:
|
|
233
|
+
rubygems_version: 3.4.10
|
|
234
|
+
signing_key:
|
|
235
235
|
specification_version: 4
|
|
236
236
|
summary: Ruby Gem for using the Airship API
|
|
237
237
|
test_files: []
|