positioning 0.4.3 → 0.4.5

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: c5d59cea57ca298c21e0628f0127b5a265dc10c511964ee9d8bd68509e05d1c5
4
- data.tar.gz: 128d55b9f0f77920c288ca0986d4260fdaee20daf5fc5b780178d81f0c8fcccd
3
+ metadata.gz: 276386e9beb6287e8a41c53eb5dd126a32026c925efbd4747e4a3350ad42b324
4
+ data.tar.gz: b547a1e30050859c4a85a51f3853a94c04e9c959405f206578dccf264ee91c23
5
5
  SHA512:
6
- metadata.gz: 0d85df90cc7178941062d4e011e62ee857f0e24d08d36d676cbb64696b626da3b383edd66236d9dd5688e4cc0d87d3f96569495f5ae044ce0f8a6f461cad2c16
7
- data.tar.gz: b8cada361907d53e53f0b9a93ba84d22a7dffc2a4be79914558638b4905e1305553c3c95f8055cc96931175e61208b4a928b3cc2702a7ab0ae54789fc6040db0
6
+ metadata.gz: '0827cf02ca0e2613eff985b05a05fd047b814245cccf4a4eb6af202726fe2768851b5f06abcf1dbd21362d99ccfc5e244ee6db46af3d7cc597ff060d1faa4cb0'
7
+ data.tar.gz: 7a8852c7ac8cdd0a4f334492eda3dd63cf8275410bb41b39d9616b9297cd97fdac2c6f30832b40f1c4faf67c5a0133afae63596f97dd527a831cf8054c6239a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.4.5] - 2024-12-04
4
+
5
+ - Fix healing a list with a default scope `:order` and/or `:select`. Thanks @LukasSkywalker!
6
+
7
+ ## [0.4.4] - 2024-11-20
8
+
9
+ - Add `funding_uri` to gemspec.
10
+
3
11
  ## [0.4.3] - 2024-11-18
4
12
 
5
13
  - Add support for polymorphic `belongs_to` where we add both the `id` and the `type` to the scope.
@@ -8,7 +8,7 @@ module Positioning
8
8
 
9
9
  def heal
10
10
  if scope_columns.present?
11
- @model.select(*scope_columns).distinct.each do |scope_record|
11
+ @model.unscope(:order).reselect(*scope_columns).distinct.each do |scope_record|
12
12
  @model.transaction do
13
13
  if scope_associations.present?
14
14
  scope_associations.each do |scope_association|
@@ -40,7 +40,7 @@ module Positioning
40
40
  end
41
41
 
42
42
  def sequence(scope)
43
- scope.reorder(@order).each.with_index(1) do |record, index|
43
+ scope.unscope(:select).reorder(@order).each.with_index(1) do |record, index|
44
44
  record.update_columns @column => index
45
45
  end
46
46
  end
@@ -1,3 +1,3 @@
1
1
  module Positioning
2
- VERSION = "0.4.3"
2
+ VERSION = "0.4.5"
3
3
  end
data/positioning.gemspec CHANGED
@@ -14,6 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.metadata["homepage_uri"] = spec.homepage
15
15
  spec.metadata["source_code_uri"] = "https://github.com/brendon/positioning"
16
16
  spec.metadata["changelog_uri"] = "https://github.com/brendon/positioning/blob/main/CHANGELOG.md"
17
+ spec.metadata["funding_uri"] = "https://github.com/sponsors/brendon"
17
18
 
18
19
  # Specify which files should be added to the gem when it is released.
19
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: positioning
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brendon Muir
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-11-17 00:00:00.000000000 Z
11
+ date: 2024-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -64,6 +64,7 @@ metadata:
64
64
  homepage_uri: https://github.com/brendon/positioning
65
65
  source_code_uri: https://github.com/brendon/positioning
66
66
  changelog_uri: https://github.com/brendon/positioning/blob/main/CHANGELOG.md
67
+ funding_uri: https://github.com/sponsors/brendon
67
68
  post_install_message:
68
69
  rdoc_options: []
69
70
  require_paths: