instagram_connect 0.3.14 → 0.3.15

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: d434793fea3922a883a5c471a9b8ac915fd9495e1d33249c0e8eaaa3a0ad5a57
4
- data.tar.gz: ce5ba440af874f60ffd385c0f1bb9ec9163e133ad9ae82fee572f9a4a31fdd34
3
+ metadata.gz: edc0d4fd65688f722184b96e4ad2bcceb5566d341075edc1ef4bd4d173eee3ea
4
+ data.tar.gz: d64d05665d7f58193b5794a2acdfd491f5fdf6973005a32d1ec8f131df9263b9
5
5
  SHA512:
6
- metadata.gz: a891502b9568dabd9836bc7b33e37823b6552b390b89ded7391d80af5a1c5799ac8486ff8424096f4bedc4497d0f1f5027845f46a7ee169224d19291bb87b00f
7
- data.tar.gz: decbeeebb16e42c4e08213276bc910c3f1930ada5dffcf369a4e93f689afe8a94efed8a0964e9d79a5173616b3664ae60751c33bb997669de06d8165c22bfbc2
6
+ metadata.gz: cee719b6075599bd6d1806e3e48b9b54b31dcfbe8b034f68e07e6ef4bb55ba2361e2c9ae10b904a2f1251618d65f3d5b6248440400148439d96b0d4c8ee9d1f2
7
+ data.tar.gz: 8bc800300bd705896670f5be6c5e096ac972db3a35d19251d0da9d39ee10a9f575f62b9ca2bbb755533e8e85f8e4d37d6aad769d5e59a43557d114741dd69ad0
data/CHANGELOG.md CHANGED
@@ -6,6 +6,16 @@ All notable changes to this project are documented here. The format follows
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.3.15] - 2026-07-28
10
+
11
+ ### Fixed
12
+
13
+ - **A send against an unreadable token fails visibly instead of stranding the bubble.** The send
14
+ job claims the message into "sending" before building a client; the generic token guard then
15
+ logged and stopped, leaving the message spinning forever with no failed state, no retry button
16
+ and no reason on screen. It now fails with `token_unreadable` and the actionable message.
17
+
18
+
9
19
  ## [0.3.14] - 2026-07-28
10
20
 
11
21
  ### Added
@@ -35,6 +35,13 @@ module InstagramConnect
35
35
  end
36
36
 
37
37
  deliver(message, conversation, tag)
38
+ rescue InstagramConnect::TokenUnreadableError => e
39
+ # The generic ApplicationJob rescue logs and stops — right for a sync
40
+ # job, wrong here: this job has already claimed the message into
41
+ # "sending", and swallowing the error leaves that bubble spinning
42
+ # forever with nothing to retry. The operator must see it fail, with
43
+ # the real reason on it.
44
+ fail_message(message, "token_unreadable", e.message)
38
45
  end
39
46
 
40
47
  private
@@ -1,3 +1,3 @@
1
1
  module InstagramConnect
2
- VERSION = "0.3.14"
2
+ VERSION = "0.3.15"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: instagram_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.14
4
+ version: 0.3.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kshitiz Sinha