simplepush 0.7.3 → 0.7.4

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: 944a922fb181faca66ccccba275e8ba657caeab4b7bc76106e08a11c1ec82028
4
- data.tar.gz: 40ccc6113776962b51b9e09cd24274317a162cd6101f58e72d8cb276c06209e1
3
+ metadata.gz: 353f24a0df585e1562d5fd230ec617b6dd8bf00eeb12276abdd6b28dedab11fd
4
+ data.tar.gz: d0621546fa701d920ae2402897556656bea49fc4750315d8c676489d5c3c0af3
5
5
  SHA512:
6
- metadata.gz: cdc4c3d2d9150792feb3f88113a8b7d6709a119cda4f4234613e2b58126e285acb0dae8c746c6ff15e4569dd37d7c00675d623b1ae28c2ae9047b161ccda3baf
7
- data.tar.gz: c3f2ae9b609b76b9b03834d8d43167c9767b46c3c8abd489288797743b8dab4065b3ded7065bab41ee4502d30f151c7989960bfb6bc69ad66cc809d856f45732
6
+ metadata.gz: c11593e4687e147deb35e3b22c640311071f82d6a2f79cb6105e7720e9668400abc31c84bdd34ea20fcb12c190fb380ef94d22cb2551e0b42c49b30684077d5f
7
+ data.tar.gz: d27ab08b731c3dabca0cea3a78900f317080999e9388cede3b36443ca42e485f247f2ea1a1fd04edd57083e7334e1c52bbd88f8caefdda79b4485326b7c94772
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simplepush (0.7.3)
4
+ simplepush (0.7.4)
5
5
  httparty
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -144,6 +144,7 @@ The following is a sample of the query as it is produced:
144
144
  - 0.7.1 Fixed incorrect content-type handling.
145
145
  - 0.7.2 Bump dependencies because of vulnerability in httparty
146
146
  - 0.7.3 Fix OpenSSL cipher needing key again under Ruby >= 3.0, bump dependencies
147
+ - 0.7.4 Fix message length restrictions for Exception Notification
147
148
 
148
149
  ## Contributing
149
150
 
@@ -32,6 +32,7 @@ module ExceptionNotifier
32
32
  MAX_TITLE_LENGTH = 120
33
33
  MAX_VALUE_LENGTH = 300
34
34
  MAX_BACKTRACE_SIZE = 3
35
+ MAX_TOTAL_SIZE_BYTES = 1024
35
36
 
36
37
  attr_reader :exception,
37
38
  :options
@@ -71,7 +72,21 @@ module ExceptionNotifier
71
72
  text << formatted_request if request
72
73
  text << formatted_session if request
73
74
 
74
- text.join("\n------------------\n")
75
+ text = text.join("\n------------------\n")
76
+
77
+ if text.bytesize >= MAX_TOTAL_SIZE_BYTES
78
+ # puts "Text is too long (#{text.bytesize} bytes >= MAX_TOTAL_SIZE), need to truncate"
79
+
80
+ # if truncate bytes is available
81
+ if text.respond_to?(:truncate_bytes) && false
82
+ text = text.truncate_bytes(MAX_TOTAL_SIZE_BYTES)
83
+ else
84
+ text = text[0...(MAX_TOTAL_SIZE_BYTES/2)]
85
+ end
86
+ # puts "Text after truncate is #{text.bytesize} bytes <= MAX_TOTAL_SIZE"
87
+ end
88
+
89
+ text
75
90
  end
76
91
 
77
92
  def formatted_key_value(key, value)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Simplepush
4
- VERSION = "0.7.3"
4
+ VERSION = "0.7.4"
5
5
  end
data/lib/simplepush.rb CHANGED
@@ -30,6 +30,8 @@ class Simplepush
30
30
  #
31
31
  # This method is blocking.
32
32
  #
33
+ # Returns the response object from Httparty.
34
+ #
33
35
  def send(title, message, event = nil)
34
36
  raise "Key and message argument must be set" unless message
35
37
 
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.3
4
+ version: 0.7.4
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-12-21 00:00:00.000000000 Z
11
+ date: 2024-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty