fastly 8.0.0 → 8.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +205 -130
  3. data/Gemfile.lock +1 -1
  4. data/README.md +13 -7
  5. data/docs/{ErrorResponse.md → AutomationTokenErrorResponse.md} +1 -1
  6. data/docs/AutomationTokensApi.md +2 -2
  7. data/docs/Backend.md +1 -1
  8. data/docs/BackendApi.md +4 -4
  9. data/docs/BackendResponse.md +1 -1
  10. data/docs/BillingInvoicesApi.md +96 -0
  11. data/docs/CreateResponseObjectRequest.md +16 -0
  12. data/docs/Director.md +1 -1
  13. data/docs/DirectorApi.md +2 -2
  14. data/docs/DirectorResponse.md +1 -1
  15. data/docs/DomainInspectorHistoricalApi.md +4 -4
  16. data/docs/DomainInspectorRealtimeEntry.md +1 -1
  17. data/docs/Error.md +13 -0
  18. data/docs/ErrorResponseData.md +11 -0
  19. data/docs/Invoice.md +18 -0
  20. data/docs/InvoiceResponse.md +18 -0
  21. data/docs/Invoicelineitems.md +18 -0
  22. data/docs/KvStoreApi.md +1 -1
  23. data/docs/ListInvoicesResponse.md +11 -0
  24. data/docs/Listinvoices.md +11 -0
  25. data/docs/LoggingScalyrAdditional.md +1 -1
  26. data/docs/LoggingScalyrApi.md +4 -4
  27. data/docs/LoggingScalyrResponse.md +1 -1
  28. data/docs/Metadata.md +13 -0
  29. data/docs/OriginInspectorHistoricalApi.md +4 -4
  30. data/docs/OriginInspectorRealtimeEntry.md +1 -1
  31. data/docs/PoolAdditional.md +1 -1
  32. data/docs/PoolApi.md +4 -4
  33. data/docs/PoolResponse.md +1 -1
  34. data/docs/PoolResponsePost.md +1 -1
  35. data/docs/Pop.md +2 -2
  36. data/docs/PublishApi.md +1 -1
  37. data/docs/RealtimeEntry.md +1 -1
  38. data/docs/ResponseObjectApi.md +4 -0
  39. data/docs/Results.md +2 -0
  40. data/docs/SecretStoreApi.md +4 -2
  41. data/docs/SecretStoreItemApi.md +2 -2
  42. data/docs/ServiceDetail.md +1 -1
  43. data/docs/ServiceListResponse.md +2 -2
  44. data/docs/ServiceListResponseAllOf.md +2 -2
  45. data/docs/ServiceResponse.md +1 -1
  46. data/docs/ServiceResponseAllOf.md +1 -1
  47. data/docs/TlsConfigurationResponseAttributes.md +2 -2
  48. data/docs/TlsConfigurationResponseAttributesAllOf.md +2 -2
  49. data/docs/TlsCsr.md +10 -0
  50. data/docs/TlsCsrData.md +12 -0
  51. data/docs/TlsCsrDataAttributes.md +20 -0
  52. data/docs/TlsCsrErrorResponse.md +10 -0
  53. data/docs/TlsCsrResponse.md +10 -0
  54. data/docs/TlsCsrResponseAttributes.md +10 -0
  55. data/docs/TlsCsrResponseData.md +13 -0
  56. data/docs/TlsCsrsApi.md +52 -0
  57. data/docs/TlsSubscriptionResponseAttributes.md +1 -0
  58. data/docs/TlsSubscriptionResponseAttributesAllOf.md +1 -0
  59. data/docs/TokensApi.md +1 -1
  60. data/docs/TypeTlsCsr.md +9 -0
  61. data/docs/VclApi.md +1 -1
  62. data/docs/WafActiveRulesApi.md +1 -1
  63. data/lib/fastly/api/automation_tokens_api.rb +3 -3
  64. data/lib/fastly/api/backend_api.rb +4 -4
  65. data/lib/fastly/api/billing_invoices_api.rb +151 -0
  66. data/lib/fastly/api/director_api.rb +2 -2
  67. data/lib/fastly/api/domain_inspector_historical_api.rb +4 -4
  68. data/lib/fastly/api/kv_store_api.rb +2 -2
  69. data/lib/fastly/api/logging_scalyr_api.rb +4 -4
  70. data/lib/fastly/api/origin_inspector_historical_api.rb +4 -4
  71. data/lib/fastly/api/pool_api.rb +4 -4
  72. data/lib/fastly/api/publish_api.rb +2 -2
  73. data/lib/fastly/api/response_object_api.rb +8 -4
  74. data/lib/fastly/api/secret_store_api.rb +5 -2
  75. data/lib/fastly/api/secret_store_item_api.rb +2 -2
  76. data/lib/fastly/api/tls_csrs_api.rb +83 -0
  77. data/lib/fastly/api/tokens_api.rb +2 -2
  78. data/lib/fastly/api/vcl_api.rb +2 -2
  79. data/lib/fastly/api/waf_active_rules_api.rb +2 -2
  80. data/lib/fastly/configuration.rb +18 -0
  81. data/lib/fastly/models/{error_response.rb → automation_token_error_response.rb} +3 -3
  82. data/lib/fastly/models/backend.rb +1 -1
  83. data/lib/fastly/models/backend_response.rb +1 -1
  84. data/lib/fastly/models/create_response_object_request.rb +280 -0
  85. data/lib/fastly/models/director.rb +1 -1
  86. data/lib/fastly/models/director_response.rb +1 -1
  87. data/lib/fastly/models/domain_inspector_realtime_entry.rb +1 -1
  88. data/lib/fastly/models/error.rb +243 -0
  89. data/lib/fastly/models/error_response_data.rb +225 -0
  90. data/lib/fastly/models/event_attributes.rb +2 -2
  91. data/lib/fastly/models/invoice.rb +298 -0
  92. data/lib/fastly/models/invoice_response.rb +305 -0
  93. data/lib/fastly/models/invoicelineitems.rb +297 -0
  94. data/lib/fastly/models/list_invoices_response.rb +234 -0
  95. data/lib/fastly/models/listinvoices.rb +227 -0
  96. data/lib/fastly/models/logging_scalyr_additional.rb +1 -1
  97. data/lib/fastly/models/logging_scalyr_response.rb +1 -1
  98. data/lib/fastly/models/metadata.rb +250 -0
  99. data/lib/fastly/models/origin_inspector_realtime_entry.rb +1 -1
  100. data/lib/fastly/models/pool_additional.rb +1 -1
  101. data/lib/fastly/models/pool_response.rb +1 -1
  102. data/lib/fastly/models/pool_response_post.rb +1 -1
  103. data/lib/fastly/models/pop.rb +2 -2
  104. data/lib/fastly/models/realtime_entry.rb +1 -1
  105. data/lib/fastly/models/relationship_tls_certificate.rb +1 -1
  106. data/lib/fastly/models/relationship_tls_configuration.rb +1 -1
  107. data/lib/fastly/models/results.rb +21 -1
  108. data/lib/fastly/models/service_detail.rb +1 -1
  109. data/lib/fastly/models/service_list_response.rb +2 -2
  110. data/lib/fastly/models/service_list_response_all_of.rb +2 -2
  111. data/lib/fastly/models/service_response.rb +1 -1
  112. data/lib/fastly/models/service_response_all_of.rb +1 -1
  113. data/lib/fastly/models/tls_configuration_response_attributes.rb +2 -2
  114. data/lib/fastly/models/tls_configuration_response_attributes_all_of.rb +2 -2
  115. data/lib/fastly/models/tls_csr.rb +216 -0
  116. data/lib/fastly/models/tls_csr_data.rb +236 -0
  117. data/lib/fastly/models/tls_csr_data_attributes.rb +358 -0
  118. data/lib/fastly/models/tls_csr_error_response.rb +218 -0
  119. data/lib/fastly/models/tls_csr_response.rb +216 -0
  120. data/lib/fastly/models/tls_csr_response_attributes.rb +217 -0
  121. data/lib/fastly/models/tls_csr_response_data.rb +245 -0
  122. data/lib/fastly/models/tls_subscription_data_attributes.rb +2 -2
  123. data/lib/fastly/models/tls_subscription_response_attributes.rb +14 -4
  124. data/lib/fastly/models/tls_subscription_response_attributes_all_of.rb +14 -4
  125. data/lib/fastly/models/type_tls_csr.rb +34 -0
  126. data/lib/fastly/version.rb +1 -1
  127. data/lib/fastly.rb +20 -1
  128. data/sig.json +1 -1
  129. metadata +42 -4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # Changelog
2
2
 
3
+ ## [v8.1.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v8.1.0) (2024-02-28)
4
+
5
+ **Enhancements:**
6
+
7
+ - feat(billing): add 'get invoice by invoice ID' endpoint.
8
+ - feat(billing): add 'list invoices' endpoint.
9
+ - feat(image_opto): add 'shield' and 'transform' methods and fields.
10
+ - feat(secret_store): add 'name' filter.
11
+ - feat(tls): add 'create CSR' endpoint.
12
+ - feat(tls_subscription): add 'active order' methods and fields.
13
+
14
+ **Documentation:**
15
+
16
+ - doc(backend) fix openssl link.
17
+ - doc(director,domain_inspector,pool,realtime) fix POPs link.
18
+ - doc(service) fix service version link.
19
+ - doc(tls) fix activation link.
20
+
21
+ ## [v8.0.1](https://github.com/fastly/fastly-ruby/releases/tag/release/v8.0.1) (2024-02-19)
22
+
23
+ **Bug fixes:**
24
+
25
+ - fix(response_object): strongly type response_object create_update requests
26
+ - fix(tls_configurations): fix `tls_protocols` field to be a string array type
27
+
3
28
  ## [v8.0.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v8.0.0) (2023-11-29)
4
29
 
5
30
  **Breaking:**
@@ -273,10 +298,10 @@ Substantial changes were made to the underlying OpenAPI specification that produ
273
298
 
274
299
  **Breaking:**
275
300
 
276
- * New interface from code-generated API client [#183](https://github.com/fastly/fastly-ruby/pull/183)
277
- * [Blog post: Better Fastly API clients with OpenAPI Generator](https://dev.to/fastly/better-fastly-api-clients-with-openapi-generator-3lno)
278
- * [Documentation](https://github.com/fastly/fastly-ruby#documentation-for-api-endpoints)
279
- * [Unsupported API endpoints](https://github.com/fastly/fastly-ruby#issues)
301
+ - New interface from code-generated API client [#183](https://github.com/fastly/fastly-ruby/pull/183)
302
+ - [Blog post: Better Fastly API clients with OpenAPI Generator](https://dev.to/fastly/better-fastly-api-clients-with-openapi-generator-3lno)
303
+ - [Documentation](https://github.com/fastly/fastly-ruby#documentation-for-api-endpoints)
304
+ - [Unsupported API endpoints](https://github.com/fastly/fastly-ruby#issues)
280
305
 
281
306
  ## [v3.0.2](https://github.com/fastly/fastly-ruby/tree/v3.0.2) (2021-06-30)
282
307
 
@@ -284,7 +309,7 @@ Substantial changes were made to the underlying OpenAPI specification that produ
284
309
 
285
310
  **Merged pull requests:**
286
311
 
287
- - Fix SumoLogic Logging [\#180](https://github.com/fastly/fastly-ruby/pull/180) ([integralist](https://github.com/integralist))
312
+ - Fix SumoLogic Logging [#180](https://github.com/fastly/fastly-ruby/pull/180) ([integralist](https://github.com/integralist))
288
313
 
289
314
  ## [v3.0.1](https://github.com/fastly/fastly-ruby/tree/v3.0.1) (2021-02-03)
290
315
 
@@ -292,7 +317,7 @@ Substantial changes were made to the underlying OpenAPI specification that produ
292
317
 
293
318
  **Merged pull requests:**
294
319
 
295
- - Remove deprecation warning [\#174](https://github.com/fastly/fastly-ruby/pull/174) ([conniechu929](https://github.com/conniechu929))
320
+ - Remove deprecation warning [#174](https://github.com/fastly/fastly-ruby/pull/174) ([conniechu929](https://github.com/conniechu929))
296
321
 
297
322
  ## [v3.0.0](https://github.com/fastly/fastly-ruby/tree/v3.0.0) (2021-02-03)
298
323
 
@@ -300,7 +325,7 @@ Substantial changes were made to the underlying OpenAPI specification that produ
300
325
 
301
326
  **Merged pull requests:**
302
327
 
303
- - Removes session authentication [\#170](https://github.com/fastly/fastly-ruby/pull/170) ([conniechu929](https://github.com/conniechu929))
328
+ - Removes session authentication [#170](https://github.com/fastly/fastly-ruby/pull/170) ([conniechu929](https://github.com/conniechu929))
304
329
 
305
330
  ## [v2.5.0](https://github.com/fastly/fastly-ruby/tree/v2.5.0) (2020-01-16)
306
331
 
@@ -308,421 +333,471 @@ Substantial changes were made to the underlying OpenAPI specification that produ
308
333
 
309
334
  **Merged pull requests:**
310
335
 
311
- - Add tokens.rb [\#150](https://github.com/fastly/fastly-ruby/pull/150) ([malachy-mcconnell](https://github.com/malachy-mcconnell))
336
+ - Add tokens.rb [#150](https://github.com/fastly/fastly-ruby/pull/150) ([malachy-mcconnell](https://github.com/malachy-mcconnell))
312
337
 
313
338
  ## [v2.4.0](https://github.com/fastly/fastly-ruby/tree/v2.4.0) (2019-07-29)
339
+
314
340
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v2.3.1...v2.4.0)
315
341
 
316
342
  **Merged pull requests:**
317
343
 
318
- - \[Backend\] Add override\_host attribute for Backend [\#146](https://github.com/fastly/fastly-ruby/pull/146) ([werkshy](https://github.com/werkshy))
344
+ - \[Backend\] Add override_host attribute for Backend [#146](https://github.com/fastly/fastly-ruby/pull/146) ([werkshy](https://github.com/werkshy))
319
345
 
320
346
  ## [v2.3.1](https://github.com/fastly/fastly-ruby/tree/v2.3.1) (2019-07-25)
347
+
321
348
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v2.3.0...v2.3.1)
322
349
 
323
350
  **Merged pull requests:**
324
351
 
325
- - Correct stats API path [\#147](https://github.com/fastly/fastly-ruby/pull/147) ([thommahoney](https://github.com/thommahoney))
352
+ - Correct stats API path [#147](https://github.com/fastly/fastly-ruby/pull/147) ([thommahoney](https://github.com/thommahoney))
326
353
 
327
354
  ## [v2.3.0](https://github.com/fastly/fastly-ruby/tree/v2.3.0) (2019-04-26)
355
+
328
356
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v2.2.0...v2.3.0)
329
357
 
330
358
  **Closed issues:**
331
359
 
332
- - Ruby 2.5.0, fastly-1.15.0: Purge Errors [\#130](https://github.com/fastly/fastly-ruby/issues/130)
360
+ - Ruby 2.5.0, fastly-1.15.0: Purge Errors [#130](https://github.com/fastly/fastly-ruby/issues/130)
333
361
 
334
362
  **Merged pull requests:**
335
363
 
336
- - make concurrent-ruby optional [\#145](https://github.com/fastly/fastly-ruby/pull/145) ([thommahoney](https://github.com/thommahoney))
337
- - Use concurrent-ruby to handle thread safety for http client. [\#144](https://github.com/fastly/fastly-ruby/pull/144) ([demersus](https://github.com/demersus))
338
- - Fix bug auth [\#143](https://github.com/fastly/fastly-ruby/pull/143) ([ichiee](https://github.com/ichiee))
339
- - update ruby versions to latest supported [\#142](https://github.com/fastly/fastly-ruby/pull/142) ([thommahoney](https://github.com/thommahoney))
364
+ - make concurrent-ruby optional [#145](https://github.com/fastly/fastly-ruby/pull/145) ([thommahoney](https://github.com/thommahoney))
365
+ - Use concurrent-ruby to handle thread safety for http client. [#144](https://github.com/fastly/fastly-ruby/pull/144) ([demersus](https://github.com/demersus))
366
+ - Fix bug auth [#143](https://github.com/fastly/fastly-ruby/pull/143) ([ichiee](https://github.com/ichiee))
367
+ - update ruby versions to latest supported [#142](https://github.com/fastly/fastly-ruby/pull/142) ([thommahoney](https://github.com/thommahoney))
340
368
 
341
369
  ## [v2.2.0](https://github.com/fastly/fastly-ruby/tree/v2.2.0) (2018-12-11)
370
+
342
371
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v2.1.0...v2.2.0)
343
372
 
344
373
  **Closed issues:**
345
374
 
346
- - purging https url doesn't work [\#100](https://github.com/fastly/fastly-ruby/issues/100)
375
+ - purging https url doesn't work [#100](https://github.com/fastly/fastly-ruby/issues/100)
347
376
 
348
377
  **Merged pull requests:**
349
378
 
350
- - ✨ Add BigQuery logging \[APPENG-2076\] [\#138](https://github.com/fastly/fastly-ruby/pull/138) ([jamesarosen](https://github.com/jamesarosen))
351
- - Update Fastly docs url [\#136](https://github.com/fastly/fastly-ruby/pull/136) ([crazyshot](https://github.com/crazyshot))
352
- - 🔖 v2.1.0 [\#135](https://github.com/fastly/fastly-ruby/pull/135) ([jamesarosen](https://github.com/jamesarosen))
379
+ - ✨ Add BigQuery logging \[APPENG-2076\] [#138](https://github.com/fastly/fastly-ruby/pull/138) ([jamesarosen](https://github.com/jamesarosen))
380
+ - Update Fastly docs url [#136](https://github.com/fastly/fastly-ruby/pull/136) ([crazyshot](https://github.com/crazyshot))
381
+ - 🔖 v2.1.0 [#135](https://github.com/fastly/fastly-ruby/pull/135) ([jamesarosen](https://github.com/jamesarosen))
353
382
 
354
383
  ## [v2.1.0](https://github.com/fastly/fastly-ruby/tree/v2.1.0) (2018-06-18)
384
+
355
385
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v2.0.0...v2.1.0)
356
386
 
357
387
  **Merged pull requests:**
358
388
 
359
- - 👷➕🐛✅ fix tests in CI [\#134](https://github.com/fastly/fastly-ruby/pull/134) ([jamesarosen](https://github.com/jamesarosen))
360
- - ✨ add more user relationships to Customer [\#133](https://github.com/fastly/fastly-ruby/pull/133) ([jamesarosen](https://github.com/jamesarosen))
389
+ - 👷➕🐛✅ fix tests in CI [#134](https://github.com/fastly/fastly-ruby/pull/134) ([jamesarosen](https://github.com/jamesarosen))
390
+ - ✨ add more user relationships to Customer [#133](https://github.com/fastly/fastly-ruby/pull/133) ([jamesarosen](https://github.com/jamesarosen))
361
391
 
362
392
  ## [v2.0.0](https://github.com/fastly/fastly-ruby/tree/v2.0.0) (2018-05-17)
393
+
363
394
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.15.0...v2.0.0)
364
395
 
365
396
  **Merged pull requests:**
366
397
 
367
- - Update Changelog and version for 2.0.0 [\#129](https://github.com/fastly/fastly-ruby/pull/129) ([leklund](https://github.com/leklund))
368
- - Update version and CHANGELOG for Release v1.15.0 [\#128](https://github.com/fastly/fastly-ruby/pull/128) ([leklund](https://github.com/leklund))
369
- - Update fastly/invoice for v2 invoice endpoints [\#126](https://github.com/fastly/fastly-ruby/pull/126) ([leklund](https://github.com/leklund))
398
+ - Update Changelog and version for 2.0.0 [#129](https://github.com/fastly/fastly-ruby/pull/129) ([leklund](https://github.com/leklund))
399
+ - Update version and CHANGELOG for Release v1.15.0 [#128](https://github.com/fastly/fastly-ruby/pull/128) ([leklund](https://github.com/leklund))
400
+ - Update fastly/invoice for v2 invoice endpoints [#126](https://github.com/fastly/fastly-ruby/pull/126) ([leklund](https://github.com/leklund))
370
401
 
371
402
  ## [v1.15.0](https://github.com/fastly/fastly-ruby/tree/v1.15.0) (2018-04-04)
403
+
372
404
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.14.0...v1.15.0)
373
405
 
374
406
  **Merged pull requests:**
375
407
 
376
- - Feature - add support for /stats/usage\_by\_month [\#124](https://github.com/fastly/fastly-ruby/pull/124) ([jrbeilke](https://github.com/jrbeilke))
377
- - add changelog for v1.14.0 [\#123](https://github.com/fastly/fastly-ruby/pull/123) ([thommahoney](https://github.com/thommahoney))
408
+ - Feature - add support for /stats/usage_by_month [#124](https://github.com/fastly/fastly-ruby/pull/124) ([jrbeilke](https://github.com/jrbeilke))
409
+ - add changelog for v1.14.0 [#123](https://github.com/fastly/fastly-ruby/pull/123) ([thommahoney](https://github.com/thommahoney))
378
410
 
379
411
  ## [v1.14.0](https://github.com/fastly/fastly-ruby/tree/v1.14.0) (2018-03-23)
412
+
380
413
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.13.2...v1.14.0)
381
414
 
382
415
  **Merged pull requests:**
383
416
 
384
- - bump to v1.14.0 [\#122](https://github.com/fastly/fastly-ruby/pull/122) ([thommahoney](https://github.com/thommahoney))
385
- - Placement in Syslog [\#121](https://github.com/fastly/fastly-ruby/pull/121) ([RexBelli](https://github.com/RexBelli))
417
+ - bump to v1.14.0 [#122](https://github.com/fastly/fastly-ruby/pull/122) ([thommahoney](https://github.com/thommahoney))
418
+ - Placement in Syslog [#121](https://github.com/fastly/fastly-ruby/pull/121) ([RexBelli](https://github.com/RexBelli))
386
419
 
387
420
  ## [v1.13.2](https://github.com/fastly/fastly-ruby/tree/v1.13.2) (2017-12-18)
421
+
388
422
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.13.1...v1.13.2)
389
423
 
390
424
  **Merged pull requests:**
391
425
 
392
- - Fix syslog response\_condition attribute [\#117](https://github.com/fastly/fastly-ruby/pull/117) ([anotherJay](https://github.com/anotherJay))
426
+ - Fix syslog response_condition attribute [#117](https://github.com/fastly/fastly-ruby/pull/117) ([anotherJay](https://github.com/anotherJay))
393
427
 
394
428
  ## [v1.13.1](https://github.com/fastly/fastly-ruby/tree/v1.13.1) (2017-08-08)
429
+
395
430
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.13.0...v1.13.1)
396
431
 
397
432
  **Merged pull requests:**
398
433
 
399
- - automatically load the sumologic\_logging class [\#115](https://github.com/fastly/fastly-ruby/pull/115) ([thommahoney](https://github.com/thommahoney))
434
+ - automatically load the sumologic_logging class [#115](https://github.com/fastly/fastly-ruby/pull/115) ([thommahoney](https://github.com/thommahoney))
400
435
 
401
436
  ## [v1.13.0](https://github.com/fastly/fastly-ruby/tree/v1.13.0) (2017-08-07)
437
+
402
438
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.12.0...v1.13.0)
403
439
 
404
440
  **Merged pull requests:**
405
441
 
406
- - add support for sumologic [\#114](https://github.com/fastly/fastly-ruby/pull/114) ([thommahoney](https://github.com/thommahoney))
442
+ - add support for sumologic [#114](https://github.com/fastly/fastly-ruby/pull/114) ([thommahoney](https://github.com/thommahoney))
407
443
 
408
444
  ## [v1.12.0](https://github.com/fastly/fastly-ruby/tree/v1.12.0) (2017-08-03)
445
+
409
446
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.11.0...v1.12.0)
410
447
 
411
448
  **Merged pull requests:**
412
449
 
413
- - add support for dynamic snippets [\#113](https://github.com/fastly/fastly-ruby/pull/113) ([thommahoney](https://github.com/thommahoney))
414
- - Added VCL snippets endpoint [\#112](https://github.com/fastly/fastly-ruby/pull/112) ([thomshutt](https://github.com/thomshutt))
450
+ - add support for dynamic snippets [#113](https://github.com/fastly/fastly-ruby/pull/113) ([thommahoney](https://github.com/thommahoney))
451
+ - Added VCL snippets endpoint [#112](https://github.com/fastly/fastly-ruby/pull/112) ([thomshutt](https://github.com/thomshutt))
415
452
 
416
453
  ## [v1.11.0](https://github.com/fastly/fastly-ruby/tree/v1.11.0) (2017-06-12)
454
+
417
455
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.10.0...v1.11.0)
418
456
 
419
457
  **Merged pull requests:**
420
458
 
421
- - add GCS Logging object [\#111](https://github.com/fastly/fastly-ruby/pull/111) ([thommahoney](https://github.com/thommahoney))
459
+ - add GCS Logging object [#111](https://github.com/fastly/fastly-ruby/pull/111) ([thommahoney](https://github.com/thommahoney))
422
460
 
423
461
  ## [v1.10.0](https://github.com/fastly/fastly-ruby/tree/v1.10.0) (2017-03-17)
462
+
424
463
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.9.0...v1.10.0)
425
464
 
426
465
  **Merged pull requests:**
427
466
 
428
- - Support Papertrail logging endpoints [\#110](https://github.com/fastly/fastly-ruby/pull/110) ([werkshy](https://github.com/werkshy))
467
+ - Support Papertrail logging endpoints [#110](https://github.com/fastly/fastly-ruby/pull/110) ([werkshy](https://github.com/werkshy))
429
468
 
430
469
  ## [v1.9.0](https://github.com/fastly/fastly-ruby/tree/v1.9.0) (2017-02-03)
470
+
431
471
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.8.0...v1.9.0)
432
472
 
433
473
  **Closed issues:**
434
474
 
435
- - Missing tag for v1.8.0 [\#108](https://github.com/fastly/fastly-ruby/issues/108)
475
+ - Missing tag for v1.8.0 [#108](https://github.com/fastly/fastly-ruby/issues/108)
436
476
 
437
477
  **Merged pull requests:**
438
478
 
439
- - Add `message\_type` support to logging resources [\#109](https://github.com/fastly/fastly-ruby/pull/109) ([schisamo](https://github.com/schisamo))
479
+ - Add `message\_type` support to logging resources [#109](https://github.com/fastly/fastly-ruby/pull/109) ([schisamo](https://github.com/schisamo))
440
480
 
441
481
  ## [v1.8.0](https://github.com/fastly/fastly-ruby/tree/v1.8.0) (2017-01-17)
482
+
442
483
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.7.0...v1.8.0)
443
484
 
444
485
  **Merged pull requests:**
445
486
 
446
- - Support for HTTP debug logs [\#107](https://github.com/fastly/fastly-ruby/pull/107) ([thommahoney](https://github.com/thommahoney))
447
- - use public\_suffix version 1.4.6 for ruby 1.9 [\#105](https://github.com/fastly/fastly-ruby/pull/105) ([thommahoney](https://github.com/thommahoney))
448
- - Enable HTTP proxy support from environment [\#104](https://github.com/fastly/fastly-ruby/pull/104) ([vr](https://github.com/vr))
487
+ - Support for HTTP debug logs [#107](https://github.com/fastly/fastly-ruby/pull/107) ([thommahoney](https://github.com/thommahoney))
488
+ - use public_suffix version 1.4.6 for ruby 1.9 [#105](https://github.com/fastly/fastly-ruby/pull/105) ([thommahoney](https://github.com/thommahoney))
489
+ - Enable HTTP proxy support from environment [#104](https://github.com/fastly/fastly-ruby/pull/104) ([vr](https://github.com/vr))
449
490
 
450
491
  ## [v1.7.0](https://github.com/fastly/fastly-ruby/tree/v1.7.0) (2016-10-24)
492
+
451
493
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.6.1...v1.7.0)
452
494
 
453
495
  **Merged pull requests:**
454
496
 
455
- - Add ACL and ACL Entry Support [\#103](https://github.com/fastly/fastly-ruby/pull/103) ([wrightp](https://github.com/wrightp))
456
- - add https support to purge function [\#99](https://github.com/fastly/fastly-ruby/pull/99) ([jgoulah](https://github.com/jgoulah))
497
+ - Add ACL and ACL Entry Support [#103](https://github.com/fastly/fastly-ruby/pull/103) ([wrightp](https://github.com/wrightp))
498
+ - add https support to purge function [#99](https://github.com/fastly/fastly-ruby/pull/99) ([jgoulah](https://github.com/jgoulah))
457
499
 
458
500
  ## [v1.6.1](https://github.com/fastly/fastly-ruby/tree/v1.6.1) (2016-09-06)
501
+
459
502
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.6.0...v1.6.1)
460
503
 
461
504
  **Merged pull requests:**
462
505
 
463
- - fix: use Appraisal to fix dependency conflicts [\#97](https://github.com/fastly/fastly-ruby/pull/97) ([lanej](https://github.com/lanej))
464
- - Add `format\_version` to S3Logging and Syslog resources [\#96](https://github.com/fastly/fastly-ruby/pull/96) ([schisamo](https://github.com/schisamo))
506
+ - fix: use Appraisal to fix dependency conflicts [#97](https://github.com/fastly/fastly-ruby/pull/97) ([lanej](https://github.com/lanej))
507
+ - Add `format\_version` to S3Logging and Syslog resources [#96](https://github.com/fastly/fastly-ruby/pull/96) ([schisamo](https://github.com/schisamo))
465
508
 
466
509
  ## [v1.6.0](https://github.com/fastly/fastly-ruby/tree/v1.6.0) (2016-07-14)
510
+
467
511
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.5.0...v1.6.0)
468
512
 
469
513
  **Merged pull requests:**
470
514
 
471
- - Always add api key to requests if provided [\#93](https://github.com/fastly/fastly-ruby/pull/93) ([blithe](https://github.com/blithe))
472
- - Fix header regex test [\#92](https://github.com/fastly/fastly-ruby/pull/92) ([blithe](https://github.com/blithe))
473
- - Remove Origin model [\#91](https://github.com/fastly/fastly-ruby/pull/91) ([blithe](https://github.com/blithe))
515
+ - Always add api key to requests if provided [#93](https://github.com/fastly/fastly-ruby/pull/93) ([blithe](https://github.com/blithe))
516
+ - Fix header regex test [#92](https://github.com/fastly/fastly-ruby/pull/92) ([blithe](https://github.com/blithe))
517
+ - Remove Origin model [#91](https://github.com/fastly/fastly-ruby/pull/91) ([blithe](https://github.com/blithe))
474
518
 
475
519
  ## [v1.5.0](https://github.com/fastly/fastly-ruby/tree/v1.5.0) (2016-07-08)
520
+
476
521
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.4.2...v1.5.0)
477
522
 
478
523
  **Closed issues:**
479
524
 
480
- - Support Edge Dictionaries [\#66](https://github.com/fastly/fastly-ruby/issues/66)
481
- - version.locked? method returns incorrect value of true for unlocked version [\#47](https://github.com/fastly/fastly-ruby/issues/47)
525
+ - Support Edge Dictionaries [#66](https://github.com/fastly/fastly-ruby/issues/66)
526
+ - version.locked? method returns incorrect value of true for unlocked version [#47](https://github.com/fastly/fastly-ruby/issues/47)
482
527
 
483
528
  **Merged pull requests:**
484
529
 
485
- - build for all recent ruby patch-levels [\#90](https://github.com/fastly/fastly-ruby/pull/90) ([thommahoney](https://github.com/thommahoney))
486
- - add Fastly::Dictionary\#item [\#89](https://github.com/fastly/fastly-ruby/pull/89) ([lanej](https://github.com/lanej))
487
- - fix initialize [\#88](https://github.com/fastly/fastly-ruby/pull/88) ([lanej](https://github.com/lanej))
488
- - Raised ArgumentError if api\_key or user/pass are not passed in. [\#87](https://github.com/fastly/fastly-ruby/pull/87) ([andriantoniades](https://github.com/andriantoniades))
489
- - Add support for dictionary items [\#86](https://github.com/fastly/fastly-ruby/pull/86) ([icco](https://github.com/icco))
490
- - Reintroduced :locked so the version.locked? check works [\#83](https://github.com/fastly/fastly-ruby/pull/83) ([eddieroger](https://github.com/eddieroger))
530
+ - build for all recent ruby patch-levels [#90](https://github.com/fastly/fastly-ruby/pull/90) ([thommahoney](https://github.com/thommahoney))
531
+ - add Fastly::Dictionary#item [#89](https://github.com/fastly/fastly-ruby/pull/89) ([lanej](https://github.com/lanej))
532
+ - fix initialize [#88](https://github.com/fastly/fastly-ruby/pull/88) ([lanej](https://github.com/lanej))
533
+ - Raised ArgumentError if api_key or user/pass are not passed in. [#87](https://github.com/fastly/fastly-ruby/pull/87) ([andriantoniades](https://github.com/andriantoniades))
534
+ - Add support for dictionary items [#86](https://github.com/fastly/fastly-ruby/pull/86) ([icco](https://github.com/icco))
535
+ - Reintroduced :locked so the version.locked? check works [#83](https://github.com/fastly/fastly-ruby/pull/83) ([eddieroger](https://github.com/eddieroger))
491
536
 
492
537
  ## [v1.4.2](https://github.com/fastly/fastly-ruby/tree/v1.4.2) (2016-05-23)
538
+
493
539
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.4.1...v1.4.2)
494
540
 
495
541
  **Merged pull requests:**
496
542
 
497
- - Version\#locked and \#active are boolean values [\#81](https://github.com/fastly/fastly-ruby/pull/81) ([lanej](https://github.com/lanej))
498
- - Update README [\#80](https://github.com/fastly/fastly-ruby/pull/80) ([tijmenb](https://github.com/tijmenb))
499
- - Add Edge Dictionaries [\#69](https://github.com/fastly/fastly-ruby/pull/69) ([alexmuller](https://github.com/alexmuller))
500
- - Validate was always returning true [\#55](https://github.com/fastly/fastly-ruby/pull/55) ([ljagiello](https://github.com/ljagiello))
543
+ - Version#locked and #active are boolean values [#81](https://github.com/fastly/fastly-ruby/pull/81) ([lanej](https://github.com/lanej))
544
+ - Update README [#80](https://github.com/fastly/fastly-ruby/pull/80) ([tijmenb](https://github.com/tijmenb))
545
+ - Add Edge Dictionaries [#69](https://github.com/fastly/fastly-ruby/pull/69) ([alexmuller](https://github.com/alexmuller))
546
+ - Validate was always returning true [#55](https://github.com/fastly/fastly-ruby/pull/55) ([ljagiello](https://github.com/ljagiello))
501
547
 
502
548
  ## [v1.4.1](https://github.com/fastly/fastly-ruby/tree/v1.4.1) (2016-05-19)
549
+
503
550
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.3.0...v1.4.1)
504
551
 
505
552
  **Merged pull requests:**
506
553
 
507
- - Fixes string interpolation [\#79](https://github.com/fastly/fastly-ruby/pull/79) ([gschorkopf](https://github.com/gschorkopf))
508
- - Add a user agent key/value pair to client headers [\#78](https://github.com/fastly/fastly-ruby/pull/78) ([gschorkopf](https://github.com/gschorkopf))
509
- - Soft purge [\#62](https://github.com/fastly/fastly-ruby/pull/62) ([simonwistow](https://github.com/simonwistow))
554
+ - Fixes string interpolation [#79](https://github.com/fastly/fastly-ruby/pull/79) ([gschorkopf](https://github.com/gschorkopf))
555
+ - Add a user agent key/value pair to client headers [#78](https://github.com/fastly/fastly-ruby/pull/78) ([gschorkopf](https://github.com/gschorkopf))
556
+ - Soft purge [#62](https://github.com/fastly/fastly-ruby/pull/62) ([simonwistow](https://github.com/simonwistow))
510
557
 
511
558
  ## [v1.3.0](https://github.com/fastly/fastly-ruby/tree/v1.3.0) (2016-04-04)
559
+
512
560
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.2.3...v1.3.0)
513
561
 
514
562
  **Closed issues:**
515
563
 
516
- - Initializing Fastly.new with api\_key option fails on version 1.2.2 [\#73](https://github.com/fastly/fastly-ruby/issues/73)
517
- - Release 1.2.1 Is a breaking change [\#65](https://github.com/fastly/fastly-ruby/issues/65)
564
+ - Initializing Fastly.new with api_key option fails on version 1.2.2 [#73](https://github.com/fastly/fastly-ruby/issues/73)
565
+ - Release 1.2.1 Is a breaking change [#65](https://github.com/fastly/fastly-ruby/issues/65)
518
566
 
519
567
  **Merged pull requests:**
520
568
 
521
- - Added missing fields to S3Logging and syslog [\#76](https://github.com/fastly/fastly-ruby/pull/76) ([raybejjani](https://github.com/raybejjani))
522
- - Update gem with missing fields [\#75](https://github.com/fastly/fastly-ruby/pull/75) ([raybejjani](https://github.com/raybejjani))
523
- - URL escape names when used in URLs [\#74](https://github.com/fastly/fastly-ruby/pull/74) ([raybejjani](https://github.com/raybejjani))
569
+ - Added missing fields to S3Logging and syslog [#76](https://github.com/fastly/fastly-ruby/pull/76) ([raybejjani](https://github.com/raybejjani))
570
+ - Update gem with missing fields [#75](https://github.com/fastly/fastly-ruby/pull/75) ([raybejjani](https://github.com/raybejjani))
571
+ - URL escape names when used in URLs [#74](https://github.com/fastly/fastly-ruby/pull/74) ([raybejjani](https://github.com/raybejjani))
524
572
 
525
573
  ## [v1.2.3](https://github.com/fastly/fastly-ruby/tree/v1.2.3) (2016-03-15)
574
+
526
575
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.2.2...v1.2.3)
527
576
 
528
577
  **Merged pull requests:**
529
578
 
530
- - require 'openssl' [\#72](https://github.com/fastly/fastly-ruby/pull/72) ([cthomaspdx](https://github.com/cthomaspdx))
579
+ - require 'openssl' [#72](https://github.com/fastly/fastly-ruby/pull/72) ([cthomaspdx](https://github.com/cthomaspdx))
531
580
 
532
581
  ## [v1.2.2](https://github.com/fastly/fastly-ruby/tree/v1.2.2) (2016-03-09)
582
+
533
583
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.2.1...v1.2.2)
534
584
 
535
585
  **Closed issues:**
536
586
 
537
- - regexp should be regex [\#64](https://github.com/fastly/fastly-ruby/issues/64)
587
+ - regexp should be regex [#64](https://github.com/fastly/fastly-ruby/issues/64)
538
588
 
539
589
  **Merged pull requests:**
540
590
 
541
- - rely on Net::HTTP default ca\_path [\#71](https://github.com/fastly/fastly-ruby/pull/71) ([thommahoney](https://github.com/thommahoney))
542
- - fix field name for regex [\#68](https://github.com/fastly/fastly-ruby/pull/68) ([thommahoney](https://github.com/thommahoney))
543
- - Remove `Fastly.commands` [\#67](https://github.com/fastly/fastly-ruby/pull/67) ([alexmuller](https://github.com/alexmuller))
591
+ - rely on Net::HTTP default ca_path [#71](https://github.com/fastly/fastly-ruby/pull/71) ([thommahoney](https://github.com/thommahoney))
592
+ - fix field name for regex [#68](https://github.com/fastly/fastly-ruby/pull/68) ([thommahoney](https://github.com/thommahoney))
593
+ - Remove `Fastly.commands` [#67](https://github.com/fastly/fastly-ruby/pull/67) ([alexmuller](https://github.com/alexmuller))
544
594
 
545
595
  ## [v1.2.1](https://github.com/fastly/fastly-ruby/tree/v1.2.1) (2016-01-08)
596
+
546
597
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.2.0...v1.2.1)
547
598
 
548
599
  **Closed issues:**
549
600
 
550
- - TLS certificates not validated [\#59](https://github.com/fastly/fastly-ruby/issues/59)
551
- - Purge by key returns status 200 but purge does not seem to fire [\#54](https://github.com/fastly/fastly-ruby/issues/54)
552
- - Does purge\_by\_key require more then API\_KEY to work? [\#52](https://github.com/fastly/fastly-ruby/issues/52)
553
- - When chaining methods to purge by surrogate key, get\_service API call is executed every time [\#50](https://github.com/fastly/fastly-ruby/issues/50)
601
+ - TLS certificates not validated [#59](https://github.com/fastly/fastly-ruby/issues/59)
602
+ - Purge by key returns status 200 but purge does not seem to fire [#54](https://github.com/fastly/fastly-ruby/issues/54)
603
+ - Does purge_by_key require more then API_KEY to work? [#52](https://github.com/fastly/fastly-ruby/issues/52)
604
+ - When chaining methods to purge by surrogate key, get_service API call is executed every time [#50](https://github.com/fastly/fastly-ruby/issues/50)
554
605
 
555
606
  **Merged pull requests:**
556
607
 
557
- - validate TLS certificates [\#61](https://github.com/fastly/fastly-ruby/pull/61) ([lanej](https://github.com/lanej))
558
- - Detect if client base\_uri is HTTPS [\#53](https://github.com/fastly/fastly-ruby/pull/53) ([mmay](https://github.com/mmay))
559
- - Improve examples of purging [\#51](https://github.com/fastly/fastly-ruby/pull/51) ([drbrain](https://github.com/drbrain))
560
- - having login\_opts examples in the readme [\#49](https://github.com/fastly/fastly-ruby/pull/49) ([phoet](https://github.com/phoet))
608
+ - validate TLS certificates [#61](https://github.com/fastly/fastly-ruby/pull/61) ([lanej](https://github.com/lanej))
609
+ - Detect if client base_uri is HTTPS [#53](https://github.com/fastly/fastly-ruby/pull/53) ([mmay](https://github.com/mmay))
610
+ - Improve examples of purging [#51](https://github.com/fastly/fastly-ruby/pull/51) ([drbrain](https://github.com/drbrain))
611
+ - having login_opts examples in the readme [#49](https://github.com/fastly/fastly-ruby/pull/49) ([phoet](https://github.com/phoet))
561
612
 
562
613
  ## [v1.2.0](https://github.com/fastly/fastly-ruby/tree/v1.2.0) (2015-02-06)
614
+
563
615
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.1.5...v1.2.0)
564
616
 
565
617
  **Closed issues:**
566
618
 
567
- - Can you bump the gem version? [\#43](https://github.com/fastly/fastly-ruby/issues/43)
568
- - service name change fails on save! [\#20](https://github.com/fastly/fastly-ruby/issues/20)
569
- - purge method doesn't take options hash [\#7](https://github.com/fastly/fastly-ruby/issues/7)
570
- - Make sure types are correct [\#2](https://github.com/fastly/fastly-ruby/issues/2)
619
+ - Can you bump the gem version? [#43](https://github.com/fastly/fastly-ruby/issues/43)
620
+ - service name change fails on save! [#20](https://github.com/fastly/fastly-ruby/issues/20)
621
+ - purge method doesn't take options hash [#7](https://github.com/fastly/fastly-ruby/issues/7)
622
+ - Make sure types are correct [#2](https://github.com/fastly/fastly-ruby/issues/2)
571
623
 
572
624
  **Merged pull requests:**
573
625
 
574
- - Better error reporting [\#48](https://github.com/fastly/fastly-ruby/pull/48) ([mastfish](https://github.com/mastfish))
575
- - Remove curb-fu once and for all [\#44](https://github.com/fastly/fastly-ruby/pull/44) ([mmay](https://github.com/mmay))
626
+ - Better error reporting [#48](https://github.com/fastly/fastly-ruby/pull/48) ([mastfish](https://github.com/mastfish))
627
+ - Remove curb-fu once and for all [#44](https://github.com/fastly/fastly-ruby/pull/44) ([mmay](https://github.com/mmay))
576
628
 
577
629
  ## [v1.1.5](https://github.com/fastly/fastly-ruby/tree/v1.1.5) (2014-12-16)
630
+
578
631
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.1.4...v1.1.5)
579
632
 
580
633
  **Merged pull requests:**
581
634
 
582
- - bump curb to 0.8.6 [\#45](https://github.com/fastly/fastly-ruby/pull/45) ([mmay](https://github.com/mmay))
583
- - Cleanup Style Issues [\#31](https://github.com/fastly/fastly-ruby/pull/31) ([ezkl](https://github.com/ezkl))
635
+ - bump curb to 0.8.6 [#45](https://github.com/fastly/fastly-ruby/pull/45) ([mmay](https://github.com/mmay))
636
+ - Cleanup Style Issues [#31](https://github.com/fastly/fastly-ruby/pull/31) ([ezkl](https://github.com/ezkl))
584
637
 
585
638
  ## [v1.1.4](https://github.com/fastly/fastly-ruby/tree/v1.1.4) (2014-09-29)
639
+
586
640
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.1.3...v1.1.4)
587
641
 
588
642
  **Merged pull requests:**
589
643
 
590
- - Require key [\#38](https://github.com/fastly/fastly-ruby/pull/38) ([thommahoney](https://github.com/thommahoney))
644
+ - Require key [#38](https://github.com/fastly/fastly-ruby/pull/38) ([thommahoney](https://github.com/thommahoney))
591
645
 
592
646
  ## [v1.1.3](https://github.com/fastly/fastly-ruby/tree/v1.1.3) (2014-07-25)
647
+
593
648
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.1.2...v1.1.3)
594
649
 
595
650
  **Merged pull requests:**
596
651
 
597
- - Add create domain script [\#33](https://github.com/fastly/fastly-ruby/pull/33) ([mmay](https://github.com/mmay))
598
- - Clarify the gem name in the README [\#32](https://github.com/fastly/fastly-ruby/pull/32) ([adarsh](https://github.com/adarsh))
652
+ - Add create domain script [#33](https://github.com/fastly/fastly-ruby/pull/33) ([mmay](https://github.com/mmay))
653
+ - Clarify the gem name in the README [#32](https://github.com/fastly/fastly-ruby/pull/32) ([adarsh](https://github.com/adarsh))
599
654
 
600
655
  ## [v1.1.2](https://github.com/fastly/fastly-ruby/tree/v1.1.2) (2014-06-12)
656
+
601
657
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.1.1...v1.1.2)
602
658
 
603
659
  **Merged pull requests:**
604
660
 
605
- - Checks for existence of String\#underscore prior to overriding [\#30](https://github.com/fastly/fastly-ruby/pull/30) ([spra85](https://github.com/spra85))
661
+ - Checks for existence of String#underscore prior to overriding [#30](https://github.com/fastly/fastly-ruby/pull/30) ([spra85](https://github.com/spra85))
606
662
 
607
663
  ## [v1.1.1](https://github.com/fastly/fastly-ruby/tree/v1.1.1) (2014-06-05)
664
+
608
665
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.1.0...v1.1.1)
609
666
 
610
667
  **Merged pull requests:**
611
668
 
612
- - Add VCL\#set\_main! [\#29](https://github.com/fastly/fastly-ruby/pull/29) ([ezkl](https://github.com/ezkl))
613
- - Minor project gardening [\#28](https://github.com/fastly/fastly-ruby/pull/28) ([ezkl](https://github.com/ezkl))
669
+ - Add VCL#set_main! [#29](https://github.com/fastly/fastly-ruby/pull/29) ([ezkl](https://github.com/ezkl))
670
+ - Minor project gardening [#28](https://github.com/fastly/fastly-ruby/pull/28) ([ezkl](https://github.com/ezkl))
614
671
 
615
672
  ## [v1.1.0](https://github.com/fastly/fastly-ruby/tree/v1.1.0) (2014-06-04)
673
+
616
674
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.02...v1.1.0)
617
675
 
618
676
  **Closed issues:**
619
677
 
620
- - Using the API key instead of username + password [\#22](https://github.com/fastly/fastly-ruby/issues/22)
621
- - Where to use full auth vs. token auth? [\#17](https://github.com/fastly/fastly-ruby/issues/17)
622
- - License missing from gemspec [\#10](https://github.com/fastly/fastly-ruby/issues/10)
678
+ - Using the API key instead of username + password [#22](https://github.com/fastly/fastly-ruby/issues/22)
679
+ - Where to use full auth vs. token auth? [#17](https://github.com/fastly/fastly-ruby/issues/17)
680
+ - License missing from gemspec [#10](https://github.com/fastly/fastly-ruby/issues/10)
623
681
 
624
682
  **Merged pull requests:**
625
683
 
626
- - Allow creating an entirely new version of a service, inheriting nothing ... [\#27](https://github.com/fastly/fastly-ruby/pull/27) ([ctdk](https://github.com/ctdk))
627
- - Fix s3 [\#26](https://github.com/fastly/fastly-ruby/pull/26) ([ctdk](https://github.com/ctdk))
628
- - Fix listing objects, add some API features [\#24](https://github.com/fastly/fastly-ruby/pull/24) ([ctdk](https://github.com/ctdk))
629
- - Wrap test framework dependencies [\#23](https://github.com/fastly/fastly-ruby/pull/23) ([sgerrand](https://github.com/sgerrand))
630
- - Readme updates for Testing [\#19](https://github.com/fastly/fastly-ruby/pull/19) ([phlipper](https://github.com/phlipper))
631
- - Streamline test suite [\#16](https://github.com/fastly/fastly-ruby/pull/16) ([aspires](https://github.com/aspires))
684
+ - Allow creating an entirely new version of a service, inheriting nothing ... [#27](https://github.com/fastly/fastly-ruby/pull/27) ([ctdk](https://github.com/ctdk))
685
+ - Fix s3 [#26](https://github.com/fastly/fastly-ruby/pull/26) ([ctdk](https://github.com/ctdk))
686
+ - Fix listing objects, add some API features [#24](https://github.com/fastly/fastly-ruby/pull/24) ([ctdk](https://github.com/ctdk))
687
+ - Wrap test framework dependencies [#23](https://github.com/fastly/fastly-ruby/pull/23) ([sgerrand](https://github.com/sgerrand))
688
+ - Readme updates for Testing [#19](https://github.com/fastly/fastly-ruby/pull/19) ([phlipper](https://github.com/phlipper))
689
+ - Streamline test suite [#16](https://github.com/fastly/fastly-ruby/pull/16) ([aspires](https://github.com/aspires))
632
690
 
633
691
  ## [v1.02](https://github.com/fastly/fastly-ruby/tree/v1.02) (2013-11-26)
692
+
634
693
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.01...v1.02)
635
694
 
636
695
  **Merged pull requests:**
637
696
 
638
- - Fixing misspelled field \(quorom to quorum\) [\#15](https://github.com/fastly/fastly-ruby/pull/15) ([renholm](https://github.com/renholm))
697
+ - Fixing misspelled field (quorom to quorum) [#15](https://github.com/fastly/fastly-ruby/pull/15) ([renholm](https://github.com/renholm))
639
698
 
640
699
  ## [v1.01](https://github.com/fastly/fastly-ruby/tree/v1.01) (2013-10-03)
700
+
641
701
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v1.0...v1.01)
642
702
 
643
703
  **Closed issues:**
644
704
 
645
- - No method for deleting vlc's [\#8](https://github.com/fastly/fastly-ruby/issues/8)
705
+ - No method for deleting vlc's [#8](https://github.com/fastly/fastly-ruby/issues/8)
646
706
 
647
707
  **Merged pull requests:**
648
708
 
649
- - README should use 'new\_version.activate!', not 'new\_version.activate' [\#13](https://github.com/fastly/fastly-ruby/pull/13) ([samjsharpe](https://github.com/samjsharpe))
650
- - Move Fastly::VERSION to dedicated file [\#12](https://github.com/fastly/fastly-ruby/pull/12) ([f3nry](https://github.com/f3nry))
651
- - fix purge\_all, purge\_by\_key and details at Fastly::Service [\#11](https://github.com/fastly/fastly-ruby/pull/11) ([kzk](https://github.com/kzk))
709
+ - README should use 'new_version.activate!', not 'new_version.activate' [#13](https://github.com/fastly/fastly-ruby/pull/13) ([samjsharpe](https://github.com/samjsharpe))
710
+ - Move Fastly::VERSION to dedicated file [#12](https://github.com/fastly/fastly-ruby/pull/12) ([f3nry](https://github.com/f3nry))
711
+ - fix purge_all, purge_by_key and details at Fastly::Service [#11](https://github.com/fastly/fastly-ruby/pull/11) ([kzk](https://github.com/kzk))
652
712
 
653
713
  ## [v1.0](https://github.com/fastly/fastly-ruby/tree/v1.0) (2013-07-16)
714
+
654
715
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v0.99...v1.0)
655
716
 
656
717
  **Merged pull requests:**
657
718
 
658
- - Fix for issue \#8 [\#9](https://github.com/fastly/fastly-ruby/pull/9) ([ajardan](https://github.com/ajardan))
719
+ - Fix for issue #8 [#9](https://github.com/fastly/fastly-ruby/pull/9) ([ajardan](https://github.com/ajardan))
659
720
 
660
721
  ## [v0.99](https://github.com/fastly/fastly-ruby/tree/v0.99) (2012-05-01)
722
+
661
723
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v0.98...v0.99)
662
724
 
663
725
  **Merged pull requests:**
664
726
 
665
- - Minor bug fix and README update [\#5](https://github.com/fastly/fastly-ruby/pull/5) ([ramezjm](https://github.com/ramezjm))
727
+ - Minor bug fix and README update [#5](https://github.com/fastly/fastly-ruby/pull/5) ([ramezjm](https://github.com/ramezjm))
666
728
 
667
729
  ## [v0.98](https://github.com/fastly/fastly-ruby/tree/v0.98) (2012-02-16)
730
+
668
731
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v0.97...v0.98)
669
732
 
670
733
  ## [v0.97](https://github.com/fastly/fastly-ruby/tree/v0.97) (2012-01-27)
734
+
671
735
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v0.96...v0.97)
672
736
 
673
737
  **Closed issues:**
674
738
 
675
- - Every invocation of fastly\_upload\_vcl from v0.95 dies with an error [\#4](https://github.com/fastly/fastly-ruby/issues/4)
739
+ - Every invocation of fastly_upload_vcl from v0.95 dies with an error [#4](https://github.com/fastly/fastly-ruby/issues/4)
676
740
 
677
741
  ## [v0.96](https://github.com/fastly/fastly-ruby/tree/v0.96) (2012-01-17)
742
+
678
743
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v0.95...v0.96)
679
744
 
680
745
  ## [v0.95](https://github.com/fastly/fastly-ruby/tree/v0.95) (2011-12-19)
746
+
681
747
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v0.9...v0.95)
682
748
 
683
749
  **Closed issues:**
684
750
 
685
- - Gem does not default site or port [\#3](https://github.com/fastly/fastly-ruby/issues/3)
686
- - Update to new form of versions [\#1](https://github.com/fastly/fastly-ruby/issues/1)
751
+ - Gem does not default site or port [#3](https://github.com/fastly/fastly-ruby/issues/3)
752
+ - Update to new form of versions [#1](https://github.com/fastly/fastly-ruby/issues/1)
687
753
 
688
754
  ## [v0.9](https://github.com/fastly/fastly-ruby/tree/v0.9) (2011-12-15)
755
+
689
756
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v0.8...v0.9)
690
757
 
691
758
  ## [v0.8](https://github.com/fastly/fastly-ruby/tree/v0.8) (2011-11-03)
759
+
692
760
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v0.6...v0.8)
693
761
 
694
762
  ## [v0.6](https://github.com/fastly/fastly-ruby/tree/v0.6) (2011-11-03)
763
+
695
764
  [Full Changelog](https://github.com/fastly/fastly-ruby/compare/v0.5...v0.6)
696
765
 
697
766
  ## [v0.5](https://github.com/fastly/fastly-ruby/tree/v0.5) (2011-11-01)
698
- [Full Changelog](https://github.com/fastly/fastly-ruby/compare/2015-02-05 v1.2.0...v0.5)
767
+
768
+ \[Full Changelog\](https://github.com/fastly/fastly-ruby/compare/2015-02-05 v1.2.0...v0.5)
699
769
 
700
770
  # HEAD
701
771
 
702
772
  ## 2015-02-05 v1.2.0
703
- * remove curb-fu. Net::HTTP is used instead - https://github.com/fastly/fastly-ruby/pull/44
704
- * better client error handling - https://github.com/fastly/fastly-ruby/pull/48
773
+
774
+ - remove curb-fu. Net::HTTP is used instead - https://github.com/fastly/fastly-ruby/pull/44
775
+ - better client error handling - https://github.com/fastly/fastly-ruby/pull/48
705
776
 
706
777
  ## 2014-12-15 v1.1.5
707
- * major refactor and reorganization of code (merged branch https://github.com/fastly/fastly-ruby/pull/31)
708
- * bump curb dep to 0.8.6 for ruby 2.1 support (see https://github.com/fastly/fastly-ruby/issues/43)
778
+
779
+ - major refactor and reorganization of code (merged branch https://github.com/fastly/fastly-ruby/pull/31)
780
+ - bump curb dep to 0.8.6 for ruby 2.1 support (see https://github.com/fastly/fastly-ruby/issues/43)
709
781
 
710
782
  ## 2014-09-29 v1.1.4
711
- * Require API Key for purge by key requests
783
+
784
+ - Require API Key for purge by key requests
712
785
 
713
786
  ## 2014-07-25 v1.1.3
714
- * Add test:unit rake task
715
- * Add Rubocop and some rubocop cleanup
716
- * Clarify gem name in documentation
717
- * Fix a bug in the `Fastly.get_options` method
718
- * Add `bin/fastly_create_domain` script to easily create domain
787
+
788
+ - Add test:unit rake task
789
+ - Add Rubocop and some rubocop cleanup
790
+ - Clarify gem name in documentation
791
+ - Fix a bug in the `Fastly.get_options` method
792
+ - Add `bin/fastly_create_domain` script to easily create domain
719
793
 
720
794
  ## 2014-06-12 v1.1.2
721
- * Replace `String#underscore` with `Fastly::Util.class_to_path` method.
722
- * Add first true unit test
723
- * Add `test_helper.rb`
724
- * Add `pry` as dependency
725
- * Add console Rake task
795
+
796
+ - Replace `String#underscore` with `Fastly::Util.class_to_path` method.
797
+ - Add first true unit test
798
+ - Add `test_helper.rb`
799
+ - Add `pry` as dependency
800
+ - Add console Rake task
726
801
 
727
802
  ## 2013-11-26 v1.02
728
803
 
@@ -772,7 +847,7 @@ Add mapping from backends to directors and directors to origins
772
847
 
773
848
  ## 2011-11-03 v0.8
774
849
 
775
- Add list_* to all objects
850
+ Add list\_\* to all objects
776
851
 
777
852
  Add Healthchecks and Syslog endpoint streaming
778
853