simplepush 0.7.2 → 0.7.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fb0f66178dc31ac5ee37f76cc85b08e90199ba6e69074ead6a95dce0db9c1dd5
4
- data.tar.gz: 553c08124045793c468a03abced17c478fb906c876c7209e8e61ea9b03b4dbc2
3
+ metadata.gz: 944a922fb181faca66ccccba275e8ba657caeab4b7bc76106e08a11c1ec82028
4
+ data.tar.gz: 40ccc6113776962b51b9e09cd24274317a162cd6101f58e72d8cb276c06209e1
5
5
  SHA512:
6
- metadata.gz: bb19e010fd9d5665e68fcf0663d209c9f3da4fd4144152eca8baf97dc16b860b6ad3eb025b646f318c1169acb1f401d0a626966270ce6affd542b23b62cde7f1
7
- data.tar.gz: 4a51eb699222004faec8afe35564638026b074f87e5842d2522cc8bfdb8d33548f9374447dade7106837e67bc309a9429cf517de9dcc2ea0fb6d2f66b01e0007
6
+ metadata.gz: cdc4c3d2d9150792feb3f88113a8b7d6709a119cda4f4234613e2b58126e285acb0dae8c746c6ff15e4569dd37d7c00675d623b1ae28c2ae9047b161ccda3baf
7
+ data.tar.gz: c3f2ae9b609b76b9b03834d8d43167c9767b46c3c8abd489288797743b8dab4065b3ded7065bab41ee4502d30f151c7989960bfb6bc69ad66cc809d856f45732
data/Gemfile.lock CHANGED
@@ -1,17 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simplepush (0.7.2)
4
+ simplepush (0.7.3)
5
5
  httparty
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- async (1.31.0)
10
+ async (2.6.5)
11
11
  console (~> 1.10)
12
- nio4r (~> 2.3)
12
+ fiber-annotation
13
+ io-event (~> 1.1)
13
14
  timers (~> 4.1)
14
- console (1.19.0)
15
+ console (1.23.3)
15
16
  fiber-annotation
16
17
  fiber-local
17
18
  fiber-annotation (0.2.0)
@@ -19,9 +20,9 @@ GEM
19
20
  httparty (0.21.0)
20
21
  mini_mime (>= 1.0.0)
21
22
  multi_xml (>= 0.5.2)
23
+ io-event (1.3.3)
22
24
  mini_mime (1.1.5)
23
25
  multi_xml (0.6.0)
24
- nio4r (2.5.9)
25
26
  rake (13.1.0)
26
27
  timers (4.3.5)
27
28
 
@@ -34,4 +35,4 @@ DEPENDENCIES
34
35
  simplepush!
35
36
 
36
37
  BUNDLED WITH
37
- 2.4.20
38
+ 2.5.1
data/README.md CHANGED
@@ -143,6 +143,7 @@ The following is a sample of the query as it is produced:
143
143
  - 0.7.0 Added support for [Exception Notification Gem](https://github.com/smartinez87/exception_notification)
144
144
  - 0.7.1 Fixed incorrect content-type handling.
145
145
  - 0.7.2 Bump dependencies because of vulnerability in httparty
146
+ - 0.7.3 Fix OpenSSL cipher needing key again under Ruby >= 3.0, bump dependencies
146
147
 
147
148
  ## Contributing
148
149
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Simplepush
4
- VERSION = "0.7.2"
4
+ VERSION = "0.7.3"
5
5
  end
data/lib/simplepush.rb CHANGED
@@ -55,6 +55,7 @@ class Simplepush
55
55
 
56
56
  if title
57
57
  cipher.encrypt # Restart cipher
58
+ cipher.key = @cipher_key
58
59
  payload[:title] = Base64.urlsafe_encode64(cipher.update(payload[:title]) + cipher.final)
59
60
  end
60
61
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplepush
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Oezbek
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-31 00:00:00.000000000 Z
11
+ date: 2023-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  requirements: []
70
- rubygems_version: 3.4.20
70
+ rubygems_version: 3.4.10
71
71
  signing_key:
72
72
  specification_version: 4
73
73
  summary: Ruby SimplePush.io API client (unofficial)