blueauth 0.0.15 → 0.0.16

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
  SHA1:
3
- metadata.gz: aa847bd4eb47464ef189475cd27720cbec05be48
4
- data.tar.gz: 2a514b995a0821fca8c8c1d2915c3d0830141d58
3
+ metadata.gz: 0b0cb18fd2b7ec0999979c82b4785d1174aff330
4
+ data.tar.gz: 5dc410f009472d66bad111b10824987185e8e636
5
5
  SHA512:
6
- metadata.gz: 5cc52b96fe76d27ef0d9800b6ea84d655d3ef6750eb01e216be905af2a320347ae17083f0000c164218990a9cb64c38ef206af8818ad800cdbbc81667e5bfce7
7
- data.tar.gz: 5258f5e0a3df69da899a3943527f9fbf69adb42f6122919aff9a9e1844304acf4837ebae8169ea333fe698bcb4f744b8b4b06ffaef3f4168acc7ac954e35173d
6
+ metadata.gz: 42b3b6c06fae02b74e903b3c8feada2d5fd7c00ee8c7915d6a66dfaef46054a13a55285fada60f234b1e660622337e9c206cd7b9c837d7e7e1e7b75a22ed1eaa
7
+ data.tar.gz: 7fc0b7b5c913ef096300f7abb7ba39c25d0a9698ea93b3faca1c8e385102bea003a7504d453e132ad31c1be59bafa4fbe2cb440136e9db8b8ffc20ae50edb237
data/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ ## v0.0.16
2
+ ### Changes
3
+ * Direct IP addresses has been removed, only bluepages.ibm.com remained
4
+ * User timeout raised from 5 sec to 15 sec
5
+ ## v0.0.15
6
+ ### New
7
+ * Certificates added both the ol and the new, the new will be used from 11th of February 2018
data/lib/blueauth.rb CHANGED
@@ -8,7 +8,7 @@ module Blueauth
8
8
  BPBASE = 'ou=bluepages,o=ibm.com'
9
9
  BGBASE = 'ou=memberlist,ou=ibmgroups,o=ibm.com'
10
10
 
11
- BPHOSTS = [['bluepages.ibm.com',636], ['9.57.182.78',636], ['9.17.186.253',636]]
11
+ BPHOSTS = [['bluepages.ibm.com',636]]
12
12
 
13
13
  old_verbose, $VERBOSE = $VERBOSE, nil
14
14
  Net::LDAP::LDAPControls::PAGED_RESULTS = FALSE
@@ -21,6 +21,7 @@ module Blueauth
21
21
  def self.open_ldap
22
22
  Net::LDAP.new hosts: BPHOSTS, encryption: {
23
23
  method: :simple_tls,
24
+ connect_timeout: 15,
24
25
  tls_options: {
25
26
  ssl_version: :TLSv1_2,
26
27
  verify_mode: OpenSSL::SSL::VERIFY_PEER,
@@ -1,3 +1,3 @@
1
1
  module Blueauth
2
- VERSION = "0.0.15"
2
+ VERSION = "0.0.16"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blueauth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - zoltan-izso
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-01-30 00:00:00.000000000 Z
11
+ date: 2018-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-ldap
@@ -91,6 +91,7 @@ files:
91
91
  - ".idea/vcs.xml"
92
92
  - ".rspec"
93
93
  - ".travis.yml"
94
+ - CHANGELOG.md
94
95
  - Gemfile
95
96
  - LICENSE.txt
96
97
  - README.md