activeldap 7.0.0 → 7.2.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: 46d1a0c273dff5757de13f0a8379278794a5b4f2c89a1ff60e9a7e97dd0f8867
4
- data.tar.gz: ec7c5e06e7e75d46a55b5ea163f56fb85d833e82eb2d66b2f3fb9bc07ce7c7ce
3
+ metadata.gz: 33db0ef491f607f25580b4785e21e11b3cf6628645de7eeda2c4c38a7b47a678
4
+ data.tar.gz: 4033500096a9ed36152d4bb0fc9769116bfcd8602b8f8bf210785f5220da5cf0
5
5
  SHA512:
6
- metadata.gz: 7b1b5e88e3d2bf65bec620b15909f882cb3d4a386b0a482f7de18e88934cce1750ddc72175033b73accbb9a83f41e4ab947c9ffe4903abbca35ec1422c612978
7
- data.tar.gz: dbf5a8751b7cd7235c9211738b50bb60a1450290c630a8a6a9a5faea2d3cac1ff8897cfb11ef98d5b87cc2bdda2128642d417638580c09659185b703a7efd0a5
6
+ metadata.gz: 97149165e3f0cd9db4e2a5befe1834640fd19e529e31744a6185609a98e6237b1eb05f8a1be7543dd55c97a45c1015b2d9aea63094479e0974e155330855d910
7
+ data.tar.gz: 957711ac114db7e3fa8ecf1e53fa1b3d382dd4cc65270390cd4bc0da2e85ec6c517dd5940652f330e0ed2ec8ee6c89d9156e3cb289484f6b6a845730b71af013
data/doc/text/news.md CHANGED
@@ -1,6 +1,44 @@
1
1
  # News
2
2
 
3
- ## 7.0.0: 2024-02-23 {#release-6-1-1}
3
+ ## 7.2.1: 2024-10-02 {#release-7-2-1}
4
+
5
+ ### Fixes
6
+
7
+ * Fixed a bug that ActiveLdap doesn't work with Rails 7.0.
8
+ * GH-200
9
+ * Patch by Carlos Palhares
10
+
11
+ ### Thanks
12
+
13
+ * Carlos Palhares
14
+
15
+ ## 7.2.0: 2024-09-24 {#release-7-2-0}
16
+
17
+ ### Improvements
18
+
19
+ * Added support for Active Model 7.2.
20
+
21
+ * Dropped support for Active Model 5.
22
+
23
+ * Dropped support for Active Model 6.
24
+
25
+ * Added support for Psych 4.
26
+ * GH-198
27
+ * Patch by Carlos Palhares.
28
+
29
+ ### Fixes
30
+
31
+ * net-ldap: Fixed paged search
32
+ * GH-197
33
+ * Patch by Patrick Marchi
34
+
35
+ ### Thanks
36
+
37
+ * Patrick Marchi
38
+
39
+ * Carlos Palhares
40
+
41
+ ## 7.0.0: 2024-02-23 {#release-7-0-0}
4
42
 
5
43
  ### Improvements
6
44
 
@@ -78,7 +78,7 @@ module ActiveLdap
78
78
  filter: search_options[:filter],
79
79
  attributes: search_options[:attributes],
80
80
  size: search_options[:limit],
81
- paged_searcheds_supported: search_options[:paged_results_supported],
81
+ paged_searches_supported: search_options[:use_paged_results],
82
82
  }
83
83
  execute(:search, info, args) do |entry|
84
84
  attributes = {}
@@ -67,7 +67,7 @@ module ActiveLdap
67
67
  if foreign_key_name
68
68
  message = _(":foreign_key belongs_to(:many) option is " \
69
69
  "deprecated since 1.1.0. Use :primary_key instead.")
70
- ActiveSupport::Deprecation.warn(message)
70
+ ActiveLdap.deprecator.warn(message)
71
71
  opts[:primary_key_name] ||= foreign_key_name
72
72
  end
73
73
  opts[:primary_key_name] ||= dn_attribute
@@ -135,7 +135,7 @@ module ActiveLdap
135
135
  !new.have_attribute?(primary_key_name)
136
136
  message = _(":primary_key and :foreign_key has_many options are " \
137
137
  "inverted their mean since 1.1.0. Please invert them.")
138
- ActiveSupport::Deprecation.warn(message)
138
+ ActiveLdap.deprecator.warn(message)
139
139
  opts[:foreign_key_name] = primary_key_name
140
140
  opts[:primary_key_name] = foreign_key_name
141
141
  end
@@ -55,7 +55,7 @@ module ActiveLdap
55
55
  _("ActiveLdap::ConnectionNotEstablished has been deprecated " \
56
56
  "since 1.1.0. " \
57
57
  "Please use ActiveLdap::ConnectionNotSetup instead.")
58
- ActiveSupport::Deprecation.warn(message)
58
+ ActiveLdap.deprecator.warn(message)
59
59
  const_set("ConnectionNotEstablished", ConnectionNotSetup)
60
60
  ConnectionNotEstablished
61
61
  else
@@ -175,7 +175,7 @@ module ActiveLdap
175
175
  NEAREST_MARK = "|@|"
176
176
  private
177
177
  def detect_nearest(line, column)
178
- lines = Compatible.string_to_lines(@ldif).to_a
178
+ lines = @ldif.lines
179
179
  nearest = lines[line - 1] || ""
180
180
  if column - 1 == nearest.size # for JRuby 1.0.2 :<
181
181
  nearest << NEAREST_MARK
@@ -205,7 +205,7 @@ module ActiveLdap
205
205
 
206
206
  def numbered_ldif
207
207
  return @ldif if @ldif.blank?
208
- lines = Compatible.string_to_lines(@ldif)
208
+ lines = @ldif.lines
209
209
  format = "%#{Math.log10(lines.size).truncate + 1}d: %s"
210
210
  i = 0
211
211
  lines.collect do |line|
@@ -391,7 +391,7 @@ module ActiveLdap
391
391
  _("ActiveLdap::Base.establish_connection has been deprecated " \
392
392
  "since 1.1.0. " \
393
393
  "Please use ActiveLdap::Base.setup_connection instead.")
394
- ActiveSupport::Deprecation.warn(message)
394
+ ActiveLdap.deprecator.warn(message)
395
395
  setup_connection(config)
396
396
  end
397
397
 
@@ -26,7 +26,7 @@ module ActiveLdap
26
26
  def method_added(meth)
27
27
  super
28
28
  if CALLBACKS.include?(meth.to_sym)
29
- ActiveSupport::Deprecation.warn("Base##{meth} has been deprecated, please use Base.#{meth} :method instead", caller[0,1])
29
+ ActiveLdap.deprecator.warn("Base##{meth} has been deprecated, please use Base.#{meth} :method instead", caller[0,1])
30
30
  send(meth.to_sym, meth.to_sym)
31
31
  end
32
32
  end
@@ -28,17 +28,5 @@ module ActiveLdap
28
28
  object
29
29
  end
30
30
  end
31
-
32
- if "".respond_to?(:lines)
33
- def string_to_lines(string)
34
- string.lines.to_a
35
- end
36
- else
37
- def string_to_lines(string)
38
- ary = []
39
- string.each_line{|l| ary << l}
40
- ary
41
- end
42
- end
43
31
  end
44
32
  end
@@ -137,7 +137,7 @@ module ActiveLdap
137
137
  if key == :ldap_scope
138
138
  message = _(":ldap_scope configuration option is deprecated. " \
139
139
  "Use :scope instead.")
140
- ActiveSupport::Deprecation.warn(message)
140
+ ActiveLdap.deprecator.warn(message)
141
141
  end
142
142
  target.scope = value
143
143
  configuration[:scope] = value
@@ -97,7 +97,7 @@ module ActiveLdap
97
97
  if config.has_key?(:ldap_scope)
98
98
  message = _(":ldap_scope connection option is deprecated. " \
99
99
  "Use :scope instead.")
100
- ActiveSupport::Deprecation.warn(message)
100
+ ActiveLdap.deprecator.warn(message)
101
101
  config[:scope] ||= config.delete(:ldap_scope)
102
102
  end
103
103
  config = remove_connection_related_configuration(config)
@@ -156,7 +156,7 @@ module ActiveLdap
156
156
  _("ActiveLdap::Connection.establish_connection has been deprecated " \
157
157
  "since 1.1.0. " \
158
158
  "Please use ActiveLdap::Connection.setup_connection instead.")
159
- ActiveSupport::Deprecation.warn(message)
159
+ ActiveLdap.deprecator.warn(message)
160
160
  setup_connection(config)
161
161
  end
162
162
 
@@ -216,7 +216,7 @@ module ActiveLdap
216
216
  _("ActiveLdap::Connection#establish_connection has been deprecated " \
217
217
  "since 1.1.0. " \
218
218
  "Please use ActiveLdap::Connection#setup_connection instead.")
219
- ActiveSupport::Deprecation.warn(message)
219
+ ActiveLdap.deprecator.warn(message)
220
220
  setup_connection(config)
221
221
  end
222
222
 
@@ -0,0 +1,7 @@
1
+ module ActiveLdap
2
+ class << self
3
+ def deprecator # :nodoc:
4
+ @deprecator ||= ActiveSupport::Deprecation.new
5
+ end
6
+ end
7
+ end
@@ -559,7 +559,7 @@ module ActiveLdap
559
559
  _consumed_source = consumed_source
560
560
  return 1 if _consumed_source.empty?
561
561
 
562
- n = Compatible.string_to_lines(_consumed_source).size
562
+ n = _consumed_source.lines.size
563
563
  n += 1 if _consumed_source[-1, 1] == "\n"
564
564
  n
565
565
  end
@@ -65,7 +65,7 @@ module ActiveLdap
65
65
  if options.has_key?(:ldap_scope)
66
66
  message = _(":ldap_scope search option is deprecated. " \
67
67
  "Use :scope instead.")
68
- ActiveSupport::Deprecation.warn(message)
68
+ ActiveLdap.deprecator.warn(message)
69
69
  options[:scope] ||= options[:ldap_scope]
70
70
  end
71
71
  search_options = {
@@ -6,11 +6,14 @@ Locale.init(:driver => :cgi)
6
6
 
7
7
  module ActiveLdap
8
8
  class Railtie < Rails::Railtie
9
+ initializer "active_ldap.deprecator", before: :load_environment_config do |app|
10
+ app.deprecators[:active_ldap] = ActiveLdap.deprecator if app.respond_to?(:deprecators)
11
+ end
12
+
9
13
  initializer "active_ldap.setup_connection" do
10
14
  ldap_configuration_file = Rails.root.join('config', 'ldap.yml')
11
15
  if File.exist?(ldap_configuration_file)
12
- configurations = YAML::load(ERB.new(IO.read(ldap_configuration_file)).result)
13
- ActiveLdap::Base.configurations = configurations
16
+ ActiveLdap::Base.configurations = ActiveSupport::ConfigurationFile.parse(ldap_configuration_file)
14
17
  ActiveLdap::Base.setup_connection
15
18
  else
16
19
  ActiveLdap::Base.class_eval do
@@ -1,3 +1,3 @@
1
1
  module ActiveLdap
2
- VERSION = "7.0.0"
2
+ VERSION = "7.2.1"
3
3
  end
data/lib/active_ldap.rb CHANGED
@@ -3,6 +3,8 @@ require "active_support/core_ext"
3
3
 
4
4
  require "active_ldap/version"
5
5
 
6
+ require "active_ldap/deprecator"
7
+
6
8
  module ActiveLdap
7
9
  autoload :Command, "active_ldap/command"
8
10
  end
@@ -134,7 +134,7 @@ EOX
134
134
  end
135
135
 
136
136
  def test_belongs_to_foreign_key_before_1_1_0
137
- ActiveSupport::Deprecation.silence do
137
+ ActiveLdap.deprecator.silence do
138
138
  @group_class.belongs_to :related_users, :many => "seeAlso",
139
139
  :foreign_key => "dn"
140
140
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeldap
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 7.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Will Drewry
8
8
  - Kouhei Sutou
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2024-02-23 00:00:00.000000000 Z
11
+ date: 2024-10-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: activemodel
@@ -17,14 +16,14 @@ dependencies:
17
16
  requirements:
18
17
  - - ">="
19
18
  - !ruby/object:Gem::Version
20
- version: '5.2'
19
+ version: '7.0'
21
20
  type: :runtime
22
21
  prerelease: false
23
22
  version_requirements: !ruby/object:Gem::Requirement
24
23
  requirements:
25
24
  - - ">="
26
25
  - !ruby/object:Gem::Version
27
- version: '5.2'
26
+ version: '7.0'
28
27
  - !ruby/object:Gem::Dependency
29
28
  name: locale
30
29
  requirement: !ruby/object:Gem::Requirement
@@ -243,6 +242,7 @@ files:
243
242
  - lib/active_ldap/compatible.rb
244
243
  - lib/active_ldap/configuration.rb
245
244
  - lib/active_ldap/connection.rb
245
+ - lib/active_ldap/deprecator.rb
246
246
  - lib/active_ldap/distinguished_name.rb
247
247
  - lib/active_ldap/entry.rb
248
248
  - lib/active_ldap/entry_attribute.rb
@@ -330,7 +330,6 @@ licenses:
330
330
  - Ruby's
331
331
  - GPLv2 or later
332
332
  metadata: {}
333
- post_install_message:
334
333
  rdoc_options: []
335
334
  require_paths:
336
335
  - lib
@@ -345,8 +344,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
345
344
  - !ruby/object:Gem::Version
346
345
  version: '0'
347
346
  requirements: []
348
- rubygems_version: 3.5.1
349
- signing_key:
347
+ rubygems_version: 3.6.0.dev
350
348
  specification_version: 4
351
349
  summary: ActiveLdap is a object-oriented API to LDAP
352
350
  test_files: