lite-uxid 1.5.0 → 1.5.1

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: 750f76e67f536272728bf9234c0ad126f902dbd429a5b8d518af72f955b607dc
4
- data.tar.gz: 5ac2699b92b9a12944d4cb83fa22b49ef63689567796fae7a563f943535ec86e
3
+ metadata.gz: 5c35d2426c2fffc91f8195a96c94ff26df0c41ffdb79041c5499952c93ccd240
4
+ data.tar.gz: 5a72d11d4fc6d3cec87411a623d072dec4ba1f17b810814b15c543da3a512d7b
5
5
  SHA512:
6
- metadata.gz: 6b6bd1f1eae662b9a9c275f6acea8b7ca1e39d3e21614bdfdb46a648301f9da6f424655895a288eef683607ff94fd18bdcae88c346a2930f60f7748e778755fc
7
- data.tar.gz: 6b9f3c95b1c8bbd801a50bdf8791fdb608702e3c65116af06a2be6a1f9112ceb77f8f9450ae612eb198e2c5645e4b9eaf6f38b88e45b64de431a0087bb637dfd
6
+ metadata.gz: 0a84caf603e6393456ac15d30afaf23fda68eec1480997ce64a54339abefcfc5fadf1afe4fb505f6b3f54119188e3f3405e040771e4a76cc4cae3f8b7f842693
7
+ data.tar.gz: 0d345ae245719fcfe669230925aee58feab58153c978c6089379cc750ae417325d98bd6b660aba695e2df85d540d88a543bfd5a11ce88556fb2ef835f81a860d
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.5.1] - 2024-09-20
10
+ ### Changed
11
+ - Use after commit on create instead of after create
12
+
9
13
  ## [1.5.0] - 2024-09-20
10
14
  ### Added
11
15
  - Added uuid version option
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lite-uxid (1.5.0)
4
+ lite-uxid (1.5.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -126,7 +126,15 @@ Passable options are:
126
126
  Add the following attribute to all corresponding tables.
127
127
 
128
128
  ```ruby
129
- t.string :uxid, index: { unique: true }
129
+ # NOTE: null: true has to be set for HashID's
130
+ # since an ID must exist before it gets created.
131
+ t.string :uxid, null: false, index: { unique: true }
132
+ ```
133
+
134
+ If using UUID and your database supports it:
135
+
136
+ ```ruby
137
+ t.uuid :uxid, null: false, index: { unique: true }
130
138
  ```
131
139
 
132
140
  **Setup**
@@ -8,4 +8,5 @@ Lite::Uxid.configure do |config|
8
8
  config.nanoid_size = 21
9
9
  config.ulid_charset = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
10
10
  config.ulid_size = 26
11
+ config.uuid_version = 4
11
12
  end
@@ -10,7 +10,9 @@ module Lite
10
10
  extend ActiveSupport::Concern
11
11
 
12
12
  included do
13
- after_create :callback_generate_uxid!, if: proc { respond_to?(:uxid) && !uxid? }
13
+ after_commit :callback_generate_uxid!,
14
+ if: proc { respond_to?(:uxid) && !uxid? },
15
+ on: :create
14
16
  end
15
17
 
16
18
  class_methods do
@@ -10,7 +10,8 @@ module Lite
10
10
  extend ActiveSupport::Concern
11
11
 
12
12
  included do
13
- before_create :callback_generate_uxid!, if: proc { respond_to?(:uxid) && !uxid? }
13
+ before_create :callback_generate_uxid!,
14
+ if: proc { respond_to?(:uxid) && !uxid? }
14
15
  end
15
16
 
16
17
  def uxid_prefix
@@ -10,7 +10,8 @@ module Lite
10
10
  extend ActiveSupport::Concern
11
11
 
12
12
  included do
13
- before_create :callback_generate_uxid!, if: proc { respond_to?(:uxid) && !uxid? }
13
+ before_create :callback_generate_uxid!,
14
+ if: proc { respond_to?(:uxid) && !uxid? }
14
15
  end
15
16
 
16
17
  private
@@ -10,7 +10,8 @@ module Lite
10
10
  extend ActiveSupport::Concern
11
11
 
12
12
  included do
13
- before_create :callback_generate_uxid!, if: proc { respond_to?(:uxid) && !uxid? }
13
+ before_create :callback_generate_uxid!,
14
+ if: proc { respond_to?(:uxid) && !uxid? }
14
15
  end
15
16
 
16
17
  private
@@ -3,7 +3,7 @@
3
3
  module Lite
4
4
  module Uxid
5
5
 
6
- VERSION = "1.5.0"
6
+ VERSION = "1.5.1"
7
7
 
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lite-uxid
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez