jason-rails 0.8.1 → 0.8.3

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: 2feafe450ab2dbdf8716f672f67b89edd8792412c7c2ab56b6f44e68171bb5f3
4
- data.tar.gz: cce30e46ce1c392f836260c9f0b0ee6fc35fe7e98d1257f933afc434aa509299
3
+ metadata.gz: 9ff1433058a6e3161db56c679cadfcf087a128c0f0b935ee5ac8a1219848c44e
4
+ data.tar.gz: 1d8c542e14dbe8eab26540f8ca33a9e4dde6518cccc0e87b4350389fcbc9c4c0
5
5
  SHA512:
6
- metadata.gz: f1e13ed682fbd187ccd5f196192a6374a205da2d75f43e79a7653a4db1bd089c65f1a1d72939d3358e916802714814fdf3d4bc32c12760102b4f87fa22c8f6a9
7
- data.tar.gz: e26a2acf832d9ae9b72ab299fb705d95680bf8c8d91f5c9b44e6e9ffb639ac6010a4e9460692e21a06500a46989e22e04e7032fc1b22a088d15d896b9e6f569a
6
+ metadata.gz: 914c935aa960e708a60c309412a503b11e61d6e6f3f0a6011d71021e2a3ed7dcdf5648ac2bfbd5e7bc6ca895005a1e59b38627ab82dc6e8307817f26d8aa908b
7
+ data.tar.gz: e342c97211c88fd28ad01bf79fadebfd498595f9d467438d90fb85e7589938e2d629eb624a50a7fbe2501e62f13706b72ea8c7a65b4021305c6ad66e6e7b4bbc
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## v0.8.3
2
+ - Fix lock bug on checking dupe schema
3
+
4
+ ## v0.8.2
5
+ - Don't rebuild cache during schema change detection - just wipe it and let cold cache handling work as intended
6
+
1
7
  ## v0.8.1
2
8
  - Allow setting the Sidekiq queue name for Jason payloads
3
9
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jason-rails (0.7.5)
4
+ jason-rails (0.8.1)
5
5
  connection_pool (>= 2.2.3)
6
6
  jsondiff
7
7
  rails (>= 5)
@@ -92,10 +92,10 @@ GEM
92
92
  mimemagic (0.3.10)
93
93
  nokogiri (~> 1)
94
94
  rake
95
- mini_mime (1.1.0)
95
+ mini_mime (1.1.2)
96
96
  mini_portile2 (2.5.0)
97
97
  minitest (5.14.3)
98
- nio4r (2.5.7)
98
+ nio4r (2.5.8)
99
99
  nokogiri (1.11.1)
100
100
  mini_portile2 (~> 2.5.0)
101
101
  racc (~> 1.4)
@@ -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.0",
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.1"
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') || '{}')
@@ -50,12 +50,9 @@ module Jason
50
50
  puts "Config changed for #{model}"
51
51
  puts "Old config was #{previous_schema[model]}"
52
52
  puts "New config is #{config}"
53
- puts "Rebuilding cache for #{model}"
53
+ puts "Wiping cache for #{model}"
54
54
 
55
- # This is necessary to ensure all Rails methods have been added to model before we attempt to cache.
56
- Rails.configuration.after_initialize do
57
- model.classify.constantize.cache_all
58
- end
55
+ $redis_jason.del("jason:cache:#{model}")
59
56
  puts "Done"
60
57
  end
61
58
  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.1
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-08-23 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