jason-rails 0.8.4 → 0.8.6

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: d1459a38f9838d91a9e0c85f5993bcc8d49e5ec123261afb84ac344a5ab3e248
4
- data.tar.gz: c6f0176ff3d0f7c25c6b3046cb683d9d549eff89d4015e371cd29a5fc8f68efa
3
+ metadata.gz: ff84a9e2b7cc044abeaa159eda7993a6296035403db2e86292f3919a1d462c6c
4
+ data.tar.gz: eda4dae9f235460e7566a18f178c3f569c76a03cc68762a79a2bbfa52ca51ba4
5
5
  SHA512:
6
- metadata.gz: 55e9e8e7421fd503b8b1941569846f9265f0ae16bd24c45905cf84e44443718c1f0175fb9c4893498dac4fd1b510b78b6d0fb2845acda0b441dc4afbb6bcffc7
7
- data.tar.gz: 1afd0c07a6829a85c0fbb6152cb13225a63ae19ea786fab28c773116c6e739bb8b25a8714c5681a8a8cada9a2aa4565b327972749ec768d5de5b0ec8f3b86c60
6
+ metadata.gz: fe0da2a182cabbff402b508f6155d97e6e4aad4985b52b1af294b45dbea43d0604659fa7018becd638134333bdab2b1b24ca9d5a67478e442770976d0275e225
7
+ data.tar.gz: fe1c7c4b0e068efacc6c3734a5fe545cbabeaa6d68f1f680ed2455ebb02832eaccaf5442f2d0315091d44b7d0aa2d62773245e6df6b9f66d1c36b4f36cbda53c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v0.8.6
2
+ - Fix config usage, to allow changing websocket provider
3
+
1
4
  ## v0.8.4
2
5
  - Fix implicit kwargs that fail in Ruby 3+
3
6
 
@@ -63,4 +66,4 @@ act.posts.add({ name: 'new post' })
63
66
  ## v0.6.5
64
67
  - Added `reset!` and `reset!(hard: true)` methods to `Subscription`. Reset will load the IDs that should be part of the subscription from the database, and ensure that the graph matches those. It then re-broadcasts the payloads to all connected clients. Hard reset will do the same, but also clear all cached IDs and subscription hooks on instances - this is equivalent from starting from scratch.
65
68
  - Added `enforce: boolean` option to GraphHelper
66
- - When subscriptions are re-activated they now set the IDs with `enforce: true`, as there could be conditions where updates that were made while a subscription was not active would not be properly registered.
69
+ - When subscriptions are re-activated they now set the IDs with `enforce: true`, as there could be conditions where updates that were made while a subscription was not active would not be properly registered.
data/client/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jamesr2323/jason",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "module": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "scripts": {
@@ -6,12 +6,20 @@ import _ from 'lodash'
6
6
  export default function pusherAdapter(jasonConfig, handlePayload, dispatch) {
7
7
  const consumerId = uuidv4()
8
8
 
9
- const { pusherKey, pusherRegion, pusherChannelPrefix } = jasonConfig
10
- const pusher = new Pusher(pusherKey, {
11
- cluster: 'eu',
9
+ const { pusherHost, pusherKey, pusherRegion, pusherChannelPrefix } = jasonConfig
10
+ let config = {
11
+ cluster: pusherRegion,
12
12
  forceTLS: true,
13
13
  authEndpoint: '/jason/api/pusher/auth'
14
- })
14
+ }
15
+ if (pusherHost) {
16
+ config = {
17
+ ...config,
18
+ wsHost: pusherHost,
19
+ httpHost: pusherHost,
20
+ }
21
+ }
22
+ const pusher = new Pusher(pusherKey, config)
15
23
  pusher.connection.bind('state_change', ({ current }) => {
16
24
  if (current === 'connected') {
17
25
  dispatch({ type: 'jason/upsert', payload: { connected: true } })
data/lib/jason/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jason
2
- VERSION = "0.8.4"
2
+ VERSION = "0.8.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jason-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.4
4
+ version: 0.8.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Rees
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-31 00:00:00.000000000 Z
11
+ date: 2023-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -262,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
262
262
  - !ruby/object:Gem::Version
263
263
  version: '0'
264
264
  requirements: []
265
- rubygems_version: 3.1.4
265
+ rubygems_version: 3.4.1
266
266
  signing_key:
267
267
  specification_version: 4
268
268
  summary: Reactive user interfaces with minimal boilerplate, using Rails + Redux