jenkins_api_client 1.0.0.beta.7 → 1.0.0

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: 72219c64c51d4188c90829ff549bccc8fcd97f9d
4
- data.tar.gz: b96ba795c3fc93492cc14329110773148c1956e7
3
+ metadata.gz: 646dcb2b3b87533a3d3257a22b72b702efc3ebda
4
+ data.tar.gz: 87704990a77cc24b3eb6bee80c1a17837af36656
5
5
  SHA512:
6
- metadata.gz: a5cbb2c72b42adf32de0454817a7b8a56957e398e2f0331e1652e7c00e1631bb352d5524192f27423b6ad8795e4c526aaefc5f300c947d6bd555cd918c44aa05
7
- data.tar.gz: b19cf69fd20e15a58049570f4c51aa32d3a13b95bb21152582a6939b5e9d9257fba1f303ad384e2225b8bc44e007762739733fb3538af7cce2f079cfcb7f65d9
6
+ metadata.gz: 222f14e72886e6f13dea87e5cf98a24bd41ae1b1f655960b0245422cdcb340a8ba01ab72e0f327f5f39fb8cc0870c1246a5d0082a7ca52c08597e1dc44048e4f
7
+ data.tar.gz: 74573b0aaccfe06fe557c7d2c34500ff9e863c8af4bf3af7dcb7e4f2153e64c0361353e13944ee4e8d0be0fe0c802c8d1d84006331f4841bb6b2f6d6cbd720ca
data/CHANGELOG.md CHANGED
@@ -4,6 +4,32 @@ CHANGELOG
4
4
  upcoming
5
5
  --------
6
6
 
7
+ v1.0.0 [23-JUN-2014]
8
+ ----------------------
9
+ * Ruby 1.8 is not supported anymore.
10
+ * Added support for `PluginManager` which supports listing installed plugins,
11
+ available plugins, installing and uninstalling plugins, enabling and disabling
12
+ plugins, and more.
13
+ * Enhance URL escape.
14
+ * [#106][] Added support for obtaining build numbers after the build is posted for Jenkins
15
+ version pre 1.519, added callbacks while waiting and more. Credit: [@dougforpres][]
16
+ * [#112][] Added supported for obtaining information about promoted builds. Credit: [@dkerwin][]
17
+ * [#118][] Added support for specifying username/password in the URL. Credit: [@spikegrobstein][]
18
+ * [#119][] Added ability to execute groovy script on the Jenkins server. Credit: [@lheinlen-os][]
19
+ * [#122][] Updated the `create_dumb_slave` method to accept the new credentials id that is
20
+ introduced in the newer version of jenkins. Credit: [@Loa][]
21
+ * [#126][] Enabled the use of cookies for authentication. Credit: [@chilicheech][]
22
+ * [#127][] Do not set content type in api_post_request. Credit: [@chilicheech][]
23
+ * [#128][] Updated `exec_script` to use `api_post_reqeust` to support features provided by
24
+ `api_post_request` such as using crumbs. Credit: [@chilicheech][]
25
+ * [#132][] Allow copying and enabling jobs with spaces in them. Credit: [@mattrose][]
26
+ * [#134][] Added support for specifying HTTP open timeout. Credit: [@n-rodriguez][]
27
+ * [#136][] Prevent warnings due to Hash#[] call with nil items on Ruby 2.x. Credit: [@sunaot][]
28
+ * [#140][] Add require yaml in cli helper. Credit: [@riywo][]
29
+ * [#141][] Rename `create_dump_slave` -> `create_dumb_slave`. Thanks for finding the
30
+ typo/incorrect name [@cynipe][]
31
+
32
+
7
33
  v0.14.1 [18-AUG-2013]
8
34
  ----------------------
9
35
  * Fixed a bug in Job#create_or_update method. Credit: [@bobbrez][]
@@ -226,18 +252,40 @@ v0.0.1 [15-OCT-2012]
226
252
  [#27]: https://github.com/arangamani/jenkins_api_client/issues/27
227
253
  [#42]: https://github.com/arangamani/jenkins_api_client/issues/42
228
254
  [#85]: https://github.com/arangamani/jenkins_api_client/issues/85
255
+ [#106]: https://github.com/arangamani/jenkins_api_client/issues/106
256
+ [#112]: https://github.com/arangamani/jenkins_api_client/issues/112
257
+ [#118]: https://github.com/arangamani/jenkins_api_client/issues/118
258
+ [#119]: https://github.com/arangamani/jenkins_api_client/issues/119
259
+ [#122]: https://github.com/arangamani/jenkins_api_client/issues/122
260
+ [#126]: https://github.com/arangamani/jenkins_api_client/issues/126
261
+ [#127]: https://github.com/arangamani/jenkins_api_client/issues/127
262
+ [#128]: https://github.com/arangamani/jenkins_api_client/issues/128
263
+ [#132]: https://github.com/arangamani/jenkins_api_client/issues/132
264
+ [#134]: https://github.com/arangamani/jenkins_api_client/issues/134
265
+ [#136]: https://github.com/arangamani/jenkins_api_client/issues/136
266
+ [#140]: https://github.com/arangamani/jenkins_api_client/issues/140
267
+ [#141]: https://github.com/arangamani/jenkins_api_client/issues/141
268
+ [@Loa]: https://github.com/Loa
229
269
  [@Niarfe]: https://github.com/Niarfe
230
270
  [@bobbrez]: https://github.com/bobbrez
231
271
  [@brettporter]: https://github.com/brettporter
272
+ [@chilicheech]: https://github.com/chilicheech
232
273
  [@client]: https://github.com/client
233
274
  [@cylol]: https://github.com/cylol
275
+ [@cynipe]: https://github.com/cynipe
234
276
  [@dieterdemeyer]: https://github.com/dieterdemeyer
277
+ [@dkerwin]: https://github.com/dkerwin
235
278
  [@dougforpres]: https://github.com/dougforpres
236
279
  [@drnic]: https://github.com/drnic
237
280
  [@kevinhcross]: https://github.com/kevinhcross
281
+ [@lheinlen-os]: https://github.com/lheinlen-os
238
282
  [@madisp]: https://github.com/madisp
283
+ [@mattrose]: https://github.com/mattrose
239
284
  [@missedone]: https://github.com/missedone
285
+ [@n-rodriguez]: https://github.com/n-rodriguez
240
286
  [@riywo]: https://github.com/riywo
241
287
  [@rubytester]: https://github.com/rubytester
288
+ [@spikegrobstein]: https://github.com/spikegrobstein
289
+ [@sunaot]: https://github.com/sunaot
242
290
  [@tjhanley]: https://github.com/tjhanley
243
- [@woodbusy]: https://github.com/woodbusy
291
+ [@woodbusy]: https://github.com/woodbusy
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: jenkins_api_client 1.0.0.beta.7 ruby lib
5
+ # stub: jenkins_api_client 1.0.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "jenkins_api_client"
9
- s.version = "1.0.0.beta.7"
9
+ s.version = "1.0.0"
10
10
 
11
- s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Kannan Manickam"]
14
- s.date = "2014-06-20"
14
+ s.date = "2014-06-21"
15
15
  s.description = "\nThis is a simple and easy-to-use Jenkins Api client with features focused on\nautomating Job configuration programaticaly and so forth"
16
16
  s.email = ["arangamani.kannan@gmail.com"]
17
17
  s.executables = ["jenkinscli"]
@@ -29,7 +29,7 @@ module JenkinsApi
29
29
  # Tiny version of the gem used for patches
30
30
  TINY = 0
31
31
  # Used for pre-releases
32
- PRE = 'beta.7'
32
+ PRE = nil
33
33
  # Version String of Jenkins API Client.
34
34
  VERSION = [MAJOR, MINOR, TINY, PRE].compact.join('.')
35
35
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jenkins_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta.7
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kannan Manickam
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-20 00:00:00.000000000 Z
11
+ date: 2014-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -267,9 +267,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
267
267
  version: 1.9.2
268
268
  required_rubygems_version: !ruby/object:Gem::Requirement
269
269
  requirements:
270
- - - ">"
270
+ - - ">="
271
271
  - !ruby/object:Gem::Version
272
- version: 1.3.1
272
+ version: '0'
273
273
  requirements: []
274
274
  rubyforge_project:
275
275
  rubygems_version: 2.2.2