cb-api 17.0.1 → 17.0.2

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: 4d43fb3c1b464e9dcccce959e5d0a88130224fc4
4
- data.tar.gz: 2c742625d9f63229f89511cc78ca17aa5190cfd5
3
+ metadata.gz: a817bf2c012a74abcc9113695b8a4d5d380bc744
4
+ data.tar.gz: 3872158d2df4f16e22641bb5f3977b1174682a5c
5
5
  SHA512:
6
- metadata.gz: 79ebbe3b67761577e9b6d864bbde492e49aa7b218ae15e2854d14ae929dde9468cad0d99b0a04effb7fe8feeb0c41ff3ae211c4f001e625207c59b353c986c16
7
- data.tar.gz: faba14df02ba61229aff48837547f3159411805e5f758c9a654120f05b78e9af6af2b557891e955e56c1fdc68dcaae95c731894a520fd4c024b0101e005052e8
6
+ metadata.gz: 0287f97514936d2148de4a551d7e71dd63ce40629734c57075a4c3aca15a8491d4852c342f4b85f54ea3e8432ffa0bea5958ed25d4b2ad13ffe13de30306542f
7
+ data.tar.gz: ed3649b58b9e98b2ef786e8c02eca35177f9dfc0a0d78c581b981029ba24b5ab23b5733765e54cd4d8767d982524b4b80e570feba2365248124a557a9b4b9fda
@@ -3,9 +3,11 @@ Version History
3
3
  * All Version bumps are required to update this file as well!!
4
4
  ----
5
5
 
6
+ * 17.0.2 making sure we explicitly ask for version 1 of the consumer APIs
7
+ * 17.0.1 adding posted_time and company_did to job results
6
8
  * 17.0.0 removed spot cms dependency
7
9
  * 16.3.0 changed api error response to use join instead of to_s
8
- * 16.2.2 change degree code to be degree which fixes compatibilty problems
10
+ * 16.2.2 change degree code to be degree which fixes compatibility problems
9
11
  * 16.2.1 fix major or program in resume put. it was looking for the wrong value
10
12
  * 16.2.0 Added support for work experience ID in resume put
11
13
  * 16.1.0 Added support for handling a 401 unauthorized response. We should now raise specific UnauthorizedErrors.
@@ -22,7 +22,7 @@ module Cb
22
22
  {
23
23
  'DeveloperKey' => Cb.configuration.dev_key,
24
24
  'HostSite' => args[:host_site] || Cb.configuration.host_site,
25
- 'Content-Type' => 'application/json'
25
+ 'Content-Type' => 'application/json;version=1.0'
26
26
  }
27
27
  end
28
28
  end
@@ -22,7 +22,7 @@ module Cb
22
22
  {
23
23
  'DeveloperKey' => Cb.configuration.dev_key,
24
24
  'HostSite' => Cb.configuration.host_site,
25
- 'Content-Type' => 'application/json'
25
+ 'Content-Type' => 'application/json;version=1.0'
26
26
  }
27
27
  end
28
28
  end
@@ -15,7 +15,7 @@ module Cb
15
15
  def headers
16
16
  {
17
17
  'DeveloperKey' => Cb.configuration.dev_key,
18
- 'Content-Type' => 'application/json'
18
+ 'Content-Type' => 'application/json;version=1.0'
19
19
  }
20
20
  end
21
21
  end
@@ -25,7 +25,7 @@ module Cb
25
25
  def headers
26
26
  {
27
27
  'HostSite' => Cb.configuration.host_site,
28
- 'Content-Type' => 'application/json',
28
+ 'Content-Type' => 'application/json;version=1.0',
29
29
  'Authorization' => three_scale_bearer_token
30
30
  }
31
31
  end
@@ -16,7 +16,7 @@ module Cb
16
16
  {
17
17
  'DeveloperKey' => Cb.configuration.dev_key,
18
18
  'HostSite' => Cb.configuration.host_site,
19
- 'Content-Type' => 'application/json'
19
+ 'Content-Type' => 'application/json;version=1.0'
20
20
  }
21
21
  end
22
22
 
@@ -1,3 +1,3 @@
1
1
  module Cb
2
- VERSION = '17.0.1'
2
+ VERSION = '17.0.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cb-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 17.0.1
4
+ version: 17.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - The CareerBuilder.com Niche and Consumer Development teams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-24 00:00:00.000000000 Z
11
+ date: 2015-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty