message_bus 4.3.4 → 4.3.6

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: 76a5b68eec4b7cfbe611e8b2a1fa0d60ac5d48dc33594419613ff07579cabe63
4
- data.tar.gz: 9164fb39f5850d69ff83ce373ea398e9cd4086d9edc319c62c36f1bbdd1ffd99
3
+ metadata.gz: a4df966b88978a23a9caeb38eec64b374d66ce1e364c419d1ac04c722dba36a7
4
+ data.tar.gz: 7bb707ad44b5fb96d8682ed25993d535700a1f8617e3af70ead34c5514b842dc
5
5
  SHA512:
6
- metadata.gz: 6d9b70b183065bc17178443c8e008b921d3952b3ad9b45c3d30b2b19c388e6b7d9311537d654c0523449926918c797d9a4a5156f1b5631976b605e48b8878444
7
- data.tar.gz: 7ae3c8104dcfb41af4b58d4baad29371307cbbf13bb6de6e364cddb48b6a271b147a55c123068a74537789dff7ba414a4fa5b4e1953893a5af6b29188ba85906
6
+ metadata.gz: 600284061dbb261638b47f69535ddf937eaea43038bfce18495be6bcaa7550b9ce910bb32221ed8773e62a855b4adcc829131d9f74f0115d4777d25d451bf11f
7
+ data.tar.gz: 2ec82be8cf27b4eca3da26e7d122a9a7640d8294ffe2212a3f13c0995238276c3ef5519c03869bbb8ce584651d91620bcf464c56ca5017eaf239237a70deee2b
data/CHANGELOG CHANGED
@@ -1,5 +1,16 @@
1
+ 28-06-2023
2
+
3
+ - Version 4.3.6
4
+
5
+ - Don't error when trying to write a message to a closed client take 2
6
+
1
7
  20-06-2023
2
8
 
9
+ - Version 4.3.5
10
+
11
+ - Revert "Make headers all lowercase in rack middleware (#328)".
12
+ This seems to have broken MessageBus in production so reverting for now.
13
+
3
14
  - Version 4.3.4
4
15
 
5
16
  - Revert "FIX: Don't error when trying to write a message to a closed client (#336)".
@@ -278,7 +278,7 @@ class MessageBus::Client
278
278
  @async_response << data
279
279
  @async_response << postfix
280
280
  @async_response << NEWLINE
281
- else
281
+ elsif @io
282
282
  @io.write(chunk_length.to_s(16) << NEWLINE << data << postfix << NEWLINE)
283
283
  end
284
284
  end
@@ -82,10 +82,10 @@ class MessageBus::Rack::Middleware
82
82
  return [404, {}, ["not found"]] unless client_id
83
83
 
84
84
  headers = {}
85
- headers["cache-control"] = "must-revalidate, private, max-age=0"
86
- headers["content-type"] = "application/json; charset=utf-8"
87
- headers["pragma"] = "no-cache"
88
- headers["expires"] = "0"
85
+ headers["Cache-Control"] = "must-revalidate, private, max-age=0"
86
+ headers["Content-Type"] = "application/json; charset=utf-8"
87
+ headers["Pragma"] = "no-cache"
88
+ headers["Expires"] = "0"
89
89
 
90
90
  if @bus.extra_response_headers_lookup
91
91
  @bus.extra_response_headers_lookup.call(env).each do |k, v|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MessageBus
4
- VERSION = "4.3.4"
4
+ VERSION = "4.3.6"
5
5
  end
@@ -99,6 +99,12 @@ describe MessageBus::Client do
99
99
  chunk2.length.must_equal 0
100
100
  end
101
101
 
102
+ it "does not raise an error when trying to write a message to a closed client using chunked encoding" do
103
+ @client.use_chunked = true
104
+ assert(@client.closed?)
105
+ @client << MessageBus::Message.new(1, 1, "/test", "test")
106
+ end
107
+
102
108
  it "does not bleed data across sites" do
103
109
  @client.site_id = "test"
104
110
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: message_bus
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.4
4
+ version: 4.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Saffron
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-20 00:00:00.000000000 Z
11
+ date: 2023-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack