dtomasgu-fluentd 1.14.7.pre.dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (564) hide show
  1. checksums.yaml +7 -0
  2. data/.deepsource.toml +13 -0
  3. data/.drone.yml +35 -0
  4. data/.github/ISSUE_TEMPLATE/bug_report.yaml +70 -0
  5. data/.github/ISSUE_TEMPLATE/config.yml +5 -0
  6. data/.github/ISSUE_TEMPLATE/feature_request.yaml +38 -0
  7. data/.github/ISSUE_TEMPLATE.md +17 -0
  8. data/.github/PULL_REQUEST_TEMPLATE.md +14 -0
  9. data/.github/workflows/issue-auto-closer.yml +12 -0
  10. data/.github/workflows/linux-test.yaml +36 -0
  11. data/.github/workflows/macos-test.yaml +34 -0
  12. data/.github/workflows/stale-actions.yml +22 -0
  13. data/.github/workflows/windows-test.yaml +49 -0
  14. data/.gitignore +30 -0
  15. data/.gitlab-ci.yml +103 -0
  16. data/ADOPTERS.md +5 -0
  17. data/AUTHORS +2 -0
  18. data/CHANGELOG.md +2453 -0
  19. data/CONTRIBUTING.md +45 -0
  20. data/GOVERNANCE.md +55 -0
  21. data/Gemfile +9 -0
  22. data/GithubWorkflow.md +78 -0
  23. data/LICENSE +202 -0
  24. data/MAINTAINERS.md +11 -0
  25. data/README.md +76 -0
  26. data/Rakefile +79 -0
  27. data/SECURITY.md +18 -0
  28. data/bin/fluent-binlog-reader +7 -0
  29. data/bin/fluent-ca-generate +6 -0
  30. data/bin/fluent-cap-ctl +7 -0
  31. data/bin/fluent-cat +5 -0
  32. data/bin/fluent-ctl +7 -0
  33. data/bin/fluent-debug +5 -0
  34. data/bin/fluent-gem +9 -0
  35. data/bin/fluent-plugin-config-format +5 -0
  36. data/bin/fluent-plugin-generate +5 -0
  37. data/bin/fluentd +15 -0
  38. data/code-of-conduct.md +3 -0
  39. data/docs/SECURITY_AUDIT.pdf +0 -0
  40. data/example/copy_roundrobin.conf +39 -0
  41. data/example/counter.conf +18 -0
  42. data/example/filter_stdout.conf +22 -0
  43. data/example/in_forward.conf +14 -0
  44. data/example/in_forward_client.conf +37 -0
  45. data/example/in_forward_shared_key.conf +15 -0
  46. data/example/in_forward_tls.conf +14 -0
  47. data/example/in_forward_users.conf +24 -0
  48. data/example/in_forward_workers.conf +21 -0
  49. data/example/in_http.conf +16 -0
  50. data/example/in_out_forward.conf +17 -0
  51. data/example/in_sample_blocks.conf +17 -0
  52. data/example/in_sample_with_compression.conf +23 -0
  53. data/example/in_syslog.conf +15 -0
  54. data/example/in_tail.conf +14 -0
  55. data/example/in_tcp.conf +13 -0
  56. data/example/in_udp.conf +13 -0
  57. data/example/logevents.conf +25 -0
  58. data/example/multi_filters.conf +61 -0
  59. data/example/out_copy.conf +20 -0
  60. data/example/out_exec_filter.conf +42 -0
  61. data/example/out_file.conf +13 -0
  62. data/example/out_forward.conf +35 -0
  63. data/example/out_forward_buf_file.conf +23 -0
  64. data/example/out_forward_client.conf +109 -0
  65. data/example/out_forward_heartbeat_none.conf +16 -0
  66. data/example/out_forward_sd.conf +17 -0
  67. data/example/out_forward_shared_key.conf +36 -0
  68. data/example/out_forward_tls.conf +18 -0
  69. data/example/out_forward_users.conf +65 -0
  70. data/example/out_null.conf +36 -0
  71. data/example/sd.yaml +8 -0
  72. data/example/secondary_file.conf +42 -0
  73. data/example/suppress_config_dump.conf +7 -0
  74. data/example/v0_12_filter.conf +78 -0
  75. data/example/v1_literal_example.conf +36 -0
  76. data/example/worker_section.conf +36 -0
  77. data/fluent.conf +139 -0
  78. data/fluentd.gemspec +57 -0
  79. data/lib/fluent/agent.rb +168 -0
  80. data/lib/fluent/capability.rb +87 -0
  81. data/lib/fluent/clock.rb +66 -0
  82. data/lib/fluent/command/binlog_reader.rb +244 -0
  83. data/lib/fluent/command/bundler_injection.rb +45 -0
  84. data/lib/fluent/command/ca_generate.rb +184 -0
  85. data/lib/fluent/command/cap_ctl.rb +174 -0
  86. data/lib/fluent/command/cat.rb +365 -0
  87. data/lib/fluent/command/ctl.rb +180 -0
  88. data/lib/fluent/command/debug.rb +103 -0
  89. data/lib/fluent/command/fluentd.rb +388 -0
  90. data/lib/fluent/command/plugin_config_formatter.rb +308 -0
  91. data/lib/fluent/command/plugin_generator.rb +365 -0
  92. data/lib/fluent/compat/call_super_mixin.rb +76 -0
  93. data/lib/fluent/compat/detach_process_mixin.rb +33 -0
  94. data/lib/fluent/compat/exec_util.rb +129 -0
  95. data/lib/fluent/compat/file_util.rb +54 -0
  96. data/lib/fluent/compat/filter.rb +68 -0
  97. data/lib/fluent/compat/formatter.rb +111 -0
  98. data/lib/fluent/compat/formatter_utils.rb +85 -0
  99. data/lib/fluent/compat/handle_tag_and_time_mixin.rb +62 -0
  100. data/lib/fluent/compat/handle_tag_name_mixin.rb +53 -0
  101. data/lib/fluent/compat/input.rb +49 -0
  102. data/lib/fluent/compat/output.rb +721 -0
  103. data/lib/fluent/compat/output_chain.rb +60 -0
  104. data/lib/fluent/compat/parser.rb +310 -0
  105. data/lib/fluent/compat/parser_utils.rb +40 -0
  106. data/lib/fluent/compat/propagate_default.rb +62 -0
  107. data/lib/fluent/compat/record_filter_mixin.rb +34 -0
  108. data/lib/fluent/compat/set_tag_key_mixin.rb +50 -0
  109. data/lib/fluent/compat/set_time_key_mixin.rb +69 -0
  110. data/lib/fluent/compat/socket_util.rb +165 -0
  111. data/lib/fluent/compat/string_util.rb +34 -0
  112. data/lib/fluent/compat/structured_format_mixin.rb +26 -0
  113. data/lib/fluent/compat/type_converter.rb +90 -0
  114. data/lib/fluent/config/basic_parser.rb +123 -0
  115. data/lib/fluent/config/configure_proxy.rb +424 -0
  116. data/lib/fluent/config/dsl.rb +152 -0
  117. data/lib/fluent/config/element.rb +265 -0
  118. data/lib/fluent/config/error.rb +44 -0
  119. data/lib/fluent/config/literal_parser.rb +286 -0
  120. data/lib/fluent/config/parser.rb +107 -0
  121. data/lib/fluent/config/section.rb +272 -0
  122. data/lib/fluent/config/types.rb +249 -0
  123. data/lib/fluent/config/v1_parser.rb +192 -0
  124. data/lib/fluent/config/yaml_parser/fluent_value.rb +47 -0
  125. data/lib/fluent/config/yaml_parser/loader.rb +91 -0
  126. data/lib/fluent/config/yaml_parser/parser.rb +166 -0
  127. data/lib/fluent/config/yaml_parser/section_builder.rb +107 -0
  128. data/lib/fluent/config/yaml_parser.rb +56 -0
  129. data/lib/fluent/config.rb +89 -0
  130. data/lib/fluent/configurable.rb +201 -0
  131. data/lib/fluent/counter/base_socket.rb +44 -0
  132. data/lib/fluent/counter/client.rb +297 -0
  133. data/lib/fluent/counter/error.rb +86 -0
  134. data/lib/fluent/counter/mutex_hash.rb +163 -0
  135. data/lib/fluent/counter/server.rb +273 -0
  136. data/lib/fluent/counter/store.rb +205 -0
  137. data/lib/fluent/counter/validator.rb +145 -0
  138. data/lib/fluent/counter.rb +23 -0
  139. data/lib/fluent/daemon.rb +15 -0
  140. data/lib/fluent/daemonizer.rb +88 -0
  141. data/lib/fluent/engine.rb +253 -0
  142. data/lib/fluent/env.rb +40 -0
  143. data/lib/fluent/error.rb +34 -0
  144. data/lib/fluent/event.rb +326 -0
  145. data/lib/fluent/event_router.rb +315 -0
  146. data/lib/fluent/ext_monitor_require.rb +28 -0
  147. data/lib/fluent/filter.rb +21 -0
  148. data/lib/fluent/fluent_log_event_router.rb +141 -0
  149. data/lib/fluent/formatter.rb +23 -0
  150. data/lib/fluent/input.rb +21 -0
  151. data/lib/fluent/label.rb +46 -0
  152. data/lib/fluent/load.rb +34 -0
  153. data/lib/fluent/log.rb +713 -0
  154. data/lib/fluent/match.rb +187 -0
  155. data/lib/fluent/mixin.rb +31 -0
  156. data/lib/fluent/msgpack_factory.rb +106 -0
  157. data/lib/fluent/oj_options.rb +62 -0
  158. data/lib/fluent/output.rb +29 -0
  159. data/lib/fluent/output_chain.rb +23 -0
  160. data/lib/fluent/parser.rb +23 -0
  161. data/lib/fluent/plugin/bare_output.rb +104 -0
  162. data/lib/fluent/plugin/base.rb +197 -0
  163. data/lib/fluent/plugin/buf_file.rb +213 -0
  164. data/lib/fluent/plugin/buf_file_single.rb +225 -0
  165. data/lib/fluent/plugin/buf_memory.rb +34 -0
  166. data/lib/fluent/plugin/buffer/chunk.rb +240 -0
  167. data/lib/fluent/plugin/buffer/file_chunk.rb +413 -0
  168. data/lib/fluent/plugin/buffer/file_single_chunk.rb +311 -0
  169. data/lib/fluent/plugin/buffer/memory_chunk.rb +91 -0
  170. data/lib/fluent/plugin/buffer.rb +918 -0
  171. data/lib/fluent/plugin/compressable.rb +96 -0
  172. data/lib/fluent/plugin/exec_util.rb +22 -0
  173. data/lib/fluent/plugin/file_util.rb +22 -0
  174. data/lib/fluent/plugin/file_wrapper.rb +132 -0
  175. data/lib/fluent/plugin/filter.rb +127 -0
  176. data/lib/fluent/plugin/filter_grep.rb +189 -0
  177. data/lib/fluent/plugin/filter_parser.rb +130 -0
  178. data/lib/fluent/plugin/filter_record_transformer.rb +324 -0
  179. data/lib/fluent/plugin/filter_stdout.rb +53 -0
  180. data/lib/fluent/plugin/formatter.rb +75 -0
  181. data/lib/fluent/plugin/formatter_csv.rb +78 -0
  182. data/lib/fluent/plugin/formatter_hash.rb +35 -0
  183. data/lib/fluent/plugin/formatter_json.rb +59 -0
  184. data/lib/fluent/plugin/formatter_ltsv.rb +44 -0
  185. data/lib/fluent/plugin/formatter_msgpack.rb +33 -0
  186. data/lib/fluent/plugin/formatter_out_file.rb +53 -0
  187. data/lib/fluent/plugin/formatter_single_value.rb +36 -0
  188. data/lib/fluent/plugin/formatter_stdout.rb +76 -0
  189. data/lib/fluent/plugin/formatter_tsv.rb +40 -0
  190. data/lib/fluent/plugin/in_debug_agent.rb +71 -0
  191. data/lib/fluent/plugin/in_dummy.rb +18 -0
  192. data/lib/fluent/plugin/in_exec.rb +110 -0
  193. data/lib/fluent/plugin/in_forward.rb +473 -0
  194. data/lib/fluent/plugin/in_gc_stat.rb +72 -0
  195. data/lib/fluent/plugin/in_http.rb +677 -0
  196. data/lib/fluent/plugin/in_monitor_agent.rb +412 -0
  197. data/lib/fluent/plugin/in_object_space.rb +93 -0
  198. data/lib/fluent/plugin/in_sample.rb +141 -0
  199. data/lib/fluent/plugin/in_syslog.rb +276 -0
  200. data/lib/fluent/plugin/in_tail/group_watch.rb +204 -0
  201. data/lib/fluent/plugin/in_tail/position_file.rb +255 -0
  202. data/lib/fluent/plugin/in_tail.rb +1247 -0
  203. data/lib/fluent/plugin/in_tcp.rb +181 -0
  204. data/lib/fluent/plugin/in_udp.rb +92 -0
  205. data/lib/fluent/plugin/in_unix.rb +195 -0
  206. data/lib/fluent/plugin/input.rb +75 -0
  207. data/lib/fluent/plugin/metrics.rb +119 -0
  208. data/lib/fluent/plugin/metrics_local.rb +96 -0
  209. data/lib/fluent/plugin/multi_output.rb +195 -0
  210. data/lib/fluent/plugin/out_copy.rb +120 -0
  211. data/lib/fluent/plugin/out_exec.rb +105 -0
  212. data/lib/fluent/plugin/out_exec_filter.rb +319 -0
  213. data/lib/fluent/plugin/out_file.rb +334 -0
  214. data/lib/fluent/plugin/out_forward/ack_handler.rb +161 -0
  215. data/lib/fluent/plugin/out_forward/connection_manager.rb +113 -0
  216. data/lib/fluent/plugin/out_forward/error.rb +28 -0
  217. data/lib/fluent/plugin/out_forward/failure_detector.rb +84 -0
  218. data/lib/fluent/plugin/out_forward/handshake_protocol.rb +125 -0
  219. data/lib/fluent/plugin/out_forward/load_balancer.rb +114 -0
  220. data/lib/fluent/plugin/out_forward/socket_cache.rb +142 -0
  221. data/lib/fluent/plugin/out_forward.rb +826 -0
  222. data/lib/fluent/plugin/out_http.rb +280 -0
  223. data/lib/fluent/plugin/out_null.rb +74 -0
  224. data/lib/fluent/plugin/out_relabel.rb +32 -0
  225. data/lib/fluent/plugin/out_roundrobin.rb +84 -0
  226. data/lib/fluent/plugin/out_secondary_file.rb +131 -0
  227. data/lib/fluent/plugin/out_stdout.rb +74 -0
  228. data/lib/fluent/plugin/out_stream.rb +130 -0
  229. data/lib/fluent/plugin/output.rb +1566 -0
  230. data/lib/fluent/plugin/owned_by_mixin.rb +42 -0
  231. data/lib/fluent/plugin/parser.rb +274 -0
  232. data/lib/fluent/plugin/parser_apache.rb +28 -0
  233. data/lib/fluent/plugin/parser_apache2.rb +88 -0
  234. data/lib/fluent/plugin/parser_apache_error.rb +26 -0
  235. data/lib/fluent/plugin/parser_csv.rb +114 -0
  236. data/lib/fluent/plugin/parser_json.rb +96 -0
  237. data/lib/fluent/plugin/parser_ltsv.rb +51 -0
  238. data/lib/fluent/plugin/parser_msgpack.rb +50 -0
  239. data/lib/fluent/plugin/parser_multiline.rb +152 -0
  240. data/lib/fluent/plugin/parser_nginx.rb +28 -0
  241. data/lib/fluent/plugin/parser_none.rb +36 -0
  242. data/lib/fluent/plugin/parser_regexp.rb +68 -0
  243. data/lib/fluent/plugin/parser_syslog.rb +496 -0
  244. data/lib/fluent/plugin/parser_tsv.rb +42 -0
  245. data/lib/fluent/plugin/sd_file.rb +156 -0
  246. data/lib/fluent/plugin/sd_srv.rb +135 -0
  247. data/lib/fluent/plugin/sd_static.rb +58 -0
  248. data/lib/fluent/plugin/service_discovery.rb +65 -0
  249. data/lib/fluent/plugin/socket_util.rb +22 -0
  250. data/lib/fluent/plugin/storage.rb +84 -0
  251. data/lib/fluent/plugin/storage_local.rb +162 -0
  252. data/lib/fluent/plugin/string_util.rb +22 -0
  253. data/lib/fluent/plugin.rb +206 -0
  254. data/lib/fluent/plugin_helper/cert_option.rb +191 -0
  255. data/lib/fluent/plugin_helper/child_process.rb +366 -0
  256. data/lib/fluent/plugin_helper/compat_parameters.rb +343 -0
  257. data/lib/fluent/plugin_helper/counter.rb +51 -0
  258. data/lib/fluent/plugin_helper/event_emitter.rb +100 -0
  259. data/lib/fluent/plugin_helper/event_loop.rb +170 -0
  260. data/lib/fluent/plugin_helper/extract.rb +104 -0
  261. data/lib/fluent/plugin_helper/formatter.rb +147 -0
  262. data/lib/fluent/plugin_helper/http_server/app.rb +79 -0
  263. data/lib/fluent/plugin_helper/http_server/compat/server.rb +92 -0
  264. data/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb +52 -0
  265. data/lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb +58 -0
  266. data/lib/fluent/plugin_helper/http_server/methods.rb +35 -0
  267. data/lib/fluent/plugin_helper/http_server/request.rb +42 -0
  268. data/lib/fluent/plugin_helper/http_server/router.rb +54 -0
  269. data/lib/fluent/plugin_helper/http_server/server.rb +93 -0
  270. data/lib/fluent/plugin_helper/http_server/ssl_context_builder.rb +41 -0
  271. data/lib/fluent/plugin_helper/http_server.rb +135 -0
  272. data/lib/fluent/plugin_helper/inject.rb +154 -0
  273. data/lib/fluent/plugin_helper/metrics.rb +129 -0
  274. data/lib/fluent/plugin_helper/parser.rb +147 -0
  275. data/lib/fluent/plugin_helper/record_accessor.rb +207 -0
  276. data/lib/fluent/plugin_helper/retry_state.rb +219 -0
  277. data/lib/fluent/plugin_helper/server.rb +820 -0
  278. data/lib/fluent/plugin_helper/service_discovery/manager.rb +146 -0
  279. data/lib/fluent/plugin_helper/service_discovery/round_robin_balancer.rb +43 -0
  280. data/lib/fluent/plugin_helper/service_discovery.rb +125 -0
  281. data/lib/fluent/plugin_helper/socket.rb +288 -0
  282. data/lib/fluent/plugin_helper/socket_option.rb +98 -0
  283. data/lib/fluent/plugin_helper/storage.rb +349 -0
  284. data/lib/fluent/plugin_helper/thread.rb +180 -0
  285. data/lib/fluent/plugin_helper/timer.rb +92 -0
  286. data/lib/fluent/plugin_helper.rb +75 -0
  287. data/lib/fluent/plugin_id.rb +93 -0
  288. data/lib/fluent/process.rb +22 -0
  289. data/lib/fluent/registry.rb +117 -0
  290. data/lib/fluent/root_agent.rb +372 -0
  291. data/lib/fluent/rpc.rb +95 -0
  292. data/lib/fluent/static_config_analysis.rb +194 -0
  293. data/lib/fluent/supervisor.rb +1141 -0
  294. data/lib/fluent/system_config.rb +188 -0
  295. data/lib/fluent/test/base.rb +78 -0
  296. data/lib/fluent/test/driver/base.rb +225 -0
  297. data/lib/fluent/test/driver/base_owned.rb +83 -0
  298. data/lib/fluent/test/driver/base_owner.rb +135 -0
  299. data/lib/fluent/test/driver/event_feeder.rb +98 -0
  300. data/lib/fluent/test/driver/filter.rb +57 -0
  301. data/lib/fluent/test/driver/formatter.rb +30 -0
  302. data/lib/fluent/test/driver/input.rb +31 -0
  303. data/lib/fluent/test/driver/multi_output.rb +53 -0
  304. data/lib/fluent/test/driver/output.rb +102 -0
  305. data/lib/fluent/test/driver/parser.rb +30 -0
  306. data/lib/fluent/test/driver/storage.rb +30 -0
  307. data/lib/fluent/test/driver/test_event_router.rb +45 -0
  308. data/lib/fluent/test/filter_test.rb +77 -0
  309. data/lib/fluent/test/formatter_test.rb +65 -0
  310. data/lib/fluent/test/helpers.rb +134 -0
  311. data/lib/fluent/test/input_test.rb +174 -0
  312. data/lib/fluent/test/log.rb +79 -0
  313. data/lib/fluent/test/output_test.rb +156 -0
  314. data/lib/fluent/test/parser_test.rb +70 -0
  315. data/lib/fluent/test/startup_shutdown.rb +46 -0
  316. data/lib/fluent/test.rb +58 -0
  317. data/lib/fluent/time.rb +512 -0
  318. data/lib/fluent/timezone.rb +171 -0
  319. data/lib/fluent/tls.rb +81 -0
  320. data/lib/fluent/unique_id.rb +39 -0
  321. data/lib/fluent/variable_store.rb +40 -0
  322. data/lib/fluent/version.rb +21 -0
  323. data/lib/fluent/winsvc.rb +105 -0
  324. data/templates/new_gem/Gemfile +3 -0
  325. data/templates/new_gem/README.md.erb +43 -0
  326. data/templates/new_gem/Rakefile +13 -0
  327. data/templates/new_gem/fluent-plugin.gemspec.erb +27 -0
  328. data/templates/new_gem/lib/fluent/plugin/filter.rb.erb +14 -0
  329. data/templates/new_gem/lib/fluent/plugin/formatter.rb.erb +14 -0
  330. data/templates/new_gem/lib/fluent/plugin/input.rb.erb +11 -0
  331. data/templates/new_gem/lib/fluent/plugin/output.rb.erb +11 -0
  332. data/templates/new_gem/lib/fluent/plugin/parser.rb.erb +15 -0
  333. data/templates/new_gem/lib/fluent/plugin/storage.rb.erb +40 -0
  334. data/templates/new_gem/test/helper.rb.erb +8 -0
  335. data/templates/new_gem/test/plugin/test_filter.rb.erb +18 -0
  336. data/templates/new_gem/test/plugin/test_formatter.rb.erb +18 -0
  337. data/templates/new_gem/test/plugin/test_input.rb.erb +18 -0
  338. data/templates/new_gem/test/plugin/test_output.rb.erb +18 -0
  339. data/templates/new_gem/test/plugin/test_parser.rb.erb +18 -0
  340. data/templates/new_gem/test/plugin/test_storage.rb.erb +18 -0
  341. data/templates/plugin_config_formatter/param.md-compact.erb +25 -0
  342. data/templates/plugin_config_formatter/param.md-table.erb +10 -0
  343. data/templates/plugin_config_formatter/param.md.erb +34 -0
  344. data/templates/plugin_config_formatter/section.md.erb +12 -0
  345. data/test/command/test_binlog_reader.rb +362 -0
  346. data/test/command/test_ca_generate.rb +70 -0
  347. data/test/command/test_cap_ctl.rb +100 -0
  348. data/test/command/test_cat.rb +128 -0
  349. data/test/command/test_ctl.rb +56 -0
  350. data/test/command/test_fluentd.rb +1139 -0
  351. data/test/command/test_plugin_config_formatter.rb +398 -0
  352. data/test/command/test_plugin_generator.rb +109 -0
  353. data/test/compat/test_calls_super.rb +166 -0
  354. data/test/compat/test_parser.rb +92 -0
  355. data/test/config/assertions.rb +42 -0
  356. data/test/config/test_config_parser.rb +551 -0
  357. data/test/config/test_configurable.rb +1784 -0
  358. data/test/config/test_configure_proxy.rb +604 -0
  359. data/test/config/test_dsl.rb +415 -0
  360. data/test/config/test_element.rb +518 -0
  361. data/test/config/test_literal_parser.rb +309 -0
  362. data/test/config/test_plugin_configuration.rb +56 -0
  363. data/test/config/test_section.rb +191 -0
  364. data/test/config/test_system_config.rb +201 -0
  365. data/test/config/test_types.rb +408 -0
  366. data/test/counter/test_client.rb +563 -0
  367. data/test/counter/test_error.rb +44 -0
  368. data/test/counter/test_mutex_hash.rb +179 -0
  369. data/test/counter/test_server.rb +589 -0
  370. data/test/counter/test_store.rb +258 -0
  371. data/test/counter/test_validator.rb +137 -0
  372. data/test/helper.rb +155 -0
  373. data/test/helpers/fuzzy_assert.rb +89 -0
  374. data/test/helpers/process_extenstion.rb +33 -0
  375. data/test/plugin/data/2010/01/20100102-030405.log +0 -0
  376. data/test/plugin/data/2010/01/20100102-030406.log +0 -0
  377. data/test/plugin/data/2010/01/20100102.log +0 -0
  378. data/test/plugin/data/log/bar +0 -0
  379. data/test/plugin/data/log/foo/bar.log +0 -0
  380. data/test/plugin/data/log/foo/bar2 +0 -0
  381. data/test/plugin/data/log/test.log +0 -0
  382. data/test/plugin/data/sd_file/config +11 -0
  383. data/test/plugin/data/sd_file/config.json +17 -0
  384. data/test/plugin/data/sd_file/config.yaml +11 -0
  385. data/test/plugin/data/sd_file/config.yml +11 -0
  386. data/test/plugin/data/sd_file/invalid_config.yml +7 -0
  387. data/test/plugin/in_tail/test_fifo.rb +121 -0
  388. data/test/plugin/in_tail/test_io_handler.rb +150 -0
  389. data/test/plugin/in_tail/test_position_file.rb +316 -0
  390. data/test/plugin/out_forward/test_ack_handler.rb +101 -0
  391. data/test/plugin/out_forward/test_connection_manager.rb +145 -0
  392. data/test/plugin/out_forward/test_handshake_protocol.rb +112 -0
  393. data/test/plugin/out_forward/test_load_balancer.rb +106 -0
  394. data/test/plugin/out_forward/test_socket_cache.rb +174 -0
  395. data/test/plugin/test_bare_output.rb +131 -0
  396. data/test/plugin/test_base.rb +115 -0
  397. data/test/plugin/test_buf_file.rb +1275 -0
  398. data/test/plugin/test_buf_file_single.rb +833 -0
  399. data/test/plugin/test_buf_memory.rb +42 -0
  400. data/test/plugin/test_buffer.rb +1383 -0
  401. data/test/plugin/test_buffer_chunk.rb +198 -0
  402. data/test/plugin/test_buffer_file_chunk.rb +871 -0
  403. data/test/plugin/test_buffer_file_single_chunk.rb +611 -0
  404. data/test/plugin/test_buffer_memory_chunk.rb +339 -0
  405. data/test/plugin/test_compressable.rb +87 -0
  406. data/test/plugin/test_file_util.rb +96 -0
  407. data/test/plugin/test_file_wrapper.rb +58 -0
  408. data/test/plugin/test_filter.rb +368 -0
  409. data/test/plugin/test_filter_grep.rb +697 -0
  410. data/test/plugin/test_filter_parser.rb +731 -0
  411. data/test/plugin/test_filter_record_transformer.rb +577 -0
  412. data/test/plugin/test_filter_stdout.rb +207 -0
  413. data/test/plugin/test_formatter_csv.rb +136 -0
  414. data/test/plugin/test_formatter_hash.rb +38 -0
  415. data/test/plugin/test_formatter_json.rb +61 -0
  416. data/test/plugin/test_formatter_ltsv.rb +70 -0
  417. data/test/plugin/test_formatter_msgpack.rb +28 -0
  418. data/test/plugin/test_formatter_out_file.rb +116 -0
  419. data/test/plugin/test_formatter_single_value.rb +44 -0
  420. data/test/plugin/test_formatter_tsv.rb +76 -0
  421. data/test/plugin/test_in_debug_agent.rb +49 -0
  422. data/test/plugin/test_in_exec.rb +261 -0
  423. data/test/plugin/test_in_forward.rb +1178 -0
  424. data/test/plugin/test_in_gc_stat.rb +62 -0
  425. data/test/plugin/test_in_http.rb +1103 -0
  426. data/test/plugin/test_in_monitor_agent.rb +923 -0
  427. data/test/plugin/test_in_object_space.rb +66 -0
  428. data/test/plugin/test_in_sample.rb +190 -0
  429. data/test/plugin/test_in_syslog.rb +505 -0
  430. data/test/plugin/test_in_tail.rb +2639 -0
  431. data/test/plugin/test_in_tcp.rb +243 -0
  432. data/test/plugin/test_in_udp.rb +268 -0
  433. data/test/plugin/test_in_unix.rb +181 -0
  434. data/test/plugin/test_input.rb +137 -0
  435. data/test/plugin/test_metadata.rb +89 -0
  436. data/test/plugin/test_metrics.rb +294 -0
  437. data/test/plugin/test_metrics_local.rb +96 -0
  438. data/test/plugin/test_multi_output.rb +204 -0
  439. data/test/plugin/test_out_copy.rb +308 -0
  440. data/test/plugin/test_out_exec.rb +312 -0
  441. data/test/plugin/test_out_exec_filter.rb +606 -0
  442. data/test/plugin/test_out_file.rb +1037 -0
  443. data/test/plugin/test_out_forward.rb +1358 -0
  444. data/test/plugin/test_out_http.rb +428 -0
  445. data/test/plugin/test_out_null.rb +105 -0
  446. data/test/plugin/test_out_relabel.rb +28 -0
  447. data/test/plugin/test_out_roundrobin.rb +146 -0
  448. data/test/plugin/test_out_secondary_file.rb +458 -0
  449. data/test/plugin/test_out_stdout.rb +205 -0
  450. data/test/plugin/test_out_stream.rb +103 -0
  451. data/test/plugin/test_output.rb +1065 -0
  452. data/test/plugin/test_output_as_buffered.rb +2024 -0
  453. data/test/plugin/test_output_as_buffered_backup.rb +363 -0
  454. data/test/plugin/test_output_as_buffered_compress.rb +165 -0
  455. data/test/plugin/test_output_as_buffered_overflow.rb +250 -0
  456. data/test/plugin/test_output_as_buffered_retries.rb +966 -0
  457. data/test/plugin/test_output_as_buffered_secondary.rb +882 -0
  458. data/test/plugin/test_output_as_standard.rb +374 -0
  459. data/test/plugin/test_owned_by.rb +35 -0
  460. data/test/plugin/test_parser.rb +399 -0
  461. data/test/plugin/test_parser_apache.rb +42 -0
  462. data/test/plugin/test_parser_apache2.rb +47 -0
  463. data/test/plugin/test_parser_apache_error.rb +45 -0
  464. data/test/plugin/test_parser_csv.rb +200 -0
  465. data/test/plugin/test_parser_json.rb +138 -0
  466. data/test/plugin/test_parser_labeled_tsv.rb +160 -0
  467. data/test/plugin/test_parser_multiline.rb +111 -0
  468. data/test/plugin/test_parser_nginx.rb +88 -0
  469. data/test/plugin/test_parser_none.rb +52 -0
  470. data/test/plugin/test_parser_regexp.rb +289 -0
  471. data/test/plugin/test_parser_syslog.rb +650 -0
  472. data/test/plugin/test_parser_tsv.rb +122 -0
  473. data/test/plugin/test_sd_file.rb +228 -0
  474. data/test/plugin/test_sd_srv.rb +230 -0
  475. data/test/plugin/test_storage.rb +167 -0
  476. data/test/plugin/test_storage_local.rb +335 -0
  477. data/test/plugin/test_string_util.rb +26 -0
  478. data/test/plugin_helper/data/cert/cert-key.pem +27 -0
  479. data/test/plugin_helper/data/cert/cert-with-CRLF.pem +19 -0
  480. data/test/plugin_helper/data/cert/cert-with-no-newline.pem +19 -0
  481. data/test/plugin_helper/data/cert/cert.pem +19 -0
  482. data/test/plugin_helper/data/cert/cert_chains/ca-cert-key.pem +27 -0
  483. data/test/plugin_helper/data/cert/cert_chains/ca-cert.pem +20 -0
  484. data/test/plugin_helper/data/cert/cert_chains/cert-key.pem +27 -0
  485. data/test/plugin_helper/data/cert/cert_chains/cert.pem +40 -0
  486. data/test/plugin_helper/data/cert/empty.pem +0 -0
  487. data/test/plugin_helper/data/cert/generate_cert.rb +125 -0
  488. data/test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem +30 -0
  489. data/test/plugin_helper/data/cert/with_ca/ca-cert-key.pem +27 -0
  490. data/test/plugin_helper/data/cert/with_ca/ca-cert-pass.pem +20 -0
  491. data/test/plugin_helper/data/cert/with_ca/ca-cert.pem +20 -0
  492. data/test/plugin_helper/data/cert/with_ca/cert-key-pass.pem +30 -0
  493. data/test/plugin_helper/data/cert/with_ca/cert-key.pem +27 -0
  494. data/test/plugin_helper/data/cert/with_ca/cert-pass.pem +21 -0
  495. data/test/plugin_helper/data/cert/with_ca/cert.pem +21 -0
  496. data/test/plugin_helper/data/cert/without_ca/cert-key-pass.pem +30 -0
  497. data/test/plugin_helper/data/cert/without_ca/cert-key.pem +27 -0
  498. data/test/plugin_helper/data/cert/without_ca/cert-pass.pem +20 -0
  499. data/test/plugin_helper/data/cert/without_ca/cert.pem +20 -0
  500. data/test/plugin_helper/http_server/test_app.rb +65 -0
  501. data/test/plugin_helper/http_server/test_route.rb +32 -0
  502. data/test/plugin_helper/service_discovery/test_manager.rb +93 -0
  503. data/test/plugin_helper/service_discovery/test_round_robin_balancer.rb +21 -0
  504. data/test/plugin_helper/test_cert_option.rb +25 -0
  505. data/test/plugin_helper/test_child_process.rb +852 -0
  506. data/test/plugin_helper/test_compat_parameters.rb +358 -0
  507. data/test/plugin_helper/test_event_emitter.rb +80 -0
  508. data/test/plugin_helper/test_event_loop.rb +52 -0
  509. data/test/plugin_helper/test_extract.rb +194 -0
  510. data/test/plugin_helper/test_formatter.rb +255 -0
  511. data/test/plugin_helper/test_http_server_helper.rb +372 -0
  512. data/test/plugin_helper/test_inject.rb +561 -0
  513. data/test/plugin_helper/test_metrics.rb +137 -0
  514. data/test/plugin_helper/test_parser.rb +264 -0
  515. data/test/plugin_helper/test_record_accessor.rb +238 -0
  516. data/test/plugin_helper/test_retry_state.rb +1006 -0
  517. data/test/plugin_helper/test_server.rb +1841 -0
  518. data/test/plugin_helper/test_service_discovery.rb +165 -0
  519. data/test/plugin_helper/test_socket.rb +146 -0
  520. data/test/plugin_helper/test_storage.rb +542 -0
  521. data/test/plugin_helper/test_thread.rb +164 -0
  522. data/test/plugin_helper/test_timer.rb +130 -0
  523. data/test/scripts/exec_script.rb +32 -0
  524. data/test/scripts/fluent/plugin/formatter1/formatter_test1.rb +7 -0
  525. data/test/scripts/fluent/plugin/formatter2/formatter_test2.rb +7 -0
  526. data/test/scripts/fluent/plugin/formatter_known.rb +8 -0
  527. data/test/scripts/fluent/plugin/out_test.rb +81 -0
  528. data/test/scripts/fluent/plugin/out_test2.rb +80 -0
  529. data/test/scripts/fluent/plugin/parser_known.rb +4 -0
  530. data/test/test_capability.rb +74 -0
  531. data/test/test_clock.rb +164 -0
  532. data/test/test_config.rb +333 -0
  533. data/test/test_configdsl.rb +148 -0
  534. data/test/test_daemonizer.rb +91 -0
  535. data/test/test_engine.rb +203 -0
  536. data/test/test_event.rb +531 -0
  537. data/test/test_event_router.rb +348 -0
  538. data/test/test_event_time.rb +199 -0
  539. data/test/test_filter.rb +121 -0
  540. data/test/test_fluent_log_event_router.rb +99 -0
  541. data/test/test_formatter.rb +366 -0
  542. data/test/test_input.rb +31 -0
  543. data/test/test_log.rb +994 -0
  544. data/test/test_logger_initializer.rb +46 -0
  545. data/test/test_match.rb +148 -0
  546. data/test/test_mixin.rb +351 -0
  547. data/test/test_msgpack_factory.rb +18 -0
  548. data/test/test_oj_options.rb +55 -0
  549. data/test/test_output.rb +278 -0
  550. data/test/test_plugin.rb +251 -0
  551. data/test/test_plugin_classes.rb +370 -0
  552. data/test/test_plugin_helper.rb +81 -0
  553. data/test/test_plugin_id.rb +119 -0
  554. data/test/test_process.rb +14 -0
  555. data/test/test_root_agent.rb +951 -0
  556. data/test/test_static_config_analysis.rb +177 -0
  557. data/test/test_supervisor.rb +791 -0
  558. data/test/test_test_drivers.rb +136 -0
  559. data/test/test_time_formatter.rb +301 -0
  560. data/test/test_time_parser.rb +362 -0
  561. data/test/test_tls.rb +65 -0
  562. data/test/test_unique_id.rb +47 -0
  563. data/test/test_variable_store.rb +65 -0
  564. metadata +1191 -0
data/CHANGELOG.md ADDED
@@ -0,0 +1,2453 @@
1
+ # v1.14
2
+
3
+ ## Release v1.14.6 - 2022/03/31
4
+
5
+ ### Enhancement
6
+
7
+ * Enable server plugins to specify socket-option `SO_LINGER`
8
+ https://github.com/fluent/fluentd/pull/3644
9
+ * Add `--umask` command line parameter
10
+ https://github.com/fluent/fluentd/pull/3671
11
+ https://github.com/fluent/fluentd/pull/3679
12
+
13
+ ### Bug fixes
14
+
15
+ * Fix metric name typo
16
+ https://github.com/fluent/fluentd/pull/3630
17
+ https://github.com/fluent/fluentd/pull/3673
18
+ * Apply modifications in pipeline to the records being passed to `@ERROR` label
19
+ https://github.com/fluent/fluentd/pull/3631
20
+ * Fix wrong calculation of retry interval
21
+ https://github.com/fluent/fluentd/pull/3640
22
+ https://github.com/fluent/fluentd/pull/3649
23
+ https://github.com/fluent/fluentd/pull/3685
24
+ https://github.com/fluent/fluentd/pull/3686
25
+ * Support IPv6 address for `rpc_endpoint` in `system` config
26
+ https://github.com/fluent/fluentd/pull/3641
27
+
28
+ ### Misc
29
+
30
+ * CI: Support Ruby 3.1 except Windows
31
+ https://github.com/fluent/fluentd/pull/3619
32
+ * Switch to GitHub Discussions
33
+ https://github.com/fluent/fluentd/pull/3654
34
+ * Fix CHANGELOG.md heading styles
35
+ https://github.com/fluent/fluentd/pull/3648
36
+ * Declare `null_value_pattern` as `regexp`
37
+ https://github.com/fluent/fluentd/pull/3650
38
+
39
+ ## Release v1.14.5 - 2022/02/09
40
+
41
+ ### Enhancement
42
+
43
+ * Add support for "application/x-ndjson" to `in_http`
44
+ https://github.com/fluent/fluentd/pull/3616
45
+ * Add support for ucrt binary for Windows
46
+ https://github.com/fluent/fluentd/pull/3613
47
+
48
+ ### Bug fixes
49
+
50
+ * Don't retry when `retry_max_times == 0`
51
+ https://github.com/fluent/fluentd/pull/3608
52
+ * Fix hang-up issue during TLS handshake in `out_forward`
53
+ https://github.com/fluent/fluentd/pull/3601
54
+ * Bump up required ServerEngine to v2.2.5
55
+ https://github.com/fluent/fluentd/pull/3599
56
+ * Fix "invalid byte sequence is replaced" warning on Kubernetes
57
+ https://github.com/fluent/fluentd/pull/3596
58
+ * Fix "ArgumentError: unknown keyword: :logger" on Windows with Ruby 3.1
59
+ https://github.com/fluent/fluentd/pull/3592
60
+
61
+ ## Release v1.14.4 - 2022/01/06
62
+
63
+ ### Enhancement
64
+
65
+ * `in_tail`: Add option to skip long lines (`max_line_size`)
66
+ https://github.com/fluent/fluentd/pull/3565
67
+
68
+ ### Bug fix
69
+
70
+ * Incorrect BufferChunkOverflowError when each event size is < `chunk_limit_size`
71
+ https://github.com/fluent/fluentd/pull/3560
72
+ * On macOS with Ruby 2.7/3.0, `out_file` fails to write events if `append` is true.
73
+ https://github.com/fluent/fluentd/pull/3579
74
+ * test: Fix unstable test cases
75
+ https://github.com/fluent/fluentd/pull/3574
76
+ https://github.com/fluent/fluentd/pull/3577
77
+
78
+ ## Release v1.14.3 - 2021/11/26
79
+
80
+ ### Enhancement
81
+
82
+ * Changed to accept `http_parser.rb` 0.8.0.
83
+ `http_parser.rb` 0.8.0 is ready for Ractor.
84
+ https://github.com/fluent/fluentd/pull/3544
85
+
86
+ ### Bug fix
87
+
88
+ * in_tail: Fixed a bug that no new logs are read when
89
+ `enable_stat_watcher true` and `enable_watch_timer false` is set.
90
+ https://github.com/fluent/fluentd/pull/3541
91
+ * in_tail: Fixed a bug that the beginning and initial lines are lost
92
+ after startup when `read_from_head false` and path includes wildcard '*'.
93
+ https://github.com/fluent/fluentd/pull/3542
94
+ * Fixed a bug that processing messages were lost when
95
+ BufferChunkOverflowError was thrown even though only a specific
96
+ message size exceeds chunk_limit_size.
97
+ https://github.com/fluent/fluentd/pull/3553
98
+ https://github.com/fluent/fluentd/pull/3562
99
+
100
+ ### Misc
101
+
102
+ * Bump up required version of `win32-service` gem.
103
+ newer version is required to implement additional `fluent-ctl` commands.
104
+ https://github.com/fluent/fluentd/pull/3556
105
+
106
+ ## Release v1.14.2 - 2021/10/29
107
+
108
+ IMPORTANT: This release contain the fix for CVE-2021-41186 -
109
+ ReDoS vulnerability in `parser_apache2`.
110
+ This vulnerability is affected from Fluentd v0.14.14 to v1.14.1.
111
+ We recommend to upgrade Fluentd to v1.14.2 or use patched version of
112
+ `parser_apache2` plugin.
113
+
114
+ ### Enhancement
115
+
116
+ * fluent-cat: Add `--event-time` option to send specified event time for testing.
117
+ https://github.com/fluent/fluentd/pull/3528
118
+
119
+ ### Bug fix
120
+
121
+ * Fixed to generate correct epoch timestamp even after switching Daylight Saving Time
122
+ https://github.com/fluent/fluentd/pull/3524
123
+ * Fixed ReDoS vulnerability in parser_apache2.
124
+ This vulnerability is caused by a certain pattern of a broken apache log.
125
+
126
+ ## Release v1.14.1 - 2021/09/29
127
+
128
+ ### Enhancement
129
+
130
+ * in_tail: Added file related metrics.
131
+ These metrics should be collected same as fluent-bit's in_tail.
132
+ https://github.com/fluent/fluentd/pull/3504
133
+ * out_forward: Changed to use metrics mechanism for node statistics
134
+ https://github.com/fluent/fluentd/pull/3506
135
+
136
+ ### Bug fix
137
+
138
+ * in_tail: Fixed a crash bug that it raise undefined method of eof? error.
139
+ This error may happen only when `read_bytes_limit_per_second` was specified.
140
+ https://github.com/fluent/fluentd/pull/3500
141
+ * out_forward: Fixed a bug that node statistics information is not included correctly.
142
+ https://github.com/fluent/fluentd/pull/3503
143
+ https://github.com/fluent/fluentd/pull/3507
144
+ * Fixed a error when using `@include` directive
145
+ It was occurred when http/https scheme URI is used in `@include` directive with Ruby 3.
146
+ https://github.com/fluent/fluentd/pull/3517
147
+ * out_copy: Fixed to suppress a wrong warning for `ignore_if_prev_success`
148
+ It didn't work even if a user set it.
149
+ https://github.com/fluent/fluentd/pull/3515
150
+ * Fixed not to output nanoseconds field of next retry time in warning log
151
+ Then, inappropriate labels in log are also fixed. (retry_time -> retry_times,
152
+ next_retry_seconds -> next_retry_time)
153
+ https://github.com/fluent/fluentd/pull/3518
154
+
155
+ ## Release v1.14.0 - 2021/08/30
156
+
157
+ ### Enhancement
158
+
159
+ * Added `enable_input_metrics`, `enable_size_metrics` system
160
+ configuration parameter
161
+ This feature might need to pay higher CPU cost, so input event metrics
162
+ features are disabled by default. These features are also enabled by
163
+ `--enable-input-metrics`,`--enable-size-metrics` command line
164
+ option.
165
+ https://github.com/fluent/fluentd/pull/3440
166
+ * Added reserved word `@ROOT` for getting root router.
167
+ This is incompatible change. Do not use `@ROOT` for label name.
168
+ https://github.com/fluent/fluentd/pull/3358
169
+ * in_syslog: Added `send_keepalive_packet` option
170
+ https://github.com/fluent/fluentd/pull/3474
171
+ * in_http: Added `cors_allow_credentials` option.
172
+ This option tells browsers whether to expose the response to
173
+ frontend when the credentials mode is "include".
174
+ https://github.com/fluent/fluentd/pull/3481
175
+ https://github.com/fluent/fluentd/pull/3491
176
+
177
+ ### Bug fix
178
+
179
+ * in_tail: Fixed a bug that deleted paths are not removed
180
+ from pos file by file compaction at start up
181
+ https://github.com/fluent/fluentd/pull/3467
182
+ * in_tail: Revived a warning message of retrying unaccessible file
183
+ https://github.com/fluent/fluentd/pull/3478
184
+ * TLSServer: Fixed a crash bug on logging peer host name errors
185
+ https://github.com/fluent/fluentd/pull/3483
186
+
187
+ ### Misc
188
+
189
+ * Added metrics plugin mechanism
190
+ The implementations is changed to use metrics plugin.
191
+ In the future, 3rd party plugin will be able to handle these metrics.
192
+ https://github.com/fluent/fluentd/pull/3471
193
+ https://github.com/fluent/fluentd/pull/3473
194
+ https://github.com/fluent/fluentd/pull/3479
195
+ https://github.com/fluent/fluentd/pull/3484
196
+
197
+ # v1.13
198
+
199
+ ## Release v1.13.3 - 2021/07/27
200
+
201
+ ### Bug fix
202
+
203
+ * in_tail: Care DeletePending state on Windows
204
+ https://github.com/fluent/fluentd/pull/3457
205
+ https://github.com/fluent/fluentd/pull/3460
206
+ * in_tail: Fix some pos_file bugs.
207
+ Avoid deleting pos_file entries unexpectedly when both
208
+ `pos_file_compaction_interval` and `follow_inode` are enabled.
209
+ Use `bytesize` instead of `size` for path length.
210
+ https://github.com/fluent/fluentd/pull/3459
211
+ * in_tail: Fix detecting rotation twice on `follow_inode`.
212
+ https://github.com/fluent/fluentd/pull/3466
213
+
214
+ ### Misc
215
+
216
+ * Remove needless spaces in a sample config file
217
+ https://github.com/fluent/fluentd/pull/3456
218
+
219
+ ## Release v1.13.2 - 2021/07/12
220
+
221
+ ### Enhancement
222
+
223
+ * fluent-plugin-generate: Storage plugin was supported.
224
+ https://github.com/fluent/fluentd/pull/3426
225
+ * parser_json: Added support to customize configuration of oj options.
226
+ Use `FLUENT_OJ_OPTION_BIGDECIMAL_LOAD`, `FLUENT_OJ_OPTION_MAX_NESTING`,
227
+ `FLUENT_OJ_OPTION_MODE`, and `FLUENT_OJ_OPTION_USE_TO_JSON` environment
228
+ variable to configure it.
229
+ https://github.com/fluent/fluentd/pull/3315
230
+
231
+ ### Bug fix
232
+
233
+ * binlog_reader: Fixed a crash bug by missing "fluent/env" dependency.
234
+ https://github.com/fluent/fluentd/pull/3443
235
+ * Fixed a crash bug on outputting log at the early stage when parsing
236
+ config file. This is a regression since v1.13.0. If you use invalid
237
+ '@' prefix parameter, remove it as a workaround.
238
+ https://github.com/fluent/fluentd/pull/3451
239
+ * in_tail: Fixed a bug that when rotation is occurred, remaining lines
240
+ will be discarded if the throttling feature is enabled.
241
+ https://github.com/fluent/fluentd/pull/3390
242
+ * fluent-plugin-generate: Fixed a crash bug during gemspec generation.
243
+ It was unexpectedly introduced by #3305, thus this bug was a
244
+ regression since 1.12.3.
245
+ https://github.com/fluent/fluentd/pull/3444
246
+
247
+ ### Misc
248
+
249
+ * Fixed the runtime dependency version of http_parse.rb to 0.7.0.
250
+ It was fixed because false positive detection is occurred frequently
251
+ by security scanning tools.
252
+ https://github.com/fluent/fluentd/pull/3450
253
+
254
+ ## Release v1.13.1 - 2021/06/25
255
+
256
+ ### Bug fix
257
+
258
+ * out_forward: Fixed a race condition on handshake
259
+ It's caused by using a same unpacker from multiple threads.
260
+ https://github.com/fluent/fluentd/pull/3405
261
+ https://github.com/fluent/fluentd/pull/3406
262
+ * in_tail: Fixed to remove too much verbose debugging logs
263
+ It was unexpectedly introduced by #3185 log throttling feature.
264
+ https://github.com/fluent/fluentd/pull/3418
265
+ * Fixed not to echo back the provides path as is on a 404 error
266
+ There was a potential cross-site scripting vector even though
267
+ it is quite difficult to exploit.
268
+ https://github.com/fluent/fluentd/pull/3427
269
+
270
+ ### Misc
271
+
272
+ * Pretty print for Fluent::Config::Section has been supported
273
+ for debugging
274
+ https://github.com/fluent/fluentd/pull/3398
275
+ * CI: Dropped to run CI for Ruby 2.5
276
+ https://github.com/fluent/fluentd/pull/3412
277
+
278
+ ## Release v1.13.0 - 2021/05/29
279
+
280
+ ### Enhancement
281
+
282
+ * in_tail: Handle log throttling per file feature
283
+ https://github.com/fluent/fluentd/pull/3185
284
+ https://github.com/fluent/fluentd/pull/3364
285
+ https://github.com/fluent/fluentd/pull/3379
286
+ * Extend to support service discovery manager in simpler way
287
+ https://github.com/fluent/fluentd/pull/3299
288
+ https://github.com/fluent/fluentd/pull/3362
289
+ * in_http: HTTP GET requests has been supported
290
+ https://github.com/fluent/fluentd/pull/3373
291
+ * The log rotate settings in system configuration has been supported
292
+ https://github.com/fluent/fluentd/pull/3352
293
+
294
+ ### Bug fix
295
+
296
+ * Fix to disable `trace_instruction` when
297
+ `RubyVM::InstructionSequence` is available. It improves
298
+ compatibility with `truffleruby` some extent.
299
+ https://github.com/fluent/fluentd/pull/3376
300
+ * in_tail: Safely skip files which are used by another process on
301
+ Windows. It improves exception handling about
302
+ `ERROR_SHARING_VIOLATION` on Windows.
303
+ https://github.com/fluent/fluentd/pull/3378
304
+ * fluent-cat: the issue resending secondary file in specific format
305
+ has been fixed
306
+ https://github.com/fluent/fluentd/pull/3368
307
+ * in_tail: Shutdown immediately & safely even if reading huge files
308
+ Note that `skip_refresh_on_startup` must be enabled.
309
+ https://github.com/fluent/fluentd/pull/3380
310
+
311
+ ### Misc
312
+
313
+ * example: Change a path to backup_path in counter_server correctly
314
+ https://github.com/fluent/fluentd/pull/3359
315
+ * README: Update link to community forum to discuss.fluentd.org
316
+ https://github.com/fluent/fluentd/pull/3360
317
+
318
+ # v1.12
319
+
320
+ ## Release v1.12.4 - 2021/05/26
321
+
322
+ ### Bug fix
323
+
324
+ * in_tail: Fix a bug that refresh_watcher fails to handle file rotations
325
+ https://github.com/fluent/fluentd/pull/3393
326
+
327
+ ## Release v1.12.3 - 2021/04/23
328
+
329
+ ### Enhancement
330
+
331
+ * plugin_helper: Allow TLS to use keep-alive socket option
332
+ https://github.com/fluent/fluentd/pull/3308
333
+
334
+ ### Bug fix
335
+
336
+ * parser_csv, parser_syslog: Fix a naming conflict on parser_type
337
+ https://github.com/fluent/fluentd/pull/3302
338
+ * in_tail: Fix incorrect error code & message on Windows
339
+ https://github.com/fluent/fluentd/pull/3325
340
+ https://github.com/fluent/fluentd/pull/3329
341
+ https://github.com/fluent/fluentd/pull/3331
342
+ https://github.com/fluent/fluentd/pull/3337
343
+ * in_tail: Fix a crash bug on catching a short-lived log
344
+ https://github.com/fluent/fluentd/pull/3328
345
+ * storage_local: Fix position file corruption issue on concurrent gracefulReloads
346
+ https://github.com/fluent/fluentd/pull/3335
347
+ * Fix incorrect warnings about ${chunk_id} with out_s3
348
+ https://github.com/fluent/fluentd/pull/3339
349
+ * TLS Server: Add peer information to error log message
350
+ https://github.com/fluent/fluentd/pull/3330
351
+
352
+ ### Misc
353
+
354
+ * fluent-plugin-generate: add note about plugin name
355
+ https://github.com/fluent/fluentd/pull/3303
356
+ * fluent-plugin-generate: Use same depended gem version with fluentd
357
+ https://github.com/fluent/fluentd/pull/3305
358
+ * Fix some broken unit tests and improve CI's stability
359
+ https://github.com/fluent/fluentd/pull/3304
360
+ https://github.com/fluent/fluentd/pull/3307
361
+ https://github.com/fluent/fluentd/pull/3312
362
+ https://github.com/fluent/fluentd/pull/3313
363
+ https://github.com/fluent/fluentd/pull/3314
364
+ https://github.com/fluent/fluentd/pull/3316
365
+ https://github.com/fluent/fluentd/pull/3336
366
+ * Permit to install with win32-service 2.2.0 on Windows
367
+ https://github.com/fluent/fluentd/pull/3343
368
+
369
+ ## Release v1.12.2 - 2021/03/29
370
+
371
+ ### Enhancement
372
+
373
+ * out_copy: Add ignore_if_prev_successes
374
+ https://github.com/fluent/fluentd/pull/3190
375
+ https://github.com/fluent/fluentd/pull/3287
376
+ * Support multiple kind of timestamp format
377
+ https://github.com/fluent/fluentd/pull/3252
378
+ * formatter_ltsv: suppress delimiters in output
379
+ https://github.com/fluent/fluentd/pull/1666
380
+ https://github.com/fluent/fluentd/pull/3288
381
+ https://github.com/fluent/fluentd/pull/3289
382
+
383
+ ### Bug fix
384
+
385
+ * in_tail: Expect ENOENT during stat
386
+ https://github.com/fluent/fluentd/pull/3275
387
+ * out_forward: Prevent transferring duplicate logs on restart
388
+ https://github.com/fluent/fluentd/pull/3267
389
+ https://github.com/fluent/fluentd/pull/3285
390
+ * in_tail: Handle to send rotated logs when mv is used for rotating
391
+ https://github.com/fluent/fluentd/pull/3294
392
+ * fluent-plugin-config-format: Fill an uninitialized instance variable
393
+ https://github.com/fluent/fluentd/pull/3297
394
+ * Fix MessagePackEventStream issue with Enumerable methods
395
+ https://github.com/fluent/fluentd/pull/2116
396
+
397
+ ### Misc
398
+
399
+ * Add webrick to support Ruby 3.0
400
+ https://github.com/fluent/fluentd/pull/3257
401
+ * Suggest Discource instead of Google Groups
402
+ https://github.com/fluent/fluentd/pull/3261
403
+ * Update MAINTAINERS.md
404
+ https://github.com/fluent/fluentd/pull/3282
405
+ * Introduce DeepSource to check code quality
406
+ https://github.com/fluent/fluentd/pull/3286
407
+ https://github.com/fluent/fluentd/pull/3259
408
+ https://github.com/fluent/fluentd/pull/3291
409
+ * Migrate to GitHub Actions and stabilize tests
410
+ https://github.com/fluent/fluentd/pull/3266
411
+ https://github.com/fluent/fluentd/pull/3268
412
+ https://github.com/fluent/fluentd/pull/3281
413
+ https://github.com/fluent/fluentd/pull/3283
414
+ https://github.com/fluent/fluentd/pull/3290
415
+
416
+ ## Release v1.12.1 - 2021/02/18
417
+
418
+ ### Enhancement
419
+
420
+ * out_http: Add `headers_from_placeholders` parameter
421
+ https://github.com/fluent/fluentd/pull/3241
422
+ * fluent-plugin-config-format: Add `--table` option to use markdown table
423
+ https://github.com/fluent/fluentd/pull/3240
424
+ * Add `--disable-shared-socket`/`disable_shared_socket` to disable ServerEngine's shared socket setup
425
+ https://github.com/fluent/fluentd/pull/3250
426
+
427
+ ### Bug fix
428
+
429
+ * ca_generate: Fix creating TLS certification files which include broken extensions
430
+ https://github.com/fluent/fluentd/pull/3246
431
+ * test: Drop TLS 1.1 tests
432
+ https://github.com/fluent/fluentd/pull/3256
433
+ * Remove old gem constraints to support Ruby 3
434
+
435
+ ### Misc
436
+
437
+ * Use GitHub Actions
438
+ https://github.com/fluent/fluentd/pull/3233
439
+ https://github.com/fluent/fluentd/pull/3255
440
+
441
+ ## Release v1.12.0 - 2021/01/05
442
+
443
+ ### New feature
444
+
445
+ * in_tail: Add `follow_inode` to support log rotation with wild card
446
+ https://github.com/fluent/fluentd/pull/3182
447
+ * in_tail: Handle linux capability
448
+ https://github.com/fluent/fluentd/pull/3155
449
+ https://github.com/fluent/fluentd/pull/3162
450
+ * windows: Add win32 events alternative to unix signals
451
+ https://github.com/fluent/fluentd/pull/3131
452
+
453
+ ### Enhancement
454
+
455
+ * buffer: Enable metadata comparison optimization on all platforms
456
+ https://github.com/fluent/fluentd/pull/3095
457
+ * fluent-plugin-config-formatter: Handle `service_discovery` type
458
+ https://github.com/fluent/fluentd/pull/3178
459
+ * in_http: Add `add_query_params` parameter to add query params to event record
460
+ https://github.com/fluent/fluentd/pull/3197
461
+ * inject: Support `unixtime_micros` and `unixtime_nanos` in `time_type`
462
+ https://github.com/fluent/fluentd/pull/3220
463
+ * Refactoring code
464
+ https://github.com/fluent/fluentd/pull/3167
465
+ https://github.com/fluent/fluentd/pull/3170
466
+ https://github.com/fluent/fluentd/pull/3180
467
+ https://github.com/fluent/fluentd/pull/3196
468
+ https://github.com/fluent/fluentd/pull/3213
469
+ https://github.com/fluent/fluentd/pull/3222
470
+
471
+ ### Bug fix
472
+
473
+ * output: Prevent retry.step from being called too many times in a short time
474
+ https://github.com/fluent/fluentd/pull/3203
475
+
476
+ # v1.11
477
+
478
+ ## Release v1.11.5 - 2020/11/06
479
+
480
+ ### Enhancement
481
+
482
+ * formatter: Provide `newline` parameter to support `CRLF`
483
+ https://github.com/fluent/fluentd/pull/3152
484
+ * out_http: adding support for intermediate certificates
485
+ https://github.com/fluent/fluentd/pull/3146
486
+ * Update serverengine dependency to 2.2.2 or later
487
+
488
+ ### Bug fix
489
+
490
+ * Fix a bug that windows service isn't stopped gracefuly
491
+ https://github.com/fluent/fluentd/pull/3156
492
+
493
+ ## Release v1.11.4 - 2020/10/13
494
+
495
+ ### Enhancement
496
+
497
+ * inject: Support `unixtime_millis` in `time_type` parameter
498
+ https://github.com/fluent/fluentd/pull/3145
499
+
500
+ ### Bug fix
501
+
502
+ * out_http: Fix broken data with `json_array true`
503
+ https://github.com/fluent/fluentd/pull/3144
504
+ * output: Fix wrong logging issue for `${chunk_id}`
505
+ https://github.com/fluent/fluentd/pull/3134
506
+
507
+ ## Release v1.11.3 - 2020/09/30
508
+
509
+ ### Enhancement
510
+
511
+ * in_exec: Add `connect_mode` parameter to read stderr
512
+ https://github.com/fluent/fluentd/pull/3108
513
+ * parser_json: Improve the performance
514
+ https://github.com/fluent/fluentd/pull/3109
515
+ * log: Add `ignore_same_log_interval` parameter
516
+ https://github.com/fluent/fluentd/pull/3119
517
+ * Upgrade win32 gems
518
+ https://github.com/fluent/fluentd/pull/3100
519
+ * Refactoring code
520
+ https://github.com/fluent/fluentd/pull/3094
521
+ https://github.com/fluent/fluentd/pull/3118
522
+
523
+ ### Bug fix
524
+
525
+ * buffer: Fix calculation of timekey stats
526
+ https://github.com/fluent/fluentd/pull/3018
527
+ * buffer: fix binmode usage for prevent gc
528
+ https://github.com/fluent/fluentd/pull/3138
529
+
530
+ ## Release v1.11.2 - 2020/08/04
531
+
532
+ ### Enhancement
533
+
534
+ * `in_dummy` renamed to `in_sample`
535
+ https://github.com/fluent/fluentd/pull/3065
536
+ * Allow regular expression in filter/match directive
537
+ https://github.com/fluent/fluentd/pull/3071
538
+ * Refactoring code
539
+ https://github.com/fluent/fluentd/pull/3051
540
+
541
+ ### Bug fix
542
+
543
+ * buffer: Fix log message for `chunk_limit_records` case
544
+ https://github.com/fluent/fluentd/pull/3079
545
+ * buffer: Fix timekey optimization for non-windows platform
546
+ https://github.com/fluent/fluentd/pull/3092
547
+ * cert: Raise an error for broken certificate file
548
+ https://github.com/fluent/fluentd/pull/3086
549
+ * cert: Set TLS ciphers list correcty on older OpenSSL
550
+ https://github.com/fluent/fluentd/pull/3093
551
+
552
+ ## Release v1.11.1 - 2020/06/22
553
+
554
+ ### Enhancement
555
+
556
+ * in_http: Add `dump_error_log` parameter
557
+ https://github.com/fluent/fluentd/pull/3035
558
+ * in_http: Improve time field handling
559
+ https://github.com/fluent/fluentd/pull/3046
560
+ * Refactoring code
561
+ https://github.com/fluent/fluentd/pull/3047
562
+
563
+ ### Bug fix
564
+
565
+ * in_tail: Use actual path instead of based pattern for ignore list
566
+ https://github.com/fluent/fluentd/pull/3042
567
+ * child_process helper: Fix child process failure due to SIGPIPE if the command uses stdout
568
+ https://github.com/fluent/fluentd/pull/3044
569
+
570
+ ## Release v1.11.0 - 2020/06/04
571
+
572
+ ### New feature
573
+
574
+ * in_unix: Use v1 API
575
+ https://github.com/fluent/fluentd/pull/2992
576
+
577
+ ### Enhancement
578
+
579
+ * parser_syslog: Support any `time_format` for RFC3164 string parser
580
+ https://github.com/fluent/fluentd/pull/3014
581
+ * parser_syslog: Add new parser for RFC5424
582
+ https://github.com/fluent/fluentd/pull/3015
583
+ * Refactoring code
584
+ https://github.com/fluent/fluentd/pull/3019
585
+
586
+ ### Bug fix
587
+
588
+ * in_gc_stat: Add `use_symbol_keys` parameter to emit string key record
589
+ https://github.com/fluent/fluentd/pull/3008
590
+
591
+ # v1.10
592
+
593
+ ## Release v1.10.4 - 2020/05/12
594
+
595
+ ### Enhancement
596
+
597
+ * out_http: Support single json array payload
598
+ https://github.com/fluent/fluentd/pull/2973
599
+ * Refactoring
600
+ https://github.com/fluent/fluentd/pull/2988
601
+
602
+ ### Bug fix
603
+
604
+ * supervisor: Call `File.umask(0)` for standalone worker
605
+ https://github.com/fluent/fluentd/pull/2987
606
+ * out_forward: Fix ZeroDivisionError issue with `weight 0`
607
+ https://github.com/fluent/fluentd/pull/2989
608
+
609
+ ## Release v1.10.3 - 2020/05/01
610
+
611
+ ### Enhancement
612
+
613
+ * record_accessor: Add `set` method
614
+ https://github.com/fluent/fluentd/pull/2977
615
+ * config: Ruby DSL format is deprecated
616
+ https://github.com/fluent/fluentd/pull/2958
617
+ * Refactor code
618
+ https://github.com/fluent/fluentd/pull/2961
619
+ https://github.com/fluent/fluentd/pull/2962
620
+ https://github.com/fluent/fluentd/pull/2965
621
+ https://github.com/fluent/fluentd/pull/2966
622
+ https://github.com/fluent/fluentd/pull/2978
623
+
624
+ ### Bug fix
625
+
626
+ * out_forward: Disable `linger_timeout` setting on Windows
627
+ https://github.com/fluent/fluentd/pull/2959
628
+ * out_forward: Fix warning of service discovery manager when fluentd stops
629
+ https://github.com/fluent/fluentd/pull/2974
630
+
631
+ ## Release v1.10.2 - 2020/04/15
632
+
633
+ ### Enhancement
634
+
635
+ * out_copy: Add plugin_id to log message
636
+ https://github.com/fluent/fluentd/pull/2934
637
+ * socket: Allow cert chains in mutual auth
638
+ https://github.com/fluent/fluentd/pull/2930
639
+ * system: Add ignore_repeated_log_interval parameter
640
+ https://github.com/fluent/fluentd/pull/2937
641
+ * windows: Allow to launch fluentd from whitespace included path
642
+ https://github.com/fluent/fluentd/pull/2920
643
+ * Refactor code
644
+ https://github.com/fluent/fluentd/pull/2935
645
+ https://github.com/fluent/fluentd/pull/2936
646
+ https://github.com/fluent/fluentd/pull/2938
647
+ https://github.com/fluent/fluentd/pull/2939
648
+ https://github.com/fluent/fluentd/pull/2946
649
+
650
+ ### Bug fix
651
+
652
+ * in_syslog: Fix octet-counting mode bug
653
+ https://github.com/fluent/fluentd/pull/2942
654
+ * out_forward: Create timer for purging obsolete sockets when keepalive_timeout is not set
655
+ https://github.com/fluent/fluentd/pull/2943
656
+ * out_forward: Need authentication when sending tcp heartbeat with keepalive
657
+ https://github.com/fluent/fluentd/pull/2945
658
+ * command: Fix fluent-debug start failure
659
+ https://github.com/fluent/fluentd/pull/2948
660
+ * command: Fix regression of supervisor's worker and `--daemon` combo
661
+ https://github.com/fluent/fluentd/pull/2950
662
+
663
+ ## Release v1.10.1 - 2020/04/02
664
+
665
+ ### Enhancement
666
+
667
+ * command: `--daemon` and `--no-supervisor` now work together
668
+ https://github.com/fluent/fluentd/pull/2912
669
+ * Refactor code
670
+ https://github.com/fluent/fluentd/pull/2913
671
+
672
+ ### Bug fix
673
+
674
+ * in_tail: `Fix pos_file_compaction_interval` parameter type
675
+ https://github.com/fluent/fluentd/pull/2921
676
+ * in_tail: Fix seek position update after compaction
677
+ https://github.com/fluent/fluentd/pull/2922
678
+ * parser_syslog: Fix regression in the `with_priority` and RFC5424 case
679
+ https://github.com/fluent/fluentd/pull/2923
680
+
681
+ ### Misc
682
+
683
+ * Add document for security audit
684
+ https://github.com/fluent/fluentd/pull/2911
685
+
686
+ ## Release v1.10.0 - 2020/03/24
687
+
688
+ ### New feature
689
+
690
+ * sd plugin: Add SRV record plugin
691
+ https://github.com/fluent/fluentd/pull/2876
692
+
693
+ ### Enhancement
694
+
695
+ * server: Add `cert_verifier` parameter for TLS transport
696
+ https://github.com/fluent/fluentd/pull/2888
697
+ * parser_syslog: Support customized time format
698
+ https://github.com/fluent/fluentd/pull/2886
699
+ * in_dummy: Delete `suspend` parameter
700
+ https://github.com/fluent/fluentd/pull/2897
701
+ * Refactor code
702
+ https://github.com/fluent/fluentd/pull/2858
703
+ https://github.com/fluent/fluentd/pull/2862
704
+ https://github.com/fluent/fluentd/pull/2864
705
+ https://github.com/fluent/fluentd/pull/2869
706
+ https://github.com/fluent/fluentd/pull/2870
707
+ https://github.com/fluent/fluentd/pull/2874
708
+ https://github.com/fluent/fluentd/pull/2881
709
+ https://github.com/fluent/fluentd/pull/2885
710
+ https://github.com/fluent/fluentd/pull/2894
711
+ https://github.com/fluent/fluentd/pull/2896
712
+ https://github.com/fluent/fluentd/pull/2898
713
+ https://github.com/fluent/fluentd/pull/2899
714
+ https://github.com/fluent/fluentd/pull/2900
715
+ https://github.com/fluent/fluentd/pull/2901
716
+ https://github.com/fluent/fluentd/pull/2906
717
+
718
+ ### Bug fix
719
+
720
+ * out_forward: windows: Permit to specify `linger_timeout`
721
+ https://github.com/fluent/fluentd/pull/2868
722
+ * parser_syslog: Fix syslog format detection
723
+ https://github.com/fluent/fluentd/pull/2879
724
+ * buffer: Fix `available_buffer_space_ratio` calculation
725
+ https://github.com/fluent/fluentd/pull/2882
726
+ * tls: Support CRLF based X.509 certificates
727
+ https://github.com/fluent/fluentd/pull/2890
728
+ * msgpack_factory mixin: Fix performance penalty for deprecation log
729
+ https://github.com/fluent/fluentd/pull/2903
730
+
731
+
732
+ # v1.9
733
+
734
+ ## Release v1.9.3 - 2020/03/05
735
+
736
+ ### Enhancement
737
+
738
+ * in_tail: Emit buffered lines as `unmatched_line` at shutdown phase when `emit_unmatched_lines true`
739
+ https://github.com/fluent/fluentd/pull/2837
740
+ * Specify directory mode explicitly
741
+ https://github.com/fluent/fluentd/pull/2827
742
+ * server helper: Change SSLError log level to warn in accept
743
+ https://github.com/fluent/fluentd/pull/2861
744
+ * Refactor code
745
+ https://github.com/fluent/fluentd/pull/2829
746
+ https://github.com/fluent/fluentd/pull/2830
747
+ https://github.com/fluent/fluentd/pull/2832
748
+ https://github.com/fluent/fluentd/pull/2836
749
+ https://github.com/fluent/fluentd/pull/2838
750
+ https://github.com/fluent/fluentd/pull/2842
751
+ https://github.com/fluent/fluentd/pull/2843
752
+
753
+ ### Bug fix
754
+
755
+ * buffer: Add seq to metadata that it can be unique
756
+ https://github.com/fluent/fluentd/pull/2824
757
+ https://github.com/fluent/fluentd/pull/2853
758
+ * buffer: Use `Tempfile` as binmode for decompression
759
+ https://github.com/fluent/fluentd/pull/2847
760
+
761
+ ### Misc
762
+
763
+ * Add `.idea` to git ignore file
764
+ https://github.com/fluent/fluentd/pull/2834
765
+ * appveyor: Fix tests
766
+ https://github.com/fluent/fluentd/pull/2853
767
+ https://github.com/fluent/fluentd/pull/2855
768
+ * Update pem for test
769
+ https://github.com/fluent/fluentd/pull/2839
770
+
771
+ ## Release v1.9.2 - 2020/02/13
772
+
773
+ ### Enhancement
774
+
775
+ * in_tail: Add `pos_file_compaction_interval` parameter for auto compaction
776
+ https://github.com/fluent/fluentd/pull/2805
777
+ * command: Use given encoding when RUBYOPT has `-E`
778
+ https://github.com/fluent/fluentd/pull/2814
779
+
780
+ ### Bug fix
781
+
782
+ * command: Accept RUBYOPT with two or more options
783
+ https://github.com/fluent/fluentd/pull/2807
784
+ * command: Fix infinite loop bug when RUBYOPT is invalid
785
+ https://github.com/fluent/fluentd/pull/2813
786
+ * log: serverengine's log should be formatted with the same format of fluentd
787
+ https://github.com/fluent/fluentd/pull/2812
788
+ * in_http: Fix `NoMethodError` when `OPTIONS` request doesn't have 'Origin' header
789
+ https://github.com/fluent/fluentd/pull/2823
790
+ * parser_syslog: Improved for parsing RFC5424 structured data in `parser_syslog`
791
+ https://github.com/fluent/fluentd/pull/2816
792
+
793
+ ## Release v1.9.1 - 2020/01/31
794
+
795
+ ### Enhancement
796
+
797
+ * http_server helper: Support HTTPS
798
+ https://github.com/fluent/fluentd/pull/2787
799
+ * in_tail: Add `path_delimiter` to split with any char
800
+ https://github.com/fluent/fluentd/pull/2796
801
+ * in_tail: Remove an entry from PositionaFile when it is unwatched
802
+ https://github.com/fluent/fluentd/pull/2803
803
+ * out_http: Add warning for `retryable_response_code`
804
+ https://github.com/fluent/fluentd/pull/2809
805
+ * parser_syslog: Add multiline RFC5424 support
806
+ https://github.com/fluent/fluentd/pull/2767
807
+ * Add TLS module to unify TLS related code
808
+ https://github.com/fluent/fluentd/pull/2802
809
+
810
+ ### Bug fix
811
+
812
+ * output: Add `EncodingError` to unrecoverable errors
813
+ https://github.com/fluent/fluentd/pull/2808
814
+ * tls: Fix TLS version handling in secure mode
815
+ https://github.com/fluent/fluentd/pull/2802
816
+
817
+ ## Release v1.9.0 - 2020/01/22
818
+
819
+ ### New feature
820
+
821
+ * New light-weight config reload mechanizm
822
+ https://github.com/fluent/fluentd/pull/2716
823
+ * Drop ruby 2.1/2.2/2.3 support
824
+ https://github.com/fluent/fluentd/pull/2750
825
+
826
+ ### Enhancement
827
+
828
+ * output: Show better message for secondary warning
829
+ https://github.com/fluent/fluentd/pull/2751
830
+ * Use `ext_monitor` gem if it is installed. For ruby 2.6 or earlier
831
+ https://github.com/fluent/fluentd/pull/2670
832
+ * Support Ruby's Time class in msgpack serde
833
+ https://github.com/fluent/fluentd/pull/2775
834
+ * Clean up code/test
835
+ https://github.com/fluent/fluentd/pull/2753
836
+ https://github.com/fluent/fluentd/pull/2763
837
+ https://github.com/fluent/fluentd/pull/2764
838
+ https://github.com/fluent/fluentd/pull/2780
839
+
840
+ ### Bug fix
841
+
842
+ * buffer: Disable the optimization of Metadata instance comparison on Windows
843
+ https://github.com/fluent/fluentd/pull/2778
844
+ * outut/buffer: Fix stage size computation
845
+ https://github.com/fluent/fluentd/pull/2734
846
+ * server: Ignore Errno::EHOSTUNREACH in TLS accept to avoid fluentd restart
847
+ https://github.com/fluent/fluentd/pull/2773
848
+ * server: Fix IPv6 dual stack mode issue for udp socket
849
+ https://github.com/fluent/fluentd/pull/2781
850
+ * config: Support @include/include directive for spaces included path
851
+ https://github.com/fluent/fluentd/pull/2780
852
+
853
+
854
+ # v1.8
855
+
856
+ ## Release v1.8.1 - 2019/12/26
857
+
858
+ ### Enhancement
859
+
860
+ * in_tail: Add `path_timezone` parameter to format `path` with the specified timezone
861
+ https://github.com/fluent/fluentd/pull/2719
862
+ * out_copy: Add `copy_mode` parameter. `deep_copy` parameter is now deprecated.
863
+ https://github.com/fluent/fluentd/pull/2747
864
+ * supervisor: Add deprecated log for `inline_config`
865
+ https://github.com/fluent/fluentd/pull/2746
866
+
867
+ ### Bug fixes
868
+
869
+ * parser_ltsv: Prevent garbage result by checking `label_delimiter`
870
+ https://github.com/fluent/fluentd/pull/2748
871
+
872
+ ## Release v1.8.0 - 2019/12/11
873
+
874
+ ### New feature
875
+
876
+ * Add service discovery plugin and `out_forward` use it
877
+ https://github.com/fluent/fluentd/pull/2541
878
+ * config: Add strict mode and support `default`/`nil` value in ruby embedded mode
879
+ https://github.com/fluent/fluentd/pull/2685
880
+
881
+ ### Enhancement
882
+
883
+ * formatter_csv: Support nested fields
884
+ https://github.com/fluent/fluentd/pull/2643
885
+ * record_accessor helper: Make code simple and bit faster
886
+ https://github.com/fluent/fluentd/pull/2660
887
+ * Relax tzinfo dependency to accept v1
888
+ https://github.com/fluent/fluentd/pull/2673
889
+ * log: Deprecate top-level match for capturing fluentd logs
890
+ https://github.com/fluent/fluentd/pull/2689
891
+ * in_monitor_agent: Expose Fluentd verion in REST API
892
+ https://github.com/fluent/fluentd/pull/2706
893
+ * time: Accept localtime xor utc
894
+ https://github.com/fluent/fluentd/pull/2720
895
+ https://github.com/fluent/fluentd/pull/2731
896
+ * formatter_stdout: Make time_format configurable in stdout format
897
+ https://github.com/fluent/fluentd/pull/2721
898
+ * supervisor: create log directory when it doesn't exists
899
+ https://github.com/fluent/fluentd/pull/2732
900
+ * clean up internal classes / methods / code
901
+ https://github.com/fluent/fluentd/pull/2647
902
+ https://github.com/fluent/fluentd/pull/2648
903
+ https://github.com/fluent/fluentd/pull/2653
904
+ https://github.com/fluent/fluentd/pull/2654
905
+ https://github.com/fluent/fluentd/pull/2657
906
+ https://github.com/fluent/fluentd/pull/2667
907
+ https://github.com/fluent/fluentd/pull/2674
908
+ https://github.com/fluent/fluentd/pull/2677
909
+ https://github.com/fluent/fluentd/pull/2680
910
+ https://github.com/fluent/fluentd/pull/2709
911
+ https://github.com/fluent/fluentd/pull/2730
912
+
913
+ ### Bug fixes
914
+
915
+ * output: Fix warning printed when chunk key placeholder not replaced
916
+ https://github.com/fluent/fluentd/pull/2523
917
+ https://github.com/fluent/fluentd/pull/2733
918
+ * Fix dry-run mode
919
+ https://github.com/fluent/fluentd/pull/2651
920
+ * suppress warning
921
+ https://github.com/fluent/fluentd/pull/2652
922
+ * suppress keyword argument warning for ruby2.7
923
+ https://github.com/fluent/fluentd/pull/2664
924
+ * RPC: Fix debug log text
925
+ https://github.com/fluent/fluentd/pull/2666
926
+ * time: Properly show class names in error message
927
+ https://github.com/fluent/fluentd/pull/2671
928
+ * Fix a potential bug that ThreadError may occur on SIGUSR1
929
+ https://github.com/fluent/fluentd/pull/2678
930
+ * server helper: Ignore ECONNREFUSED in TLS accept to avoid fluentd restart
931
+ https://github.com/fluent/fluentd/pull/2695
932
+ * server helper: Fix IPv6 dual stack mode issue for tcp socket.
933
+ https://github.com/fluent/fluentd/pull/2697
934
+ * supervisor: Fix inline config handling
935
+ https://github.com/fluent/fluentd/pull/2708
936
+ * Fix typo
937
+ https://github.com/fluent/fluentd/pull/2710
938
+ https://github.com/fluent/fluentd/pull/2714
939
+
940
+ # v1.7
941
+
942
+ ## Release v1.7.4 - 2019/10/24
943
+
944
+ ### Enhancement
945
+
946
+ * in_http: Add `use_204_response` parameter to return proper 204 response instead of 200.
947
+ fluentd v2 will change this parameter to `true`.
948
+ https://github.com/fluent/fluentd/pull/2640
949
+
950
+ ### Bug fixes
951
+
952
+ * child_process helper: fix stderr blocking for discard case
953
+ https://github.com/fluent/fluentd/pull/2649
954
+ * log: Fix log rotation handling on Windows
955
+ https://github.com/fluent/fluentd/pull/2663
956
+
957
+ ## Release v1.7.3 - 2019/10/01
958
+
959
+ ### Enhancement
960
+
961
+ * in_syslog: Replace priority_key with severity_key
962
+ https://github.com/fluent/fluentd/pull/2636
963
+
964
+ ### Bug fixes
965
+
966
+ * out_forward: Fix nil error after purge obsoleted sockets in socket cache
967
+ https://github.com/fluent/fluentd/pull/2635
968
+ * fix typo in ChangeLog
969
+ https://github.com/fluent/fluentd/pull/2633
970
+
971
+ ## Release v1.7.2 - 2019/09/19
972
+
973
+ ### Enhancement
974
+
975
+ * in_tcp: Add security/client to restrict access
976
+ https://github.com/fluent/fluentd/pull/2622
977
+
978
+ ### Bug fixes
979
+
980
+ * buf_file/buf_file_single: fix to handle compress data during restart
981
+ https://github.com/fluent/fluentd/pull/2620
982
+ * plugin: Use `__send__` to avoid conflict with user defined `send`
983
+ https://github.com/fluent/fluentd/pull/2614
984
+ * buffer: reject invalid timekey at configure phase
985
+ https://github.com/fluent/fluentd/pull/2615
986
+
987
+
988
+ ## Release v1.7.1 - 2019/09/08
989
+
990
+ ### Enhancement
991
+
992
+ * socket helper/out_forward: Support Windows certstore to load certificates
993
+ https://github.com/fluent/fluentd/pull/2601
994
+ * parser_syslog: Add faster parser for rfc3164 message
995
+ https://github.com/fluent/fluentd/pull/2599
996
+
997
+ ### Bug fixes
998
+
999
+ * buf_file/buf_file_single: fix to ignore placeholder based path.
1000
+ https://github.com/fluent/fluentd/pull/2594
1001
+ * server helper: Ignore ETIMEDOUT error in SSL_accept
1002
+ https://github.com/fluent/fluentd/pull/2595
1003
+ * buf_file: ensure to remove metadata after buffer creation failure
1004
+ https://github.com/fluent/fluentd/pull/2598
1005
+ * buf_file_single: fix duplicated path setting check
1006
+ https://github.com/fluent/fluentd/pull/2600
1007
+ * fix msgpack-ruby dependency to use recent feature
1008
+ https://github.com/fluent/fluentd/pull/2606
1009
+
1010
+
1011
+ ## Release v1.7.0 - 2019/08/20
1012
+
1013
+ ### New feature
1014
+
1015
+ * buffer: Add file_single buffer plugin
1016
+ https://github.com/fluent/fluentd/pull/2579
1017
+ * output: Add http output plugin
1018
+ https://github.com/fluent/fluentd/pull/2488
1019
+
1020
+ ### Enhancement
1021
+
1022
+ * buffer: Improve the performance of buffer routine
1023
+ https://github.com/fluent/fluentd/pull/2560
1024
+ https://github.com/fluent/fluentd/pull/2563
1025
+ https://github.com/fluent/fluentd/pull/2564
1026
+ * output: Use Mutex instead of Monitor
1027
+ https://github.com/fluent/fluentd/pull/2561
1028
+ * event: Add `OneEventStrea#empty?` method
1029
+ https://github.com/fluent/fluentd/pull/2565
1030
+ * thread: Set thread name for ruby 2.3 or later
1031
+ https://github.com/fluent/fluentd/pull/2574
1032
+ * core: Cache msgpack packer/unpacker to avoid the object allocation
1033
+ https://github.com/fluent/fluentd/pull/2559
1034
+ * time: Use faster way to get sec and nsec
1035
+ https://github.com/fluent/fluentd/pull/2557
1036
+ * buf_file: Reduce IO flush by removing `IO#truncate`
1037
+ https://github.com/fluent/fluentd/pull/2551
1038
+ * in_tcp: Improve the performance for multiple event case
1039
+ https://github.com/fluent/fluentd/pull/2567
1040
+ * in_syslog: support `source_hostname_key` and `source_address_key` for unmatched event
1041
+ https://github.com/fluent/fluentd/pull/2553
1042
+ * formatter_csv: Improve the format performance.
1043
+ https://github.com/fluent/fluentd/pull/2529
1044
+ * parser_csv: Add fast parser for typical cases
1045
+ https://github.com/fluent/fluentd/pull/2535
1046
+ * out_forward: Refactor code
1047
+ https://github.com/fluent/fluentd/pull/2516
1048
+ https://github.com/fluent/fluentd/pull/2532
1049
+
1050
+ ### Bug fixes
1051
+
1052
+ * output: fix data lost on decompression
1053
+ https://github.com/fluent/fluentd/pull/2547
1054
+ * out_exec_filter: fix non-ascii encoding issue
1055
+ https://github.com/fluent/fluentd/pull/2539
1056
+ * in_tail: Don't call parser's configure twice
1057
+ https://github.com/fluent/fluentd/pull/2569
1058
+ * Fix unused message handling for <section> parameters
1059
+ https://github.com/fluent/fluentd/pull/2578
1060
+ * Fix comment/message typos
1061
+ https://github.com/fluent/fluentd/pull/2549
1062
+ https://github.com/fluent/fluentd/pull/2554
1063
+ https://github.com/fluent/fluentd/pull/2556
1064
+ https://github.com/fluent/fluentd/pull/2566
1065
+ https://github.com/fluent/fluentd/pull/2573
1066
+ https://github.com/fluent/fluentd/pull/2576
1067
+ https://github.com/fluent/fluentd/pull/2583
1068
+
1069
+ # v1.6
1070
+
1071
+ ## Release v1.6.3 - 2019/07/29
1072
+
1073
+ ### Enhancement
1074
+
1075
+ * in_syslog: Add `emit_unmatched_lines` parameter
1076
+ https://github.com/fluent/fluentd/pull/2499
1077
+ * buf_file: Add `path_suffix` parameter
1078
+ https://github.com/fluent/fluentd/pull/2524
1079
+ * in_tail: Improve the performance of split lines
1080
+ https://github.com/fluent/fluentd/pull/2527
1081
+
1082
+ ### Bug fixes
1083
+
1084
+ * http_server: Fix re-define render_json method
1085
+ https://github.com/fluent/fluentd/pull/2517
1086
+
1087
+ ## Release v1.6.2 - 2019/07/11
1088
+
1089
+ ### Bug fixes
1090
+
1091
+ * http_server helper: Add title argument to support multiple servers
1092
+ https://github.com/fluent/fluentd/pull/2493
1093
+
1094
+ ## Release v1.6.1 - 2019/07/10
1095
+
1096
+ ### Enhancement
1097
+
1098
+ * socket/cert: Support all private keys OpenSSL supports, not only RSA.
1099
+ https://github.com/fluent/fluentd/pull/2487
1100
+ * output/buffer: Improve statistics method performance
1101
+ https://github.com/fluent/fluentd/pull/2491
1102
+
1103
+ ### Bug fixes
1104
+
1105
+ * plugin_config_formatter: update new doc URL
1106
+ https://github.com/fluent/fluentd/pull/2481
1107
+ * out_forward: Avoid zero division error when there are no available nodes
1108
+ https://github.com/fluent/fluentd/pull/2482
1109
+
1110
+ ## Release v1.6.0 - 2019/07/01
1111
+
1112
+ ### New feature
1113
+
1114
+ * plugin: Add http_server helper and in_monitor_agent use it
1115
+ https://github.com/fluent/fluentd/pull/2447
1116
+
1117
+ ### Enhancement
1118
+
1119
+ * in_monitor_agent: Add more metrics for buffer/output
1120
+ https://github.com/fluent/fluentd/pull/2450
1121
+ * time/plugin: Add `EventTime#to_time` method for fast conversion
1122
+ https://github.com/fluent/fluentd/pull/2469
1123
+ * socket helper/out_forward: Add connect_timeout parameter
1124
+ https://github.com/fluent/fluentd/pull/2467
1125
+ * command: Add `--conf-encoding` option
1126
+ https://github.com/fluent/fluentd/pull/2453
1127
+ * parser_none: Small performance optimization
1128
+ https://github.com/fluent/fluentd/pull/2455
1129
+
1130
+ ### Bug fixes
1131
+
1132
+ * cert: Fix cert match pattern
1133
+ https://github.com/fluent/fluentd/pull/2466
1134
+ * output: Fix forget to increment rollback count
1135
+ https://github.com/fluent/fluentd/pull/2462
1136
+
1137
+ # v1.5
1138
+
1139
+ ## Release v1.5.2 - 2019/06/13
1140
+
1141
+ ### Bug fixes
1142
+
1143
+ * out_forward: Fix duplicated handshake bug in keepalive
1144
+ https://github.com/fluent/fluentd/pull/2456
1145
+
1146
+ ## Release v1.5.1 - 2019/06/05
1147
+
1148
+ ### Enhancement
1149
+
1150
+ * in_tail: Increase read block size to reduce IO call
1151
+ https://github.com/fluent/fluentd/pull/2418
1152
+ * in_monitor_agent: Refactor code
1153
+ https://github.com/fluent/fluentd/pull/2422
1154
+
1155
+ ### Bug fixes
1156
+
1157
+ * out_forward: Fix socket handling of keepalive
1158
+ https://github.com/fluent/fluentd/pull/2434
1159
+ * parser: Fix the use of name based timezone
1160
+ https://github.com/fluent/fluentd/pull/2421
1161
+ * in_monitor_agent: Fix debug parameter handling
1162
+ https://github.com/fluent/fluentd/pull/2423
1163
+ * command: Fix error handling of log rotation age option
1164
+ https://github.com/fluent/fluentd/pull/2427
1165
+ * command: Fix ERB warning for ruby 2.6 or later
1166
+ https://github.com/fluent/fluentd/pull/2430
1167
+
1168
+ ## Release v1.5.0 - 2019/05/18
1169
+
1170
+ ### New feature
1171
+
1172
+ * out_forward: Support keepalive feature
1173
+ https://github.com/fluent/fluentd/pull/2393
1174
+ * in_http: Support TLS via server helper
1175
+ https://github.com/fluent/fluentd/pull/2395
1176
+ * in_syslog: Support TLS via server helper
1177
+ https://github.com/fluent/fluentd/pull/2399
1178
+
1179
+ ### Enhancement
1180
+
1181
+ * in_syslog: Add delimiter parameter
1182
+ https://github.com/fluent/fluentd/pull/2378
1183
+ * in_forward: Add tag/add_tag_prefix parameters
1184
+ https://github.com/fluent/fluentd/pull/2396
1185
+ * parser_json: Add stream_buffer_size parameter for yajl
1186
+ https://github.com/fluent/fluentd/pull/2381
1187
+ * command: Add deprecated message to show-plugin-config option
1188
+ https://github.com/fluent/fluentd/pull/2401
1189
+ * storage_local: Ignore empty file. Call sync after write for XFS.
1190
+ https://github.com/fluent/fluentd/pull/2409
1191
+
1192
+ ### Bug fixes
1193
+
1194
+ * out_forward: Don't use SO_LINGER on SSL/TLS WinSock
1195
+ https://github.com/fluent/fluentd/pull/2398
1196
+ * server helper: Fix recursive lock issue in TLSServer
1197
+ https://github.com/fluent/fluentd/pull/2341
1198
+ * Fix typo
1199
+ https://github.com/fluent/fluentd/pull/2369
1200
+
1201
+ # v1.4
1202
+
1203
+ ## Release v1.4.2 - 2019/04/02
1204
+
1205
+ ### Enhancements
1206
+
1207
+ * in_http: subdomain support in CORS domain
1208
+ https://github.com/fluent/fluentd/pull/2337
1209
+ * in_monitor_agent: Expose current timekey list as a buffer metrics
1210
+ https://github.com/fluent/fluentd/pull/2343
1211
+ * in_tcp/in_udp: Add source_address_key parameter
1212
+ https://github.com/fluent/fluentd/pull/2347
1213
+ * in_forward: Add send_keepalive_packet parameter to check the remote connection is available or not
1214
+ https://github.com/fluent/fluentd/pull/2352
1215
+
1216
+ ### Bug fixes
1217
+
1218
+ * out_exec_filter: Fix typo of child_respawn description
1219
+ https://github.com/fluent/fluentd/pull/2341
1220
+ * in_tail: Create parent directories for symlink
1221
+ https://github.com/fluent/fluentd/pull/2353
1222
+ * in_tail: Fix encoding duplication check for non-specified case
1223
+ https://github.com/fluent/fluentd/pull/2361
1224
+ * log: Fix time format handling of plugin logger when log format is JSON
1225
+ https://github.com/fluent/fluentd/pull/2356
1226
+
1227
+ ## Release v1.4.1 - 2019/03/18
1228
+
1229
+ ### Enhancements
1230
+
1231
+ * system: Add worker_id to process_name when workers is larger than 1
1232
+ https://github.com/fluent/fluentd/pull/2321
1233
+ * parser_regexp: Check named captures. When no named captures, configuration error is raised
1234
+ https://github.com/fluent/fluentd/pull/2331
1235
+
1236
+ ### Bug fixes
1237
+
1238
+ * out_forward: Make tls_client_private_key_passphrase secret
1239
+ https://github.com/fluent/fluentd/pull/2324
1240
+ * in_syslog: Check message length when read from buffer in octet counting
1241
+ https://github.com/fluent/fluentd/pull/2323
1242
+
1243
+ ## Release v1.4.0 - 2019/02/24
1244
+
1245
+ ### New features
1246
+
1247
+ * multiprocess: Support <worker N-M> syntax
1248
+ https://github.com/fluent/fluentd/pull/2292
1249
+ * output: Work <secondary> and retry_forever together
1250
+ https://github.com/fluent/fluentd/pull/2276
1251
+ * out_file: Support placeholders in symlink_path
1252
+ https://github.com/fluent/fluentd/pull/2254
1253
+
1254
+ ### Enhancements
1255
+
1256
+ * output: Add MessagePack unpacker error to unrecoverable error list
1257
+ https://github.com/fluent/fluentd/pull/2301
1258
+ * output: Reduce flush delay when large timekey and small timekey_wait are specified
1259
+ https://github.com/fluent/fluentd/pull/2291
1260
+ * config: Support embedded ruby code in section argument.
1261
+ https://github.com/fluent/fluentd/pull/2295
1262
+ * in_tail: Improve encoding parameter handling
1263
+ https://github.com/fluent/fluentd/pull/2305
1264
+ * in_tcp/in_udp: Add <parse> section check
1265
+ https://github.com/fluent/fluentd/pull/2267
1266
+
1267
+ ### Bug fixes
1268
+
1269
+ * server: Ignore IOError and related errors in UDP
1270
+ https://github.com/fluent/fluentd/pull/2310
1271
+ * server: Ignore EPIPE in TLS accept to avoid fluentd restart
1272
+ https://github.com/fluent/fluentd/pull/2253
1273
+
1274
+ # v1.3
1275
+
1276
+ ## Release v1.3.3 - 2019/01/06
1277
+
1278
+ ### Enhancements
1279
+
1280
+ * parser_syslog: Use String#squeeze for performance improvement
1281
+ https://github.com/fluent/fluentd/pull/2239
1282
+ * parser_syslog: Support RFC5424 timestamp without subseconds
1283
+ https://github.com/fluent/fluentd/pull/2240
1284
+
1285
+ ### Bug fixes
1286
+
1287
+ * server: Ignore ECONNRESET in TLS accept to avoid fluentd restart
1288
+ https://github.com/fluent/fluentd/pull/2243
1289
+ * log: Fix plugin logger ignores fluentd log event setting
1290
+ https://github.com/fluent/fluentd/pull/2252
1291
+
1292
+ ## Release v1.3.2 - 2018/12/10
1293
+
1294
+ ### Enhancements
1295
+
1296
+ * out_forward: Support mutual TLS
1297
+ https://github.com/fluent/fluentd/pull/2187
1298
+ * out_file: Create `pos_file` directory if it doesn't exist
1299
+ https://github.com/fluent/fluentd/pull/2223
1300
+
1301
+ ### Bug fixes
1302
+
1303
+ * output: Fix logs during retry
1304
+ https://github.com/fluent/fluentd/pull/2203
1305
+
1306
+ ## Release v1.3.1 - 2018/11/27
1307
+
1308
+ ### Enhancements
1309
+
1310
+ * out_forward: Separate parameter names for certificate
1311
+ https://github.com/fluent/fluentd/pull/2181
1312
+ https://github.com/fluent/fluentd/pull/2190
1313
+ * out_forward: Add `verify_connection_at_startup` parameter to check connection setting at startup phase
1314
+ https://github.com/fluent/fluentd/pull/2184
1315
+ * config: Check right slash position in regexp type
1316
+ https://github.com/fluent/fluentd/pull/2176
1317
+ * parser_nginx: Support multiple IPs in `http_x_forwarded_for` field
1318
+ https://github.com/fluent/fluentd/pull/2171
1319
+
1320
+ ### Bug fixes
1321
+
1322
+ * fluent-cat: Fix retry limit handling
1323
+ https://github.com/fluent/fluentd/pull/2193
1324
+ * record_accessor helper: Delete top level field with bracket style
1325
+ https://github.com/fluent/fluentd/pull/2192
1326
+ * filter_record_transformer: Keep `class` methond to avoid undefined method error
1327
+ https://github.com/fluent/fluentd/pull/2186
1328
+
1329
+ ## Release v1.3.0 - 2018/11/10
1330
+
1331
+ ### New features
1332
+
1333
+ * output: Change thread execution control
1334
+ https://github.com/fluent/fluentd/pull/2170
1335
+ * in_syslog: Support octet counting frame
1336
+ https://github.com/fluent/fluentd/pull/2147
1337
+ * Use `flush_thread_count` value for `queued_chunks_limit_size` when `queued_chunks_limit_size` is not specified
1338
+ https://github.com/fluent/fluentd/pull/2173
1339
+
1340
+ ### Enhancements
1341
+
1342
+ * output: Show backtrace for unrecoverable errors
1343
+ https://github.com/fluent/fluentd/pull/2149
1344
+ * in_http: Implement support for CORS preflight requests
1345
+ https://github.com/fluent/fluentd/pull/2144
1346
+
1347
+ ### Bug fixes
1348
+
1349
+ * server: Fix deadlock between on_writable and close in sockets
1350
+ https://github.com/fluent/fluentd/pull/2165
1351
+ * output: show correct error when wrong plugin is specified for secondary
1352
+ https://github.com/fluent/fluentd/pull/2169
1353
+
1354
+ # v1.2
1355
+
1356
+ ## Release v1.2.6 - 2018/10/03
1357
+
1358
+ ### Enhancements
1359
+
1360
+ * output: Add `disable_chunk_backup` for ignore broken chunks.
1361
+ https://github.com/fluent/fluentd/pull/2117
1362
+ * parser_syslog: Improve regexp for RFC5424
1363
+ https://github.com/fluent/fluentd/pull/2141
1364
+ * in_http: Allow specifying the wildcard '*' as the CORS domain
1365
+ https://github.com/fluent/fluentd/pull/2139
1366
+
1367
+ ### Bug fixes
1368
+
1369
+ * in_tail: Prevent thread switching in the interval between seek and read/write operations to pos_file
1370
+ https://github.com/fluent/fluentd/pull/2118
1371
+ * parser: Handle LoadError properly for oj
1372
+ https://github.com/fluent/fluentd/pull/2140
1373
+
1374
+ ## Release v1.2.5 - 2018/08/22
1375
+
1376
+ ### Bug fixes
1377
+
1378
+ * in_tail: Fix resource leak by file rotation
1379
+ https://github.com/fluent/fluentd/pull/2105
1380
+ * fix typos
1381
+
1382
+ ## Release v1.2.4 - 2018/08/01
1383
+
1384
+ ### Bug fixes
1385
+
1386
+ * output: Consider timezone when calculate timekey
1387
+ https://github.com/fluent/fluentd/pull/2054
1388
+ * output: Fix bug in suppress_emit_error_log_interval
1389
+ https://github.com/fluent/fluentd/pull/2069
1390
+ * server-helper: Fix connection leak by close timing issue.
1391
+ https://github.com/fluent/fluentd/pull/2087
1392
+
1393
+ ## Release v1.2.3 - 2018/07/10
1394
+
1395
+ ### Enhancements
1396
+
1397
+ * in_http: Consider `<parse>` parameters in batch mode
1398
+ https://github.com/fluent/fluentd/pull/2055
1399
+ * in_http: Support gzip payload
1400
+ https://github.com/fluent/fluentd/pull/2060
1401
+ * output: Improve compress performance
1402
+ https://github.com/fluent/fluentd/pull/2031
1403
+ * in_monitor_agent: Add missing descriptions for configurable options
1404
+ https://github.com/fluent/fluentd/pull/2037
1405
+ * parser_syslog: update regex of pid field for conformance to RFC5424 spec
1406
+ https://github.com/fluent/fluentd/pull/2051
1407
+
1408
+ ### Bug fixes
1409
+
1410
+ * in_tail: Fix to rescue Errno::ENOENT for File.mtime()
1411
+ https://github.com/fluent/fluentd/pull/2063
1412
+ * fluent-plugin-generate: Fix Parser plugin template
1413
+ https://github.com/fluent/fluentd/pull/2026
1414
+ * fluent-plugin-config-format: Fix NoMethodError for some plugins
1415
+ https://github.com/fluent/fluentd/pull/2023
1416
+ * config: Don't warn message for reserved parameters in DSL
1417
+ https://github.com/fluent/fluentd/pull/2034
1418
+
1419
+ ## Release v1.2.2 - 2018/06/12
1420
+
1421
+ ### Enhancements
1422
+
1423
+ * filter_parser: Add remove_key_name_field parameter
1424
+ https://github.com/fluent/fluentd/pull/2012
1425
+ * fluent-plugin-config-format: Dump config_argument
1426
+ https://github.com/fluent/fluentd/pull/2003
1427
+
1428
+ ### Bug fixes
1429
+
1430
+ * in_tail: Change pos file entry handling to avoid read conflict for other plugins
1431
+ https://github.com/fluent/fluentd/pull/1963
1432
+ * buffer: Wait for all chunks being purged before deleting @queued_num items
1433
+ https://github.com/fluent/fluentd/pull/2016
1434
+
1435
+ ## Release v1.2.1 - 2018/05/23
1436
+
1437
+ ### Enhancements
1438
+
1439
+ * Counter: Add wait API to client
1440
+ https://github.com/fluent/fluentd/pull/1997
1441
+
1442
+ ### Bug fixes
1443
+
1444
+ * in_tcp/in_udp: Fix source_hostname_key to set hostname correctly
1445
+ https://github.com/fluent/fluentd/pull/1976
1446
+ * in_monitor_agent: Fix buffer_total_queued_size calculation
1447
+ https://github.com/fluent/fluentd/pull/1990
1448
+ * out_file: Temporal fix for broken gzipped files with gzip and append
1449
+ https://github.com/fluent/fluentd/pull/1995
1450
+ * test: Fix unstable backup test
1451
+ https://github.com/fluent/fluentd/pull/1979
1452
+ * gemspec: Remove deprecated has_rdoc
1453
+
1454
+ ## Release v1.2.0 - 2018/04/30
1455
+
1456
+ ### New Features
1457
+
1458
+ * New Counter API
1459
+ https://github.com/fluent/fluentd/pull/1857
1460
+ * output: Backup for broken chunks
1461
+ https://github.com/fluent/fluentd/pull/1952
1462
+ * filter_grep: Support for `<and>` and `<or>` sections
1463
+ https://github.com/fluent/fluentd/pull/1897
1464
+ * config: Support `regexp` type in configuration parameter
1465
+ https://github.com/fluent/fluentd/pull/1927
1466
+
1467
+ ### Enhancements
1468
+
1469
+ * parser_nginx: Support optional `http-x-forwarded-for` field
1470
+ https://github.com/fluent/fluentd/pull/1932
1471
+ * filter_grep: Improve the performance
1472
+ https://github.com/fluent/fluentd/pull/1940
1473
+
1474
+ ### Bug fixes
1475
+
1476
+ * log: Fix unexpected implementation bug when log rotation setting is applied
1477
+ https://github.com/fluent/fluentd/pull/1957
1478
+ * server helper: Close invalid socket when ssl error happens on reading
1479
+ https://github.com/fluent/fluentd/pull/1942
1480
+ * output: Buffer chunk's unique id should be formatted as hex in the log
1481
+
1482
+ # v1.1
1483
+
1484
+ ## Release v1.1.3 - 2018/04/03
1485
+
1486
+ ### Enhancements
1487
+
1488
+ * output: Support negative index for tag placeholders
1489
+ https://github.com/fluent/fluentd/pull/1908
1490
+ * buffer: Add queued_chunks_limit_size to control the number of queued chunks
1491
+ https://github.com/fluent/fluentd/pull/1916
1492
+ * time: Make Fluent::EventTime human readable for inspect
1493
+ https://github.com/fluent/fluentd/pull/1915
1494
+
1495
+ ### Bug fixes
1496
+
1497
+ * output: Delete empty queued_num field after purging chunks
1498
+ https://github.com/fluent/fluentd/pull/1919
1499
+ * fluent-debug: Fix usage message of fluent-debug command
1500
+ https://github.com/fluent/fluentd/pull/1920
1501
+ * out_forward: The node should be disabled when TLS socket for ack returns an error
1502
+ https://github.com/fluent/fluentd/pull/1925
1503
+
1504
+ ## Release v1.1.2 - 2018/03/18
1505
+
1506
+ ### Enhancements
1507
+
1508
+ * filter_grep: Support pattern starts with character classes with //
1509
+ https://github.com/fluent/fluentd/pull/1887
1510
+
1511
+ ### Bug fixes
1512
+
1513
+ * in_tail: Handle records in the correct order on file rotation
1514
+ https://github.com/fluent/fluentd/pull/1880
1515
+ * out_forward: Fix race condition with `<security>` on multi thread environment
1516
+ https://github.com/fluent/fluentd/pull/1893
1517
+ * output: Prevent flushing threads consume too much CPU when retry happens
1518
+ https://github.com/fluent/fluentd/pull/1901
1519
+ * config: Fix boolean param handling for comment without value
1520
+ https://github.com/fluent/fluentd/pull/1883
1521
+ * test: Fix random test failures in test/plugin/test_out_forward.rb
1522
+ https://github.com/fluent/fluentd/pull/1881
1523
+ https://github.com/fluent/fluentd/pull/1890
1524
+ * command: Fix typo in binlog_reader
1525
+ https://github.com/fluent/fluentd/pull/1898
1526
+
1527
+ ## Release v1.1.1 - 2018/03/05
1528
+
1529
+ ### Enhancements
1530
+
1531
+ * in_debug_agent: Support multi worker environment
1532
+ https://github.com/fluent/fluentd/pull/1869
1533
+ * in_forward: Improve SSL setup to support mutual TLS
1534
+ https://github.com/fluent/fluentd/pull/1861
1535
+ * buf_file: Skip and delete broken file chunks to avoid unsuccessful retry in resume
1536
+ https://github.com/fluent/fluentd/pull/1874
1537
+ * command: Show fluentd version for debug purpose
1538
+ https://github.com/fluent/fluentd/pull/1839
1539
+
1540
+ ### Bug fixes
1541
+
1542
+ * in_forward: Do not close connection until write is complete on failed auth PONG
1543
+ https://github.com/fluent/fluentd/pull/1835
1544
+ * in_tail: Fix IO event race condition during shutdown
1545
+ https://github.com/fluent/fluentd/pull/1876
1546
+ * in_http: Emit event time instead of raw time value in batch
1547
+ https://github.com/fluent/fluentd/pull/1850
1548
+ * parser_json: Add EncodingError to rescue list for oj 3.x.
1549
+ https://github.com/fluent/fluentd/pull/1875
1550
+ * config: Fix config_param for string type with frozen string
1551
+ https://github.com/fluent/fluentd/pull/1838
1552
+ * timer: Fix a bug to leak non-repeating timer watchers
1553
+ https://github.com/fluent/fluentd/pull/1864
1554
+
1555
+ ## Release v1.1.0 - 2018/01/17
1556
+
1557
+ ### New features / Enhancements
1558
+
1559
+ * config: Add hostname and worker_id short-cut
1560
+ https://github.com/fluent/fluentd/pull/1814
1561
+ * parser_ltsv: Add delimiter_pattern parameter
1562
+ https://github.com/fluent/fluentd/pull/1802
1563
+ * record_accessor helper: Support nested field deletion
1564
+ https://github.com/fluent/fluentd/pull/1800
1565
+ * record_accessor helper: Expose internal instance `@keys` variable
1566
+ https://github.com/fluent/fluentd/pull/1808
1567
+ * log: Improve Log#on_xxx API performance
1568
+ https://github.com/fluent/fluentd/pull/1809
1569
+ * time: Improve time formatting performance
1570
+ https://github.com/fluent/fluentd/pull/1796
1571
+ * command: Port certificates generating command from secure-forward
1572
+ https://github.com/fluent/fluentd/pull/1818
1573
+
1574
+ ### Bug fixes
1575
+
1576
+ * server helper: Fix TCP + TLS degradation
1577
+ https://github.com/fluent/fluentd/pull/1805
1578
+ * time: Fix the method for TimeFormatter#call
1579
+ https://github.com/fluent/fluentd/pull/1813
1580
+
1581
+ # v1.0
1582
+
1583
+ ## Release v1.0.2 - 2017/12/17
1584
+
1585
+ ### New features / Enhancements
1586
+
1587
+ * Use dig_rb instead of ruby_dig to support dig method in more objects
1588
+ https://github.com/fluent/fluentd/pull/1794
1589
+
1590
+ ## Release v1.0.1 - 2017/12/14
1591
+
1592
+ ### New features / Enhancements
1593
+
1594
+ * in_udp: Add receive_buffer_size parameter
1595
+ https://github.com/fluent/fluentd/pull/1788
1596
+ * in_tail: Add enable_stat_watcher option to disable inotify events
1597
+ https://github.com/fluent/fluentd/pull/1775
1598
+ * Relax strptime gem version
1599
+
1600
+ ### Bug fixes
1601
+
1602
+ * in_tail: Properly handle moved back and truncated case
1603
+ https://github.com/fluent/fluentd/pull/1793
1604
+ * out_forward: Rebuild weight array to apply server setting properly
1605
+ https://github.com/fluent/fluentd/pull/1784
1606
+ * fluent-plugin-config-formatter: Use v1.0 for URL
1607
+ https://github.com/fluent/fluentd/pull/1781
1608
+
1609
+ ## Release v1.0.0 - 2017/12/6
1610
+
1611
+ See [CNCF announcement](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
1612
+
1613
+ ### New features / Enhancements
1614
+
1615
+ * out_copy: Support ignore_error argument in `<store>`
1616
+ https://github.com/fluent/fluentd/pull/1764
1617
+ * server helper: Improve resource usage of TLS transport
1618
+ https://github.com/fluent/fluentd/pull/1764
1619
+ * Disable tracepoint feature to omit unnecessary insts
1620
+ https://github.com/fluent/fluentd/pull/1764
1621
+
1622
+ ### Bug fixes
1623
+
1624
+ * out_forward: Don't update retry state when failed to get ack response.
1625
+ https://github.com/fluent/fluentd/pull/1686
1626
+ * plugin: Combine before_shutdown and shutdown call in one sequence.
1627
+ https://github.com/fluent/fluentd/pull/1763
1628
+ * Add description to parsers
1629
+ https://github.com/fluent/fluentd/pull/1776
1630
+ https://github.com/fluent/fluentd/pull/1777
1631
+ https://github.com/fluent/fluentd/pull/1778
1632
+ https://github.com/fluent/fluentd/pull/1779
1633
+ https://github.com/fluent/fluentd/pull/1780
1634
+ * filter_parser: Add parameter description
1635
+ https://github.com/fluent/fluentd/pull/1773
1636
+ * plugin: Combine before_shutdown and shutdown call in one sequence.
1637
+ https://github.com/fluent/fluentd/pull/1763
1638
+
1639
+ # v0.14
1640
+
1641
+ ## Release v0.14.25 - 2017/11/29
1642
+
1643
+ ### New features / Enhancements
1644
+
1645
+ * Disable tracepoint feature to omit unnecessary insts
1646
+ https://github.com/fluent/fluentd/pull/1764
1647
+
1648
+ ### Bug fixes
1649
+
1650
+ * out_forward: Don't update retry state when failed to get ack response.
1651
+ https://github.com/fluent/fluentd/pull/1686
1652
+ * plugin: Combine before_shutdown and shutdown call in one sequence.
1653
+ https://github.com/fluent/fluentd/pull/1763
1654
+
1655
+ ## Release v0.14.24 - 2017/11/24
1656
+
1657
+ ### New features / Enhancements
1658
+
1659
+ * plugin-config-formatter: Add link to plugin helper result
1660
+ https://github.com/fluent/fluentd/pull/1753
1661
+ * server helper: Refactor code
1662
+ https://github.com/fluent/fluentd/pull/1759
1663
+
1664
+ ### Bug fixes
1665
+
1666
+ * supervisor: Don't call change_privilege twice
1667
+ https://github.com/fluent/fluentd/pull/1757
1668
+
1669
+ ## Release v0.14.23 - 2017/11/15
1670
+
1671
+ ### New features / Enhancements
1672
+
1673
+ * in_udp: Add remove_newline parameter
1674
+ https://github.com/fluent/fluentd/pull/1747
1675
+
1676
+ ### Bug fixes
1677
+
1678
+ * buffer: Lock buffers in order of metadata
1679
+ https://github.com/fluent/fluentd/pull/1722
1680
+ * in_tcp: Fix log corruption under load.
1681
+ https://github.com/fluent/fluentd/pull/1729
1682
+ * out_forward: Fix elapsed time miscalculation in tcp heartbeat
1683
+ https://github.com/fluent/fluentd/pull/1738
1684
+ * supervisor: Fix worker pid handling during worker restart
1685
+ https://github.com/fluent/fluentd/pull/1739
1686
+ * in_tail: Skip setup failed watcher to avoid resource leak and log bloat
1687
+ https://github.com/fluent/fluentd/pull/1742
1688
+ * agent: Add error location to emit error logs
1689
+ https://github.com/fluent/fluentd/pull/1746
1690
+ * command: Consider hyphen and underscore in fluent-plugin-generate arguments
1691
+ https://github.com/fluent/fluentd/pull/1751
1692
+
1693
+ ## Release v0.14.22 - 2017/11/01
1694
+
1695
+ ### New features / Enhancements
1696
+
1697
+ * formatter_tsv: Add add_newline parameter
1698
+ https://github.com/fluent/fluentd/pull/1691
1699
+ * out_file/out_secondary_file: Support ${chunk_id} placeholder. This includes extrace_placeholders API change
1700
+ https://github.com/fluent/fluentd/pull/1708
1701
+ * record_accessor: Support double quotes in bracket notation
1702
+ https://github.com/fluent/fluentd/pull/1716
1703
+ * log: Show running ruby version in startup log
1704
+ https://github.com/fluent/fluentd/pull/1717
1705
+ * log: Log message when chunk is created
1706
+ https://github.com/fluent/fluentd/pull/1718
1707
+ * in_tail: Add pos_file duplication check
1708
+ https://github.com/fluent/fluentd/pull/1720
1709
+
1710
+ ### Bug fixes
1711
+
1712
+ * parser_apache2: Delay time parser initialization
1713
+ https://github.com/fluent/fluentd/pull/1690
1714
+ * cert_option: Improve generated certificates' conformance to X.509 specification
1715
+ https://github.com/fluent/fluentd/pull/1714
1716
+ * buffer: Always lock chunks first to avoid deadlock
1717
+ https://github.com/fluent/fluentd/pull/1721
1718
+
1719
+ ## Release v0.14.21 - 2017/09/07
1720
+
1721
+ ### New features / Enhancements
1722
+
1723
+ * filter_parser: Support record_accessor in key_name
1724
+ https://github.com/fluent/fluentd/pull/1654
1725
+ * buffer: Support record_accessor in chunk keys
1726
+ https://github.com/fluent/fluentd/pull/1662
1727
+
1728
+ ### Bug fixes
1729
+
1730
+ * compat_parameters: Support all syslog parser parameters
1731
+ https://github.com/fluent/fluentd/pull/1650
1732
+ * filter_record_transformer: Don't create new keys if the original record doesn't have `keep_keys` keys
1733
+ https://github.com/fluent/fluentd/pull/1663
1734
+ * in_tail: Fix the error when 'tag *' is configured
1735
+ https://github.com/fluent/fluentd/pull/1664
1736
+ * supervisor: Clear previous worker pids when receive kill signals.
1737
+ https://github.com/fluent/fluentd/pull/1683
1738
+
1739
+ ## Release v0.14.20 - 2017/07/31
1740
+
1741
+ ### New features / Enhancements
1742
+
1743
+ * plugin: Add record_accessor plugin helper
1744
+ https://github.com/fluent/fluentd/pull/1637
1745
+ * log: Add format and time_format parameters to `<system>` setting
1746
+ https://github.com/fluent/fluentd/pull/1644
1747
+
1748
+ ### Bug fixes
1749
+
1750
+ * buf_file: Improve file handling to mitigate broken meta file
1751
+ https://github.com/fluent/fluentd/pull/1628
1752
+ * in_syslog: Fix the description of resolve_hostname parameter
1753
+ https://github.com/fluent/fluentd/pull/1633
1754
+ * process: Fix signal handling. Send signal to all workers
1755
+ https://github.com/fluent/fluentd/pull/1642
1756
+ * output: Fix error message typo
1757
+ https://github.com/fluent/fluentd/pull/1643
1758
+
1759
+ ## Release v0.14.19 - 2017/07/12
1760
+
1761
+ ### New features / Enhancements
1762
+
1763
+ * in_syslog: More characters are available in tag part of syslog format
1764
+ https://github.com/fluent/fluentd/pull/1610
1765
+ * in_syslog: Add resolve_hostname parameter
1766
+ https://github.com/fluent/fluentd/pull/1616
1767
+ * filter_grep: Support new configuration format by config_section
1768
+ https://github.com/fluent/fluentd/pull/1611
1769
+
1770
+ ### Bug fixes
1771
+
1772
+ * output: Fix race condition of retry state in flush thread
1773
+ https://github.com/fluent/fluentd/pull/1623
1774
+ * test: Fix typo in test_in_tail.rb
1775
+ https://github.com/fluent/fluentd/pull/1622
1776
+
1777
+ ## Release v0.14.18 - 2017/06/21
1778
+
1779
+ ### New features / Enhancements
1780
+
1781
+ * parser: Add rfc5424 regex without priority
1782
+ https://github.com/fluent/fluentd/pull/1600
1783
+
1784
+ ### Bug fixes
1785
+
1786
+ * in_tail: Fix timing issue that the excluded_path doesn't apply.
1787
+ https://github.com/fluent/fluentd/pull/1597
1788
+ * config: Fix broken UTF-8 encoded configuration file handling
1789
+ https://github.com/fluent/fluentd/pull/1592
1790
+ * out_forward: Don't stop heartbeat when error happen
1791
+ https://github.com/fluent/fluentd/pull/1602
1792
+ * Fix command name typo in plugin template
1793
+ https://github.com/fluent/fluentd/pull/1603
1794
+
1795
+ ## Release v0.14.17 - 2017/05/29
1796
+
1797
+ ### New features / Enhancements
1798
+
1799
+ * in_tail: Add ignore_repeated_permission_error
1800
+ https://github.com/fluent/fluentd/pull/1574
1801
+ * server: Accept private key for TLS server without passphrase
1802
+ https://github.com/fluent/fluentd/pull/1575
1803
+ * config: Validate workers option on standalone mode
1804
+ https://github.com/fluent/fluentd/pull/1577
1805
+
1806
+ ### Bug fixes
1807
+
1808
+ * config: Mask all secret parameters in worker section
1809
+ https://github.com/fluent/fluentd/pull/1580
1810
+ * out_forward: Fix ack handling
1811
+ https://github.com/fluent/fluentd/pull/1581
1812
+ * plugin-config-format: Fix markdown format generator
1813
+ https://github.com/fluent/fluentd/pull/1585
1814
+
1815
+ ## Release v0.14.16 - 2017/05/13
1816
+
1817
+ ### New features / Enhancements
1818
+
1819
+ * config: Allow null byte in double-quoted string
1820
+ https://github.com/fluent/fluentd/pull/1552
1821
+ * parser: Support %iso8601 special case for time_format
1822
+ https://github.com/fluent/fluentd/pull/1562
1823
+
1824
+ ### Bug fixes
1825
+
1826
+ * out_forward: Call proper method for each connection type
1827
+ https://github.com/fluent/fluentd/pull/1560
1828
+ * in_monitor_agent: check variable buffer is a Buffer instance
1829
+ https://github.com/fluent/fluentd/pull/1556
1830
+ * log: Add missing '<<' method to delegators
1831
+ https://github.com/fluent/fluentd/pull/1558
1832
+ * command: uninitialized constant Fluent::Engine in fluent-binlog-reader
1833
+ https://github.com/fluent/fluentd/pull/1568
1834
+
1835
+ ## Release v0.14.15 - 2017/04/23
1836
+
1837
+ ### New features / Enhancements
1838
+
1839
+ * Add `<worker N>` directive
1840
+ https://github.com/fluent/fluentd/pull/1507
1841
+ * in_tail: Do not warn that directories are unreadable in the in_tail plugin
1842
+ https://github.com/fluent/fluentd/pull/1540
1843
+ * output: Add formatted_to_msgpack_binary? to Output plugin API
1844
+ https://github.com/fluent/fluentd/pull/1547
1845
+ * windows: Allow the Windows Service name Fluentd runs as to be configurable
1846
+ https://github.com/fluent/fluentd/pull/1548
1847
+
1848
+ ### Bug fixes
1849
+
1850
+ * in_http: Fix X-Forwarded-For header handling. Accpet multiple headers
1851
+ https://github.com/fluent/fluentd/pull/1535
1852
+ * Fix backward compatibility with Fluent::DetachProcess and Fluent::DetachMultiProcess
1853
+ https://github.com/fluent/fluentd/pull/1522
1854
+ * fix typo
1855
+ https://github.com/fluent/fluentd/pull/1521
1856
+ https://github.com/fluent/fluentd/pull/1523
1857
+ https://github.com/fluent/fluentd/pull/1544
1858
+ * test: Fix out_file test with timezone
1859
+ https://github.com/fluent/fluentd/pull/1546
1860
+ * windows: Quote the file path to the Ruby bin directory when starting fluentd as a windows service
1861
+ https://github.com/fluent/fluentd/pull/1536
1862
+
1863
+ ## Release v0.14.14 - 2017/03/23
1864
+
1865
+ ### New features / Enhancements
1866
+
1867
+ * in_http: Support 'application/msgpack` header
1868
+ https://github.com/fluent/fluentd/pull/1498
1869
+ * in_udp: Add message_length_limit parameter for parameter name consistency with in_syslog
1870
+ https://github.com/fluent/fluentd/pull/1515
1871
+ * in_monitor_agent: Start one HTTP server per worker on sequential port numbers
1872
+ https://github.com/fluent/fluentd/pull/1493
1873
+ * in_tail: Skip the refresh of watching list on startup
1874
+ https://github.com/fluent/fluentd/pull/1487
1875
+ * filter_parser: filter_parser: Add emit_invalid_record_to_error parameter
1876
+ https://github.com/fluent/fluentd/pull/1494
1877
+ * parser_syslog: Support RFC5424 syslog format
1878
+ https://github.com/fluent/fluentd/pull/1492
1879
+ * parser: Allow escape sequence in Apache access log
1880
+ https://github.com/fluent/fluentd/pull/1479
1881
+ * config: Add actual value in the placeholder error message
1882
+ https://github.com/fluent/fluentd/pull/1497
1883
+ * log: Add Fluent::Log#<< to support some SDKs
1884
+ https://github.com/fluent/fluentd/pull/1478
1885
+
1886
+ ### Bug fixes
1887
+
1888
+ * Fix cleanup resource
1889
+ https://github.com/fluent/fluentd/pull/1483
1890
+ * config: Set encoding forcefully to avoid UndefinedConversionError
1891
+ https://github.com/fluent/fluentd/pull/1477
1892
+ * Fix Input and Output deadlock when buffer is full during startup
1893
+ https://github.com/fluent/fluentd/pull/1502
1894
+ * config: Fix log_level handling in `<system>`
1895
+ https://github.com/fluent/fluentd/pull/1501
1896
+ * Fix typo in root agent error log
1897
+ https://github.com/fluent/fluentd/pull/1491
1898
+ * storage: Fix a bug storage_create cannot accept hash as `conf` keyword argument
1899
+ https://github.com/fluent/fluentd/pull/1482
1900
+
1901
+ ## Release v0.14.13 - 2017/02/17
1902
+
1903
+ ### New features / Enhancements
1904
+
1905
+ * in_tail: Add 'limit_recently_modified' to limit watch files.
1906
+ https://github.com/fluent/fluentd/pull/1474
1907
+ * configuration: Improve 'flush_interval' handling for better message and backward compatibility
1908
+ https://github.com/fluent/fluentd/pull/1442
1909
+ * command: Add 'fluent-plugin-generate' command
1910
+ https://github.com/fluent/fluentd/pull/1427
1911
+ * output: Skip record when 'Output#format' returns nil
1912
+ https://github.com/fluent/fluentd/pull/1469
1913
+
1914
+ ### Bug fixes
1915
+
1916
+ * output: Secondary calculation should consider 'retry_max_times'
1917
+ https://github.com/fluent/fluentd/pull/1452
1918
+ * Fix regression of deprecated 'process' module
1919
+ https://github.com/fluent/fluentd/pull/1443
1920
+ * Fix missing parser_regex require
1921
+ https://github.com/fluent/fluentd/issues/1458
1922
+ https://github.com/fluent/fluentd/pull/1453
1923
+ * Keep 'Fluent::BufferQueueLimitError' for existing plugins
1924
+ https://github.com/fluent/fluentd/pull/1456
1925
+ * in_tail: Untracked files should be removed from watching list to avoid memory bloat
1926
+ https://github.com/fluent/fluentd/pull/1467
1927
+ * in_tail: directories should be skipped when the ** pattern is used
1928
+ https://github.com/fluent/fluentd/pull/1464
1929
+ * record_transformer: Revert "Use BasicObject for cleanroom" for `enable_ruby` regression.
1930
+ https://github.com/fluent/fluentd/pull/1461
1931
+ * buf_file: handle "Too many open files" error to keep buffer and metadata pair
1932
+ https://github.com/fluent/fluentd/pull/1468
1933
+
1934
+ ## Release v0.14.12 - 2017/01/30
1935
+
1936
+ ### New features / Enhancements
1937
+ * Support multi process workers by `workers` option
1938
+ https://github.com/fluent/fluentd/pull/1386
1939
+ * Support TLS transport security layer by server plugin helper, and forward input/output plugins
1940
+ https://github.com/fluent/fluentd/pull/1423
1941
+ * Update internal log event handling to route log events to `@FLUENT_LOG` label if configured, suppress log events in startup/shutdown in default
1942
+ https://github.com/fluent/fluentd/pull/1405
1943
+ * Rename buffer plugin chunk limit parameters for consistency
1944
+ https://github.com/fluent/fluentd/pull/1412
1945
+ * Encode string values from configuration files in UTF8
1946
+ https://github.com/fluent/fluentd/pull/1411
1947
+ * Reorder plugin load paths to load rubygem plugins earlier than built-in plugins to overwrite them
1948
+ https://github.com/fluent/fluentd/pull/1410
1949
+ * Clock API to control internal thread control
1950
+ https://github.com/fluent/fluentd/pull/1425
1951
+ * Validate `config_param` options to restrict unexpected specifications
1952
+ https://github.com/fluent/fluentd/pull/1437
1953
+ * formatter: Add `add_newline` option to get formatted lines without newlines
1954
+ https://github.com/fluent/fluentd/pull/1420
1955
+ * in_forward: Add `ignore_network_errors_at_startup` option for automated cluster deployment
1956
+ https://github.com/fluent/fluentd/pull/1399
1957
+ * in_forward: Close listening socket in #stop, not to accept new connection request in early stage of shutdown
1958
+ https://github.com/fluent/fluentd/pull/1401
1959
+ * out_forward: Ensure to pack values in `str` type of msgpack
1960
+ https://github.com/fluent/fluentd/pull/1413
1961
+ * in_tail: Add `emit_unmatched_lines` to capture lines which unmatch configured regular expressions
1962
+ https://github.com/fluent/fluentd/pull/1421
1963
+ * in_tail: Add `open_on_every_update` to read lines from files opened in exclusive mode on Windows platform
1964
+ https://github.com/fluent/fluentd/pull/1409
1965
+ * in_monitor_agent: Add `with_ivars` query parameter to get instance variables only for specified instance variables
1966
+ https://github.com/fluent/fluentd/pull/1393
1967
+ * storage_local: Generate file store path using `usage`, with `root_dir` configuration
1968
+ https://github.com/fluent/fluentd/pull/1438
1969
+ * Improve test stability
1970
+ https://github.com/fluent/fluentd/pull/1426
1971
+
1972
+ ### Bug fixes
1973
+ * Fix bug to ignore command line options: `--rpc-endpoint`, `--suppress-config-dump`, etc
1974
+ https://github.com/fluent/fluentd/pull/1398
1975
+ * Fix bug to block infinitely in shutdown when buffer is full and `overflow_action` is `block`
1976
+ https://github.com/fluent/fluentd/pull/1396
1977
+ * buf_file: Fix bug not to use `root_dir` even if configured correctly
1978
+ https://github.com/fluent/fluentd/pull/1417
1979
+ * filter_record_transformer: Fix to use BasicObject for clean room
1980
+ https://github.com/fluent/fluentd/pull/1415
1981
+ * filter_record_transformer: Fix bug that `remove_keys` doesn't work with `renew_time_key`
1982
+ https://github.com/fluent/fluentd/pull/1433
1983
+ * in_monitor_agent: Fix bug to crash with NoMethodError for some output plugins
1984
+ https://github.com/fluent/fluentd/pull/1365
1985
+
1986
+ ## Release v0.14.11 - 2016/12/26
1987
+
1988
+ ### New features / Enhancements
1989
+ * Add "root_dir" parameter in `<system>` directive to configure server root directory, used for buffer/storage paths
1990
+ https://github.com/fluent/fluentd/pull/1374
1991
+ * Fix not to restart Fluentd processes when unrecoverable errors occur
1992
+ https://github.com/fluent/fluentd/pull/1359
1993
+ * Show warnings in log when output flush operation takes longer time than threshold
1994
+ https://github.com/fluent/fluentd/pull/1370
1995
+ * formatter_csv: Raise configuration error when no field names are specified
1996
+ https://github.com/fluent/fluentd/pull/1369
1997
+ * in_syslog: Update implementation to use plugin helpers
1998
+ https://github.com/fluent/fluentd/pull/1382
1999
+ * in_forward: Add a configuration parameter "source_address_key"
2000
+ https://github.com/fluent/fluentd/pull/1382
2001
+ * in_monitor_agent: Add a parameter "include_retry" to get detail retry status
2002
+ https://github.com/fluent/fluentd/pull/1387
2003
+ * Add Ruby 2.4 into supported ruby versions
2004
+
2005
+ ### Bug fixes
2006
+ * Fix to set process name of supervisor process
2007
+ https://github.com/fluent/fluentd/pull/1380
2008
+ * in_forward: Fix a bug not to handle "require_ack_response" correctly
2009
+ https://github.com/fluent/fluentd/pull/1389
2010
+
2011
+
2012
+ ## Release v0.14.10 - 2016/12/14
2013
+
2014
+ ### New features / Enhancement
2015
+
2016
+ * Add socket/server plugin helper to write TCP/UDP clients/servers as Fluentd plugin
2017
+ https://github.com/fluent/fluentd/pull/1312
2018
+ https://github.com/fluent/fluentd/pull/1350
2019
+ https://github.com/fluent/fluentd/pull/1356
2020
+ https://github.com/fluent/fluentd/pull/1362
2021
+ * Fix to raise errors when injected hostname is also specified as chunk key
2022
+ https://github.com/fluent/fluentd/pull/1357
2023
+ * in_tail: Optimize to read lines from file
2024
+ https://github.com/fluent/fluentd/pull/1325
2025
+ * in_monitor_agent: Add new parameter "include_config"(default: true)
2026
+ https://github.com/fluent/fluentd/pull/1317
2027
+ * in_syslog: Add "priority_key" and "facility_key" options
2028
+ https://github.com/fluent/fluentd/pull/1351
2029
+ * filter_record_transformer: Remove obsoleted syntax like "${message}" and not to dump records in logs
2030
+ https://github.com/fluent/fluentd/pull/1328
2031
+ * Add an option "--time-as-integer" to fluent-cat command to send events from v0.14 fluent-cat to v0.12 fluentd
2032
+ https://github.com/fluent/fluentd/pull/1349
2033
+
2034
+ ### Bug fixes
2035
+
2036
+ * Specify correct Oj options for newer versions (Oj 2.18.0 or later)
2037
+ https://github.com/fluent/fluentd/pull/1331
2038
+ * TimeSlice output plugins (in v0.12 style) raise errors when "utc" parameter is specified
2039
+ https://github.com/fluent/fluentd/pull/1319
2040
+ * Parser plugins cannot use options for regular expressions
2041
+ https://github.com/fluent/fluentd/pull/1326
2042
+ * Fix bugs not to raise errors to use logger in v0.12 plugins
2043
+ https://github.com/fluent/fluentd/pull/1344
2044
+ https://github.com/fluent/fluentd/pull/1332
2045
+ * Fix bug about shutting down Fluentd in Windows
2046
+ https://github.com/fluent/fluentd/pull/1367
2047
+ * in_tail: Close files explicitly in tests
2048
+ https://github.com/fluent/fluentd/pull/1327
2049
+ * out_forward: Fix bug not to convert buffer configurations into v0.14 parameters
2050
+ https://github.com/fluent/fluentd/pull/1337
2051
+ * out_forward: Fix bug to raise error when "expire_dns_cache" is specified
2052
+ https://github.com/fluent/fluentd/pull/1346
2053
+ * out_file: Fix bug to raise error about buffer chunking when it's configured as secondary
2054
+ https://github.com/fluent/fluentd/pull/1338
2055
+
2056
+ ## Release v0.14.9 - 2016/11/15
2057
+
2058
+ ### New features / Enhancement
2059
+
2060
+ * filter_parser: Port fluent-plugin-parser into built-in plugin
2061
+ https://github.com/fluent/fluentd/pull/1191
2062
+ * parser/formatter plugin helpers with default @type in plugin side
2063
+ https://github.com/fluent/fluentd/pull/1267
2064
+ * parser: Reconstruct Parser related classes
2065
+ https://github.com/fluent/fluentd/pull/1286
2066
+ * filter_record_transformer: Remove old behaviours
2067
+ https://github.com/fluent/fluentd/pull/1311
2068
+ * Migrate some built-in plugins into v0.14 API
2069
+ https://github.com/fluent/fluentd/pull/1257 (out_file)
2070
+ https://github.com/fluent/fluentd/pull/1297 (out_exec, out_exec_filter)
2071
+ https://github.com/fluent/fluentd/pull/1306 (in_forward, out_forward)
2072
+ https://github.com/fluent/fluentd/pull/1308 (in_http)
2073
+ * test: Improve test drivers
2074
+ https://github.com/fluent/fluentd/pull/1302
2075
+ https://github.com/fluent/fluentd/pull/1305
2076
+
2077
+ ### Bug fixes
2078
+
2079
+ * log: Avoid name conflict between Fluent::Logger
2080
+ https://github.com/fluent/fluentd/pull/1274
2081
+ * fluent-cat: Fix fluent-cat command to send sub-second precision time
2082
+ https://github.com/fluent/fluentd/pull/1277
2083
+ * config: Fix a bug not to overwrite default value with nil
2084
+ https://github.com/fluent/fluentd/pull/1296
2085
+ * output: Fix timezone for compat timesliced output plugins
2086
+ https://github.com/fluent/fluentd/pull/1307
2087
+ * out_forward: fix not to raise error when out_forward is initialized as secondary
2088
+ https://github.com/fluent/fluentd/pull/1313
2089
+ * output: Event router for secondary output
2090
+ https://github.com/fluent/fluentd/pull/1283
2091
+ * test: fix to return the block value as expected by many rubyists
2092
+ https://github.com/fluent/fluentd/pull/1284
2093
+
2094
+ ## Release v0.14.8 - 2016/10/13
2095
+
2096
+ ### Bug fixes
2097
+
2098
+ * Add msgpack_each to buffer chunks in compat-layer output plugins
2099
+ https://github.com/fluent/fluentd/pull/1273
2100
+
2101
+ ## Release v0.14.7 - 2016/10/07
2102
+
2103
+ ### New features / Enhancement
2104
+
2105
+ * Support data compression in buffer plugins
2106
+ https://github.com/fluent/fluentd/pull/1172
2107
+ * in_forward: support to transfer compressed data
2108
+ https://github.com/fluent/fluentd/pull/1179
2109
+ * out_stdout: fix to show nanosecond resolution time
2110
+ https://github.com/fluent/fluentd/pull/1249
2111
+ * Add option to rotate Fluentd daemon's log
2112
+ https://github.com/fluent/fluentd/pull/1235
2113
+ * Add extract plugin helper, with symmetric time parameter support in parser/formatter and inject/extract
2114
+ https://github.com/fluent/fluentd/pull/1207
2115
+ * Add a feature to parse/format numeric time (unix time [+ subsecond value])
2116
+ https://github.com/fluent/fluentd/pull/1254
2117
+ * Raise configuration errors for inconsistent `<label>` configurations
2118
+ https://github.com/fluent/fluentd/pull/1233
2119
+ * Fix to instantiate an unconfigured section even for multi: true
2120
+ https://github.com/fluent/fluentd/pull/1210
2121
+ * Add validators of placeholders for buffering key extraction
2122
+ https://github.com/fluent/fluentd/pull/1255
2123
+ * Fix to show log messages about filter optimization only when needed
2124
+ https://github.com/fluent/fluentd/pull/1227
2125
+ * Add some features to write plugins more easily
2126
+ https://github.com/fluent/fluentd/pull/1256
2127
+ * Add a tool to load dumped events from file
2128
+ https://github.com/fluent/fluentd/pull/1165
2129
+
2130
+ ### Bug fixes
2131
+
2132
+ * Fix Oj's default option to encode/decode JSON in the same way with Yajl
2133
+ https://github.com/fluent/fluentd/pull/1147
2134
+ https://github.com/fluent/fluentd/pull/1239
2135
+ * Fix to raise correct configuration errors
2136
+ https://github.com/fluent/fluentd/pull/1223
2137
+ * Fix a bug to call `shutdown` method (and some others) twice
2138
+ https://github.com/fluent/fluentd/pull/1242
2139
+ * Fix to enable `chunk.each` only when it's encoded by msgpack
2140
+ https://github.com/fluent/fluentd/pull/1263
2141
+ * Fix a bug not to stop enqueue/flush threads correctly
2142
+ https://github.com/fluent/fluentd/pull/1264
2143
+ * out_forward: fix a bug that UDP heartbeat doesn't work
2144
+ https://github.com/fluent/fluentd/pull/1238
2145
+ * out_file: fix a crash bug when v0.14 enables symlink and resumes existing buffer file chunk generated by v0.12
2146
+ https://github.com/fluent/fluentd/pull/1234
2147
+ * in_monitor_agent: fix compatibility problem between outputs of v0.12 and v0.14
2148
+ https://github.com/fluent/fluentd/pull/1232
2149
+ * in_tail: fix a bug to crash to read large amount logs
2150
+ https://github.com/fluent/fluentd/pull/1259
2151
+ https://github.com/fluent/fluentd/pull/1261
2152
+
2153
+ ## Release v0.14.6 - 2016/09/07
2154
+
2155
+ ### Bug fixes
2156
+
2157
+ * in_tail: Add a missing parser_multiline require
2158
+ https://github.com/fluent/fluentd/pull/1212
2159
+ * forward: Mark secret parameters of forward plugins as secret
2160
+ https://github.com/fluent/fluentd/pull/1209
2161
+
2162
+ ## Release v0.14.5 - 2016/09/06
2163
+
2164
+ ### New features / Enhancement
2165
+
2166
+ * Add authentication / authorization feature to forward protocol and in/out_forward plugins
2167
+ https://github.com/fluent/fluentd/pull/1136
2168
+ * Add a new plugin to dump buffers in retries as secondary plugin
2169
+ https://github.com/fluent/fluentd/pull/1154
2170
+ * Merge out_buffered_stdout and out_buffered_null into out_stdout and out_null
2171
+ https://github.com/fluent/fluentd/pull/1200
2172
+
2173
+ ### Bug fixes
2174
+
2175
+ * Raise configuration errors to clarify what's wrong when "@type" is missing
2176
+ https://github.com/fluent/fluentd/pull/1202
2177
+ * Fix the bug not to launch Fluentd when v0.12 MultiOutput plugin is configured
2178
+ https://github.com/fluent/fluentd/pull/1206
2179
+
2180
+ ## Release v0.14.4 - 2016/08/31
2181
+
2182
+ ### New features / Enhancement
2183
+
2184
+ * Add a method to Filter API to update time of events
2185
+ https://github.com/fluent/fluentd/pull/1140
2186
+ * Improve performance of filter pipeline
2187
+ https://github.com/fluent/fluentd/pull/1145
2188
+ * Fix to suppress not to warn about different plugins for primary and secondary without any problems
2189
+ https://github.com/fluent/fluentd/pull/1153
2190
+ * Add deprecated/obsoleted options to config_param to show removed/warned parameters
2191
+ https://github.com/fluent/fluentd/pull/1186
2192
+ * in_forward: Add a feature source_hostname_key to inject source hostname into records
2193
+ https://github.com/fluent/fluentd/pull/807
2194
+ * in_tail: Add a feature from_encoding to specify both encoding from and to
2195
+ https://github.com/fluent/fluentd/pull/1067
2196
+ * filter_record_transformer: Fix to prevent overwriting reserved placeholder keys
2197
+ https://github.com/fluent/fluentd/pull/1176
2198
+ * Migrate some built-in plugins into v0.14 API
2199
+ https://github.com/fluent/fluentd/pull/1149
2200
+ https://github.com/fluent/fluentd/pull/1151
2201
+ * Update dependencies
2202
+ https://github.com/fluent/fluentd/pull/1193
2203
+
2204
+ ### Bug fixes
2205
+
2206
+ * Fix to start/stop/restart Fluentd processes correctly on Windows environment
2207
+ https://github.com/fluent/fluentd/pull/1171
2208
+ https://github.com/fluent/fluentd/pull/1192
2209
+ * Fix to handle Windows events correctly in winsvc.rb
2210
+ https://github.com/fluent/fluentd/pull/1155
2211
+ https://github.com/fluent/fluentd/pull/1170
2212
+ * Fix not to continue to restart workers for configuration errors
2213
+ https://github.com/fluent/fluentd/pull/1183
2214
+ * Fix output threads to start enqueue/flush buffers until plugins' start method ends
2215
+ https://github.com/fluent/fluentd/pull/1190
2216
+ * Fix a bug not to set umask 0
2217
+ https://github.com/fluent/fluentd/pull/1152
2218
+ * Fix resource leak on one-shot timers
2219
+ https://github.com/fluent/fluentd/pull/1178
2220
+ * Fix to call plugin helper methods in configure
2221
+ https://github.com/fluent/fluentd/pull/1184
2222
+ * Fix a bug to count event size
2223
+ https://github.com/fluent/fluentd/pull/1164/files
2224
+ * Fix to require missed compat modules
2225
+ https://github.com/fluent/fluentd/pull/1168
2226
+ * Fix to start properly for plugins under MultiOutput
2227
+ https://github.com/fluent/fluentd/pull/1167
2228
+ * Fix test drivers to set class name into plugin instances
2229
+ https://github.com/fluent/fluentd/pull/1069
2230
+ * Fix tests not to use mocks for Time (improve test stabilization)
2231
+ https://github.com/fluent/fluentd/pull/1194
2232
+
2233
+ ## Release 0.14.3 - 2016/08/30
2234
+
2235
+ * Fix the dependency for ServerEngine 1.x
2236
+
2237
+ ## Release 0.14.2 - 2016/08/09
2238
+
2239
+ ### New features / Enhancement
2240
+
2241
+ * Fix to split large event stream into some/many chunks in buffers
2242
+ https://github.com/fluent/fluentd/pull/1062
2243
+ * Add parser and filter support in compat_parameters plugin helper
2244
+ https://github.com/fluent/fluentd/pull/1079
2245
+ * Add a RPC call to flush buffers and stop workers
2246
+ https://github.com/fluent/fluentd/pull/1134
2247
+ * Update forward protocol to pass the number of events in a payload
2248
+ https://github.com/fluent/fluentd/pull/1137
2249
+ * Improve performance of some built-in formatter plugins
2250
+ https://github.com/fluent/fluentd/pull/1082
2251
+ https://github.com/fluent/fluentd/pull/1086
2252
+ * Migrate some built-in plugins and plugin util modules into v0.14 API
2253
+ https://github.com/fluent/fluentd/pull/1058
2254
+ https://github.com/fluent/fluentd/pull/1061
2255
+ https://github.com/fluent/fluentd/pull/1076
2256
+ https://github.com/fluent/fluentd/pull/1078
2257
+ https://github.com/fluent/fluentd/pull/1081
2258
+ https://github.com/fluent/fluentd/pull/1083
2259
+ https://github.com/fluent/fluentd/pull/1091
2260
+ * Register RegExpParser as a parser plugin explicitly
2261
+ https://github.com/fluent/fluentd/pull/1094
2262
+ * Add delimiter option to CSV parser
2263
+ https://github.com/fluent/fluentd/pull/1108
2264
+ * Add an option to receive longer udp syslog messages
2265
+ https://github.com/fluent/fluentd/pull/1127
2266
+ * Add a option to suspend internal status in dummy plugin
2267
+ https://github.com/fluent/fluentd/pull/900
2268
+ * Add a feature to capture filtered records in test driver for Filter plugins
2269
+ https://github.com/fluent/fluentd/pull/1077
2270
+ * Add some utility methods to plugin test drivers
2271
+ https://github.com/fluent/fluentd/pull/1114
2272
+
2273
+ ### Bug fixes
2274
+
2275
+ * Fix bug to read non buffer-chunk files as buffer chunks when Fluentd resumed
2276
+ https://github.com/fluent/fluentd/pull/1124
2277
+ * Fix bug not to load Filter plugins which are specified in configurations
2278
+ https://github.com/fluent/fluentd/pull/1118
2279
+ * Fix bug to ignore `-p` option to specify directories of plugins
2280
+ https://github.com/fluent/fluentd/pull/1133
2281
+ * Fix bug to overwrite base class configuration section definitions by subclasses
2282
+ https://github.com/fluent/fluentd/pull/1119
2283
+ * Fix to stop Fluentd worker process by Ctrl-C when --no-supervisor specified
2284
+ https://github.com/fluent/fluentd/pull/1089
2285
+ * Fix regression about RPC call to reload configuration
2286
+ https://github.com/fluent/fluentd/pull/1093
2287
+ * Specify to ensure Oj JSON parser to use strict mode
2288
+ https://github.com/fluent/fluentd/pull/1147
2289
+ * Fix unexisting path handling in Windows environment
2290
+ https://github.com/fluent/fluentd/pull/1104
2291
+
2292
+ ## Release 0.14.1 - 2016/06/30
2293
+
2294
+ ### New features / Enhancement
2295
+
2296
+ * Add plugin helpers for parsers and formatters
2297
+ https://github.com/fluent/fluentd/pull/1023
2298
+ * Extract some mixins into compat modules
2299
+ https://github.com/fluent/fluentd/pull/1044
2300
+ https://github.com/fluent/fluentd/pull/1052
2301
+ * Add utility methods for tests and test drivers
2302
+ https://github.com/fluent/fluentd/pull/1047
2303
+ * Migrate some built-in plugins to v0.14 APIs
2304
+ https://github.com/fluent/fluentd/pull/1049
2305
+ https://github.com/fluent/fluentd/pull/1057
2306
+ https://github.com/fluent/fluentd/pull/1060
2307
+ https://github.com/fluent/fluentd/pull/1064
2308
+ * Add support of X-Forwarded-For header in in_http plugin
2309
+ https://github.com/fluent/fluentd/pull/1051
2310
+ * Warn not to create too many staged chunks at configure
2311
+ https://github.com/fluent/fluentd/pull/1054
2312
+ * Add a plugin helper to inject tag/time/hostname
2313
+ https://github.com/fluent/fluentd/pull/1063
2314
+
2315
+ ### Bug fixes
2316
+
2317
+ * Fix in_monitor_agent for v0.14 plugins
2318
+ https://github.com/fluent/fluentd/pull/1003
2319
+ * Fix to call #format_stream of plugins themselves when RecordFilter mixin included
2320
+ https://github.com/fluent/fluentd/pull/1005
2321
+ * Fix shutdown sequence to wait force flush
2322
+ https://github.com/fluent/fluentd/pull/1009
2323
+ * Fix a deadlock bug in shutdown
2324
+ https://github.com/fluent/fluentd/pull/1010
2325
+ * Fix to require DetachProcessMixin in default for compat plugins
2326
+ https://github.com/fluent/fluentd/pull/1014
2327
+ * Fix to overwrite configure_proxy name only for root sections for debugging
2328
+ https://github.com/fluent/fluentd/pull/1015
2329
+ * Rename file for in_unix plugin
2330
+ https://github.com/fluent/fluentd/pull/1017
2331
+ * Fix a bug not to create pid file when daemonized
2332
+ https://github.com/fluent/fluentd/pull/1021
2333
+ * Fix wrong DEFAULT_PLUGIN_PATH
2334
+ https://github.com/fluent/fluentd/pull/1028
2335
+ * Fix a bug not to use primary plugin type for secondary in default
2336
+ https://github.com/fluent/fluentd/pull/1032
2337
+ * Add --run-worker option to distinguish to run as worker without supervisor
2338
+ https://github.com/fluent/fluentd/pull/1033
2339
+ * Fix regression of fluent-debug command
2340
+ https://github.com/fluent/fluentd/pull/1046
2341
+ * Update windows-pr dependency to 1.2.5
2342
+ https://github.com/fluent/fluentd/pull/1065
2343
+ * Fix supervisor to pass RUBYOPT to worker processes
2344
+ https://github.com/fluent/fluentd/pull/1066
2345
+
2346
+ ## Release 0.14.0 - 2016/05/25
2347
+
2348
+ ### New features / Enhancement
2349
+
2350
+ This list includes changes of 0.14.0.pre.1 and release candidates.
2351
+
2352
+ * Update supported Ruby version to 2.1 or later
2353
+ https://github.com/fluent/fluentd/pull/692
2354
+ * Sub-second event time support
2355
+ https://github.com/fluent/fluentd/pull/653
2356
+ * Windows support and supervisor improvement
2357
+ https://github.com/fluent/fluentd/pull/674
2358
+ https://github.com/fluent/fluentd/pull/831
2359
+ https://github.com/fluent/fluentd/pull/880
2360
+ * Add New plugin API
2361
+ https://github.com/fluent/fluentd/pull/800
2362
+ https://github.com/fluent/fluentd/pull/843
2363
+ https://github.com/fluent/fluentd/pull/866
2364
+ https://github.com/fluent/fluentd/pull/905
2365
+ https://github.com/fluent/fluentd/pull/906
2366
+ https://github.com/fluent/fluentd/pull/917
2367
+ https://github.com/fluent/fluentd/pull/928
2368
+ https://github.com/fluent/fluentd/pull/943
2369
+ https://github.com/fluent/fluentd/pull/964
2370
+ https://github.com/fluent/fluentd/pull/965
2371
+ https://github.com/fluent/fluentd/pull/972
2372
+ https://github.com/fluent/fluentd/pull/983
2373
+ * Add standard chunking format
2374
+ https://github.com/fluent/fluentd/pull/914
2375
+ * Add Compatibility layer for v0.12 plugins
2376
+ https://github.com/fluent/fluentd/pull/912
2377
+ https://github.com/fluent/fluentd/pull/969
2378
+ https://github.com/fluent/fluentd/pull/974
2379
+ https://github.com/fluent/fluentd/pull/992
2380
+ https://github.com/fluent/fluentd/pull/999
2381
+ * Add Plugin Storage API
2382
+ https://github.com/fluent/fluentd/pull/864
2383
+ https://github.com/fluent/fluentd/pull/910
2384
+ * Enforce to use router.emit instead of Engine.emit
2385
+ https://github.com/fluent/fluentd/pull/883
2386
+ * log: Show plugin name and id in logs
2387
+ https://github.com/fluent/fluentd/pull/860
2388
+ * log: Dump configurations with v1 syntax in logs
2389
+ https://github.com/fluent/fluentd/pull/867
2390
+ * log: Dump errors with class in logs
2391
+ https://github.com/fluent/fluentd/pull/899
2392
+ * config: Add simplified syntax for configuration values of hash and array
2393
+ https://github.com/fluent/fluentd/pull/875
2394
+ * config: Add 'init' option to config_section to initialize section objects
2395
+ https://github.com/fluent/fluentd/pull/877
2396
+ * config: Support multiline string in quoted strings
2397
+ https://github.com/fluent/fluentd/pull/929
2398
+ * config: Add optional arguments on Element#elements to select child elements
2399
+ https://github.com/fluent/fluentd/pull/948
2400
+ * config: Show deprecated warnings for reserved parameters
2401
+ https://github.com/fluent/fluentd/pull/971
2402
+ * config: Make the detach process forward interval configurable
2403
+ https://github.com/fluent/fluentd/pull/982
2404
+ * in_tail: Add 'path_key' option to inject tailing path
2405
+ https://github.com/fluent/fluentd/pull/951
2406
+ * Remove in_status plugin
2407
+ https://github.com/fluent/fluentd/pull/690
2408
+
2409
+ ### Bug fixes
2410
+
2411
+ * config: Enum list must be of symbols
2412
+ https://github.com/fluent/fluentd/pull/821
2413
+ * config: Fix to dup values in default
2414
+ https://github.com/fluent/fluentd/pull/827
2415
+ * config: Fix problems about overwriting subsections
2416
+ https://github.com/fluent/fluentd/pull/844
2417
+ https://github.com/fluent/fluentd/pull/981
2418
+ * log: Serialize Fluent::EventTime as Integer in JSON
2419
+ https://github.com/fluent/fluentd/pull/904
2420
+ * out_forward: Add missing error class and tests for it
2421
+ https://github.com/fluent/fluentd/pull/922
2422
+
2423
+ ### Internal fix / Refactoring
2424
+
2425
+ * Fix dependencies between files
2426
+ https://github.com/fluent/fluentd/pull/799
2427
+ https://github.com/fluent/fluentd/pull/808
2428
+ https://github.com/fluent/fluentd/pull/823
2429
+ https://github.com/fluent/fluentd/pull/824
2430
+ https://github.com/fluent/fluentd/pull/825
2431
+ https://github.com/fluent/fluentd/pull/826
2432
+ https://github.com/fluent/fluentd/pull/828
2433
+ https://github.com/fluent/fluentd/pull/859
2434
+ https://github.com/fluent/fluentd/pull/892
2435
+ * Separate PluginId from config
2436
+ https://github.com/fluent/fluentd/pull/832
2437
+ * Separate MessagePack factory from Engine
2438
+ https://github.com/fluent/fluentd/pull/871
2439
+ * Register plugins to registry
2440
+ https://github.com/fluent/fluentd/pull/838
2441
+ * Move TypeConverter mixin to mixin.rb
2442
+ https://github.com/fluent/fluentd/pull/842
2443
+ * Override default configurations by `<system>`
2444
+ https://github.com/fluent/fluentd/pull/854
2445
+ * Suppress Ruby level warnings
2446
+ https://github.com/fluent/fluentd/pull/846
2447
+ https://github.com/fluent/fluentd/pull/852
2448
+ https://github.com/fluent/fluentd/pull/890
2449
+ https://github.com/fluent/fluentd/pull/946
2450
+ https://github.com/fluent/fluentd/pull/955
2451
+ https://github.com/fluent/fluentd/pull/966
2452
+
2453
+ See https://github.com/fluent/fluentd/blob/v0.12/CHANGELOG.md for v0.12 changelog