arel_extensions 2.2.0 → 2.2.2

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: 4aedfa89fd11432debf6ba61fb1e886d8f28eb7a294c997576726d9e37ca4686
4
- data.tar.gz: 311b54b4b82336dcc62ac4b2637594219a9247f0a46f0b17d085670244e62a6b
3
+ metadata.gz: ec5e40945328be87eb2078d58b5bbe144f9927f76f44d636b207e9c79ed8d083
4
+ data.tar.gz: a829d89fbafe6717a773b3cd1deb4a86c4a230d30b712f8dc9c2d87967fb325d
5
5
  SHA512:
6
- metadata.gz: e218dc06b3c421472981e4a97db46bfdd29f1cf2ec9c4e0af1504032d604b542ed2c02bb97e5ea61e361f09f8c3726c34b07bfa7eeeb519728284a829d3c9978
7
- data.tar.gz: fdb8f5763e31fd9c8aa59f66b95b2b2700049ecc0ee544d1f8880b659e0c48e6a6e091ee9788cd99f59a6d57c7d47b27140a4e64025add61c2697e17358d9ede
6
+ metadata.gz: 868227bed38916facdf1f48b0961b48a41bcfb65a5741c17947e73fa3e28d7c9b01ccef238396f1b23288d3ca12dd5c4dfdbedcf9a900dd17efe08dc1e3ef139
7
+ data.tar.gz: a8843d2c5a52ea04a9b0b46bf6b4563697829cd2ea63b39c23fdf2d4790c8e25902d302165392997c617ab13c06b5465f560b4de185a4152804ed493df8c8246
data/NEWS.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # News
2
2
 
3
+ ## [unreleased]
4
+
5
+ ## Release v2.2.2/v1.4.2 (27-11-2024)
6
+
7
+ - Fix deprecartion warnings for `==` and `!=`, showing the true location.
8
+ - Always emit deprecartion warnings for `==` and `!=`.
9
+
10
+ ## Release v2.2.1/v1.4.1 (08-11-2024)
11
+
12
+ - Improved deprecartion warnings for `==` and `!=`, showing the location where they're called.
13
+
3
14
  ## Release v2.2.0/v1.4.0
4
15
 
5
16
  - MS SQL: restrict date-quoting to Arel <= 6 (Rails 4.2)
@@ -18,21 +18,16 @@ module ArelExtensions
18
18
  include ArelExtensions::StringFunctions
19
19
  include ArelExtensions::Predications
20
20
 
21
- @@warn_eqeq = true
22
- @@warn_noteq = true
23
-
24
21
  def ==(other)
25
- if Gem::Version.create(ArelExtensions::VERSION) >= Gem::Version.create('2.2') && @@warn_eqeq
26
- warn('arel_extensions: `==` is now deprecated and will be removed soon. Use `.eq` instead.')
27
- @@warn_eqeq = false
22
+ if Gem::Version.create(ArelExtensions::VERSION) >= Gem::Version.create('2.2')
23
+ warn("#{caller(1..1).first} arel_extensions: `==` is now deprecated and will be removed soon. Use `.eq` instead.")
28
24
  end
29
25
  Arel::Nodes::Equality.new self, Arel.quoted(other, self)
30
26
  end
31
27
 
32
28
  def !=(other)
33
- if Gem::Version.create(ArelExtensions::VERSION) >= Gem::Version.create('2.2') && @@warn_noteq
34
- warn('arel_extensions: `!=` is now deprecated and will be removed soon. Use `.not_eq` instead.')
35
- @@warn_noteq = false
29
+ if Gem::Version.create(ArelExtensions::VERSION) >= Gem::Version.create('2.2')
30
+ warn("#{caller(1..1).first} arel_extensions: `!=` is now deprecated and will be removed soon. Use `.not_eq` instead.")
36
31
  end
37
32
  Arel::Nodes::NotEqual.new self, Arel.quoted(other, self)
38
33
  end
@@ -1,3 +1,3 @@
1
1
  module ArelExtensions
2
- VERSION = '2.2.0'.freeze
2
+ VERSION = '2.2.2'.freeze
3
3
  end
@@ -679,7 +679,8 @@ module ArelExtensions
679
679
  #
680
680
  # So depending on the month when we run this test, we will get different
681
681
  # results for `User.where(@created_at.month.eq('05'))`.
682
- count_for_may = Time.now.month == 5 ? 10 : 9
682
+ count_for_may = Date.today.month == 5 ? 10 : 9
683
+ count_for_day = Date.today.day == 5 ? 1 : 0
683
684
 
684
685
  # Year
685
686
  assert_equal 2016, t(@lucas, @created_at.year).to_i
@@ -692,7 +693,8 @@ module ArelExtensions
692
693
  assert_equal count_for_may, User.where(@created_at.month.eq('05')).count
693
694
  # Day
694
695
  assert_equal 23, t(@laure, @created_at.day).to_i
695
- assert_equal 0, User.where(@created_at.day.eq('05')).count
696
+ # Make sure we get the correct count on the date we run the test.
697
+ assert_equal count_for_day, User.where(@created_at.day.eq('05')).count
696
698
 
697
699
  # skip "manage DATE" if @env_db == 'oracle'
698
700
  # Hour
data/version_v1.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module ArelExtensions
2
- VERSION = '1.4.0'.freeze
2
+ VERSION = '1.4.2'.freeze
3
3
  end
data/version_v2.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module ArelExtensions
2
- VERSION = '2.2.0'.freeze
2
+ VERSION = '2.2.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arel_extensions
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yann Azoury
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-08-22 00:00:00.000000000 Z
13
+ date: 2024-11-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activerecord