hocon 1.1.3 → 1.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/CHANGELOG.md +11 -0
- data/HISTORY.md +2016 -0
- data/README.md +123 -0
- data/bin/hocon +5 -0
- data/lib/hocon/cli.rb +225 -0
- data/lib/hocon/config_render_options.rb +3 -2
- data/lib/hocon/impl/abstract_config_value.rb +7 -10
- data/lib/hocon/impl/config_delayed_merge.rb +1 -1
- data/lib/hocon/impl/config_node_object.rb +1 -2
- data/lib/hocon/impl/config_node_root.rb +1 -1
- data/lib/hocon/impl/simple_config_document.rb +1 -1
- data/lib/hocon/version.rb +5 -0
- data/spec/fixtures/parse_render/example1/output.conf +3 -3
- data/spec/test_utils.rb +2 -1
- data/spec/unit/cli/cli_spec.rb +157 -0
- data/spec/unit/typesafe/config/config_document_spec.rb +41 -41
- data/spec/unit/typesafe/config/config_node_spec.rb +12 -12
- data/spec/unit/typesafe/config/config_value_spec.rb +24 -0
- metadata +18 -12
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MDJiNDQ0ZDY5ZmZkYWI5NjgzYTUxMGE3NTVmZDBiOTI4ZjAwYjJkZQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NGQ4M2E2NGZlNjZhNDMzNTRhZmFlNTFiY2UzNzMxNWM2ZDY0NGQxMw==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
YWU5Yzg3M2IyMTVjZTIxNzQyZjdmODBkZDRhZTcyMzliMmEyZmJkNDU2MTlh
|
10
|
+
YTYxOTc5MTgxOGViYTJjYzI3MThlZTllZDNjNzg5MTU1NjMwOWU0ZTIwYzIx
|
11
|
+
N2I0OTVhMWNkYTVjYzU0NzNkNzZlZmZmODIwZWI3YTIzMzI1MDI=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
N2ViYjQ1MTkyMGFkNzJhZTFkZWUwZWIwMzVlNmJmYTE0OGEzZmMyZWY1MzVj
|
14
|
+
MGE4OWU1MGVhMmUwMDMyOGJmNTEyMzFkZTZmYjgzNGViMzE5MDZhZGE3ZDhj
|
15
|
+
M2I3MWE2YzU1NjU2MTM0OTFhM2VjNjQ5M2QyYWRkODlmY2M3MWE=
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
## 1.2.0
|
2
|
+
This is a feature release.
|
3
|
+
|
4
|
+
* Added a cli tool called `hocon` for reading and manipulating hocon files
|
5
|
+
|
6
|
+
## 1.1.3
|
7
|
+
This is a bugfix release.
|
8
|
+
|
9
|
+
* Fixed bug where Hocon.parse would throw a ConfigNotResolved error if you passed it a String
|
10
|
+
that contained values with substitutions.
|
11
|
+
|
1
12
|
## 1.1.2
|
2
13
|
This is a bugfix release.
|
3
14
|
|
data/HISTORY.md
ADDED
@@ -0,0 +1,2016 @@
|
|
1
|
+
# enterprise_ruby-hocon_bump_and_tag_master - History
|
2
|
+
## Tags
|
3
|
+
* [LATEST - 3 Nov, 2016 (67ff0795)](#LATEST)
|
4
|
+
* [1.2.3 - 3 Nov, 2016 (cd9a5c8d)](#1.2.3)
|
5
|
+
* [1.2.2 - 1 Nov, 2016 (4a29c034)](#1.2.2)
|
6
|
+
* [1.2.1 - 27 Oct, 2016 (b6edea48)](#1.2.1)
|
7
|
+
* [1.2.0 - 27 Oct, 2016 (1060d251)](#1.2.0)
|
8
|
+
* [1.1.3 - 12 Oct, 2016 (bf4a7d4b)](#1.1.3)
|
9
|
+
* [1.1.2 - 15 Jul, 2016 (6041a5c4)](#1.1.2)
|
10
|
+
* [1.1.1 - 6 Jul, 2016 (5b2c8baa)](#1.1.1)
|
11
|
+
* [1.1.0 - 1 Jul, 2016 (99b3145e)](#1.1.0)
|
12
|
+
* [1.0.1 - 16 Mar, 2016 (aa36b692)](#1.0.1)
|
13
|
+
* [1.0.0 - 16 Feb, 2016 (dc385fe2)](#1.0.0)
|
14
|
+
* [0.9.3 - 14 Jul, 2015 (7defef59)](#0.9.3)
|
15
|
+
* [0.9.2 - 30 Jun, 2015 (6b402bc2)](#0.9.2)
|
16
|
+
* [0.9.1 - 30 Jun, 2015 (e8c2f405)](#0.9.1)
|
17
|
+
* [0.9.0 - 10 Apr, 2015 (aeab6ab2)](#0.9.0)
|
18
|
+
* [0.1.0 - 9 Apr, 2015 (bfdb7255)](#0.1.0)
|
19
|
+
* [0.0.5 - 1 Oct, 2014 (67d264f4)](#0.0.5)
|
20
|
+
* [0.0.3 - 24 Jul, 2014 (6cd552c3)](#0.0.3)
|
21
|
+
* [0.0.2 - 24 Jul, 2014 (95dffaea)](#0.0.2)
|
22
|
+
* [0.0.1 - 16 Mar, 2014 (f7dbca52)](#0.0.1)
|
23
|
+
|
24
|
+
## Details
|
25
|
+
### <a name = "LATEST">LATEST - 3 Nov, 2016 (67ff0795)
|
26
|
+
|
27
|
+
* (GEM) update hocon version to 1.2.4 (67ff0795)
|
28
|
+
|
29
|
+
* Merge pull request #100 from jpinsonault/maint-update-version-to-1.2.4 (3a493130)
|
30
|
+
|
31
|
+
|
32
|
+
```
|
33
|
+
Merge pull request #100 from jpinsonault/maint-update-version-to-1.2.4
|
34
|
+
|
35
|
+
(MAINT) Update version to 1.2.4
|
36
|
+
```
|
37
|
+
* (MAINT) Update version to 1.2.4 (958326d4)
|
38
|
+
|
39
|
+
### <a name = "1.2.3">1.2.3 - 3 Nov, 2016 (cd9a5c8d)
|
40
|
+
|
41
|
+
* (HISTORY) update ruby-hocon history for gem release 1.2.3 (cd9a5c8d)
|
42
|
+
|
43
|
+
* (GEM) update hocon version to 1.2.3 (f2f3e235)
|
44
|
+
|
45
|
+
* Merge pull request #99 from jpinsonault/maint-update-version-to-1.2.3 (18324c6d)
|
46
|
+
|
47
|
+
|
48
|
+
```
|
49
|
+
Merge pull request #99 from jpinsonault/maint-update-version-to-1.2.3
|
50
|
+
|
51
|
+
(MAINT) Update version 1.2.3
|
52
|
+
```
|
53
|
+
* (MAINT) Update version 1.2.3 (e7be1d78)
|
54
|
+
|
55
|
+
### <a name = "1.2.2">1.2.2 - 1 Nov, 2016 (4a29c034)
|
56
|
+
|
57
|
+
* (HISTORY) update ruby-hocon history for gem release 1.2.2 (4a29c034)
|
58
|
+
|
59
|
+
* (GEM) update hocon version to 1.2.2 (5cf6b037)
|
60
|
+
|
61
|
+
* Merge pull request #97 from jpinsonault/maint-update-version-for-release (e973ee34)
|
62
|
+
|
63
|
+
|
64
|
+
```
|
65
|
+
Merge pull request #97 from jpinsonault/maint-update-version-for-release
|
66
|
+
|
67
|
+
(MAINT) Update version for release
|
68
|
+
```
|
69
|
+
* (MAINT) Update version for release (e81fecf9)
|
70
|
+
|
71
|
+
### <a name = "1.2.1">1.2.1 - 27 Oct, 2016 (b6edea48)
|
72
|
+
|
73
|
+
* (HISTORY) update ruby-hocon history for gem release 1.2.1 (b6edea48)
|
74
|
+
|
75
|
+
* (GEM) update hocon version to 1.2.1 (0e06af2f)
|
76
|
+
|
77
|
+
* Merge pull request #96 from jpinsonault/maint-update-version-to-1.2.1.SNAPSHOT (418d5e24)
|
78
|
+
|
79
|
+
|
80
|
+
```
|
81
|
+
Merge pull request #96 from jpinsonault/maint-update-version-to-1.2.1.SNAPSHOT
|
82
|
+
|
83
|
+
(MAINT) Update version to 1.2.1.SNAPSHOT
|
84
|
+
```
|
85
|
+
* (MAINT) Update version to 1.2.1.SNAPSHOT (20d34a33)
|
86
|
+
|
87
|
+
### <a name = "1.2.0">1.2.0 - 27 Oct, 2016 (1060d251)
|
88
|
+
|
89
|
+
* (HISTORY) update ruby-hocon history for gem release 1.2.0 (1060d251)
|
90
|
+
|
91
|
+
* (GEM) update hocon version to 1.2.0 (33a9edef)
|
92
|
+
|
93
|
+
* Merge pull request #95 from jpinsonault/maint-fix-pre-release-version-string (dba994b3)
|
94
|
+
|
95
|
+
|
96
|
+
```
|
97
|
+
Merge pull request #95 from jpinsonault/maint-fix-pre-release-version-string
|
98
|
+
|
99
|
+
(MAINT) Fix version string
|
100
|
+
```
|
101
|
+
* (MAINT) Fix version string (622fb2ab)
|
102
|
+
|
103
|
+
* Merge pull request #94 from jpinsonault/maint-update-release-date (41673be4)
|
104
|
+
|
105
|
+
|
106
|
+
```
|
107
|
+
Merge pull request #94 from jpinsonault/maint-update-release-date
|
108
|
+
|
109
|
+
(MAINT) Update date in gemfile for 1.2.0 release
|
110
|
+
```
|
111
|
+
* (MAINT) Update date in gemfile for 1.2.0 release (25e834fc)
|
112
|
+
|
113
|
+
* Merge pull request #93 from jpinsonault/maint-prepare-for-1.2.0-release (c0ab30b1)
|
114
|
+
|
115
|
+
|
116
|
+
```
|
117
|
+
Merge pull request #93 from jpinsonault/maint-prepare-for-1.2.0-release
|
118
|
+
|
119
|
+
(MAINT) Update version and changelog for 1.2.0 release
|
120
|
+
```
|
121
|
+
* (MAINT) Update version and changelog for 1.2.0 release (d4ac81ac)
|
122
|
+
|
123
|
+
* Merge pull request #92 from jpinsonault/maint-revert-moving-version.rb (bd5a065e)
|
124
|
+
|
125
|
+
|
126
|
+
```
|
127
|
+
Merge pull request #92 from jpinsonault/maint-revert-moving-version.rb
|
128
|
+
|
129
|
+
Revert "(MAINT) Move version.rb to work with ci"
|
130
|
+
```
|
131
|
+
* Revert "(MAINT) Move version.rb to work with ci" (a17015fc)
|
132
|
+
|
133
|
+
|
134
|
+
```
|
135
|
+
Revert "(MAINT) Move version.rb to work with ci"
|
136
|
+
|
137
|
+
This reverts commit 5be440a433141e7dab5534d2309282d0865adca7.
|
138
|
+
```
|
139
|
+
* Merge pull request #90 from puppetlabs/add-issue-tracker-link (b046a116)
|
140
|
+
|
141
|
+
|
142
|
+
```
|
143
|
+
Merge pull request #90 from puppetlabs/add-issue-tracker-link
|
144
|
+
|
145
|
+
Include link to Jira issue tracker in README
|
146
|
+
```
|
147
|
+
* Merge pull request #91 from jpinsonault/maint-move-version.rb-for-ci (dd9753d2)
|
148
|
+
|
149
|
+
|
150
|
+
```
|
151
|
+
Merge pull request #91 from jpinsonault/maint-move-version.rb-for-ci
|
152
|
+
|
153
|
+
(MAINT) Move version.rb to work with ci
|
154
|
+
```
|
155
|
+
* (MAINT) Move version.rb to work with ci (5be440a4)
|
156
|
+
|
157
|
+
|
158
|
+
```
|
159
|
+
(MAINT) Move version.rb to work with ci
|
160
|
+
|
161
|
+
Jenkins expects the version.rb file to be under lib/<github_project>/version.rb
|
162
|
+
```
|
163
|
+
* Include link to Jira issue tracker in README (75609de4)
|
164
|
+
|
165
|
+
* Merge pull request #86 from jpinsonault/hc-92-add-cli-tool-for-hocon (ea0ddcae)
|
166
|
+
|
167
|
+
|
168
|
+
```
|
169
|
+
Merge pull request #86 from jpinsonault/hc-92-add-cli-tool-for-hocon
|
170
|
+
|
171
|
+
[WIP] (HC-92) Add cli tool for hocon
|
172
|
+
```
|
173
|
+
* (HC-92) Have unset throw an error on missing paths (2577e8fe)
|
174
|
+
|
175
|
+
|
176
|
+
```
|
177
|
+
(HC-92) Have unset throw an error on missing paths
|
178
|
+
|
179
|
+
Refactor the way errors are handled. Rather than catching the hocon
|
180
|
+
parser errors, we now raise our own error to make things clearer
|
181
|
+
|
182
|
+
Add tests for new exception
|
183
|
+
```
|
184
|
+
* (HC-92) Remove flock calls (14c548b5)
|
185
|
+
|
186
|
+
* (MAINT) Update CHANGELOG for 1.1.3 (f02b161a)
|
187
|
+
|
188
|
+
* (HC-92) Fix version require for ruby 1.9 (d21fb360)
|
189
|
+
|
190
|
+
* (HC-92) Move version string to Hocon::Version module (ca9de704)
|
191
|
+
|
192
|
+
* (HC-92) Add -f option, update docs (afe75db5)
|
193
|
+
|
194
|
+
* (HC-92) Lock files while reading/writing (6271c25e)
|
195
|
+
|
196
|
+
* (HC-92) Update readme with CLI docs (1afa6c2c)
|
197
|
+
|
198
|
+
* (HC-92) Update optparse banner with more info (2a047009)
|
199
|
+
|
200
|
+
* (HC-92) Make new render option optional (06429cac)
|
201
|
+
|
202
|
+
* (HC-92) Add tests for new render option (2762f01f)
|
203
|
+
|
204
|
+
|
205
|
+
```
|
206
|
+
(HC-92) Add tests for new render option
|
207
|
+
|
208
|
+
Adds tests for key_value_separator render option
|
209
|
+
```
|
210
|
+
* (HC-92) Add cli tests for setting complex types (3d548f33)
|
211
|
+
|
212
|
+
* (HC-92) Add key_value_separator render option (b12a822c)
|
213
|
+
|
214
|
+
|
215
|
+
```
|
216
|
+
(HC-92) Add key_value_separator render option
|
217
|
+
|
218
|
+
Also updates the CLI tool to use the colon separator in the set subcommand
|
219
|
+
```
|
220
|
+
* (HC-92) Update version to 1.2.0 (4746078e)
|
221
|
+
|
222
|
+
* (HC-92) Whitespace (b9b65fd5)
|
223
|
+
|
224
|
+
* (HC-92) Remove default space before colons in maps (12a31ca6)
|
225
|
+
|
226
|
+
* (HC-92) Add spec tests for cli functions (8b06d660)
|
227
|
+
|
228
|
+
* (HC-92) Improve modularity (846040d0)
|
229
|
+
|
230
|
+
* (HC-92) Add json output support (6a203bf3)
|
231
|
+
|
232
|
+
* (HC-92) Better error handling (88a6abca)
|
233
|
+
|
234
|
+
* (HC-92) Add --out-file support (07bdef54)
|
235
|
+
|
236
|
+
* (HC-92) Move cli code to lib dir (fb0483fc)
|
237
|
+
|
238
|
+
* (HC-92) Add STDIN support (61b872c5)
|
239
|
+
|
240
|
+
* (HC-92) Add CLI tool for hocon (21d5f01d)
|
241
|
+
|
242
|
+
### <a name = "1.1.3">1.1.3 - 12 Oct, 2016 (bf4a7d4b)
|
243
|
+
|
244
|
+
* Merge pull request #88 from cprice404/bug/master/parse-with-substitutions (bf4a7d4b)
|
245
|
+
|
246
|
+
|
247
|
+
```
|
248
|
+
Merge pull request #88 from cprice404/bug/master/parse-with-substitutions
|
249
|
+
|
250
|
+
Fix bug in `Hocon.parse` with substitutions
|
251
|
+
```
|
252
|
+
* Fix bug in `Hocon.parse` with substitutions (07b265b9)
|
253
|
+
|
254
|
+
|
255
|
+
```
|
256
|
+
Fix bug in `Hocon.parse` with substitutions
|
257
|
+
|
258
|
+
Currently, if you call `Hocon.parse` with a string that contains
|
259
|
+
substitutions, you will get a `ConfigNotResolvedError`.
|
260
|
+
|
261
|
+
We had this issue with `Hocon.load` earlier, and modified it to
|
262
|
+
include the code necessary to resolve the config object before
|
263
|
+
returning it. However, we didn't make the same changes for `parse`,
|
264
|
+
so the behavior actually diverged between the two.
|
265
|
+
|
266
|
+
This commit fixes up `parse` in the same way that we previously
|
267
|
+
fixed up `load`.
|
268
|
+
```
|
269
|
+
* Merge pull request #85 from cprice404/maint/master/200-add-maintainers (d98ad200)
|
270
|
+
|
271
|
+
|
272
|
+
```
|
273
|
+
Merge pull request #85 from cprice404/maint/master/200-add-maintainers
|
274
|
+
|
275
|
+
(200) Add MAINTAINERS
|
276
|
+
```
|
277
|
+
* (200) Add MAINTAINERS (8119f366)
|
278
|
+
|
279
|
+
* Merge pull request #84 from jpinsonault/maint-add-ruby-gems-widget (a8318435)
|
280
|
+
|
281
|
+
|
282
|
+
```
|
283
|
+
Merge pull request #84 from jpinsonault/maint-add-ruby-gems-widget
|
284
|
+
|
285
|
+
(MAINT) Add rubygems version widget
|
286
|
+
```
|
287
|
+
* (MAINT) Add rubygems version widget (3b9bb37e)
|
288
|
+
|
289
|
+
### <a name = "1.1.2">1.1.2 - 15 Jul, 2016 (6041a5c4)
|
290
|
+
|
291
|
+
* Merge pull request #83 from jpinsonault/maint-update-changelog-for-1.1.2 (6041a5c4)
|
292
|
+
|
293
|
+
|
294
|
+
```
|
295
|
+
Merge pull request #83 from jpinsonault/maint-update-changelog-for-1.1.2
|
296
|
+
|
297
|
+
(MAINT) Update changelog/version for 1.1.2 release
|
298
|
+
```
|
299
|
+
* (MAINT) Update changelog/version for 1.1.2 release (947e6aa4)
|
300
|
+
|
301
|
+
* Merge pull request #82 from Iristyle/ticket/master/HC-82-parse-files-as-utf8-with-boms (a58adc87)
|
302
|
+
|
303
|
+
|
304
|
+
```
|
305
|
+
Merge pull request #82 from Iristyle/ticket/master/HC-82-parse-files-as-utf8-with-boms
|
306
|
+
|
307
|
+
(HC-82) Enable UTF-8 with BOM parsing
|
308
|
+
```
|
309
|
+
* (HC-82) Add spec for UTF-8 filenames (b0d702c1)
|
310
|
+
|
311
|
+
|
312
|
+
```
|
313
|
+
(HC-82) Add spec for UTF-8 filenames
|
314
|
+
|
315
|
+
- Hocon does not currently handle UTF-8 filenames properly
|
316
|
+
```
|
317
|
+
* (HC-82) Remove invalid BOM spec (9a5cabea)
|
318
|
+
|
319
|
+
|
320
|
+
```
|
321
|
+
(HC-82) Remove invalid BOM spec
|
322
|
+
|
323
|
+
- A skipped test exists for validating a string can be passed to
|
324
|
+
parse_string that starts with a UTF8 BOM \uFEFF
|
325
|
+
|
326
|
+
- However, when comparing this to the Ruby JSON parser, that parser
|
327
|
+
also doesn't handle this seemingly edge case. Arguably, by the
|
328
|
+
time a string read from a file is passed to a parsing engine, it
|
329
|
+
will be in the correct encoding, and will have leading BOMs
|
330
|
+
trimmed off.
|
331
|
+
|
332
|
+
For reference, Ruby JSON behavior:
|
333
|
+
|
334
|
+
[1] pry(main)> require 'json'
|
335
|
+
=> true
|
336
|
+
|
337
|
+
[2] pry(main)> json = "\uFEFF{ \"foo\": \"bar\" }"
|
338
|
+
=> "{ \"foo\": \"bar\" }"
|
339
|
+
|
340
|
+
[3] pry(main)> JSON.parse(json)
|
341
|
+
JSON::ParserError: 757: unexpected token at '{ "foo": "bar" }'
|
342
|
+
from /usr/local/opt/rbenv/versions/2.1.9/lib/ruby/2.1.0/json/common.rb:155:in `parse'
|
343
|
+
```
|
344
|
+
* (HC-82) Add additional file encoding specs (9e04970e)
|
345
|
+
|
346
|
+
|
347
|
+
```
|
348
|
+
(HC-82) Add additional file encoding specs
|
349
|
+
|
350
|
+
- Show that UTF-8 content is properly handled
|
351
|
+
- Show that UTF-16 content is not yet supported
|
352
|
+
```
|
353
|
+
* (HC-82) Enable UTF-8 with BOM parsing (8ccf6625)
|
354
|
+
|
355
|
+
|
356
|
+
```
|
357
|
+
(HC-82) Enable UTF-8 with BOM parsing
|
358
|
+
|
359
|
+
- Previously Hocon::ConfigFactory.parse_file did not specify an
|
360
|
+
encoding, and didn't allow for files with UTF-8 BOMs on Windows.
|
361
|
+
|
362
|
+
In reality, HOCON config files should be detected by their BOM and
|
363
|
+
treated as UTF-8, UTF-16LE, UTF-16BE, UTF-32LE or UTF-32BE based on
|
364
|
+
the presence of the BOM, with a fallback to UTF-8 when one is not
|
365
|
+
present, based on RFC 4627 at https://www.ietf.org/rfc/rfc4627.txt
|
366
|
+
|
367
|
+
This fix is a bit naive as it may improperly load HOCON config
|
368
|
+
files on Windows which are UCS-2 (a precursor to UTF-16LE). Its
|
369
|
+
recommended that this be addressed later in a better File parsing
|
370
|
+
scheme that peeks at the first few bytes of the file to determine
|
371
|
+
the encoding correctly.
|
372
|
+
```
|
373
|
+
### <a name = "1.1.1">1.1.1 - 6 Jul, 2016 (5b2c8baa)
|
374
|
+
|
375
|
+
* Merge pull request #81 from janelu2/master (5b2c8baa)
|
376
|
+
|
377
|
+
|
378
|
+
```
|
379
|
+
Merge pull request #81 from janelu2/master
|
380
|
+
|
381
|
+
(MAINT) update CHANGELOG.md and version number for z release of 1.1.1
|
382
|
+
```
|
383
|
+
* (MAINT) update CHANGELOG.md and version number for z release of 1.1.1 (582cd7e2)
|
384
|
+
|
385
|
+
* Merge pull request #80 from janelu2/master (17ecc8d4)
|
386
|
+
|
387
|
+
|
388
|
+
```
|
389
|
+
Merge pull request #80 from janelu2/master
|
390
|
+
|
391
|
+
(HC-81) Fix undefined method `value_type_name' error
|
392
|
+
```
|
393
|
+
* (HC-81) Add tests and fix value_type_name calls (466ca82a)
|
394
|
+
|
395
|
+
|
396
|
+
```
|
397
|
+
(HC-81) Add tests and fix value_type_name calls
|
398
|
+
|
399
|
+
(MAINT) fix test to correctly call the wrong error
|
400
|
+
|
401
|
+
(MAINT) add require to config_value_type and use alias
|
402
|
+
```
|
403
|
+
### <a name = "1.1.0">1.1.0 - 1 Jul, 2016 (99b3145e)
|
404
|
+
|
405
|
+
* Merge pull request #78 from jpinsonault/maint-update-changelog-for-release (99b3145e)
|
406
|
+
|
407
|
+
|
408
|
+
```
|
409
|
+
Merge pull request #78 from jpinsonault/maint-update-changelog-for-release
|
410
|
+
|
411
|
+
(MAINT) Update changelog and version for release
|
412
|
+
```
|
413
|
+
* (MAINT) Fix changelog version (aa3fef17)
|
414
|
+
|
415
|
+
* Merge pull request #79 from janelu2/master (17d96e4b)
|
416
|
+
|
417
|
+
|
418
|
+
```
|
419
|
+
Merge pull request #79 from janelu2/master
|
420
|
+
|
421
|
+
(MAINT) update readme
|
422
|
+
```
|
423
|
+
* (MAINT) update readme (3123b670)
|
424
|
+
|
425
|
+
* (MAINT) Update changelog and version for release (213e10f8)
|
426
|
+
|
427
|
+
|
428
|
+
```
|
429
|
+
(MAINT) Update changelog and version for release
|
430
|
+
|
431
|
+
Update changelog
|
432
|
+
Bump version to 1.1.0
|
433
|
+
Update gitignore with Gemfile.lock
|
434
|
+
```
|
435
|
+
* Merge pull request #77 from cprice404/bug/master/HC-80-dont-shadow-ruby-class-module-name (61194207)
|
436
|
+
|
437
|
+
|
438
|
+
```
|
439
|
+
Merge pull request #77 from cprice404/bug/master/HC-80-dont-shadow-ruby-class-module-name
|
440
|
+
|
441
|
+
(HC-80) Don't shadow ruby Class/Module#name method
|
442
|
+
```
|
443
|
+
* Merge pull request #76 from cprice404/maint/master/HC-79-support-format-arg-in-load (c0c88698)
|
444
|
+
|
445
|
+
|
446
|
+
```
|
447
|
+
Merge pull request #76 from cprice404/maint/master/HC-79-support-format-arg-in-load
|
448
|
+
|
449
|
+
(HC-79) support :syntax arg in load
|
450
|
+
```
|
451
|
+
* (MAINT) Change variable name for readability (cd3505ed)
|
452
|
+
|
453
|
+
* (HC-80) Don't shadow ruby Class/Module#name method (4f7c8ccc)
|
454
|
+
|
455
|
+
|
456
|
+
```
|
457
|
+
(HC-80) Don't shadow ruby Class/Module#name method
|
458
|
+
|
459
|
+
Prior to this commit, there were a few places in the code where
|
460
|
+
we'd ported over a class-or-module-level method named `name` from
|
461
|
+
the upstream library. This isn't a good idea in Ruby because it
|
462
|
+
results in shadowing of the built in Ruby methods Class#name and
|
463
|
+
Module#name. This was causing problems for some users, e.g. in
|
464
|
+
cases where reflection is being used to examine classes.
|
465
|
+
|
466
|
+
In this commit we rename all such methods to something more specific,
|
467
|
+
and replace the calls to the old names with calls to the new names.
|
468
|
+
```
|
469
|
+
* (HC-79) support `:syntax` option in simple `load` (a5663ca6)
|
470
|
+
|
471
|
+
|
472
|
+
```
|
473
|
+
(HC-79) support `:syntax` option in simple `load`
|
474
|
+
|
475
|
+
This commit adds support for an optional `opts` map to be passed
|
476
|
+
in to the simple `load` method. If provided, this map may contain
|
477
|
+
a `:syntax` key that explicitly specifies which config format/syntax
|
478
|
+
the user expects the file to be in.
|
479
|
+
|
480
|
+
This provides a way for users to load files whose file extension
|
481
|
+
doesn't match the built-in expectations for which file extensions
|
482
|
+
use which syntaxes.
|
483
|
+
|
484
|
+
The commit also provides some error checking for the case where
|
485
|
+
an explicit `:syntax` is not passed in, and the file extension
|
486
|
+
isn't recognized. In this case, we will throw an error now, rather
|
487
|
+
than silently returning an empty map like we did in the past.
|
488
|
+
|
489
|
+
Finally, this commit adds some notes to the docs/example usage,
|
490
|
+
indicating how to pass in an explicit syntax.
|
491
|
+
```
|
492
|
+
* (MAINT) separate ruby tests from upstream tests (3cd0f049)
|
493
|
+
|
494
|
+
* Merge pull request #74 from karenvdv/server-1300-add-maintainers (ffc0e143)
|
495
|
+
|
496
|
+
|
497
|
+
```
|
498
|
+
Merge pull request #74 from karenvdv/server-1300-add-maintainers
|
499
|
+
|
500
|
+
Add maintainers section
|
501
|
+
```
|
502
|
+
* Add maintainers section (6fec1cdc)
|
503
|
+
|
504
|
+
### <a name = "1.0.1">1.0.1 - 16 Mar, 2016 (aa36b692)
|
505
|
+
|
506
|
+
* Update for 1.0.1 release (aa36b692)
|
507
|
+
|
508
|
+
* Update date for 1.0.0 release (9cbb6175)
|
509
|
+
|
510
|
+
### <a name = "1.0.0">1.0.0 - 16 Feb, 2016 (dc385fe2)
|
511
|
+
|
512
|
+
* Merge pull request #72 from jpinsonault/maint-bump-version-to-1.0.0 (dc385fe2)
|
513
|
+
|
514
|
+
|
515
|
+
```
|
516
|
+
Merge pull request #72 from jpinsonault/maint-bump-version-to-1.0.0
|
517
|
+
|
518
|
+
(MAINT) bump and relabel version 0.9.4 to 1.0.0
|
519
|
+
```
|
520
|
+
* (MAINT) Add link to readme (d6312759)
|
521
|
+
|
522
|
+
* (MAINT) Update gemfile.lock (a9b721b6)
|
523
|
+
|
524
|
+
* (MAINT) Whitespace - Cleanup README (920ffafb)
|
525
|
+
|
526
|
+
* (MAINT) Bump and relabel 0.9.4 to 1.0.0 (e129b2ee)
|
527
|
+
|
528
|
+
|
529
|
+
```
|
530
|
+
(MAINT) Bump and relabel 0.9.4 to 1.0.0
|
531
|
+
|
532
|
+
0.9.4 introduced changes that require some users to modify their require
|
533
|
+
statements due to bugfixes. In addition the API is stable enough to consider this a 1.0.0
|
534
|
+
release
|
535
|
+
|
536
|
+
1.0.0 Changlog:
|
537
|
+
This is a bugfix release.
|
538
|
+
The API is stable enough and the code is being used in production, so the version is also being bumped to 1.0.0
|
539
|
+
|
540
|
+
* Fixed a bug wherein calling "Hocon.load" would not
|
541
|
+
resolve substitutions.
|
542
|
+
* Fixed a circular dependency between the Hocon and Hocon::ConfigFactory
|
543
|
+
namespaces. Using the Hocon::ConfigFactory class now requires you to
|
544
|
+
use a `require 'hocon/config_factory'` instead of `require hocon`
|
545
|
+
* Add support for hashes with keyword keys
|
546
|
+
```
|
547
|
+
* Merge pull request #71 from fpringvaldsen/maint/changelog (2b55e3b7)
|
548
|
+
|
549
|
+
|
550
|
+
```
|
551
|
+
Merge pull request #71 from fpringvaldsen/maint/changelog
|
552
|
+
|
553
|
+
Fix changelog for 0.9.4
|
554
|
+
```
|
555
|
+
* Fix changelog for 0.9.4 (7e417107)
|
556
|
+
|
557
|
+
|
558
|
+
```
|
559
|
+
Fix changelog for 0.9.4
|
560
|
+
|
561
|
+
Add changes that went into the 0.9.4 release that weren't
|
562
|
+
listed in the changelog.
|
563
|
+
```
|
564
|
+
* (MAINT) Update Gemfile.lock (d9f1d4c8)
|
565
|
+
|
566
|
+
* (MAINT) Update for 0.9.4 release (ec909659)
|
567
|
+
|
568
|
+
* Merge pull request #70 from fpringvaldsen/maint/load-issue (1ffa268a)
|
569
|
+
|
570
|
+
|
571
|
+
```
|
572
|
+
Merge pull request #70 from fpringvaldsen/maint/load-issue
|
573
|
+
|
574
|
+
(MAINT) Fix Hocon.load substitution issue
|
575
|
+
```
|
576
|
+
* (MAINT) Fix Hocon.load substitution issue (31321f0b)
|
577
|
+
|
578
|
+
|
579
|
+
```
|
580
|
+
(MAINT) Fix Hocon.load substitution issue
|
581
|
+
|
582
|
+
Previously, Hocon.load was calling into the
|
583
|
+
ConfigFactory.parse_file method. However, the `parse` methods
|
584
|
+
in ConfigFactory do not resolve substitutions, as that is the
|
585
|
+
intent of the `load` methods.
|
586
|
+
|
587
|
+
This commit updates the Hocon.load method to call into
|
588
|
+
ConfigFactory.load_file. It also updates the readme to explain
|
589
|
+
the usage of ConfigDocuments, and adds a comment to explain
|
590
|
+
that the `load` methods in ConfigFactory should be used if
|
591
|
+
substitutions are present
|
592
|
+
```
|
593
|
+
* Merge pull request #68 from krjackso/master (f9f29a3f)
|
594
|
+
|
595
|
+
|
596
|
+
```
|
597
|
+
Merge pull request #68 from krjackso/master
|
598
|
+
|
599
|
+
Fix typo when referencing GENERIC OriginType
|
600
|
+
```
|
601
|
+
* Fix typo when referencing GENERIC OriginType (0d1a65fc)
|
602
|
+
|
603
|
+
* Merge pull request #66 from traylenator/addspec (c9f56235)
|
604
|
+
|
605
|
+
|
606
|
+
```
|
607
|
+
Merge pull request #66 from traylenator/addspec
|
608
|
+
|
609
|
+
Add spec tests to gem file. Fixes #65
|
610
|
+
```
|
611
|
+
* Add spec tests to gem file. Fixes #65 (573da794)
|
612
|
+
|
613
|
+
* Merge pull request #64 from cprice404/maint/master/fix-circular-deps (618592a1)
|
614
|
+
|
615
|
+
|
616
|
+
```
|
617
|
+
Merge pull request #64 from cprice404/maint/master/fix-circular-deps
|
618
|
+
|
619
|
+
(HC-24) Use simple API in README, fix circular deps
|
620
|
+
```
|
621
|
+
* (HC-24) Use simple API in README, fix circular deps (3783f305)
|
622
|
+
|
623
|
+
|
624
|
+
```
|
625
|
+
(HC-24) Use simple API in README, fix circular deps
|
626
|
+
|
627
|
+
This commit updates the README to show the simpler version of the
|
628
|
+
API for basic read operations.
|
629
|
+
|
630
|
+
It also fixes some circular dependencies that were causing the
|
631
|
+
example code for the ConfigDocumentFactory not to work properly.
|
632
|
+
```
|
633
|
+
* Merge pull request #62 from fpringvaldsen/improvement/TK-251/keyword-keys (0e7216c4)
|
634
|
+
|
635
|
+
|
636
|
+
```
|
637
|
+
Merge pull request #62 from fpringvaldsen/improvement/TK-251/keyword-keys
|
638
|
+
|
639
|
+
(TK-251) Convert symbol keys to strings
|
640
|
+
```
|
641
|
+
* (TK-251) Process nested hashes (724f792d)
|
642
|
+
|
643
|
+
|
644
|
+
```
|
645
|
+
(TK-251) Process nested hashes
|
646
|
+
|
647
|
+
When converting a Hashes symbol keys to strings, also process
|
648
|
+
any nested hashes that are present.
|
649
|
+
```
|
650
|
+
* (TK-251) Convert symbol keys to strings (89f57cc1)
|
651
|
+
|
652
|
+
|
653
|
+
```
|
654
|
+
(TK-251) Convert symbol keys to strings
|
655
|
+
|
656
|
+
When parsing a Hash in ConfigValueFactory, automatically convert
|
657
|
+
all symbol keys to strings.
|
658
|
+
```
|
659
|
+
### <a name = "0.9.3">0.9.3 - 14 Jul, 2015 (7defef59)
|
660
|
+
|
661
|
+
* Update Changelog and Gemspec for 0.9.3 (7defef59)
|
662
|
+
|
663
|
+
* Merge pull request #61 from fpringvaldsen/bug/TK-249/bad-comments (be17f2a4)
|
664
|
+
|
665
|
+
|
666
|
+
```
|
667
|
+
Merge pull request #61 from fpringvaldsen/bug/TK-249/bad-comments
|
668
|
+
|
669
|
+
(TK-249) Remove unnecessary comments in output
|
670
|
+
```
|
671
|
+
* (TK-249) Remove unnecessary comments in output (e893d6fc)
|
672
|
+
|
673
|
+
|
674
|
+
```
|
675
|
+
(TK-249) Remove unnecessary comments in output
|
676
|
+
|
677
|
+
Remove unnecessary "# hardcoded value" comments that were being
|
678
|
+
generated when inserting a hash or an array into a ConfigDocument.
|
679
|
+
```
|
680
|
+
### <a name = "0.9.2">0.9.2 - 30 Jun, 2015 (6b402bc2)
|
681
|
+
|
682
|
+
* Update CHANGELOG and gemspec for 0.9.2 (6b402bc2)
|
683
|
+
|
684
|
+
* Merge pull request #59 from fpringvaldsen/maint/undefined-method-fix (96499050)
|
685
|
+
|
686
|
+
|
687
|
+
```
|
688
|
+
Merge pull request #59 from fpringvaldsen/maint/undefined-method-fix
|
689
|
+
|
690
|
+
(MAINT) Fix undefined method bug
|
691
|
+
```
|
692
|
+
* (MAINT) Fix undefined method bug (a47ee9b0)
|
693
|
+
|
694
|
+
|
695
|
+
```
|
696
|
+
(MAINT) Fix undefined method bug
|
697
|
+
|
698
|
+
Fix an undefined method bug that was occurring when attempting to
|
699
|
+
add a complex value into an empty root object.
|
700
|
+
```
|
701
|
+
### <a name = "0.9.1">0.9.1 - 30 Jun, 2015 (e8c2f405)
|
702
|
+
|
703
|
+
* Update CHANGELOG and gemspec for 0.9.1 (e8c2f405)
|
704
|
+
|
705
|
+
* Merge pull request #58 from fpringvaldsen/bug/TK-246/single-line-config (c4bfc3c0)
|
706
|
+
|
707
|
+
|
708
|
+
```
|
709
|
+
Merge pull request #58 from fpringvaldsen/bug/TK-246/single-line-config
|
710
|
+
|
711
|
+
(TK-246) Fix single-line config bug
|
712
|
+
```
|
713
|
+
* (TK-246) Fix single-line config bug (9305707b)
|
714
|
+
|
715
|
+
|
716
|
+
```
|
717
|
+
(TK-246) Fix single-line config bug
|
718
|
+
|
719
|
+
Previously there was a bug wherein building out a config starting
|
720
|
+
from an empty ConfigDocument would cause the entire config to
|
721
|
+
exist on a single line. Fix this bug by modifying the addition of
|
722
|
+
new maps along a path to add multi-line maps instead of
|
723
|
+
single-line maps if the object being added to is an empty root or
|
724
|
+
a multi-line object.
|
725
|
+
```
|
726
|
+
* Merge pull request #57 from cprice404/maint/master/improve-error-messages-for-problem-tokens (afeed2a0)
|
727
|
+
|
728
|
+
|
729
|
+
```
|
730
|
+
Merge pull request #57 from cprice404/maint/master/improve-error-messages-for-problem-tokens
|
731
|
+
|
732
|
+
(MAINT) Improve error messages for Problem tokens
|
733
|
+
```
|
734
|
+
* (MAINT) Improve error messages for Problem tokens (be4a9320)
|
735
|
+
|
736
|
+
|
737
|
+
```
|
738
|
+
(MAINT) Improve error messages for Problem tokens
|
739
|
+
|
740
|
+
Prior to this commit, the `Problem` token type called
|
741
|
+
`to_s` on an internal `StringIO` object when building
|
742
|
+
up an error string to return to the user. Calling
|
743
|
+
`to_s` on a `StringIO` just causes it to print out,
|
744
|
+
basically, `#<StringIO...>`, so you don't get the
|
745
|
+
useful error message.
|
746
|
+
|
747
|
+
This patch changes the code to call `string` instead,
|
748
|
+
which returns a much more useful error message.
|
749
|
+
```
|
750
|
+
### <a name = "0.9.0">0.9.0 - 10 Apr, 2015 (aeab6ab2)
|
751
|
+
|
752
|
+
* Merge pull request #56 from jpinsonault/maint-update-for-0.9.0-release (aeab6ab2)
|
753
|
+
|
754
|
+
|
755
|
+
```
|
756
|
+
Merge pull request #56 from jpinsonault/maint-update-for-0.9.0-release
|
757
|
+
|
758
|
+
(MAINT) Update for 0.9.0 release
|
759
|
+
```
|
760
|
+
* (MAINT) Update for 0.9.0 release (a139e789)
|
761
|
+
|
762
|
+
* Merge pull request #55 from fpringvaldsen/maint/empty-doc-test (5b7b7d8f)
|
763
|
+
|
764
|
+
|
765
|
+
```
|
766
|
+
Merge pull request #55 from fpringvaldsen/maint/empty-doc-test
|
767
|
+
|
768
|
+
(MAINT) Add empty document insertion test
|
769
|
+
```
|
770
|
+
* (MAINT) Add additional ConfigValue insertion test (9d307477)
|
771
|
+
|
772
|
+
|
773
|
+
```
|
774
|
+
(MAINT) Add additional ConfigValue insertion test
|
775
|
+
|
776
|
+
Add an additional test for inserting a ConfigValue into a
|
777
|
+
ConfigDocument. Fix an issue wherein this would fail as the
|
778
|
+
rendered result of ConfigValue was not having whitespace trimmed.
|
779
|
+
```
|
780
|
+
* (MAINT) Add empty document insertion test (62394f9c)
|
781
|
+
|
782
|
+
|
783
|
+
```
|
784
|
+
(MAINT) Add empty document insertion test
|
785
|
+
|
786
|
+
Add a test for insertion into an empty ConfigDocument.
|
787
|
+
```
|
788
|
+
### <a name = "0.1.0">0.1.0 - 9 Apr, 2015 (bfdb7255)
|
789
|
+
|
790
|
+
* (MAINT) Update gemspec for 0.1.0 release (bfdb7255)
|
791
|
+
|
792
|
+
* (MAINT) Remove SimpleConfigDocument require (bea56c92)
|
793
|
+
|
794
|
+
|
795
|
+
```
|
796
|
+
(MAINT) Remove SimpleConfigDocument require
|
797
|
+
|
798
|
+
Remove the SimpleConfigDocument require from the ConfigDocument
|
799
|
+
spec, as this was causing an issue wherein Parseable would work
|
800
|
+
properly even though it needed to require SimpleConfigDocument.
|
801
|
+
```
|
802
|
+
* (MAINT) Fix uninitialized constant error (fd2abd12)
|
803
|
+
|
804
|
+
* Merge pull request #53 from fpringvaldsen/task/TK-188/refactor-parser (30c5feee)
|
805
|
+
|
806
|
+
|
807
|
+
```
|
808
|
+
Merge pull request #53 from fpringvaldsen/task/TK-188/refactor-parser
|
809
|
+
|
810
|
+
(TK-188) Refactor Parser
|
811
|
+
```
|
812
|
+
* Merge pull request #54 from jpinsonault/tk-161-port-public-api-tests (0a4fcbe0)
|
813
|
+
|
814
|
+
|
815
|
+
```
|
816
|
+
Merge pull request #54 from jpinsonault/tk-161-port-public-api-tests
|
817
|
+
|
818
|
+
(TK-161) port public api tests
|
819
|
+
```
|
820
|
+
* Added test for load_file_with_resolve_options (7afc6053)
|
821
|
+
|
822
|
+
* Addressed PR feedback (029db783)
|
823
|
+
|
824
|
+
* Merge pull request #52 from fpringvaldsen/task/TK-187/port-ConfigDocument (73471f1b)
|
825
|
+
|
826
|
+
|
827
|
+
```
|
828
|
+
Merge pull request #52 from fpringvaldsen/task/TK-187/port-ConfigDocument
|
829
|
+
|
830
|
+
(TK-187) Port ConfigDocument and tests
|
831
|
+
```
|
832
|
+
* (MAINT) Fix typos (f3102ef8)
|
833
|
+
|
834
|
+
|
835
|
+
```
|
836
|
+
(MAINT) Fix typos
|
837
|
+
|
838
|
+
Fix typos in comment and test string.
|
839
|
+
```
|
840
|
+
* (MAINT) Fix failing ConfigValue test (9ddbc290)
|
841
|
+
|
842
|
+
|
843
|
+
```
|
844
|
+
(MAINT) Fix failing ConfigValue test
|
845
|
+
|
846
|
+
Fix bug with the rendering of SimpleConfigList that was causing
|
847
|
+
a skipped ConfigValue test to fail.
|
848
|
+
```
|
849
|
+
* Refactor Parser (fdc74366)
|
850
|
+
|
851
|
+
|
852
|
+
```
|
853
|
+
Refactor Parser
|
854
|
+
|
855
|
+
Refactor the Parser class into ConfigParser, and change it to
|
856
|
+
parse ConfigNodes rather than Tokens. Change Parseable to first
|
857
|
+
parse a ConfigDocument, then use that to parse a Config.
|
858
|
+
```
|
859
|
+
* (MAINT) Clean-up loops (5d10c6fc)
|
860
|
+
|
861
|
+
|
862
|
+
```
|
863
|
+
(MAINT) Clean-up loops
|
864
|
+
|
865
|
+
Clean up certain loops in ConfigNode and ConfigDocument
|
866
|
+
implementations to be more ruby-esque.
|
867
|
+
```
|
868
|
+
* (TK-187) Port ConfigDocument tests (df22b9f7)
|
869
|
+
|
870
|
+
|
871
|
+
```
|
872
|
+
(TK-187) Port ConfigDocument tests
|
873
|
+
|
874
|
+
Port all ConfigDocument tests down to ruby-hocon and get them
|
875
|
+
passing.
|
876
|
+
```
|
877
|
+
* Merge pull request #51 from fpringvaldsen/task/TK-186/port-ConfigNode (63c8907a)
|
878
|
+
|
879
|
+
|
880
|
+
```
|
881
|
+
Merge pull request #51 from fpringvaldsen/task/TK-186/port-ConfigNode
|
882
|
+
|
883
|
+
(TK-186) Port ConfigNode tests
|
884
|
+
```
|
885
|
+
* (TK-187) Port ConfigDocument classes/interfaces (1b8f5eea)
|
886
|
+
|
887
|
+
|
888
|
+
```
|
889
|
+
(TK-187) Port ConfigDocument classes/interfaces
|
890
|
+
|
891
|
+
Port the ConfigDocument classes and interfaces from the upstream
|
892
|
+
library, sans tests.
|
893
|
+
```
|
894
|
+
* (TK-186) Update comment on AbstractConfigNodeValue (391d1c89)
|
895
|
+
|
896
|
+
|
897
|
+
```
|
898
|
+
(TK-186) Update comment on AbstractConfigNodeValue
|
899
|
+
|
900
|
+
Update the comment on the AbstractConfigNodeValue to reflect that
|
901
|
+
the module is unnecessary in Ruby and is being preserved solely
|
902
|
+
for consistency.
|
903
|
+
```
|
904
|
+
* (TK-186) Make abstract classes into modules (00a7d5dd)
|
905
|
+
|
906
|
+
|
907
|
+
```
|
908
|
+
(TK-186) Make abstract classes into modules
|
909
|
+
|
910
|
+
Change all ConfigNode classes that are abstract in the upstream
|
911
|
+
library into modules. Change the ConfigNode class to a module.
|
912
|
+
```
|
913
|
+
* (TK-186) Fix typo in comment_text method name (73da7db5)
|
914
|
+
|
915
|
+
|
916
|
+
```
|
917
|
+
(TK-186) Fix typo in comment_text method name
|
918
|
+
|
919
|
+
Change the commentText method to comment_text.
|
920
|
+
```
|
921
|
+
* (TK-187) Port ConfigDocumentParser tests (19134ddd)
|
922
|
+
|
923
|
+
|
924
|
+
```
|
925
|
+
(TK-187) Port ConfigDocumentParser tests
|
926
|
+
|
927
|
+
Port all tests for ConfigDocumentParser and ensure they are
|
928
|
+
passing.
|
929
|
+
```
|
930
|
+
* (TK-187) Port ConfigDocumentParser (18f55f46)
|
931
|
+
|
932
|
+
|
933
|
+
```
|
934
|
+
(TK-187) Port ConfigDocumentParser
|
935
|
+
|
936
|
+
Port the ConfigDocumentParser class (sans tests) from the
|
937
|
+
upstream library.
|
938
|
+
```
|
939
|
+
* (TK-161) Port Public API tests to ruby-hocon (03bc79a1)
|
940
|
+
|
941
|
+
* (MAINT) Fix issue with concatenation tests (14615490)
|
942
|
+
|
943
|
+
* (TK-186) Port ConfigNode tests (f5197a2a)
|
944
|
+
|
945
|
+
|
946
|
+
```
|
947
|
+
(TK-186) Port ConfigNode tests
|
948
|
+
|
949
|
+
Port all the ConfigNode tests in the upstream library. Make
|
950
|
+
various bugfixes to get the tests passing.
|
951
|
+
```
|
952
|
+
* Merge pull request #50 from KevinCorcoran/errmagerhd (798ab05a)
|
953
|
+
|
954
|
+
|
955
|
+
```
|
956
|
+
Merge pull request #50 from KevinCorcoran/errmagerhd
|
957
|
+
|
958
|
+
(TK-162) enable concatenation test cases + fixes
|
959
|
+
```
|
960
|
+
* (TK-186) Implement ConfigNode classes (3600a2be)
|
961
|
+
|
962
|
+
|
963
|
+
```
|
964
|
+
(TK-186) Implement ConfigNode classes
|
965
|
+
|
966
|
+
Implement all the various ConfigNode classes from the upstream
|
967
|
+
library.
|
968
|
+
```
|
969
|
+
* Merge pull request #48 from jpinsonault/tk-159-round-three-config-value-tests (5e95a622)
|
970
|
+
|
971
|
+
|
972
|
+
```
|
973
|
+
Merge pull request #48 from jpinsonault/tk-159-round-three-config-value-tests
|
974
|
+
|
975
|
+
(TK-159) Final round of config value tests
|
976
|
+
```
|
977
|
+
* Addressed PR feedback (d5c04edc)
|
978
|
+
|
979
|
+
* Merge pull request #49 from cprice404/maint/master/excepton-typo (7d31e86f)
|
980
|
+
|
981
|
+
|
982
|
+
```
|
983
|
+
Merge pull request #49 from cprice404/maint/master/excepton-typo
|
984
|
+
|
985
|
+
(MAINT) fix 'excepton' typo
|
986
|
+
```
|
987
|
+
* (MAINT) fix 'excepton' typo (2f705314)
|
988
|
+
|
989
|
+
* Merge pull request #47 from cprice404/feature/master/TK-160-more-conf-parser-tests (e73f00fb)
|
990
|
+
|
991
|
+
|
992
|
+
```
|
993
|
+
Merge pull request #47 from cprice404/feature/master/TK-160-more-conf-parser-tests
|
994
|
+
|
995
|
+
(TK-160) More config parser tests
|
996
|
+
```
|
997
|
+
* Addressed PR feedback (a5e314da)
|
998
|
+
|
999
|
+
* (TK-160) Improve comments re: BOM tests (a054355b)
|
1000
|
+
|
1001
|
+
* Merge pull request #46 from KevinCorcoran/delayed-merge (c2a58a41)
|
1002
|
+
|
1003
|
+
|
1004
|
+
```
|
1005
|
+
Merge pull request #46 from KevinCorcoran/delayed-merge
|
1006
|
+
|
1007
|
+
implement rest of CDMO + other bugfixes
|
1008
|
+
```
|
1009
|
+
* (TK-160) Finished implementing conf parser tests (d19ea3bc)
|
1010
|
+
|
1011
|
+
* (TK-160) Port multi-field comment tests (c959e2c9)
|
1012
|
+
|
1013
|
+
* (TK-160) Port comment tests (dbea64ae)
|
1014
|
+
|
1015
|
+
* (TK-160) Port more conf parser tests (07a3f335)
|
1016
|
+
|
1017
|
+
* Merge pull request #45 from cprice404/feature/master/TK-160-more-include-parser-tests (c3b622e0)
|
1018
|
+
|
1019
|
+
|
1020
|
+
```
|
1021
|
+
Merge pull request #45 from cprice404/feature/master/TK-160-more-include-parser-tests
|
1022
|
+
|
1023
|
+
(TK-160) fix remaining "valid conf" parser tests
|
1024
|
+
```
|
1025
|
+
* (TK-160) Fix typos (ac6f9c44)
|
1026
|
+
|
1027
|
+
* (TK-162) enable concatenation test cases + fixes (de643885)
|
1028
|
+
|
1029
|
+
|
1030
|
+
```
|
1031
|
+
(TK-162) enable concatenation test cases + fixes
|
1032
|
+
|
1033
|
+
Un-comment the remaining concatenation test cases that were still commented-out
|
1034
|
+
and fix bugs. Also added 'inspect' implementations and use short class names to
|
1035
|
+
make trace output match upstream, and re-wrote various bits of code to correspond
|
1036
|
+
more closely to upstream.
|
1037
|
+
```
|
1038
|
+
* (maint) port rest of MemoKey and fix a couple bugs (7374d543)
|
1039
|
+
|
1040
|
+
* (maint) sync SimpleConfigObject.== with upstream (3f4d7fe0)
|
1041
|
+
|
1042
|
+
* (maint) sync ConfigDelayedMergeObject w/ upstream (df402953)
|
1043
|
+
|
1044
|
+
* (TK-159) Final round of config value tests (cfdaa58d)
|
1045
|
+
|
1046
|
+
|
1047
|
+
```
|
1048
|
+
(TK-159) Final round of config value tests
|
1049
|
+
|
1050
|
+
Implemented AbstractConfigValue#at_path/at_key
|
1051
|
+
```
|
1052
|
+
* Merge pull request #44 from KevinCorcoran/finish-concat-test-2 (a01c2214)
|
1053
|
+
|
1054
|
+
|
1055
|
+
```
|
1056
|
+
Merge pull request #44 from KevinCorcoran/finish-concat-test-2
|
1057
|
+
|
1058
|
+
(TK-162) concat tests
|
1059
|
+
```
|
1060
|
+
* (maint) add comment about Ruby vs. Java integers (34fca36e)
|
1061
|
+
|
1062
|
+
* (TK-160) More config parser tests (b3b48fd0)
|
1063
|
+
|
1064
|
+
* (MAINT) Remove code related to '.properties' files (69367ad0)
|
1065
|
+
|
1066
|
+
* (TK-160) Get `include` "valid conf" parser tests passing (bea8a481)
|
1067
|
+
|
1068
|
+
* (TK-162) comment-out failing concat test cases (2fdb2621)
|
1069
|
+
|
1070
|
+
* Merge pull request #43 from cprice404/feature/master/TK-160-more-valid-conf-parser-tests (1da67e76)
|
1071
|
+
|
1072
|
+
|
1073
|
+
```
|
1074
|
+
Merge pull request #43 from cprice404/feature/master/TK-160-more-valid-conf-parser-tests
|
1075
|
+
|
1076
|
+
(TK-160) more valid conf parser tests
|
1077
|
+
```
|
1078
|
+
* (TK-160) re-enable += tests, they are passing now (fd646c39)
|
1079
|
+
|
1080
|
+
* Merge pull request #40 from cprice404/maint/master/re-sync-parser-and-tokenizer (903c9bdd)
|
1081
|
+
|
1082
|
+
|
1083
|
+
```
|
1084
|
+
Merge pull request #40 from cprice404/maint/master/re-sync-parser-and-tokenizer
|
1085
|
+
|
1086
|
+
(MAINT) Update Parser to match latest upstream
|
1087
|
+
```
|
1088
|
+
* (MAINT) Fix bugs and port ConfigNode interface (efcbacea)
|
1089
|
+
|
1090
|
+
* Merge pull request #42 from KevinCorcoran/config-string (710b3f80)
|
1091
|
+
|
1092
|
+
|
1093
|
+
```
|
1094
|
+
Merge pull request #42 from KevinCorcoran/config-string
|
1095
|
+
|
1096
|
+
(maint) sync ConfigString with upstream
|
1097
|
+
```
|
1098
|
+
* (MAINT) Sync ConfigDelayedMerge (4e389d3b)
|
1099
|
+
|
1100
|
+
* (MAINT) re-sync `Path` class (853b447a)
|
1101
|
+
|
1102
|
+
* Merge pull request #41 from KevinCorcoran/fix-null-in-concat (146f22bf)
|
1103
|
+
|
1104
|
+
|
1105
|
+
```
|
1106
|
+
Merge pull request #41 from KevinCorcoran/fix-null-in-concat
|
1107
|
+
|
1108
|
+
Fix null in concat
|
1109
|
+
```
|
1110
|
+
* (maint) sync ConfigString with upstream (e13ea5a7)
|
1111
|
+
|
1112
|
+
|
1113
|
+
```
|
1114
|
+
(maint) sync ConfigString with upstream
|
1115
|
+
|
1116
|
+
Also, replace calls to ConfigString.new with Quoted/Unquoted.
|
1117
|
+
```
|
1118
|
+
* (TK-162) finish porting concatenation tests (7a6f8d75)
|
1119
|
+
|
1120
|
+
* Merge pull request #39 from KevinCorcoran/resolve-source-and-concat-test (b1874e34)
|
1121
|
+
|
1122
|
+
|
1123
|
+
```
|
1124
|
+
Merge pull request #39 from KevinCorcoran/resolve-source-and-concat-test
|
1125
|
+
|
1126
|
+
port ResolveSource and concat test case
|
1127
|
+
```
|
1128
|
+
* (maint) port concatenation tests and fix bugs (f62a49c8)
|
1129
|
+
|
1130
|
+
* (maint) small refactor to match upstream (6d2474df)
|
1131
|
+
|
1132
|
+
|
1133
|
+
```
|
1134
|
+
(maint) small refactor to match upstream
|
1135
|
+
|
1136
|
+
Re-write a few bits of SimpleConfigObject.render_value_to_sb to
|
1137
|
+
make it more closely match the upstream version.
|
1138
|
+
```
|
1139
|
+
* (maint) fix bad reference to self.class (f77a983d)
|
1140
|
+
|
1141
|
+
* Merge pull request #36 from KevinCorcoran/sync-up-config-concat (6ac66904)
|
1142
|
+
|
1143
|
+
|
1144
|
+
```
|
1145
|
+
Merge pull request #36 from KevinCorcoran/sync-up-config-concat
|
1146
|
+
|
1147
|
+
(maint) sync ConfigConcatenation with upstream
|
1148
|
+
```
|
1149
|
+
* (maint) fix typo and log message (f33e5b31)
|
1150
|
+
|
1151
|
+
* Merge pull request #37 from jpinsonault/tk-159-round-two-config-value-tests (9c6b2333)
|
1152
|
+
|
1153
|
+
|
1154
|
+
```
|
1155
|
+
Merge pull request #37 from jpinsonault/tk-159-round-two-config-value-tests
|
1156
|
+
|
1157
|
+
(TK-159) Round Two of ConfigValue tests
|
1158
|
+
```
|
1159
|
+
* (maint) use self.class instead of class name (d5c8046b)
|
1160
|
+
|
1161
|
+
* (maint) fix method name to match upstream (8a5b1b12)
|
1162
|
+
|
1163
|
+
* Merge pull request #35 from cprice404/maint/master/flesh-out-simple-config-list (517ac3a3)
|
1164
|
+
|
1165
|
+
|
1166
|
+
```
|
1167
|
+
Merge pull request #35 from cprice404/maint/master/flesh-out-simple-config-list
|
1168
|
+
|
1169
|
+
(MAINT) Flesh out SimpleConfigList
|
1170
|
+
```
|
1171
|
+
* Addressed PR feedback (a142e824)
|
1172
|
+
|
1173
|
+
* (MAINT) Fix immutable exception type, bugs in SCOrigin (c1696790)
|
1174
|
+
|
1175
|
+
|
1176
|
+
```
|
1177
|
+
(MAINT) Fix immutable exception type, bugs in SCOrigin
|
1178
|
+
|
1179
|
+
This commit does the following:
|
1180
|
+
|
1181
|
+
* Changes the exception type for the `we_are_immutable` cases
|
1182
|
+
to use a new `UnsupportedOperationError`, to make the behavior
|
1183
|
+
model the Java version more closely.
|
1184
|
+
* Fix a couple of bugs in the ==/hash methods of SimpleConfigOrigin
|
1185
|
+
```
|
1186
|
+
* (MAINT) Update Parser to match latest upstream (f4b4ee62)
|
1187
|
+
|
1188
|
+
* (TK-162) additional concatenation test case (2650e4b2)
|
1189
|
+
|
1190
|
+
|
1191
|
+
```
|
1192
|
+
(TK-162) additional concatenation test case
|
1193
|
+
|
1194
|
+
... and the changes to the production code required for it to pass.
|
1195
|
+
```
|
1196
|
+
* (maint) sync ResolveSource with upstream version (153c91e3)
|
1197
|
+
|
1198
|
+
* (MAINT) Flesh out SimpleConfigOrigin (8179f4e5)
|
1199
|
+
|
1200
|
+
* Merge pull request #34 from cprice404/maint/master/flesh-out-simple-config-object (1b4976c4)
|
1201
|
+
|
1202
|
+
|
1203
|
+
```
|
1204
|
+
Merge pull request #34 from cprice404/maint/master/flesh-out-simple-config-object
|
1205
|
+
|
1206
|
+
(MAINT) flesh out simple config object
|
1207
|
+
```
|
1208
|
+
* (MAINT) Flesh out SimpleConfigList (35ec6306)
|
1209
|
+
|
1210
|
+
* (maint) sync ConfigConcatenation with upstream (ef2dbdff)
|
1211
|
+
|
1212
|
+
* (MAINT) Change `RuntimeError` to `ConfigError`. (e805e83c)
|
1213
|
+
|
1214
|
+
* (TK-160) Get most 'valid conf' parser tests passing (7c93a5b3)
|
1215
|
+
|
1216
|
+
|
1217
|
+
```
|
1218
|
+
(TK-160) Get most 'valid conf' parser tests passing
|
1219
|
+
|
1220
|
+
This commit fixes a ton of bugs and syncs some classes necessary
|
1221
|
+
to get most of the 'valid conf' parser tests passing.
|
1222
|
+
```
|
1223
|
+
* (MAINT) Another fix to a bad line in SCO (3b638f5c)
|
1224
|
+
|
1225
|
+
* (MAINT) fix bad line of port of SimpleConfigObject (c24850e3)
|
1226
|
+
|
1227
|
+
* (TK-160) Add `it` block for test counts (af7cfc2e)
|
1228
|
+
|
1229
|
+
|
1230
|
+
```
|
1231
|
+
(TK-160) Add `it` block for test counts
|
1232
|
+
|
1233
|
+
Adding this `it` block causes rspec to correctly update the
|
1234
|
+
test counts based on these invalid configuration parsing tests.
|
1235
|
+
```
|
1236
|
+
* (MAINT) Finish porting / clean up AbstractConfigObject (bad5d034)
|
1237
|
+
|
1238
|
+
* Merge pull request #33 from cprice404/feature/master/TK-160-port-conf-parser-tests (f980ff46)
|
1239
|
+
|
1240
|
+
|
1241
|
+
```
|
1242
|
+
Merge pull request #33 from cprice404/feature/master/TK-160-port-conf-parser-tests
|
1243
|
+
|
1244
|
+
(TK-160) Port minimal `include` functionality
|
1245
|
+
```
|
1246
|
+
* (TK-160) fix whitespace, add cause to MalformedUrlError (0d9afb51)
|
1247
|
+
|
1248
|
+
* (MAINT) Finish porting / clean up AbstractConfigValue (ee244518)
|
1249
|
+
|
1250
|
+
* (MAINT) Finish porting / clean up SimpleConfigObject (659bbcda)
|
1251
|
+
|
1252
|
+
* (TK-160) Fix config parse tests related to config_reference (d7f35022)
|
1253
|
+
|
1254
|
+
* Merge pull request #32 from jpinsonault/tk-159-partial-set-of-config-value-tests (82648f63)
|
1255
|
+
|
1256
|
+
|
1257
|
+
```
|
1258
|
+
Merge pull request #32 from jpinsonault/tk-159-partial-set-of-config-value-tests
|
1259
|
+
|
1260
|
+
(TK-159) Partial set of ConfigValue tests implemented
|
1261
|
+
```
|
1262
|
+
* Added another include_all? test, fixed description typo (60c5f83a)
|
1263
|
+
|
1264
|
+
* (TK-160) Got most of the `reference` tests passing. (4ce36feb)
|
1265
|
+
|
1266
|
+
* (TK-160) Port minimal `include` functionality (04989412)
|
1267
|
+
|
1268
|
+
|
1269
|
+
```
|
1270
|
+
(TK-160) Port minimal `include` functionality
|
1271
|
+
|
1272
|
+
This commit re-enables some disabled config parser tests that
|
1273
|
+
had been failing due to missing functionality around HOCON's
|
1274
|
+
`include` capabilities. It also includes a minimal port
|
1275
|
+
of all of the `include` functionality that was required
|
1276
|
+
to get the tests passing.
|
1277
|
+
```
|
1278
|
+
* Addressed PR comments (16ccac67)
|
1279
|
+
|
1280
|
+
|
1281
|
+
```
|
1282
|
+
Addressed PR comments
|
1283
|
+
|
1284
|
+
Implemented and added test for SimpleConfigList#include_all?
|
1285
|
+
Made ConfigReference#not_resolved private and not static
|
1286
|
+
Fixed typo in ConfigReference#relativized
|
1287
|
+
ConfigDelayedMergeObject#unwrapped now throws not_resolved
|
1288
|
+
Made various methods private to match Java version
|
1289
|
+
SimpleConfigObject#map_equals: got rid of confusing ugly lambda, uses sorted keys now
|
1290
|
+
No longer flay the ConfigDelayedMerge objects
|
1291
|
+
```
|
1292
|
+
* Using self in test_utils (efa3151b)
|
1293
|
+
|
1294
|
+
* (TK-159) More ConfigValue tests (5d60b6d0)
|
1295
|
+
|
1296
|
+
|
1297
|
+
```
|
1298
|
+
(TK-159) More ConfigValue tests
|
1299
|
+
|
1300
|
+
Another set of tests for config_value_spec. There will be at least one more after this one.
|
1301
|
+
|
1302
|
+
Added a few methods to AbstractConfigObject
|
1303
|
+
Made the definitions of merge_origins static to match the java
|
1304
|
+
Implemented render/render_to_sb methods for ConfigDelayedMerge
|
1305
|
+
|
1306
|
+
Fixed DefaultTransformer::transform method to actually compare the value type
|
1307
|
+
|
1308
|
+
Made SimpleConfigObject::indent static
|
1309
|
+
|
1310
|
+
SimpleConfigOrigin::merge_origins handles merging more than two tokens correctly
|
1311
|
+
|
1312
|
+
Implemented SimpleConfigOrigin#filename to use Chris's Url class
|
1313
|
+
|
1314
|
+
A couple methods in tokens.rb
|
1315
|
+
get_substitution_path_expression
|
1316
|
+
get_substitution_optional
|
1317
|
+
|
1318
|
+
Commented out some failing tests in conf_parser_spec until some missing functionality is implmented
|
1319
|
+
```
|
1320
|
+
* Merge pull request #31 from cprice404/feature/master/TK-160-port-conf-parser-tests (f28f78ea)
|
1321
|
+
|
1322
|
+
|
1323
|
+
```
|
1324
|
+
Merge pull request #31 from cprice404/feature/master/TK-160-port-conf-parser-tests
|
1325
|
+
|
1326
|
+
(TK-160) Initial scaffolding for conf parser tests
|
1327
|
+
```
|
1328
|
+
* (MAINT) add missing newline at end of file (ee375afb)
|
1329
|
+
|
1330
|
+
* (TK-160) Change `t` to `invalid` to match upstream (012dac77)
|
1331
|
+
|
1332
|
+
* (TK-160) Initial scaffolding for conf parser tests (04d56c9e)
|
1333
|
+
|
1334
|
+
|
1335
|
+
```
|
1336
|
+
(TK-160) Initial scaffolding for conf parser tests
|
1337
|
+
|
1338
|
+
This commit ports over the first few ConfParser tests, and fixes
|
1339
|
+
a few bugs to get them passing.
|
1340
|
+
```
|
1341
|
+
* Merge pull request #29 from KevinCorcoran/with--vs-set (08ca846a)
|
1342
|
+
|
1343
|
+
|
1344
|
+
```
|
1345
|
+
Merge pull request #29 from KevinCorcoran/with--vs-set
|
1346
|
+
|
1347
|
+
(maint) rename methods to match upstream
|
1348
|
+
```
|
1349
|
+
* Merge pull request #30 from cprice404/maint/master/add-utf8-encoding-pragma (0f3ceb58)
|
1350
|
+
|
1351
|
+
|
1352
|
+
```
|
1353
|
+
Merge pull request #30 from cprice404/maint/master/add-utf8-encoding-pragma
|
1354
|
+
|
1355
|
+
(MAINT) Add utf-8 encoding pragma to all source files
|
1356
|
+
```
|
1357
|
+
* (MAINT) Add utf-8 encoding pragma to all source files (1e3b1a84)
|
1358
|
+
|
1359
|
+
|
1360
|
+
```
|
1361
|
+
(MAINT) Add utf-8 encoding pragma to all source files
|
1362
|
+
|
1363
|
+
Because ruby--
|
1364
|
+
```
|
1365
|
+
* (maint) rename methods to match upstream (7ed85816)
|
1366
|
+
|
1367
|
+
|
1368
|
+
```
|
1369
|
+
(maint) rename methods to match upstream
|
1370
|
+
|
1371
|
+
Rename methods whose names start with "set_" or "with_" to match
|
1372
|
+
the names of these methods in the upstream Java project.
|
1373
|
+
```
|
1374
|
+
* Merge pull request #28 from KevinCorcoran/concatenation (212f6b7c)
|
1375
|
+
|
1376
|
+
|
1377
|
+
```
|
1378
|
+
Merge pull request #28 from KevinCorcoran/concatenation
|
1379
|
+
|
1380
|
+
(TK-162) implement concatenation and substitution
|
1381
|
+
```
|
1382
|
+
* (maint) fix bugs identified during PR review (d608f4a5)
|
1383
|
+
|
1384
|
+
* (TK-162) implement concatenation and substitution (bc71ba0f)
|
1385
|
+
|
1386
|
+
|
1387
|
+
```
|
1388
|
+
(TK-162) implement concatenation and substitution
|
1389
|
+
|
1390
|
+
Initial implementation of concatenation and substitution. Ported the first test case
|
1391
|
+
in ConcatenationTest and as much of the production code as it took to get it to pass.
|
1392
|
+
```
|
1393
|
+
* Merge pull request #27 from KevinCorcoran/add-test-util (65e3ab85)
|
1394
|
+
|
1395
|
+
|
1396
|
+
```
|
1397
|
+
Merge pull request #27 from KevinCorcoran/add-test-util
|
1398
|
+
|
1399
|
+
(maint) add TestUtils.parse_config
|
1400
|
+
```
|
1401
|
+
* (maint) add TestUtils.parse_config (1b47f6b4)
|
1402
|
+
|
1403
|
+
* Merge pull request #24 from jpinsonault/tk-169-setup-travis (6e5e8698)
|
1404
|
+
|
1405
|
+
|
1406
|
+
```
|
1407
|
+
Merge pull request #24 from jpinsonault/tk-169-setup-travis
|
1408
|
+
|
1409
|
+
(TK-169) Add travis support
|
1410
|
+
```
|
1411
|
+
* Updated Gemfile.lock (d8bd873e)
|
1412
|
+
|
1413
|
+
* Removed rake dependency and Rakefile, changed .travis.yml to run rspec instead of rake (9c36b479)
|
1414
|
+
|
1415
|
+
* Merge pull request #26 from jmccure/port-lossless-tokens (a7018fd9)
|
1416
|
+
|
1417
|
+
|
1418
|
+
```
|
1419
|
+
Merge pull request #26 from jmccure/port-lossless-tokens
|
1420
|
+
|
1421
|
+
Add lossless comment tokens
|
1422
|
+
```
|
1423
|
+
* Amend lossless token test name after feedback (9b94c6a9)
|
1424
|
+
|
1425
|
+
* Add lossless comment tokens (f14161f3)
|
1426
|
+
|
1427
|
+
* Merge pull request #22 from jpinsonault/tk-158-port-path-tests (005a8b6f)
|
1428
|
+
|
1429
|
+
|
1430
|
+
```
|
1431
|
+
Merge pull request #22 from jpinsonault/tk-158-port-path-tests
|
1432
|
+
|
1433
|
+
(TK-158) Port Path tests to ruby hocon
|
1434
|
+
```
|
1435
|
+
* Merge pull request #25 from KevinCorcoran/TK-128/fix-for-IP-addresses (1feaba32)
|
1436
|
+
|
1437
|
+
|
1438
|
+
```
|
1439
|
+
Merge pull request #25 from KevinCorcoran/TK-128/fix-for-IP-addresses
|
1440
|
+
|
1441
|
+
(TK-128) fix tokenization of unquoted strings
|
1442
|
+
```
|
1443
|
+
* Merge pull request #23 from KevinCorcoran/update-gemspec (c4da445a)
|
1444
|
+
|
1445
|
+
|
1446
|
+
```
|
1447
|
+
Merge pull request #23 from KevinCorcoran/update-gemspec
|
1448
|
+
|
1449
|
+
(maint) update gemspec with new URL and authors
|
1450
|
+
```
|
1451
|
+
* Changed command to use rake spec (5ae8b396)
|
1452
|
+
|
1453
|
+
* Addressed PR feedback (bd80a3ef)
|
1454
|
+
|
1455
|
+
|
1456
|
+
```
|
1457
|
+
Addressed PR feedback
|
1458
|
+
|
1459
|
+
Implemented Path#from_path_iterator as a constructor
|
1460
|
+
|
1461
|
+
Fixed typos
|
1462
|
+
|
1463
|
+
Implemented TokenIterator#to_list
|
1464
|
+
|
1465
|
+
Fleshed out BadPath exception message handling logic
|
1466
|
+
```
|
1467
|
+
* (TK-128) fix tokenization of unquoted strings (224c4dfd)
|
1468
|
+
|
1469
|
+
|
1470
|
+
```
|
1471
|
+
(TK-128) fix tokenization of unquoted strings
|
1472
|
+
|
1473
|
+
This commit fixes the tokenization of unquoted strings which might be
|
1474
|
+
numbers. In particular, this affects IP addresses.
|
1475
|
+
|
1476
|
+
The tokenizer aggressively attempts to parse such strings as
|
1477
|
+
either a Float or Integer and relies on an error being raised to
|
1478
|
+
indicate when the string is not actually a valid number. However,
|
1479
|
+
`to_i` and `to_f` never raise execptions, so the constructors must be
|
1480
|
+
used instead.
|
1481
|
+
```
|
1482
|
+
* Changed script command (06fc855a)
|
1483
|
+
|
1484
|
+
* Changed rspec command (37d581cc)
|
1485
|
+
|
1486
|
+
* (TK-169) Add travis support (3fc140da)
|
1487
|
+
|
1488
|
+
* (maint) update gemspec with new URL and authors (d6561e42)
|
1489
|
+
|
1490
|
+
* (TK-159) Partial set of ConfigValue tests implemented (c4abaf2e)
|
1491
|
+
|
1492
|
+
|
1493
|
+
```
|
1494
|
+
(TK-159) Partial set of ConfigValue tests implemented
|
1495
|
+
This is a partial set of the tests for ConfigValueTest.scala
|
1496
|
+
We're going to get whatever functionality I've implemented in this PR so others can use it and
|
1497
|
+
avoid creating merge conflicts.
|
1498
|
+
|
1499
|
+
The rest of the PRs will come as much smaller chunks of effort
|
1500
|
+
|
1501
|
+
This branch was rebased on top of Kevin's tk-162 PR, and hopefully I merged my changes into it without breaking the tests didn't catch.
|
1502
|
+
|
1503
|
+
Implemented parts of:
|
1504
|
+
ConfigDelayedMerge
|
1505
|
+
ConfigDelayedMergeObject
|
1506
|
+
ConfigReference
|
1507
|
+
ReplaceableMergeStack module
|
1508
|
+
|
1509
|
+
SimpleConfigList/Object now behave like arrays/hashes by delegating required functions to their @value attribute
|
1510
|
+
|
1511
|
+
Implemented ==() and hash() for a bunch of classes
|
1512
|
+
|
1513
|
+
Many other small changes
|
1514
|
+
```
|
1515
|
+
* Merge pull request #21 from jpinsonault/tk-157-port-token-tests (45414478)
|
1516
|
+
|
1517
|
+
|
1518
|
+
```
|
1519
|
+
Merge pull request #21 from jpinsonault/tk-157-port-token-tests
|
1520
|
+
|
1521
|
+
Tk 157 port token tests
|
1522
|
+
```
|
1523
|
+
* Moved shared examples into test_utils.rb and extracted out the random object examples (95a0db9b)
|
1524
|
+
|
1525
|
+
* Extracted shared examples into separate file for reuse in other tests (f9fe3386)
|
1526
|
+
|
1527
|
+
* (TK-158) Port Path tests to ruby hocon (bd832af6)
|
1528
|
+
|
1529
|
+
* Removed unused TestUtils method (8d7af9ec)
|
1530
|
+
|
1531
|
+
* (TK-157) Port Token tests to ruby hocon (921f9883)
|
1532
|
+
|
1533
|
+
|
1534
|
+
```
|
1535
|
+
(TK-157) Port Token tests to ruby hocon
|
1536
|
+
|
1537
|
+
Ported the Token tests
|
1538
|
+
This involved implementing various == and hash functions for Token subclasses and Config types
|
1539
|
+
```
|
1540
|
+
* Merge pull request #20 from jpinsonault/tk-155-port-tokenizer-tests (5ebd16eb)
|
1541
|
+
|
1542
|
+
|
1543
|
+
```
|
1544
|
+
Merge pull request #20 from jpinsonault/tk-155-port-tokenizer-tests
|
1545
|
+
|
1546
|
+
(TK-155) Port tokenizer tests to ruby hocon
|
1547
|
+
```
|
1548
|
+
* Lots of fixes for PR (039d6f42)
|
1549
|
+
|
1550
|
+
|
1551
|
+
```
|
1552
|
+
Lots of fixes for PR
|
1553
|
+
|
1554
|
+
Used single quotes where appropriate
|
1555
|
+
Extracted tokenize function
|
1556
|
+
Changed TokenIterator.problem occurances to self.class.problem
|
1557
|
+
```
|
1558
|
+
* Implemented == method for token subtypes (e6a4b56b)
|
1559
|
+
|
1560
|
+
* (TK-155) Port tokenizer tests to ruby hocon (6a2e3f83)
|
1561
|
+
|
1562
|
+
|
1563
|
+
```
|
1564
|
+
(TK-155) Port tokenizer tests to ruby hocon
|
1565
|
+
|
1566
|
+
Ported all the java tests from the hocon library to ruby-hocon
|
1567
|
+
Added a few more here and there
|
1568
|
+
|
1569
|
+
Implemented misc missing functions from the java library to get the tests passing
|
1570
|
+
|
1571
|
+
Fixed bug in tokenizer that ignored whitespace between tokens
|
1572
|
+
```
|
1573
|
+
* Update gemspec for 0.0.7 release (71f475fe)
|
1574
|
+
|
1575
|
+
* Merge pull request #18 from fpringvaldsen/json-patch (74e6ed8d)
|
1576
|
+
|
1577
|
+
|
1578
|
+
```
|
1579
|
+
Merge pull request #18 from fpringvaldsen/json-patch
|
1580
|
+
|
1581
|
+
Allow gem to parse JSON files
|
1582
|
+
```
|
1583
|
+
* Merge pull request #16 from fpringvaldsen/readme-disclaimer (df334bd8)
|
1584
|
+
|
1585
|
+
|
1586
|
+
```
|
1587
|
+
Merge pull request #16 from fpringvaldsen/readme-disclaimer
|
1588
|
+
|
1589
|
+
Add disclaimer to README
|
1590
|
+
```
|
1591
|
+
* Merge pull request #17 from fpringvaldsen/implement-end-token (b28b2909)
|
1592
|
+
|
1593
|
+
|
1594
|
+
```
|
1595
|
+
Merge pull request #17 from fpringvaldsen/implement-end-token
|
1596
|
+
|
1597
|
+
Fix NameError when parsing {\n}
|
1598
|
+
```
|
1599
|
+
* Allow gem to parse JSON files (b72cae0b)
|
1600
|
+
|
1601
|
+
|
1602
|
+
```
|
1603
|
+
Allow gem to parse JSON files
|
1604
|
+
|
1605
|
+
Allow the ruby hocon gem to parse JSON files. Previously,
|
1606
|
+
attempting to parse a JSON file would lead to an uninitialized
|
1607
|
+
constant error.
|
1608
|
+
```
|
1609
|
+
* Fix NameError when parsing {\n} (b1781fee)
|
1610
|
+
|
1611
|
+
|
1612
|
+
```
|
1613
|
+
Fix NameError when parsing {\n}
|
1614
|
+
|
1615
|
+
Fix a NameError that would occur when a string containing
|
1616
|
+
{\n} was parsed.
|
1617
|
+
```
|
1618
|
+
* Add disclaimer to README (9f4b8df1)
|
1619
|
+
|
1620
|
+
|
1621
|
+
```
|
1622
|
+
Add disclaimer to README
|
1623
|
+
|
1624
|
+
Add a disclaimer to the README explaining that this library is in
|
1625
|
+
an experimental state and some features may not work properly.
|
1626
|
+
```
|
1627
|
+
* Update gemspec for 0.0.6 release (1613e233)
|
1628
|
+
|
1629
|
+
* Merge pull request #15 from waynr/maint (b25f64f7)
|
1630
|
+
|
1631
|
+
|
1632
|
+
```
|
1633
|
+
Merge pull request #15 from waynr/maint
|
1634
|
+
|
1635
|
+
(MAINT) Fix spec tests such that they work on ruby-1.8.7-p352
|
1636
|
+
```
|
1637
|
+
* Fix unecessarily strict test case. (3ed91425)
|
1638
|
+
|
1639
|
+
|
1640
|
+
```
|
1641
|
+
Fix unecessarily strict test case.
|
1642
|
+
|
1643
|
+
As it turns out, hocon does not actually require that the output be
|
1644
|
+
rendered in the same order by every implementation so when running with
|
1645
|
+
ruby-1.9.x vs ruby-1.8.7-p352 for instance the rendered string may not have
|
1646
|
+
variables specified in the same order.
|
1647
|
+
|
1648
|
+
However, hocon does require that comments be matched to their variables. This
|
1649
|
+
patch validates that behavior by creating a hash of config-lines mapped to lists
|
1650
|
+
of preceding comments and verifies that this hash is the same before and after
|
1651
|
+
rendering regardless of which hocon implementation created the "original" output
|
1652
|
+
file.
|
1653
|
+
|
1654
|
+
Also, I find the input vs output semantics and the way variables with these
|
1655
|
+
names are used just a little confusing but whatever.
|
1656
|
+
|
1657
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1658
|
+
```
|
1659
|
+
* Remove unnecessary brackets in regex. (f0a72925)
|
1660
|
+
|
1661
|
+
|
1662
|
+
```
|
1663
|
+
Remove unnecessary brackets in regex.
|
1664
|
+
|
1665
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1666
|
+
```
|
1667
|
+
* Minor rspec testcase code cleanup. (a95cff41)
|
1668
|
+
|
1669
|
+
|
1670
|
+
```
|
1671
|
+
Minor rspec testcase code cleanup.
|
1672
|
+
|
1673
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1674
|
+
```
|
1675
|
+
* Fix re-parsed output test cases. (e5c4d884)
|
1676
|
+
|
1677
|
+
|
1678
|
+
```
|
1679
|
+
Fix re-parsed output test cases.
|
1680
|
+
|
1681
|
+
This testcase should not care about the rendered form of the re-parsed output
|
1682
|
+
since A) the hocon spec does not guarantee exact output similarity and B)
|
1683
|
+
testing that comments remain above the variables they describe is taken care of
|
1684
|
+
in the previous test case.
|
1685
|
+
|
1686
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1687
|
+
```
|
1688
|
+
* Fix uninitialized constant error in ruby-1.8.7-p352 (53151934)
|
1689
|
+
|
1690
|
+
|
1691
|
+
```
|
1692
|
+
Fix uninitialized constant error in ruby-1.8.7-p352
|
1693
|
+
|
1694
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1695
|
+
```
|
1696
|
+
* Fix tokenizer for ruby-1.8.7-p352 (00fe96e2)
|
1697
|
+
|
1698
|
+
|
1699
|
+
```
|
1700
|
+
Fix tokenizer for ruby-1.8.7-p352
|
1701
|
+
|
1702
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1703
|
+
```
|
1704
|
+
* Fix default Rake task for ruby-1.8.7-p352 (f3bb2240)
|
1705
|
+
|
1706
|
+
|
1707
|
+
```
|
1708
|
+
Fix default Rake task for ruby-1.8.7-p352
|
1709
|
+
|
1710
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1711
|
+
```
|
1712
|
+
* Merge pull request #13 from cprice404/maint/master/clean-up-requires (9868fd6f)
|
1713
|
+
|
1714
|
+
|
1715
|
+
```
|
1716
|
+
Merge pull request #13 from cprice404/maint/master/clean-up-requires
|
1717
|
+
|
1718
|
+
Clean up require statements
|
1719
|
+
```
|
1720
|
+
* Merge pull request #14 from fpringvaldsen/error-handling (8be042e6)
|
1721
|
+
|
1722
|
+
|
1723
|
+
```
|
1724
|
+
Merge pull request #14 from fpringvaldsen/error-handling
|
1725
|
+
|
1726
|
+
Improve Error Handling with invalid config
|
1727
|
+
```
|
1728
|
+
* Improve Error Handling with invalid config (64d6166f)
|
1729
|
+
|
1730
|
+
|
1731
|
+
```
|
1732
|
+
Improve Error Handling with invalid config
|
1733
|
+
|
1734
|
+
Implement Error Handling when an invalid config is parsed.
|
1735
|
+
```
|
1736
|
+
* Clean up require statements (f866d790)
|
1737
|
+
|
1738
|
+
### <a name = "0.0.5">0.0.5 - 1 Oct, 2014 (67d264f4)
|
1739
|
+
|
1740
|
+
* Update gemspec for 0.0.5 release (67d264f4)
|
1741
|
+
|
1742
|
+
* Merge pull request #12 from fpringvaldsen/add-methods-for-puppet (78c7afb9)
|
1743
|
+
|
1744
|
+
|
1745
|
+
```
|
1746
|
+
Merge pull request #12 from fpringvaldsen/add-methods-for-puppet
|
1747
|
+
|
1748
|
+
Add methods required for puppet .conf module
|
1749
|
+
```
|
1750
|
+
* Remove commented line (d704cda2)
|
1751
|
+
|
1752
|
+
|
1753
|
+
```
|
1754
|
+
Remove commented line
|
1755
|
+
|
1756
|
+
Delete commented constant in the Path class that was no longer
|
1757
|
+
needed.
|
1758
|
+
```
|
1759
|
+
* Move requires into Hocon module (935b2cc5)
|
1760
|
+
|
1761
|
+
|
1762
|
+
```
|
1763
|
+
Move requires into Hocon module
|
1764
|
+
|
1765
|
+
Move requires for all files in the Hocon module into
|
1766
|
+
the module itself to eliminate uninitialized constant errors.
|
1767
|
+
```
|
1768
|
+
* Fix ConfigImpl bug and add more tests (c892c0f4)
|
1769
|
+
|
1770
|
+
|
1771
|
+
```
|
1772
|
+
Fix ConfigImpl bug and add more tests
|
1773
|
+
|
1774
|
+
Fix bug in ConfigImpl wherein a boolean would be converted into
|
1775
|
+
a ConfigBoolean with value true even if the boolean is false.
|
1776
|
+
Increase test coverage for ConfigValueFactory tests by adding
|
1777
|
+
a test to ensure this bug is no longer happening, and increase
|
1778
|
+
test coverage of SimpleConfig spec tests by ensuring that
|
1779
|
+
data structures can be added to a config.
|
1780
|
+
```
|
1781
|
+
* Add without_path method (d23fdcde)
|
1782
|
+
|
1783
|
+
|
1784
|
+
```
|
1785
|
+
Add without_path method
|
1786
|
+
|
1787
|
+
Port without_path method from the Java HOCON library into the
|
1788
|
+
SimpleConfig class.
|
1789
|
+
```
|
1790
|
+
* Add at_key and at_path methods (8323c2a6)
|
1791
|
+
|
1792
|
+
|
1793
|
+
```
|
1794
|
+
Add at_key and at_path methods
|
1795
|
+
|
1796
|
+
Port the at_key and at_path methods from the Java HOCON library
|
1797
|
+
into the AbstractConfigValue class.
|
1798
|
+
```
|
1799
|
+
* Add "add" method to TokenWithComments (3430c3b7)
|
1800
|
+
|
1801
|
+
|
1802
|
+
```
|
1803
|
+
Add "add" method to TokenWithComments
|
1804
|
+
|
1805
|
+
Port the "add" method to the TokenWithComments class.
|
1806
|
+
```
|
1807
|
+
* Fix requires in ConfigValueFactory (a4074d71)
|
1808
|
+
|
1809
|
+
|
1810
|
+
```
|
1811
|
+
Fix requires in ConfigValueFactory
|
1812
|
+
|
1813
|
+
Fix the require statements so that ConfigValueFactory can be
|
1814
|
+
required without requiring other files.
|
1815
|
+
```
|
1816
|
+
* Add ConfigValueFactory (ae88610e)
|
1817
|
+
|
1818
|
+
|
1819
|
+
```
|
1820
|
+
Add ConfigValueFactory
|
1821
|
+
|
1822
|
+
This commit adds a basic implementation of the ConfigValueFactory
|
1823
|
+
class. This class contains only one method, with_any_ref, which
|
1824
|
+
takes an object and transforms it into a ConfigObject.
|
1825
|
+
```
|
1826
|
+
* Add with_value method to SimpleConfig (760f7743)
|
1827
|
+
|
1828
|
+
|
1829
|
+
```
|
1830
|
+
Add with_value method to SimpleConfig
|
1831
|
+
|
1832
|
+
Port the with_value method in the SimpleConfig class from
|
1833
|
+
the Java HOCON library.
|
1834
|
+
```
|
1835
|
+
* Add has_path method (655c1beb)
|
1836
|
+
|
1837
|
+
|
1838
|
+
```
|
1839
|
+
Add has_path method
|
1840
|
+
|
1841
|
+
Port the has_path method in the SimpleConfig class from the
|
1842
|
+
Java HOCON library.
|
1843
|
+
```
|
1844
|
+
* Put get_value tests into their own file (9339f606)
|
1845
|
+
|
1846
|
+
|
1847
|
+
```
|
1848
|
+
Put get_value tests into their own file
|
1849
|
+
|
1850
|
+
Move the tests of the SimpleConfig get_value method into a new
|
1851
|
+
file, simple_config_spec.rb
|
1852
|
+
```
|
1853
|
+
* Add get_value method to SimpleConfig (bfb63a35)
|
1854
|
+
|
1855
|
+
|
1856
|
+
```
|
1857
|
+
Add get_value method to SimpleConfig
|
1858
|
+
|
1859
|
+
Add the get_value method to SimpleConfig, which allows the user
|
1860
|
+
to get a value from a configuration file. Add tests for this
|
1861
|
+
method.
|
1862
|
+
```
|
1863
|
+
* Merge pull request #8 from dakatsuka/add-bundler-and-rake (d204b344)
|
1864
|
+
|
1865
|
+
|
1866
|
+
```
|
1867
|
+
Merge pull request #8 from dakatsuka/add-bundler-and-rake
|
1868
|
+
|
1869
|
+
Add bundler and rake
|
1870
|
+
```
|
1871
|
+
* Merge pull request #9 from dakatsuka/support-boolean (f584904f)
|
1872
|
+
|
1873
|
+
|
1874
|
+
```
|
1875
|
+
Merge pull request #9 from dakatsuka/support-boolean
|
1876
|
+
|
1877
|
+
Support boolean
|
1878
|
+
```
|
1879
|
+
* Add tests for Hocon::Impl::ConfigBoolean (31fd73b6)
|
1880
|
+
|
1881
|
+
* Implement Hocon::Impl::ConfigBoolean (927d64b7)
|
1882
|
+
|
1883
|
+
* Add bundler and rake (c0f77be8)
|
1884
|
+
|
1885
|
+
### <a name = "0.0.3">0.0.3 - 24 Jul, 2014 (6cd552c3)
|
1886
|
+
|
1887
|
+
* Merge pull request #6 from waynr/maint (6cd552c3)
|
1888
|
+
|
1889
|
+
|
1890
|
+
```
|
1891
|
+
Merge pull request #6 from waynr/maint
|
1892
|
+
|
1893
|
+
Maint
|
1894
|
+
```
|
1895
|
+
* spec_helper: Fix EXAMPLE1 w/ empty list. (775098d9)
|
1896
|
+
|
1897
|
+
|
1898
|
+
```
|
1899
|
+
spec_helper: Fix EXAMPLE1 w/ empty list.
|
1900
|
+
|
1901
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1902
|
+
```
|
1903
|
+
* Hocon: Fix spec tests by adding `load` and `parse` (702146cc)
|
1904
|
+
|
1905
|
+
|
1906
|
+
```
|
1907
|
+
Hocon: Fix spec tests by adding `load` and `parse`
|
1908
|
+
|
1909
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1910
|
+
```
|
1911
|
+
* spec: Add spec tests or Hocon module. (5b65bbef)
|
1912
|
+
|
1913
|
+
|
1914
|
+
```
|
1915
|
+
spec: Add spec tests or Hocon module.
|
1916
|
+
|
1917
|
+
The goal here is to provide an interface similar to what the JSON ruby module
|
1918
|
+
provides, even though this doesn't include a dump method yet.
|
1919
|
+
|
1920
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1921
|
+
```
|
1922
|
+
* hocon.gemspec: Update gemspec for new gem release. (95d46911)
|
1923
|
+
|
1924
|
+
|
1925
|
+
```
|
1926
|
+
hocon.gemspec: Update gemspec for new gem release.
|
1927
|
+
|
1928
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1929
|
+
```
|
1930
|
+
* parser: Don't convert anything to symbols. (0ca29caf)
|
1931
|
+
|
1932
|
+
|
1933
|
+
```
|
1934
|
+
parser: Don't convert anything to symbols.
|
1935
|
+
|
1936
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1937
|
+
```
|
1938
|
+
* Fix Hocon::Impl::SimpleConfigList (3f77504f)
|
1939
|
+
|
1940
|
+
|
1941
|
+
```
|
1942
|
+
Fix Hocon::Impl::SimpleConfigList
|
1943
|
+
|
1944
|
+
Chokes without this `new_copy` method.
|
1945
|
+
|
1946
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1947
|
+
```
|
1948
|
+
* spec: Add new examples, reorganize specs. (4a9cfb1b)
|
1949
|
+
|
1950
|
+
|
1951
|
+
```
|
1952
|
+
spec: Add new examples, reorganize specs.
|
1953
|
+
|
1954
|
+
Reorganize specs to allow for the addition of more examples.
|
1955
|
+
|
1956
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1957
|
+
```
|
1958
|
+
* Merge pull request #5 from waynr/fix-settings-in-hocon-gemspec (14e4ed32)
|
1959
|
+
|
1960
|
+
|
1961
|
+
```
|
1962
|
+
Merge pull request #5 from waynr/fix-settings-in-hocon-gemspec
|
1963
|
+
|
1964
|
+
gemspec: Fix settings in hocon.gemspec.
|
1965
|
+
```
|
1966
|
+
* Merge pull request #3 from jmccure/fix_issue_2 (38fdfc37)
|
1967
|
+
|
1968
|
+
|
1969
|
+
```
|
1970
|
+
Merge pull request #3 from jmccure/fix_issue_2
|
1971
|
+
|
1972
|
+
Fixed error when conf file had empty array. Issue #2
|
1973
|
+
```
|
1974
|
+
* Merge pull request #4 from waynr/implement-hocon-configfactory-parsestring (464d5704)
|
1975
|
+
|
1976
|
+
|
1977
|
+
```
|
1978
|
+
Merge pull request #4 from waynr/implement-hocon-configfactory-parsestring
|
1979
|
+
|
1980
|
+
Implement hocon configfactory parsestring
|
1981
|
+
```
|
1982
|
+
* Fixed error when conf file had empty array. Issue #2 (fb1248eb)
|
1983
|
+
|
1984
|
+
### <a name = "0.0.2">0.0.2 - 24 Jul, 2014 (95dffaea)
|
1985
|
+
|
1986
|
+
* gemspec: Fix settings in hocon.gemspec. (95dffaea)
|
1987
|
+
|
1988
|
+
|
1989
|
+
```
|
1990
|
+
gemspec: Fix settings in hocon.gemspec.
|
1991
|
+
|
1992
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
1993
|
+
```
|
1994
|
+
* Implement Hocon.ConfigFactory.parse_string (430442e4)
|
1995
|
+
|
1996
|
+
|
1997
|
+
```
|
1998
|
+
Implement Hocon.ConfigFactory.parse_string
|
1999
|
+
|
2000
|
+
Also fixes a number of typos an previously untested code paths.
|
2001
|
+
|
2002
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
2003
|
+
```
|
2004
|
+
* spec: Add Hocon::ConfigFactory.parse_string test. (1cec69f2)
|
2005
|
+
|
2006
|
+
|
2007
|
+
```
|
2008
|
+
spec: Add Hocon::ConfigFactory.parse_string test.
|
2009
|
+
|
2010
|
+
Signed-off-by: Wayne <wayne@puppetlabs.com>
|
2011
|
+
```
|
2012
|
+
* Update README.md (9ce283b1)
|
2013
|
+
|
2014
|
+
### <a name = "0.0.1">0.0.1 - 16 Mar, 2014 (f7dbca52)
|
2015
|
+
|
2016
|
+
* Initial release.
|