jason-rails 0.8.2 → 0.8.3

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: 980ecb1d6691b029e8b510d1800d3a1f3e2c5a0d0e94fa45e2eb8e7f8a0c7c47
4
- data.tar.gz: 9d9765a4499d3abc897e0c90ae48d93d5fd40f458624bc31e73cc72dc3539233
3
+ metadata.gz: 9ff1433058a6e3161db56c679cadfcf087a128c0f0b935ee5ac8a1219848c44e
4
+ data.tar.gz: 1d8c542e14dbe8eab26540f8ca33a9e4dde6518cccc0e87b4350389fcbc9c4c0
5
5
  SHA512:
6
- metadata.gz: a618412c7002299fb45b740008dfa4fabaeceaa3880bce31fb53de9ea8a1d72154d882fbdd9f1bed66965b18158f8dff7862926ad78c4fc73a9cf88e3dd28851
7
- data.tar.gz: 9cfbf230f08ec1efffa9907c4e0c48c996ccbbc7eb67a6c4a0e03358a11b935942dfa2e4f101aa50e66ddba79bac89586c2ff92898076b0cc0e6abe9ddc95704
6
+ metadata.gz: 914c935aa960e708a60c309412a503b11e61d6e6f3f0a6011d71021e2a3ed7dcdf5648ac2bfbd5e7bc6ca895005a1e59b38627ab82dc6e8307817f26d8aa908b
7
+ data.tar.gz: e342c97211c88fd28ad01bf79fadebfd498595f9d467438d90fb85e7589938e2d629eb624a50a7fbe2501e62f13706b72ea8c7a65b4021305c6ad66e6e7b4bbc
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v0.8.3
2
+ - Fix lock bug on checking dupe schema
3
+
1
4
  ## v0.8.2
2
5
  - Don't rebuild cache during schema change detection - just wipe it and let cold cache handling work as intended
3
6
 
@@ -1,4 +1,4 @@
1
- class Jason::PusherController < ApplicationController
1
+ class Jason::PusherController < ApplicationController
2
2
  skip_before_action :verify_authenticity_token
3
3
 
4
4
  def auth
data/client/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jamesr2323/jason",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "module": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "scripts": {
data/lib/jason/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jason
2
- VERSION = "0.8.2"
2
+ VERSION = "0.8.3"
3
3
  end
data/lib/jason.rb CHANGED
@@ -40,7 +40,7 @@ module Jason
40
40
  return if $PROGRAM_NAME == '-e' || ActiveRecord::Base.connection.migration_context.needs_migration?
41
41
 
42
42
  # Check if the schema has changed since last time app was started. If so, do some work to ensure cache contains the correct data
43
- got_lock = $redis_jason.set('jason:schema:lock', nx: true, ex: 3600) # Basic lock mechanism for multi-process environments
43
+ got_lock = $redis_jason.set('jason:schema:lock', '1', nx: true, ex: 3600) # Basic lock mechanism for multi-process environments
44
44
  return if !got_lock
45
45
 
46
46
  previous_schema = JSON.parse($redis_jason.get('jason:last_schema') || '{}')
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.2
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Rees
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-12 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails