rbs-relaxed 3.9.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (484) hide show
  1. checksums.yaml +7 -0
  2. data/.github/dependabot.yml +22 -0
  3. data/.github/workflows/comments.yml +35 -0
  4. data/.github/workflows/dependabot.yml +30 -0
  5. data/.github/workflows/ruby.yml +82 -0
  6. data/.github/workflows/typecheck.yml +38 -0
  7. data/.github/workflows/windows.yml +43 -0
  8. data/.gitignore +23 -0
  9. data/.rubocop.yml +68 -0
  10. data/BSDL +22 -0
  11. data/CHANGELOG.md +1868 -0
  12. data/COPYING +56 -0
  13. data/README.md +203 -0
  14. data/Rakefile +417 -0
  15. data/Steepfile +44 -0
  16. data/config.yml +313 -0
  17. data/core/array.rbs +4062 -0
  18. data/core/basic_object.rbs +375 -0
  19. data/core/binding.rbs +150 -0
  20. data/core/builtin.rbs +277 -0
  21. data/core/class.rbs +220 -0
  22. data/core/comparable.rbs +171 -0
  23. data/core/complex.rbs +786 -0
  24. data/core/constants.rbs +96 -0
  25. data/core/data.rbs +415 -0
  26. data/core/dir.rbs +981 -0
  27. data/core/encoding.rbs +1371 -0
  28. data/core/enumerable.rbs +2405 -0
  29. data/core/enumerator/product.rbs +92 -0
  30. data/core/enumerator.rbs +630 -0
  31. data/core/env.rbs +6 -0
  32. data/core/errno.rbs +673 -0
  33. data/core/errors.rbs +760 -0
  34. data/core/exception.rbs +485 -0
  35. data/core/false_class.rbs +82 -0
  36. data/core/fiber.rbs +550 -0
  37. data/core/fiber_error.rbs +11 -0
  38. data/core/file.rbs +2936 -0
  39. data/core/file_test.rbs +331 -0
  40. data/core/float.rbs +1151 -0
  41. data/core/gc.rbs +644 -0
  42. data/core/global_variables.rbs +184 -0
  43. data/core/hash.rbs +1861 -0
  44. data/core/integer.rbs +1413 -0
  45. data/core/io/buffer.rbs +984 -0
  46. data/core/io/wait.rbs +70 -0
  47. data/core/io.rbs +3406 -0
  48. data/core/kernel.rbs +3096 -0
  49. data/core/marshal.rbs +207 -0
  50. data/core/match_data.rbs +635 -0
  51. data/core/math.rbs +729 -0
  52. data/core/method.rbs +386 -0
  53. data/core/module.rbs +1704 -0
  54. data/core/nil_class.rbs +209 -0
  55. data/core/numeric.rbs +818 -0
  56. data/core/object.rbs +110 -0
  57. data/core/object_space/weak_key_map.rbs +166 -0
  58. data/core/object_space.rbs +190 -0
  59. data/core/proc.rbs +868 -0
  60. data/core/process.rbs +2296 -0
  61. data/core/ractor.rbs +1068 -0
  62. data/core/random.rbs +237 -0
  63. data/core/range.rbs +1107 -0
  64. data/core/rational.rbs +531 -0
  65. data/core/rb_config.rbs +88 -0
  66. data/core/rbs/unnamed/argf.rbs +1229 -0
  67. data/core/rbs/unnamed/env_class.rbs +1209 -0
  68. data/core/rbs/unnamed/random.rbs +293 -0
  69. data/core/refinement.rbs +59 -0
  70. data/core/regexp.rbs +1930 -0
  71. data/core/ruby_vm.rbs +765 -0
  72. data/core/rubygems/basic_specification.rbs +6 -0
  73. data/core/rubygems/config_file.rbs +38 -0
  74. data/core/rubygems/dependency_installer.rbs +6 -0
  75. data/core/rubygems/errors.rbs +176 -0
  76. data/core/rubygems/installer.rbs +15 -0
  77. data/core/rubygems/path_support.rbs +6 -0
  78. data/core/rubygems/platform.rbs +7 -0
  79. data/core/rubygems/request_set.rbs +49 -0
  80. data/core/rubygems/requirement.rbs +148 -0
  81. data/core/rubygems/rubygems.rbs +1171 -0
  82. data/core/rubygems/source_list.rbs +15 -0
  83. data/core/rubygems/specification.rbs +23 -0
  84. data/core/rubygems/stream_ui.rbs +5 -0
  85. data/core/rubygems/uninstaller.rbs +10 -0
  86. data/core/rubygems/version.rbs +294 -0
  87. data/core/set.rbs +621 -0
  88. data/core/signal.rbs +100 -0
  89. data/core/string.rbs +3583 -0
  90. data/core/struct.rbs +667 -0
  91. data/core/symbol.rbs +475 -0
  92. data/core/thread.rbs +1765 -0
  93. data/core/thread_group.rbs +79 -0
  94. data/core/time.rbs +1762 -0
  95. data/core/trace_point.rbs +477 -0
  96. data/core/true_class.rbs +98 -0
  97. data/core/unbound_method.rbs +329 -0
  98. data/core/warning.rbs +87 -0
  99. data/docs/CONTRIBUTING.md +106 -0
  100. data/docs/architecture.md +110 -0
  101. data/docs/collection.md +192 -0
  102. data/docs/data_and_struct.md +86 -0
  103. data/docs/gem.md +57 -0
  104. data/docs/rbs_by_example.md +309 -0
  105. data/docs/repo.md +125 -0
  106. data/docs/sigs.md +167 -0
  107. data/docs/stdlib.md +147 -0
  108. data/docs/syntax.md +910 -0
  109. data/docs/tools.md +17 -0
  110. data/exe/rbs +7 -0
  111. data/ext/rbs_extension/extconf.rb +15 -0
  112. data/ext/rbs_extension/lexer.c +2728 -0
  113. data/ext/rbs_extension/lexer.h +179 -0
  114. data/ext/rbs_extension/lexer.re +147 -0
  115. data/ext/rbs_extension/lexstate.c +175 -0
  116. data/ext/rbs_extension/location.c +325 -0
  117. data/ext/rbs_extension/location.h +85 -0
  118. data/ext/rbs_extension/main.c +33 -0
  119. data/ext/rbs_extension/parser.c +2973 -0
  120. data/ext/rbs_extension/parser.h +18 -0
  121. data/ext/rbs_extension/parserstate.c +397 -0
  122. data/ext/rbs_extension/parserstate.h +163 -0
  123. data/ext/rbs_extension/rbs_extension.h +31 -0
  124. data/ext/rbs_extension/unescape.c +32 -0
  125. data/goodcheck.yml +91 -0
  126. data/include/rbs/constants.h +82 -0
  127. data/include/rbs/ruby_objs.h +72 -0
  128. data/include/rbs/util/rbs_constant_pool.h +219 -0
  129. data/include/rbs.h +7 -0
  130. data/lib/rbs/ancestor_graph.rb +92 -0
  131. data/lib/rbs/annotate/annotations.rb +199 -0
  132. data/lib/rbs/annotate/formatter.rb +92 -0
  133. data/lib/rbs/annotate/rdoc_annotator.rb +400 -0
  134. data/lib/rbs/annotate/rdoc_source.rb +131 -0
  135. data/lib/rbs/annotate.rb +8 -0
  136. data/lib/rbs/ast/annotation.rb +29 -0
  137. data/lib/rbs/ast/comment.rb +29 -0
  138. data/lib/rbs/ast/declarations.rb +467 -0
  139. data/lib/rbs/ast/directives.rb +49 -0
  140. data/lib/rbs/ast/members.rb +451 -0
  141. data/lib/rbs/ast/type_param.rb +225 -0
  142. data/lib/rbs/ast/visitor.rb +137 -0
  143. data/lib/rbs/buffer.rb +67 -0
  144. data/lib/rbs/builtin_names.rb +58 -0
  145. data/lib/rbs/cli/colored_io.rb +48 -0
  146. data/lib/rbs/cli/diff.rb +83 -0
  147. data/lib/rbs/cli/validate.rb +357 -0
  148. data/lib/rbs/cli.rb +1223 -0
  149. data/lib/rbs/collection/cleaner.rb +38 -0
  150. data/lib/rbs/collection/config/lockfile.rb +92 -0
  151. data/lib/rbs/collection/config/lockfile_generator.rb +218 -0
  152. data/lib/rbs/collection/config.rb +81 -0
  153. data/lib/rbs/collection/installer.rb +32 -0
  154. data/lib/rbs/collection/sources/base.rb +14 -0
  155. data/lib/rbs/collection/sources/git.rb +258 -0
  156. data/lib/rbs/collection/sources/local.rb +81 -0
  157. data/lib/rbs/collection/sources/rubygems.rb +48 -0
  158. data/lib/rbs/collection/sources/stdlib.rb +50 -0
  159. data/lib/rbs/collection/sources.rb +38 -0
  160. data/lib/rbs/collection.rb +16 -0
  161. data/lib/rbs/constant.rb +28 -0
  162. data/lib/rbs/definition.rb +401 -0
  163. data/lib/rbs/definition_builder/ancestor_builder.rb +620 -0
  164. data/lib/rbs/definition_builder/method_builder.rb +254 -0
  165. data/lib/rbs/definition_builder.rb +845 -0
  166. data/lib/rbs/diff.rb +125 -0
  167. data/lib/rbs/environment/use_map.rb +77 -0
  168. data/lib/rbs/environment.rb +829 -0
  169. data/lib/rbs/environment_loader.rb +173 -0
  170. data/lib/rbs/environment_walker.rb +155 -0
  171. data/lib/rbs/errors.rb +645 -0
  172. data/lib/rbs/factory.rb +18 -0
  173. data/lib/rbs/file_finder.rb +28 -0
  174. data/lib/rbs/location_aux.rb +138 -0
  175. data/lib/rbs/locator.rb +243 -0
  176. data/lib/rbs/method_type.rb +143 -0
  177. data/lib/rbs/namespace.rb +125 -0
  178. data/lib/rbs/parser/lex_result.rb +15 -0
  179. data/lib/rbs/parser/token.rb +23 -0
  180. data/lib/rbs/parser_aux.rb +114 -0
  181. data/lib/rbs/prototype/helpers.rb +140 -0
  182. data/lib/rbs/prototype/node_usage.rb +99 -0
  183. data/lib/rbs/prototype/rb.rb +840 -0
  184. data/lib/rbs/prototype/rbi.rb +641 -0
  185. data/lib/rbs/prototype/runtime/helpers.rb +59 -0
  186. data/lib/rbs/prototype/runtime/reflection.rb +19 -0
  187. data/lib/rbs/prototype/runtime/value_object_generator.rb +279 -0
  188. data/lib/rbs/prototype/runtime.rb +667 -0
  189. data/lib/rbs/repository.rb +127 -0
  190. data/lib/rbs/resolver/constant_resolver.rb +219 -0
  191. data/lib/rbs/resolver/type_name_resolver.rb +91 -0
  192. data/lib/rbs/sorter.rb +198 -0
  193. data/lib/rbs/substitution.rb +83 -0
  194. data/lib/rbs/subtractor.rb +201 -0
  195. data/lib/rbs/test/errors.rb +80 -0
  196. data/lib/rbs/test/guaranteed.rb +30 -0
  197. data/lib/rbs/test/hook.rb +212 -0
  198. data/lib/rbs/test/observer.rb +19 -0
  199. data/lib/rbs/test/setup.rb +84 -0
  200. data/lib/rbs/test/setup_helper.rb +50 -0
  201. data/lib/rbs/test/tester.rb +167 -0
  202. data/lib/rbs/test/type_check.rb +435 -0
  203. data/lib/rbs/test.rb +112 -0
  204. data/lib/rbs/type_alias_dependency.rb +100 -0
  205. data/lib/rbs/type_alias_regularity.rb +126 -0
  206. data/lib/rbs/type_name.rb +109 -0
  207. data/lib/rbs/types.rb +1596 -0
  208. data/lib/rbs/unit_test/convertibles.rb +176 -0
  209. data/lib/rbs/unit_test/spy.rb +138 -0
  210. data/lib/rbs/unit_test/type_assertions.rb +347 -0
  211. data/lib/rbs/unit_test/with_aliases.rb +143 -0
  212. data/lib/rbs/unit_test.rb +6 -0
  213. data/lib/rbs/validator.rb +186 -0
  214. data/lib/rbs/variance_calculator.rb +189 -0
  215. data/lib/rbs/vendorer.rb +71 -0
  216. data/lib/rbs/version.rb +5 -0
  217. data/lib/rbs/writer.rb +424 -0
  218. data/lib/rbs.rb +94 -0
  219. data/lib/rdoc/discover.rb +20 -0
  220. data/lib/rdoc_plugin/parser.rb +163 -0
  221. data/rbs-relaxed.gemspec +48 -0
  222. data/schema/annotation.json +14 -0
  223. data/schema/comment.json +26 -0
  224. data/schema/decls.json +326 -0
  225. data/schema/function.json +87 -0
  226. data/schema/location.json +56 -0
  227. data/schema/members.json +266 -0
  228. data/schema/methodType.json +50 -0
  229. data/schema/typeParam.json +36 -0
  230. data/schema/types.json +317 -0
  231. data/sig/ancestor_builder.rbs +163 -0
  232. data/sig/ancestor_graph.rbs +60 -0
  233. data/sig/annotate/annotations.rbs +102 -0
  234. data/sig/annotate/formatter.rbs +24 -0
  235. data/sig/annotate/rdoc_annotater.rbs +82 -0
  236. data/sig/annotate/rdoc_source.rbs +30 -0
  237. data/sig/annotation.rbs +27 -0
  238. data/sig/buffer.rbs +32 -0
  239. data/sig/builtin_names.rbs +44 -0
  240. data/sig/cli/colored_io.rbs +15 -0
  241. data/sig/cli/diff.rbs +21 -0
  242. data/sig/cli/validate.rbs +43 -0
  243. data/sig/cli.rbs +87 -0
  244. data/sig/collection/cleaner.rbs +13 -0
  245. data/sig/collection/config/lockfile.rbs +74 -0
  246. data/sig/collection/config/lockfile_generator.rbs +66 -0
  247. data/sig/collection/config.rbs +46 -0
  248. data/sig/collection/installer.rbs +17 -0
  249. data/sig/collection/sources.rbs +214 -0
  250. data/sig/collection.rbs +4 -0
  251. data/sig/comment.rbs +26 -0
  252. data/sig/constant.rbs +21 -0
  253. data/sig/declarations.rbs +267 -0
  254. data/sig/definition.rbs +173 -0
  255. data/sig/definition_builder.rbs +165 -0
  256. data/sig/diff.rbs +28 -0
  257. data/sig/directives.rbs +77 -0
  258. data/sig/environment.rbs +279 -0
  259. data/sig/environment_loader.rbs +111 -0
  260. data/sig/environment_walker.rbs +65 -0
  261. data/sig/errors.rbs +405 -0
  262. data/sig/factory.rbs +5 -0
  263. data/sig/file_finder.rbs +28 -0
  264. data/sig/location.rbs +110 -0
  265. data/sig/locator.rbs +58 -0
  266. data/sig/manifest.yaml +7 -0
  267. data/sig/members.rbs +258 -0
  268. data/sig/method_builder.rbs +84 -0
  269. data/sig/method_types.rbs +58 -0
  270. data/sig/namespace.rbs +146 -0
  271. data/sig/parser.rbs +100 -0
  272. data/sig/prototype/helpers.rbs +27 -0
  273. data/sig/prototype/node_usage.rbs +20 -0
  274. data/sig/prototype/rb.rbs +96 -0
  275. data/sig/prototype/rbi.rbs +75 -0
  276. data/sig/prototype/runtime.rbs +182 -0
  277. data/sig/rbs.rbs +21 -0
  278. data/sig/rdoc/rbs.rbs +67 -0
  279. data/sig/repository.rbs +85 -0
  280. data/sig/resolver/constant_resolver.rbs +92 -0
  281. data/sig/resolver/context.rbs +34 -0
  282. data/sig/resolver/type_name_resolver.rbs +35 -0
  283. data/sig/shims/bundler.rbs +38 -0
  284. data/sig/shims/enumerable.rbs +5 -0
  285. data/sig/shims/rubygems.rbs +19 -0
  286. data/sig/sorter.rbs +41 -0
  287. data/sig/substitution.rbs +48 -0
  288. data/sig/subtractor.rbs +37 -0
  289. data/sig/test/errors.rbs +52 -0
  290. data/sig/test/guranteed.rbs +9 -0
  291. data/sig/test/type_check.rbs +19 -0
  292. data/sig/test.rbs +82 -0
  293. data/sig/type_alias_dependency.rbs +53 -0
  294. data/sig/type_alias_regularity.rbs +98 -0
  295. data/sig/type_param.rbs +110 -0
  296. data/sig/typename.rbs +79 -0
  297. data/sig/types.rbs +579 -0
  298. data/sig/unit_test/convertibles.rbs +154 -0
  299. data/sig/unit_test/spy.rbs +30 -0
  300. data/sig/unit_test/type_assertions.rbs +196 -0
  301. data/sig/unit_test/with_aliases.rbs +136 -0
  302. data/sig/use_map.rbs +35 -0
  303. data/sig/util.rbs +9 -0
  304. data/sig/validator.rbs +63 -0
  305. data/sig/variance_calculator.rbs +87 -0
  306. data/sig/vendorer.rbs +51 -0
  307. data/sig/version.rbs +3 -0
  308. data/sig/visitor.rbs +47 -0
  309. data/sig/writer.rbs +127 -0
  310. data/src/constants.c +153 -0
  311. data/src/ruby_objs.c +795 -0
  312. data/src/util/rbs_constant_pool.c +342 -0
  313. data/stdlib/abbrev/0/abbrev.rbs +66 -0
  314. data/stdlib/abbrev/0/array.rbs +26 -0
  315. data/stdlib/base64/0/base64.rbs +355 -0
  316. data/stdlib/benchmark/0/benchmark.rbs +452 -0
  317. data/stdlib/bigdecimal/0/big_decimal.rbs +1629 -0
  318. data/stdlib/bigdecimal-math/0/big_math.rbs +119 -0
  319. data/stdlib/bigdecimal-math/0/manifest.yaml +2 -0
  320. data/stdlib/cgi/0/core.rbs +1285 -0
  321. data/stdlib/cgi/0/manifest.yaml +3 -0
  322. data/stdlib/coverage/0/coverage.rbs +263 -0
  323. data/stdlib/csv/0/csv.rbs +3776 -0
  324. data/stdlib/csv/0/manifest.yaml +3 -0
  325. data/stdlib/date/0/date.rbs +1585 -0
  326. data/stdlib/date/0/date_time.rbs +616 -0
  327. data/stdlib/date/0/time.rbs +26 -0
  328. data/stdlib/dbm/0/dbm.rbs +421 -0
  329. data/stdlib/delegate/0/delegator.rbs +184 -0
  330. data/stdlib/delegate/0/kernel.rbs +47 -0
  331. data/stdlib/delegate/0/simple_delegator.rbs +96 -0
  332. data/stdlib/did_you_mean/0/did_you_mean.rbs +343 -0
  333. data/stdlib/digest/0/digest.rbs +577 -0
  334. data/stdlib/erb/0/erb.rbs +532 -0
  335. data/stdlib/etc/0/etc.rbs +865 -0
  336. data/stdlib/fileutils/0/fileutils.rbs +1734 -0
  337. data/stdlib/find/0/find.rbs +49 -0
  338. data/stdlib/forwardable/0/forwardable.rbs +268 -0
  339. data/stdlib/io-console/0/io-console.rbs +414 -0
  340. data/stdlib/ipaddr/0/ipaddr.rbs +428 -0
  341. data/stdlib/json/0/json.rbs +1916 -0
  342. data/stdlib/kconv/0/kconv.rbs +166 -0
  343. data/stdlib/logger/0/formatter.rbs +45 -0
  344. data/stdlib/logger/0/log_device.rbs +100 -0
  345. data/stdlib/logger/0/logger.rbs +796 -0
  346. data/stdlib/logger/0/manifest.yaml +2 -0
  347. data/stdlib/logger/0/period.rbs +17 -0
  348. data/stdlib/logger/0/severity.rbs +34 -0
  349. data/stdlib/minitest/0/kernel.rbs +42 -0
  350. data/stdlib/minitest/0/minitest/abstract_reporter.rbs +52 -0
  351. data/stdlib/minitest/0/minitest/assertion.rbs +17 -0
  352. data/stdlib/minitest/0/minitest/assertions.rbs +590 -0
  353. data/stdlib/minitest/0/minitest/backtrace_filter.rbs +23 -0
  354. data/stdlib/minitest/0/minitest/bench_spec.rbs +102 -0
  355. data/stdlib/minitest/0/minitest/benchmark.rbs +259 -0
  356. data/stdlib/minitest/0/minitest/composite_reporter.rbs +25 -0
  357. data/stdlib/minitest/0/minitest/compress.rbs +13 -0
  358. data/stdlib/minitest/0/minitest/error_on_warning.rbs +3 -0
  359. data/stdlib/minitest/0/minitest/expectation.rbs +2 -0
  360. data/stdlib/minitest/0/minitest/expectations.rbs +21 -0
  361. data/stdlib/minitest/0/minitest/guard.rbs +64 -0
  362. data/stdlib/minitest/0/minitest/mock.rbs +64 -0
  363. data/stdlib/minitest/0/minitest/parallel/executor.rbs +46 -0
  364. data/stdlib/minitest/0/minitest/parallel/test/class_methods.rbs +5 -0
  365. data/stdlib/minitest/0/minitest/parallel/test.rbs +3 -0
  366. data/stdlib/minitest/0/minitest/parallel.rbs +2 -0
  367. data/stdlib/minitest/0/minitest/pride_io.rbs +62 -0
  368. data/stdlib/minitest/0/minitest/pride_lol.rbs +19 -0
  369. data/stdlib/minitest/0/minitest/progress_reporter.rbs +11 -0
  370. data/stdlib/minitest/0/minitest/reportable.rbs +53 -0
  371. data/stdlib/minitest/0/minitest/reporter.rbs +5 -0
  372. data/stdlib/minitest/0/minitest/result.rbs +28 -0
  373. data/stdlib/minitest/0/minitest/runnable.rbs +163 -0
  374. data/stdlib/minitest/0/minitest/skip.rbs +6 -0
  375. data/stdlib/minitest/0/minitest/spec/dsl/instance_methods.rbs +48 -0
  376. data/stdlib/minitest/0/minitest/spec/dsl.rbs +129 -0
  377. data/stdlib/minitest/0/minitest/spec.rbs +11 -0
  378. data/stdlib/minitest/0/minitest/statistics_reporter.rbs +81 -0
  379. data/stdlib/minitest/0/minitest/summary_reporter.rbs +18 -0
  380. data/stdlib/minitest/0/minitest/test/lifecycle_hooks.rbs +92 -0
  381. data/stdlib/minitest/0/minitest/test.rbs +69 -0
  382. data/stdlib/minitest/0/minitest/unexpected_error.rbs +12 -0
  383. data/stdlib/minitest/0/minitest/unexpected_warning.rbs +6 -0
  384. data/stdlib/minitest/0/minitest/unit/test_case.rbs +3 -0
  385. data/stdlib/minitest/0/minitest/unit.rbs +4 -0
  386. data/stdlib/minitest/0/minitest.rbs +115 -0
  387. data/stdlib/monitor/0/monitor.rbs +363 -0
  388. data/stdlib/mutex_m/0/mutex_m.rbs +104 -0
  389. data/stdlib/net-http/0/manifest.yaml +3 -0
  390. data/stdlib/net-http/0/net-http.rbs +5552 -0
  391. data/stdlib/net-protocol/0/manifest.yaml +2 -0
  392. data/stdlib/net-protocol/0/net-protocol.rbs +56 -0
  393. data/stdlib/net-smtp/0/manifest.yaml +2 -0
  394. data/stdlib/net-smtp/0/net-smtp.rbs +55 -0
  395. data/stdlib/nkf/0/nkf.rbs +402 -0
  396. data/stdlib/objspace/0/objspace.rbs +487 -0
  397. data/stdlib/observable/0/observable.rbs +217 -0
  398. data/stdlib/open-uri/0/manifest.yaml +4 -0
  399. data/stdlib/open-uri/0/open-uri.rbs +393 -0
  400. data/stdlib/open3/0/open3.rbs +147 -0
  401. data/stdlib/openssl/0/manifest.yaml +3 -0
  402. data/stdlib/openssl/0/openssl.rbs +12113 -0
  403. data/stdlib/optparse/0/optparse.rbs +1725 -0
  404. data/stdlib/pathname/0/pathname.rbs +1406 -0
  405. data/stdlib/pp/0/manifest.yaml +2 -0
  406. data/stdlib/pp/0/pp.rbs +300 -0
  407. data/stdlib/prettyprint/0/prettyprint.rbs +383 -0
  408. data/stdlib/pstore/0/pstore.rbs +603 -0
  409. data/stdlib/psych/0/core_ext.rbs +12 -0
  410. data/stdlib/psych/0/dbm.rbs +237 -0
  411. data/stdlib/psych/0/manifest.yaml +3 -0
  412. data/stdlib/psych/0/psych.rbs +402 -0
  413. data/stdlib/psych/0/store.rbs +59 -0
  414. data/stdlib/pty/0/pty.rbs +237 -0
  415. data/stdlib/rdoc/0/code_object.rbs +51 -0
  416. data/stdlib/rdoc/0/comment.rbs +59 -0
  417. data/stdlib/rdoc/0/context.rbs +153 -0
  418. data/stdlib/rdoc/0/markup.rbs +117 -0
  419. data/stdlib/rdoc/0/parser.rbs +56 -0
  420. data/stdlib/rdoc/0/rdoc.rbs +391 -0
  421. data/stdlib/rdoc/0/ri.rbs +17 -0
  422. data/stdlib/rdoc/0/store.rbs +48 -0
  423. data/stdlib/rdoc/0/top_level.rbs +97 -0
  424. data/stdlib/resolv/0/manifest.yaml +3 -0
  425. data/stdlib/resolv/0/resolv.rbs +1830 -0
  426. data/stdlib/ripper/0/ripper.rbs +1648 -0
  427. data/stdlib/securerandom/0/securerandom.rbs +62 -0
  428. data/stdlib/shellwords/0/shellwords.rbs +229 -0
  429. data/stdlib/singleton/0/singleton.rbs +131 -0
  430. data/stdlib/socket/0/addrinfo.rbs +666 -0
  431. data/stdlib/socket/0/basic_socket.rbs +590 -0
  432. data/stdlib/socket/0/constants.rbs +2295 -0
  433. data/stdlib/socket/0/ip_socket.rbs +92 -0
  434. data/stdlib/socket/0/socket.rbs +4157 -0
  435. data/stdlib/socket/0/socket_error.rbs +5 -0
  436. data/stdlib/socket/0/tcp_server.rbs +192 -0
  437. data/stdlib/socket/0/tcp_socket.rbs +79 -0
  438. data/stdlib/socket/0/udp_socket.rbs +133 -0
  439. data/stdlib/socket/0/unix_server.rbs +169 -0
  440. data/stdlib/socket/0/unix_socket.rbs +172 -0
  441. data/stdlib/stringio/0/stringio.rbs +567 -0
  442. data/stdlib/strscan/0/string_scanner.rbs +1627 -0
  443. data/stdlib/tempfile/0/tempfile.rbs +479 -0
  444. data/stdlib/time/0/time.rbs +432 -0
  445. data/stdlib/timeout/0/timeout.rbs +81 -0
  446. data/stdlib/tmpdir/0/tmpdir.rbs +69 -0
  447. data/stdlib/tsort/0/cyclic.rbs +5 -0
  448. data/stdlib/tsort/0/interfaces.rbs +20 -0
  449. data/stdlib/tsort/0/tsort.rbs +409 -0
  450. data/stdlib/uri/0/common.rbs +582 -0
  451. data/stdlib/uri/0/file.rbs +118 -0
  452. data/stdlib/uri/0/ftp.rbs +13 -0
  453. data/stdlib/uri/0/generic.rbs +1108 -0
  454. data/stdlib/uri/0/http.rbs +104 -0
  455. data/stdlib/uri/0/https.rbs +14 -0
  456. data/stdlib/uri/0/ldap.rbs +230 -0
  457. data/stdlib/uri/0/ldaps.rbs +14 -0
  458. data/stdlib/uri/0/mailto.rbs +92 -0
  459. data/stdlib/uri/0/rfc2396_parser.rbs +189 -0
  460. data/stdlib/uri/0/rfc3986_parser.rbs +2 -0
  461. data/stdlib/uri/0/ws.rbs +13 -0
  462. data/stdlib/uri/0/wss.rbs +9 -0
  463. data/stdlib/yaml/0/manifest.yaml +2 -0
  464. data/stdlib/yaml/0/yaml.rbs +1 -0
  465. data/stdlib/zlib/0/buf_error.rbs +10 -0
  466. data/stdlib/zlib/0/data_error.rbs +10 -0
  467. data/stdlib/zlib/0/deflate.rbs +210 -0
  468. data/stdlib/zlib/0/error.rbs +20 -0
  469. data/stdlib/zlib/0/gzip_file/crc_error.rbs +12 -0
  470. data/stdlib/zlib/0/gzip_file/error.rbs +23 -0
  471. data/stdlib/zlib/0/gzip_file/length_error.rbs +12 -0
  472. data/stdlib/zlib/0/gzip_file/no_footer.rbs +11 -0
  473. data/stdlib/zlib/0/gzip_file.rbs +156 -0
  474. data/stdlib/zlib/0/gzip_reader.rbs +293 -0
  475. data/stdlib/zlib/0/gzip_writer.rbs +166 -0
  476. data/stdlib/zlib/0/inflate.rbs +180 -0
  477. data/stdlib/zlib/0/mem_error.rbs +10 -0
  478. data/stdlib/zlib/0/need_dict.rbs +13 -0
  479. data/stdlib/zlib/0/stream_end.rbs +11 -0
  480. data/stdlib/zlib/0/stream_error.rbs +11 -0
  481. data/stdlib/zlib/0/version_error.rbs +11 -0
  482. data/stdlib/zlib/0/zlib.rbs +449 -0
  483. data/stdlib/zlib/0/zstream.rbs +200 -0
  484. metadata +532 -0
data/CHANGELOG.md ADDED
@@ -0,0 +1,1868 @@
1
+ # CHANGELOG
2
+
3
+ ## 3.8.1 (2024-12-27)
4
+
5
+ ### Signature updates
6
+
7
+ * `Ractor.store_if_absent` ([#2206](https://github.com/ruby/rbs/pull/2206))
8
+ * `Time#iso860t1` ([#2207](https://github.com/ruby/rbs/pull/2207))
9
+ * `Time#xmlschema` ([#2207](https://github.com/ruby/rbs/pull/2207))
10
+
11
+ ### Miscellaneous
12
+
13
+ * Update rubocop-on-rbs ([#2200](https://github.com/ruby/rbs/pull/2200))
14
+ * Update docs based on Ruby 3.4.1 ([#2208](https://github.com/ruby/rbs/pull/2208))
15
+ * Ruby 3.4.1 ([#2206](https://github.com/ruby/rbs/pull/2206))
16
+
17
+ ## 3.8.0 (2024-12-24)
18
+
19
+ ### Signature updates
20
+
21
+ * `Dir.mktmpdir` ([#2158](https://github.com/ruby/rbs/pull/2158))
22
+ * `File.join` ([#2158](https://github.com/ruby/rbs/pull/2158))
23
+ * `IO#each_line` ([#2151](https://github.com/ruby/rbs/pull/2151))
24
+ * `Kernel#readlines` ([#2151](https://github.com/ruby/rbs/pull/2151))
25
+ * `Ractor.store_if_absent` ([#2198](https://github.com/ruby/rbs/pull/2198))
26
+ * Update docs as of 2024-12-24, 16:13 JST ([#2193](https://github.com/ruby/rbs/pull/2193))
27
+
28
+ ### Library changes
29
+
30
+ * Adjust capacity of location children ([#2197](https://github.com/ruby/rbs/pull/2197))
31
+ * Should validate self-type on Proc ([#2192](https://github.com/ruby/rbs/pull/2192))
32
+
33
+ ## 3.8.0.pre.1 (2024-12-19)
34
+
35
+ ### Signature updates
36
+
37
+ * `RubyVM::AbstractSyntaxTree::Location` ([#2189](https://github.com/ruby/rbs/pull/2189))
38
+ * `_JsonWrite#flush` ([#2134](https://github.com/ruby/rbs/pull/2134))
39
+ * `Array#fetch_values` ([#2189](https://github.com/ruby/rbs/pull/2189))
40
+ * `Array#to_csv` ([#2099](https://github.com/ruby/rbs/pull/2099))
41
+ * `Exception#set_backtrace` ([#2189](https://github.com/ruby/rbs/pull/2189))
42
+ * `Fiber#raise` ([#2189](https://github.com/ruby/rbs/pull/2189))
43
+ * `GC.config` ([#2189](https://github.com/ruby/rbs/pull/2189))
44
+ * `Hash.new` ([#2189](https://github.com/ruby/rbs/pull/2189))
45
+ * `Kernel#raise` ([#2189](https://github.com/ruby/rbs/pull/2189))
46
+ * `MatchData#bytebegin` ([#2189](https://github.com/ruby/rbs/pull/2189))
47
+ * `MatchData#byteend` ([#2189](https://github.com/ruby/rbs/pull/2189))
48
+ * `Pathname#mkpath` ([#2048](https://github.com/ruby/rbs/pull/2048))
49
+ * `Pathname#rmtree` ([#2048](https://github.com/ruby/rbs/pull/2048))
50
+ * `Ractor._require` ([#2189](https://github.com/ruby/rbs/pull/2189))
51
+ * `Ractor.[]` ([#2189](https://github.com/ruby/rbs/pull/2189))
52
+ * `Ractor.[]=` ([#2189](https://github.com/ruby/rbs/pull/2189))
53
+ * `Ractor.main?` ([#2189](https://github.com/ruby/rbs/pull/2189))
54
+ * `Range#step` ([#1958](https://github.com/ruby/rbs/pull/1958))
55
+ * `RubyVM::AbstractSyntaxTree::Node#locations` ([#2189](https://github.com/ruby/rbs/pull/2189))
56
+ * `String#append_as_bytes` ([#2189](https://github.com/ruby/rbs/pull/2189))
57
+ * `String#parse_csv` ([#2099](https://github.com/ruby/rbs/pull/2099))
58
+ * `String#scan` ([#2146](https://github.com/ruby/rbs/pull/2146))
59
+ * `Tempfile.create` ([#2189](https://github.com/ruby/rbs/pull/2189))
60
+ * `Thread#raise` ([#2189](https://github.com/ruby/rbs/pull/2189))
61
+ * `Time#iso8601` ([#2189](https://github.com/ruby/rbs/pull/2189))
62
+ * `Time#xmlschema` ([#2189](https://github.com/ruby/rbs/pull/2189))
63
+ * `Warning.categories` ([#2189](https://github.com/ruby/rbs/pull/2189))
64
+ * `ZStream#finish` ([#2136](https://github.com/ruby/rbs/pull/2136))
65
+ * Generate docs based on ruby 3.4.0-rc1 ([#2183](https://github.com/ruby/rbs/pull/2183))
66
+
67
+ ### Library changes
68
+
69
+ * Deprecate `Kernel#Namespace` ([#2123](https://github.com/ruby/rbs/pull/2123))
70
+ * Fix `missing braces around initializer` warning ([#2180](https://github.com/ruby/rbs/pull/2180))
71
+ * Avoid double name resolution ([#2127](https://github.com/ruby/rbs/pull/2127))
72
+ * Remove forward declarations of local variables ([#2132](https://github.com/ruby/rbs/pull/2132))
73
+ * Designated initializers ([#2131](https://github.com/ruby/rbs/pull/2131))
74
+
75
+ ### Miscellaneous
76
+
77
+ * Update docs with rdoc-6.10.0 ([#2182](https://github.com/ruby/rbs/pull/2182))
78
+ * Update rdoc ([#2160](https://github.com/ruby/rbs/pull/2160))
79
+ * Prepare for ruby 3.4.0 ([#2181](https://github.com/ruby/rbs/pull/2181))
80
+ * Fix typo in `instance` usage example ([#2139](https://github.com/ruby/rbs/pull/2139))
81
+ * Indent `parser_test` code snippets properly ([#2137](https://github.com/ruby/rbs/pull/2137))
82
+ * Bump rbs and steep in /steep ([#2129](https://github.com/ruby/rbs/pull/2129))
83
+ * Un-hardcode repo name in test suite ([#2128](https://github.com/ruby/rbs/pull/2128))
84
+
85
+ ## 3.7.0 (2024-12-05)
86
+
87
+ ### Miscellaneous
88
+
89
+ * bundle update mutex_m ([#2122](https://github.com/ruby/rbs/pull/2122))
90
+
91
+ ## 3.7.0.pre.1 (2024-12-05)
92
+
93
+ ### Signature updates
94
+
95
+ * `CGI.accept_charset` ([#2045](https://github.com/ruby/rbs/pull/2045))
96
+ * `IO#readline`, `IO#readlines` ([#2059](https://github.com/ruby/rbs/pull/2059))
97
+ * `Kernel#proc` ([#2036](https://github.com/ruby/rbs/pull/2036))
98
+ * `Kernel#system` ([#2075](https://github.com/ruby/rbs/pull/2075))
99
+ * `Object#to_yaml` ([#2107](https://github.com/ruby/rbs/pull/2107))
100
+ * `OpenSSL::Digest` ([#2108](https://github.com/ruby/rbs/pull/2108))
101
+ * `OpenSSL.base64digest` ([#2078](https://github.com/ruby/rbs/pull/2078))
102
+ * `Process.detach` ([#2083](https://github.com/ruby/rbs/pull/2083))
103
+
104
+ ### Library changes
105
+
106
+ * Reduce object allocation for record type ([#2118](https://github.com/ruby/rbs/pull/2118))
107
+ * Milestone to graduate stringio from core. ([#2114](https://github.com/ruby/rbs/pull/2114))
108
+ * Mark all internal `parse_` methods as `static` ([#2103](https://github.com/ruby/rbs/pull/2103))
109
+ * Add templating mechanism to automatically generate `.c`/`.h` files ([#2098](https://github.com/ruby/rbs/pull/2098))
110
+ * Remove unused `rbs_unescape_string` declaration ([#2058](https://github.com/ruby/rbs/pull/2058))
111
+ * Fix UntypedFunction does not provide #map_type_name ([#2054](https://github.com/ruby/rbs/pull/2054))
112
+ * Better `instance_eval`/`instance_exec` detection ([#2052](https://github.com/ruby/rbs/pull/2052))
113
+ * Overload annotations ([#2049](https://github.com/ruby/rbs/pull/2049))
114
+
115
+ #### rbs prototype
116
+
117
+ * prototype rb: Fix crashed by self::CONST ([#2079](https://github.com/ruby/rbs/pull/2079))
118
+
119
+ #### rbs collection
120
+
121
+ * mutex_m support ([#2115](https://github.com/ruby/rbs/pull/2115))
122
+
123
+ ### Miscellaneous
124
+
125
+ * Use `File.open` with block ([#2119](https://github.com/ruby/rbs/pull/2119))
126
+ * Compile without activesupport ([#2105](https://github.com/ruby/rbs/pull/2105))
127
+ * docs: Add singleton attribute members to syntax.md ([#2090](https://github.com/ruby/rbs/pull/2090))
128
+ * Bundle update rubocop-on-rbs ([#2094](https://github.com/ruby/rbs/pull/2094))
129
+ * `bundle exec` on windows ([#2101](https://github.com/ruby/rbs/pull/2101))
130
+ * Fix typos ([#2097](https://github.com/ruby/rbs/pull/2097))
131
+ * Bundle update json 2.8.2 ([#2095](https://github.com/ruby/rbs/pull/2095))
132
+ * Skip `rbs` gem validation ([#2084](https://github.com/ruby/rbs/pull/2084))
133
+ * Skip PTY_test with Windows platform ([#2055](https://github.com/ruby/rbs/pull/2055))
134
+ * Randomize stdlib test order to uncover hidden assumptions ([#2043](https://github.com/ruby/rbs/pull/2043))
135
+ * Suppress `inline` is not at beginning of declaration for melt_array ([#2050](https://github.com/ruby/rbs/pull/2050))
136
+ * Skip `mkpath` test with 3.4 ([#2053](https://github.com/ruby/rbs/pull/2053))
137
+
138
+ ## 3.6.1 (2024-10-03)
139
+
140
+ ### Library changes
141
+
142
+ * Mark as ractor-safe ([#2041](https://github.com/ruby/rbs/pull/2041))
143
+
144
+ ### Miscellaneous
145
+
146
+ * Omit IOConsoleTest with Windows platform ([#2044](https://github.com/ruby/rbs/pull/2044))
147
+ * Recover `$stdout` after test ([#2042](https://github.com/ruby/rbs/pull/2042))
148
+
149
+ ## 3.6.0 (2024-09-30)
150
+
151
+ Nothing changed since `3.6.0.pre.3`.
152
+
153
+ ## 3.6.0.pre.3 (2024-09-30)
154
+
155
+ ### Signature updates
156
+
157
+ * `JSON.load_file`, `.load_file!` ([#2031](https://github.com/ruby/rbs/pull/2031))
158
+ * `Module#class_eval`, `Module#module_eval` ([#2029](https://github.com/ruby/rbs/pull/2029))
159
+ * `Open3` ([#2014](https://github.com/ruby/rbs/pull/2014))
160
+ * `RubyVM::InstructionSequence` ([#2027](https://github.com/ruby/rbs/pull/2027))
161
+ * Fixup RBS type definitions with rbs-on-rubocop ([#2023](https://github.com/ruby/rbs/pull/2023))
162
+ * Avoid using `instance`/`class` types in modules ([#2020](https://github.com/ruby/rbs/pull/2020))
163
+
164
+ ### Language updates
165
+
166
+ * Optional type param restriction ([#2030](https://github.com/ruby/rbs/pull/2030))
167
+ * Prohibit `self` type as a generics default ([#2022](https://github.com/ruby/rbs/pull/2022))
168
+ * Allow `self` types in generics default type ([#2021](https://github.com/ruby/rbs/pull/2021))
169
+
170
+ ### Library changes
171
+
172
+ * Add `TypeParamDefaultReferenceError#type_param` ([#2032](https://github.com/ruby/rbs/pull/2032))
173
+
174
+ ## 3.6.0.pre.2 (2024-09-18)
175
+
176
+ ### Signature updates
177
+
178
+ * `Kernel#class` ([#2017](https://github.com/ruby/rbs/pull/2017))
179
+ * `TracePoint#enable` ([#2015](https://github.com/ruby/rbs/pull/2015))
180
+
181
+ ### Miscellaneous
182
+
183
+ * Fix type definition and type errors ([#2016](https://github.com/ruby/rbs/pull/2016))
184
+
185
+ ## 3.6.0.pre.1 (2024-09-17)
186
+
187
+ ### Signature updates
188
+
189
+ * csv ([#2012](https://github.com/ruby/rbs/pull/2012), [#1864](https://github.com/ruby/rbs/pull/1864), [#2002](https://github.com/ruby/rbs/pull/2002), [#2003](https://github.com/ruby/rbs/pull/2003), [#1903](https://github.com/ruby/rbs/pull/1903))
190
+ * digest ([#1880](https://github.com/ruby/rbs/pull/1880))
191
+ * kconv ([#1857](https://github.com/ruby/rbs/pull/1857))
192
+ * zlib ([#1911](https://github.com/ruby/rbs/pull/1911))
193
+ * `_Each` ([#2006](https://github.com/ruby/rbs/pull/2006))
194
+ * `Array` ([#1921](https://github.com/ruby/rbs/pull/1921))
195
+ * `Enumerable` ([#1921](https://github.com/ruby/rbs/pull/1921))
196
+ * `Enumerator::_Each` ([#2006](https://github.com/ruby/rbs/pull/2006), [#1915](https://github.com/ruby/rbs/pull/1915))
197
+ * `Enumerator` ([#2004](https://github.com/ruby/rbs/pull/2004))
198
+ * `Kernel` ([#1945](https://github.com/ruby/rbs/pull/1945))
199
+ * `Method` ([#1939](https://github.com/ruby/rbs/pull/1939))
200
+ * `Module` ([#1921](https://github.com/ruby/rbs/pull/1921))
201
+ * `Net::HTTPHeader` ([#1932](https://github.com/ruby/rbs/pull/1932))
202
+ * `Proc` ([#1937](https://github.com/ruby/rbs/pull/1937))
203
+ * `Queue` ([#2004](https://github.com/ruby/rbs/pull/2004))
204
+ * `Range` ([#1921](https://github.com/ruby/rbs/pull/1921))
205
+ * `Refinement` ([#1931](https://github.com/ruby/rbs/pull/1931))
206
+ * `Symbol` ([#1930](https://github.com/ruby/rbs/pull/1930))
207
+ * `TracePoint` ([#1943](https://github.com/ruby/rbs/pull/1943))
208
+ * `#rand` ([#2007](https://github.com/ruby/rbs/pull/2007))
209
+ * Use untyped blocks ([#1935](https://github.com/ruby/rbs/pull/1935))
210
+ * Update docs for ruby-3.3.4 ([#1923](https://github.com/ruby/rbs/pull/1923))
211
+ * Update docs for ruby-3.3.3 ([#1889](https://github.com/ruby/rbs/pull/1889))
212
+
213
+ ### Language updates
214
+
215
+ * Fix position for default_type ([#1997](https://github.com/ruby/rbs/pull/1997))
216
+ * Update `syntax.md` ([#1995](https://github.com/ruby/rbs/pull/1995))
217
+ * Improve generics ([#1994](https://github.com/ruby/rbs/pull/1994))
218
+ * Allow alias to module-self-type from module ([#1948](https://github.com/ruby/rbs/pull/1948))
219
+ * Make it a syntax error when the keys of keyword and record are duplicated. ([#1883](https://github.com/ruby/rbs/pull/1883))
220
+
221
+ ### Library changes
222
+
223
+ * Omit unnecessary field from location range ([#1788](https://github.com/ruby/rbs/pull/1788))
224
+ * Handle ISEQs compiled by Prism ([#1983](https://github.com/ruby/rbs/pull/1983))
225
+ * Add AST Visitor ([#1975](https://github.com/ruby/rbs/pull/1975))
226
+ * Make the extension `GC.auto_compact` compatible ([#1971](https://github.com/ruby/rbs/pull/1971))
227
+ * Make `FileFinder` faster by globbing all possible files ([#1965](https://github.com/ruby/rbs/pull/1965))
228
+ * Fix #1905: Fix typo in `UntypedFunction` ([#1906](https://github.com/ruby/rbs/pull/1906))
229
+
230
+ #### rbs prototype
231
+
232
+ * [prototype] Remove redundant access modifier ([#1914](https://github.com/ruby/rbs/pull/1914))
233
+
234
+ ### Miscellaneous
235
+
236
+ * Allow RBS/Style/InitializeReturnType ([#2008](https://github.com/ruby/rbs/pull/2008))
237
+ * docs: An interface can include interfaces only and not modules ([#1996](https://github.com/ruby/rbs/pull/1996))
238
+ * Fix the portability of an external command ([#2001](https://github.com/ruby/rbs/pull/2001))
239
+ * Skip `AbstractSyntaxTree` test with ruby-3.4 ([#2005](https://github.com/ruby/rbs/pull/2005))
240
+ * Fix test ([#1972](https://github.com/ruby/rbs/pull/1972))
241
+ * Use `File.open` instead of `IO.sysopen` ([#1912](https://github.com/ruby/rbs/pull/1912))
242
+
243
+ ## 3.5.3 (2024-08-23)
244
+
245
+ ### Library changes
246
+
247
+ * Backport GC fix PR ([#1977](https://github.com/ruby/rbs/pull/1977))
248
+
249
+ ## 3.5.2 (2024-07-10)
250
+
251
+ ### Library changes
252
+
253
+ * Update docs for ruby-3.3.4 ([#1923](https://github.com/ruby/rbs/pull/1923), Backported in [#1925](https://github.com/ruby/rbs/pull/1925))
254
+ * Update docs for ruby-3.3.3 ([#1889](https://github.com/ruby/rbs/pull/1889), Backported in [#1925](https://github.com/ruby/rbs/pull/1925))
255
+ * Fix #1905: Fix typo in `UntypedFunction` ([#1906](https://github.com/ruby/rbs/pull/1906), Backported in [#1925](https://github.com/ruby/rbs/pull/1925))
256
+
257
+ ### Miscellaneous
258
+
259
+ * Use `File.open` instead of `IO.sysopen` ([#1913](https://github.com/ruby/rbs/pull/1913))
260
+
261
+ ## 3.5.1 (2024-06-07)
262
+
263
+ ### Library changes
264
+
265
+ * Add explicit dependency on the `logger` gem ([#1865](https://github.com/ruby/rbs/pull/1865))
266
+ * Make c99, c23 compatible ([#1870](https://github.com/ruby/rbs/pull/1870))
267
+
268
+ ### Miscellaneous
269
+
270
+ * Don't try to sign git commits when running tests ([#1867](https://github.com/ruby/rbs/pull/1867))
271
+
272
+ ## 3.5.0 (2024-06-06)
273
+
274
+ ### Signature updates
275
+
276
+ * `net-http` headers ([#1750](https://github.com/ruby/rbs/pull/1750))
277
+ * `CSV.foreach` ([#1738](https://github.com/ruby/rbs/pull/1738))
278
+ * `Enumerator#initialize` ([#1801](https://github.com/ruby/rbs/pull/1801))
279
+ * `Float#divmod`, `Rational#divmod` ([#1868](https://github.com/ruby/rbs/pull/1868))
280
+ * `GC` ([#1530](https://github.com/ruby/rbs/pull/1530))
281
+ * `Integer#pow` ([#1706](https://github.com/ruby/rbs/pull/1706))
282
+ * `Kernel.rand` ([#1783](https://github.com/ruby/rbs/pull/1783))
283
+ * `Kernel#extend` ([#1769](https://github.com/ruby/rbs/pull/1769))
284
+ * `Module#include`, `Module#prepend` ([#1769](https://github.com/ruby/rbs/pull/1769))
285
+ * `Proc#parameters` ([#1819](https://github.com/ruby/rbs/pull/1819))
286
+ * `Range#step` ([#1709](https://github.com/ruby/rbs/pull/1709))
287
+ * `Regexp.union` ([#1809](https://github.com/ruby/rbs/pull/1809))
288
+ * `RubyVM::YJIT.enable` ([#1812](https://github.com/ruby/rbs/pull/1812))
289
+ * `RubyVM::YJIT`, `RubyVM::RJIT` ([#1746](https://github.com/ruby/rbs/pull/1746))
290
+ * `String#bytesplice` ([#1793](https://github.com/ruby/rbs/pull/1793))
291
+ * `String#gsub!` ([#1768](https://github.com/ruby/rbs/pull/1768))
292
+ * `Symbol#=~` ([#1704](https://github.com/ruby/rbs/pull/1704))
293
+ * `Time#initialize` ([#1771](https://github.com/ruby/rbs/pull/1771))
294
+ * `Time#zone` ([#1770](https://github.com/ruby/rbs/pull/1770))
295
+ * `Timeout::ExitException` ([#1803](https://github.com/ruby/rbs/pull/1803))
296
+ * `URI::MailTo` ([#1858](https://github.com/ruby/rbs/pull/1858))
297
+ * Update docs ([#1811](https://github.com/ruby/rbs/pull/1811), [#1699](https://github.com/ruby/rbs/pull/1699))
298
+
299
+ ### Language updates
300
+
301
+ * Fix proc type syntax ([#1807](https://github.com/ruby/rbs/pull/1807))
302
+ * Function types with untyped parameter ([#1806](https://github.com/ruby/rbs/pull/1806))
303
+ * Fix record type ([#1732](https://github.com/ruby/rbs/pull/1732))
304
+ * parser: enable record types with optional fields ([#1717](https://github.com/ruby/rbs/pull/1717))
305
+
306
+ ### Library changes
307
+
308
+ * Drop dependency on `abbrev` ([#1866](https://github.com/ruby/rbs/pull/1866))
309
+ * Fix source display ([#1832](https://github.com/ruby/rbs/pull/1832))
310
+ * Include trivia tokens to lex result ([#1831](https://github.com/ruby/rbs/pull/1831))
311
+ * Implement token list API ([#1829](https://github.com/ruby/rbs/pull/1829))
312
+ * Fix memory leak when ParsingError ([#1830](https://github.com/ruby/rbs/pull/1830))
313
+ * [rbs diff] Fix error when empty manifest.yaml ([#1762](https://github.com/ruby/rbs/pull/1762))
314
+ * Remove deprecated API since RBS v1 ([#1805](https://github.com/ruby/rbs/pull/1805))
315
+ * Use array instead of linked list for rbs location's child ([#1786](https://github.com/ruby/rbs/pull/1786))
316
+ * Fix SEGV with parse negative position ([#1790](https://github.com/ruby/rbs/pull/1790))
317
+ * Add location for attribute ([#1787](https://github.com/ruby/rbs/pull/1787))
318
+ * Always be private ([#1774](https://github.com/ruby/rbs/pull/1774))
319
+ * Prevent resource leak with type/method-type parser when reaching EOF. ([#1742](https://github.com/ruby/rbs/pull/1742))
320
+ * Allow loading RBS from different version of a gem ([#1731](https://github.com/ruby/rbs/pull/1731))
321
+ * Fix method name tag on assertion ([#1705](https://github.com/ruby/rbs/pull/1705))
322
+ * Improve interface check by method parameters ([#1698](https://github.com/ruby/rbs/pull/1698))
323
+
324
+ #### rbs prototype
325
+
326
+ * Fix prototype for ruby-3.4 ([#1760](https://github.com/ruby/rbs/pull/1760))
327
+ * Fix 3.4 `prototype rb` failure ([#1713](https://github.com/ruby/rbs/pull/1713))
328
+ * Add Numeric Node's check for parse rbs ([#1711](https://github.com/ruby/rbs/pull/1711))
329
+
330
+ #### rbs collection
331
+
332
+ * Fix RBS loading precedence ([#1720](https://github.com/ruby/rbs/pull/1720))
333
+ * Refactor Git source by using `git?` method ([#1701](https://github.com/ruby/rbs/pull/1701))
334
+
335
+ ### Miscellaneous
336
+
337
+ * Introduce RaaP for testing of signature ([#1810](https://github.com/ruby/rbs/pull/1810))
338
+ * Revise .gemspec to remove `Gemfile` and `Gemfile.lock` ([#1856](https://github.com/ruby/rbs/pull/1856))
339
+ * Add link to gem_rbs_collection to README ([#1827](https://github.com/ruby/rbs/pull/1827))
340
+ * Remove `Gemfile.lock` from the gem package ([#1823](https://github.com/ruby/rbs/pull/1823))
341
+ * Modify template to use TestHelper ([#1776](https://github.com/ruby/rbs/pull/1776))
342
+ * Should focus on `String.new` not `String#initialize`. ([#1789](https://github.com/ruby/rbs/pull/1789))
343
+ * Make the test suite compatible with `--enable-frozen-string-literal` ([#1767](https://github.com/ruby/rbs/pull/1767))
344
+ * Stop reusing `fd` ([#1752](https://github.com/ruby/rbs/pull/1752))
345
+ * Fix test failures on Ruby 3.4 ([#1734](https://github.com/ruby/rbs/pull/1734))
346
+ * Stop trace object allocations during test ([#1724](https://github.com/ruby/rbs/pull/1724))
347
+ * Fix head test fails ([#1719](https://github.com/ruby/rbs/pull/1719))
348
+
349
+ ## 3.4.4 (2024-02-08)
350
+
351
+ ### Miscellaneous
352
+
353
+ * Backport [#1752](https://github.com/ruby/rbs/pull/1752) ([#1753](https://github.com/ruby/rbs/pull/1753))
354
+
355
+ ## 3.4.3 (2024-01-25)
356
+
357
+ ### Library changes
358
+
359
+ #### rbs collection
360
+
361
+ * Backport [#1731](https://github.com/ruby/rbs/pull/1731) ([#1735](https://github.com/ruby/rbs/pull/1735))
362
+
363
+ ## 3.4.2 (2024-01-19)
364
+
365
+ ### Miscellaneous
366
+
367
+ * Backport [#1724](https://github.com/ruby/rbs/pull/1724) ([#1726](https://github.com/ruby/rbs/pull/1726))
368
+
369
+ ## 3.4.1 (2023-12-26)
370
+
371
+ ### Signature updates
372
+
373
+ * Update embedded RDoc based on ruby-3.3.0 (Backport #1699) ([#1700](https://github.com/ruby/rbs/pull/1700))
374
+
375
+ ## 3.4.0 (2023-12-21)
376
+
377
+ ### Signature updates
378
+
379
+ * minitest's lifecycle hooks ([#1694](https://github.com/ruby/rbs/pull/1694))
380
+ * `IO.popen`, `IO#read` ([#1693](https://github.com/ruby/rbs/pull/1693))
381
+
382
+ ### Library changes
383
+
384
+ * Fix klass name if klass is singleton_class ([#1695](https://github.com/ruby/rbs/pull/1695))
385
+
386
+ ### Miscellaneous
387
+
388
+ * Suppress warnings on testing ([#1691](https://github.com/ruby/rbs/pull/1691))
389
+
390
+ ## 3.4.0.pre.1 (2023-12-19)
391
+
392
+ ### Signature updates
393
+
394
+ * Changes in ruby-3.3 ([#1684](https://github.com/ruby/rbs/pull/1684), [#1674](https://github.com/ruby/rbs/pull/1674))
395
+ * Embedded docs update ([#1689](https://github.com/ruby/rbs/pull/1689), [#1676](https://github.com/ruby/rbs/pull/1676))
396
+ * delegate ([#1677](https://github.com/ruby/rbs/pull/1677))
397
+ * `MatchData` ([#1651](https://github.com/ruby/rbs/pull/1651))
398
+ * `String` ([#1672](https://github.com/ruby/rbs/pull/1672), [#1641](https://github.com/ruby/rbs/pull/1641))
399
+ * `Struct` ([#1621](https://github.com/ruby/rbs/pull/1621))
400
+ * `Warning` categories ([#1576](https://github.com/ruby/rbs/pull/1576))
401
+ * `ConditionVariable#wait` ([#1670](https://github.com/ruby/rbs/pull/1670))
402
+ * `Date.parse` ([#1653](https://github.com/ruby/rbs/pull/1653))
403
+ * `IO#gets` ([#1620](https://github.com/ruby/rbs/pull/1620))
404
+ * `Kernel.Pathname` ([#1681](https://github.com/ruby/rbs/pull/1681))
405
+ * `Resolv::DNS::Resource::Generic.create` ([#1655](https://github.com/ruby/rbs/pull/1655))
406
+ * `Thread#raise` ([#1668](https://github.com/ruby/rbs/pull/1668))
407
+ * Builtin types ([#1680](https://github.com/ruby/rbs/pull/1680), [#1644](https://github.com/ruby/rbs/pull/1644))
408
+
409
+ ### Library changes
410
+
411
+ * Add more details error message for `UnresolvedOverloadingError` ([#1688](https://github.com/ruby/rbs/pull/1688))
412
+ * Add `with_***` helpers ([#1687](https://github.com/ruby/rbs/pull/1687))
413
+ * Fix lexer ([#1685](https://github.com/ruby/rbs/pull/1685))
414
+ * Support `Delegator` object ([#1682](https://github.com/ruby/rbs/pull/1682))
415
+ * Should raise `ParsingError` instead of NoMethodError ([#1675](https://github.com/ruby/rbs/pull/1675))
416
+ * Implement multiple validate ([#1648](https://github.com/ruby/rbs/pull/1648))
417
+ * Add `RBS::UnitTest` modules ([#1660](https://github.com/ruby/rbs/pull/1660))
418
+ * Not cached as it may be replaced ([#1656](https://github.com/ruby/rbs/pull/1656))
419
+ * Should raise `ParsingError` instead of ArgumentError ([#1652](https://github.com/ruby/rbs/pull/1652))
420
+ * Added `WithEnum#but` and `with_range` ([#1649](https://github.com/ruby/rbs/pull/1649))
421
+ * Bugfix; `.respond_to` is no longer used in `Rbs::Test::Errors#inspect_` ([#1650](https://github.com/ruby/rbs/pull/1650))
422
+ * Add `--detail` option to rbs diff ([#1623](https://github.com/ruby/rbs/pull/1623))
423
+ * Fix parse error when quoted required keywords ([#1627](https://github.com/ruby/rbs/pull/1627))
424
+
425
+ #### rbs collection
426
+
427
+ * Fix order for collection sources ([#1659](https://github.com/ruby/rbs/pull/1659))
428
+ * [collection] Ignore directory starting with `_` as version from git source ([#1657](https://github.com/ruby/rbs/pull/1657))
429
+
430
+ ### Miscellaneous
431
+
432
+ * Fix token names in comments ([#1658](https://github.com/ruby/rbs/pull/1658))
433
+ * Small bugfix to have guaranteed print out instance variables ([#1642](https://github.com/ruby/rbs/pull/1642))
434
+ * Fix flaky test ([#1616](https://github.com/ruby/rbs/pull/1616))
435
+ * Update syntax.md ([#1634](https://github.com/ruby/rbs/pull/1634))
436
+ * Add steep typecheck workflow ([#1632](https://github.com/ruby/rbs/pull/1632))
437
+ * Add doc for Generating RBS ([#1617](https://github.com/ruby/rbs/pull/1617))
438
+ * updated test harness utils ([#1600](https://github.com/ruby/rbs/pull/1600))
439
+
440
+ ## 3.3.2 (2023-11-21)
441
+
442
+ ### Miscellaneous
443
+
444
+ * Require `bundler` explicitly for ruby/ruby CI ([#1629](https://github.com/ruby/rbs/pull/1629))
445
+
446
+ ## 3.3.1 (2023-11-21)
447
+
448
+ ### Library changes
449
+
450
+ * Allow to use RBS in symlinked tree ([#1624](https://github.com/ruby/rbs/pull/1624))
451
+ * Should escape if param name include not simple-word ([#1618](https://github.com/ruby/rbs/pull/1618))
452
+
453
+ #### rbs collection
454
+
455
+ * Load Bundler lazily ([#1612](https://github.com/ruby/rbs/pull/1612))
456
+
457
+ ### Miscellaneous
458
+
459
+ * Stop using `bundle` command ([#1619](https://github.com/ruby/rbs/pull/1619))
460
+
461
+ ## 3.3.0 (2023-11-09)
462
+
463
+ ### Library changes
464
+
465
+ * Stop exiting with error when syntax error detected during validation ([#1603](https://github.com/ruby/rbs/pull/1603))
466
+ * [rbs diff] Load dependencies from manifest.yaml ([#1602](https://github.com/ruby/rbs/pull/1602))
467
+ * [rbs diff] Resolve constants name ([#1601](https://github.com/ruby/rbs/pull/1601))
468
+
469
+ ## 3.3.0.pre.2 (2023-11-02)
470
+
471
+ ### Signature updates
472
+
473
+ * net/smtp ([#1560](https://github.com/ruby/rbs/pull/1560))
474
+ * open-uri ([#1592](https://github.com/ruby/rbs/pull/1592))
475
+ * `Set` ([#1595](https://github.com/ruby/rbs/pull/1595))
476
+
477
+ ### Library changes
478
+
479
+ * Fixup validation ([#1596](https://github.com/ruby/rbs/pull/1596))
480
+ * Print type syntax errors instead of raising error ([#1594](https://github.com/ruby/rbs/pull/1594))
481
+
482
+ #### rbs prototype
483
+
484
+ * Fix error when MASGN ([#1593](https://github.com/ruby/rbs/pull/1593))
485
+ * Support cases where `Module#constants` has been redefined ([#1591](https://github.com/ruby/rbs/pull/1591))
486
+ * [prototype runtime] Fix error if direct inherited ([#1590](https://github.com/ruby/rbs/pull/1590))
487
+
488
+ ## 3.3.0.pre.1 (2023-10-31)
489
+
490
+ ### Signature updates
491
+
492
+ * json ([#1575](https://github.com/ruby/rbs/pull/1575))
493
+ * net-protocol ([#1559](https://github.com/ruby/rbs/pull/1559))
494
+ * pp ([#1545](https://github.com/ruby/rbs/pull/1545))
495
+ * psych ([#1527](https://github.com/ruby/rbs/pull/1527))
496
+ * `BasicObject` ([#1506](https://github.com/ruby/rbs/pull/1506))
497
+ * `ConditionVariable` ([#1468](https://github.com/ruby/rbs/pull/1468))
498
+ * `Encoding` ([#1510](https://github.com/ruby/rbs/pull/1510))
499
+ * `Exception` ([#1529](https://github.com/ruby/rbs/pull/1529))
500
+ * `FalseClass` ([#1478](https://github.com/ruby/rbs/pull/1478), [#1487](https://github.com/ruby/rbs/pull/1487))
501
+ * `Fiber` ([#1463](https://github.com/ruby/rbs/pull/1463))
502
+ * `FileTest` ([#1500](https://github.com/ruby/rbs/pull/1500))
503
+ * `Kernel` ([#1567](https://github.com/ruby/rbs/pull/1567), [#1518](https://github.com/ruby/rbs/pull/1518), [#1504](https://github.com/ruby/rbs/pull/1504), [#1487](https://github.com/ruby/rbs/pull/1487))
504
+ * `Marshal` ([#1524](https://github.com/ruby/rbs/pull/1524))
505
+ * `Math` ([#1533](https://github.com/ruby/rbs/pull/1533))
506
+ * `Mutex` ([#1468](https://github.com/ruby/rbs/pull/1468))
507
+ * `NilClass` ([#1478](https://github.com/ruby/rbs/pull/1478), [#1487](https://github.com/ruby/rbs/pull/1487))
508
+ * `Object` ([#1504](https://github.com/ruby/rbs/pull/1504))
509
+ * `Queue` ([#1468](https://github.com/ruby/rbs/pull/1468))
510
+ * `RbConfig` ([#1534](https://github.com/ruby/rbs/pull/1534))
511
+ * `Signal` ([#1512](https://github.com/ruby/rbs/pull/1512))
512
+ * `SizedQueue` ([#1468](https://github.com/ruby/rbs/pull/1468))
513
+ * `ThreadGroup` ([#1509](https://github.com/ruby/rbs/pull/1509))
514
+ * `TrueClass` ([#1478](https://github.com/ruby/rbs/pull/1478), [#1487](https://github.com/ruby/rbs/pull/1487))
515
+ * `Warning` ([#1477](https://github.com/ruby/rbs/pull/1477))
516
+ * `Enumerator.produce` ([#1516](https://github.com/ruby/rbs/pull/1516))
517
+ * `Module.define_method` ([#1557](https://github.com/ruby/rbs/pull/1557))
518
+ * `URI.join` ([#1580](https://github.com/ruby/rbs/pull/1580))
519
+ * `YAML.unsafe_load` ([#1528](https://github.com/ruby/rbs/pull/1528))
520
+ * `builtin.rbs`([#1455](https://github.com/ruby/rbs/pull/1455), [#1469](https://github.com/ruby/rbs/pull/1469))
521
+ * `constants.rbs` ([#1531](https://github.com/ruby/rbs/pull/1531))
522
+ * `::interned` ([#1499](https://github.com/ruby/rbs/pull/1499), [#1488](https://github.com/ruby/rbs/pull/1488))
523
+
524
+ ### Language updates
525
+
526
+ * Add `__todo__` type ([#1520](https://github.com/ruby/rbs/pull/1520))
527
+
528
+ ### Library changes
529
+
530
+ * Colored diff ([#1589](https://github.com/ruby/rbs/pull/1589))
531
+ * Fix the issue where ::array[T] would be interpreted as ::array, and type mismatch ([#1491](https://github.com/ruby/rbs/pull/1491))
532
+ * Add `Abbrev` to runtime dependency ([#1573](https://github.com/ruby/rbs/pull/1573))
533
+ * Avoid an error when parsing files including SyntaxError ([#1574](https://github.com/ruby/rbs/pull/1574))
534
+ * Implement rbs diff command ([#1459](https://github.com/ruby/rbs/pull/1459))
535
+ * Add another type syntax validation ([#1566](https://github.com/ruby/rbs/pull/1566))
536
+ * Mark global variables ([#1551](https://github.com/ruby/rbs/pull/1551))
537
+ * Show location of type by method command ([#1537](https://github.com/ruby/rbs/pull/1537))
538
+ * Make alias and interface names absolute ([#1502](https://github.com/ruby/rbs/pull/1502))
539
+ * Better record type format ([#1501](https://github.com/ruby/rbs/pull/1501))
540
+ * Should keep escape of alias and attr family ([#1486](https://github.com/ruby/rbs/pull/1486))
541
+ * Fix error when undefined interface or alias ([#1465](https://github.com/ruby/rbs/pull/1465))
542
+
543
+ #### rbs prototype
544
+
545
+ * [prototype runtime --todo] Consider accessibility mismatch ([#1539](https://github.com/ruby/rbs/pull/1539))
546
+ * Better support for inherited class of `Struct` or `Data` by prototype runtime ([#1571](https://github.com/ruby/rbs/pull/1571))
547
+ * prototype rb: Ignore ITER (method call with block) ([#1562](https://github.com/ruby/rbs/pull/1562))
548
+ * [prototype runtime] Add --autoload option ([#1561](https://github.com/ruby/rbs/pull/1561))
549
+ * Implement todo option ([#1470](https://github.com/ruby/rbs/pull/1470))
550
+ * [prototype runtime] Fix error when constant is a BasicObject instance. ([#1485](https://github.com/ruby/rbs/pull/1485))
551
+ * [prototype runtime] Const name should be absolute ([#1490](https://github.com/ruby/rbs/pull/1490))
552
+ * [prototype runtime] Optimize performance ([#1495](https://github.com/ruby/rbs/pull/1495))
553
+ * [prototype runtime] Fix error when output Object constants ([#1472](https://github.com/ruby/rbs/pull/1472))
554
+ * [prototype runtime] Support prepend mixin ([#1460](https://github.com/ruby/rbs/pull/1460))
555
+ * [prototype runtime] Avoid alias for methods defined in another module ([#1457](https://github.com/ruby/rbs/pull/1457))
556
+
557
+ #### rbs collection
558
+
559
+ * [Collection] Simple colorize collection text like Bundler ([#1558](https://github.com/ruby/rbs/pull/1558))
560
+ * Delete `sources` section from lockfile ([#1544](https://github.com/ruby/rbs/pull/1544))
561
+
562
+ ### Miscellaneous
563
+
564
+ * Add in with_XXX methods ([#1492](https://github.com/ruby/rbs/pull/1492))
565
+ * Updated binding to use modern kernel tests ([#1507](https://github.com/ruby/rbs/pull/1507))
566
+ * Remove all non-required methods from testing types ([#1541](https://github.com/ruby/rbs/pull/1541))
567
+ * Add `assert_type` assertion to confirm if the value has a type ([#1532](https://github.com/ruby/rbs/pull/1532))
568
+ * Add `#assert_const_type` and guide to use type assertions ([#1514](https://github.com/ruby/rbs/pull/1514))
569
+ * Improve skip test message ([#1476](https://github.com/ruby/rbs/pull/1476))
570
+ * Type check ([#1467](https://github.com/ruby/rbs/pull/1467))
571
+ * Type check RDoc related Ruby code ([#1466](https://github.com/ruby/rbs/pull/1466))
572
+ * Fix CI failure ([#1464](https://github.com/ruby/rbs/pull/1464))
573
+
574
+ ## 3.2.2 (2023-09-28)
575
+
576
+ ### Library changes
577
+
578
+ * Mark global variables ([\#1552](https://github.com/ruby/rbs/pull/1552), Backport [\#1551](https://github.com/ruby/rbs/pull/1551))
579
+
580
+ ## 3.2.1 (2023-08-29)
581
+
582
+ ### Signature updates
583
+
584
+ * `Fiber` (Backport [#1463](https://github.com/ruby/rbs/pull/1463))
585
+
586
+ ### Library changes
587
+
588
+ * Fix error when undefined interface or alias (Backport [#1465](https://github.com/ruby/rbs/pull/1465))
589
+
590
+ ### Miscellaneous
591
+
592
+ * Improve skip test message (Backport [#1476](https://github.com/ruby/rbs/pull/1476))
593
+ * Fix CI failure (Backport [#1464](https://github.com/ruby/rbs/pull/1464))
594
+
595
+ ## 3.2.0 (2023-08-22)
596
+
597
+ ### Signature updates
598
+
599
+ * `Binding` ([#1451](https://github.com/ruby/rbs/pull/1451))
600
+ * `Kernel` ([#1445](https://github.com/ruby/rbs/pull/1445), [#1444](https://github.com/ruby/rbs/pull/1444), [#1443](https://github.com/ruby/rbs/pull/1443), [#1441](https://github.com/ruby/rbs/pull/1441), [#1440](https://github.com/ruby/rbs/pull/1440))
601
+ * `Errno` ([#1450](https://github.com/ruby/rbs/pull/1450))
602
+
603
+ ### Library changes
604
+
605
+ #### rbs collection
606
+
607
+ * Fix LockfileGenerator crashes if failed to get deps for locked source ([#1413](https://github.com/ruby/rbs/pull/1413))
608
+
609
+ ## 3.2.0.pre.1 (2023-08-18)
610
+
611
+ ### Signature updates
612
+
613
+ * observable ([#1424](https://github.com/ruby/rbs/pull/1424))
614
+ * uri ([#1371](https://github.com/ruby/rbs/pull/1371))
615
+ * zlib ([#1389](https://github.com/ruby/rbs/pull/1389))
616
+ * `IO` ([#1399](https://github.com/ruby/rbs/pull/1399))
617
+ * `::DATA` ([#1395](https://github.com/ruby/rbs/pull/1395))
618
+ * `$DEBUG` ([#1427](https://github.com/ruby/rbs/pull/1427))
619
+ * `ConditionVariable#wait` ([#1397](https://github.com/ruby/rbs/pull/1397))
620
+ * `Kernel::exit!` ([#1396](https://github.com/ruby/rbs/pull/1396))
621
+ * `Kernel#exec` ([#1368](https://github.com/ruby/rbs/pull/1368))
622
+ * `Kernel#p`, `Kernel#pp` ([#1342](https://github.com/ruby/rbs/pull/1342))
623
+ * `Logger.new` ([#1423](https://github.com/ruby/rbs/pull/1423))
624
+ * `Module` ([#1321](https://github.com/ruby/rbs/pull/1321))
625
+ * `Object#define_singleton_method` ([#1431](https://github.com/ruby/rbs/pull/1431))
626
+ * `Object#enum_for` ([#1327](https://github.com/ruby/rbs/pull/1327))
627
+ * `StringIO#truncate` ([#1425](https://github.com/ruby/rbs/pull/1425))
628
+ * `Thread#raise` ([#1426](https://github.com/ruby/rbs/pull/1426))
629
+ * `Time#round`, `Time#floor`, `Time#ceil` ([#1337](https://github.com/ruby/rbs/pull/1337))
630
+ * Remove `TRUE`, `FALSE`, and `NIL` constants ([#1432](https://github.com/ruby/rbs/pull/1432))
631
+ * Updated builtin.rbs's interfaces ([#1429](https://github.com/ruby/rbs/pull/1429))
632
+ * Convert `| nil` to `?` in global_variables.rbs ([#1430](https://github.com/ruby/rbs/pull/1430))
633
+ * Remove references to the transient heap ([#1374](https://github.com/ruby/rbs/pull/1374))
634
+
635
+ ### Library changes
636
+
637
+ * subtract: Remove RBS file if the subtracted definition is empty ([#1385](https://github.com/ruby/rbs/pull/1385))
638
+ * subtract: Filter redundant access modifiers ([#1384](https://github.com/ruby/rbs/pull/1384))
639
+ * Fix module alias normalizations ([#1393](https://github.com/ruby/rbs/pull/1393))
640
+ * Reduce memory allocation on TypeName#initialize ([#1363](https://github.com/ruby/rbs/pull/1363))
641
+ * Fix a type error in FileFinder ([#1326](https://github.com/ruby/rbs/pull/1326))
642
+ * Add signatures about DetailedMessage ([#1323](https://github.com/ruby/rbs/pull/1323))
643
+ * Make TypeNameResolver more compatible with Ruby ([#1373](https://github.com/ruby/rbs/pull/1373))
644
+ * Drop support of Ruby 2.x ([#1364](https://github.com/ruby/rbs/pull/1364))
645
+ * Print detailed_message on parse command ([#1329](https://github.com/ruby/rbs/pull/1329))
646
+ * Relax rdoc version requirement ([#1333](https://github.com/ruby/rbs/pull/1333))
647
+ * Support keyword argument to #detailed_message ([#1328](https://github.com/ruby/rbs/pull/1328))
648
+
649
+ #### rbs prototype
650
+
651
+ * Avoid to generate anonymous or internal module ([#1421](https://github.com/ruby/rbs/pull/1421))
652
+ * Fix type name for prototype rbi ([#1386](https://github.com/ruby/rbs/pull/1386))
653
+ * Support type params for known signatures ([#1408](https://github.com/ruby/rbs/pull/1408))
654
+ * Super class should be absolute paths. ([#1415](https://github.com/ruby/rbs/pull/1415))
655
+ * prototype rb: Fix a crash by "include foo" ([#1419](https://github.com/ruby/rbs/pull/1419))
656
+ * Add `--outline` option to `prototype runtime` to skip generating method definition ([#1404](https://github.com/ruby/rbs/pull/1404))
657
+ * [rbs prototype] Follow up ivar/cvar feature ([#1361](https://github.com/ruby/rbs/pull/1361))
658
+ * prototype rb: Extract instance variables and class variables ([#1343](https://github.com/ruby/rbs/pull/1343))
659
+
660
+ #### rbs collection
661
+
662
+ * Print warning when specified gem not found ([#1367](https://github.com/ruby/rbs/pull/1367))
663
+ * Generate gem specific sources in lockfile ([#1402](https://github.com/ruby/rbs/pull/1402))
664
+ * Spec may be missing when `rbs_collection.yaml` declares dependency ([#1378](https://github.com/ruby/rbs/pull/1378))
665
+
666
+ ### Miscellaneous
667
+
668
+ * Remove ruby-lsp && bundle update --bundler ([#1420](https://github.com/ruby/rbs/pull/1420))
669
+ * Delete all remaining set-related descriptions. ([#1324](https://github.com/ruby/rbs/pull/1324))
670
+ * Add customized test runner to accept minitest options ([#1392](https://github.com/ruby/rbs/pull/1392))
671
+ * Specify `rbs` syntax to code snippets in Markdown files ([#1366](https://github.com/ruby/rbs/pull/1366))
672
+ * Fix typo in parser.rbs ([#1352](https://github.com/ruby/rbs/pull/1352))
673
+ * Fix broken CI ([#1353](https://github.com/ruby/rbs/pull/1353))
674
+ * Handle connection error with Resolv_test.rb ([#1356](https://github.com/ruby/rbs/pull/1356))
675
+ * Removed Prime signature and tests ([#1355](https://github.com/ruby/rbs/pull/1355))
676
+
677
+ ## 3.1.3 (2023-07-31)
678
+
679
+ ### Library changes
680
+
681
+ #### rbs collection
682
+
683
+ * Generate gem specific sources in lockfile (Backport [#1402](https://github.com/ruby/rbs/pull/1402))
684
+
685
+ ## 3.1.2 (2023-07-27)
686
+
687
+ ⚠️ Note that this patch level release may report additional validation errors that is caused by fix of type name resolution ([#1373](https://github.com/ruby/rbs/pull/1373)).
688
+
689
+ ### Library changes
690
+
691
+ * Make `TypeNameResolver` more compatible with Ruby (Backport [#1373](https://github.com/ruby/rbs/pull/1373))
692
+ * Fix module alias normalizations (Backport [#1393](https://github.com/ruby/rbs/pull/1393))
693
+
694
+ ## 3.1.1 (2023-07-18)
695
+
696
+ ### Signature updates
697
+
698
+ * Removed `GC.verify_transient_heap_internal_consistency` (Backport [#1374](https://github.com/ruby/rbs/pull/1374))
699
+
700
+ ### Library changes
701
+
702
+ * Relax rdoc version requirement in RDoc plugin (Backport [#1333](https://github.com/ruby/rbs/pull/1333))
703
+
704
+ #### rbs collection
705
+
706
+ * Spec may be missing when rbs_collection.yaml declares dependency (Backport [#1378](https://github.com/ruby/rbs/pull/1378))
707
+
708
+ ### Miscellaneous
709
+
710
+ * Handle connection error with Resolv_test.rb (Backport [#1356](https://github.com/ruby/rbs/pull/1356))
711
+ * Fix broken CI (Backport [#1353](https://github.com/ruby/rbs/pull/1353))
712
+
713
+ ## 3.1.0 (2023-04-26)
714
+
715
+ ### Signature updates
716
+
717
+ * `Module#attr_*` methods ([#1300](https://github.com/ruby/rbs/pull/1300))
718
+ * `Object#define_singleton_method` ([#1299](https://github.com/ruby/rbs/pull/1299))
719
+ * `String#scan` ([#1297](https://github.com/ruby/rbs/pull/1297))
720
+ * Removed `Gem.datadir` ([#1273](https://github.com/ruby/rbs/pull/1273))
721
+
722
+ ### Language updates
723
+
724
+ ### Library changes
725
+
726
+ * Use fenced code block instead of indented one in .rbs files ([#1312](https://github.com/ruby/rbs/pull/1312))
727
+ * Fix single use clause `:type_name` location ([#1307](https://github.com/ruby/rbs/pull/1307))
728
+ * Fix `InvalidOverloadMethodError` on overloading extended method ([#1294](https://github.com/ruby/rbs/pull/1294))
729
+ * Fix super class of `NoTypeFoundError` from `BaseError` to `DefinitionError` ([#1290](https://github.com/ruby/rbs/pull/1290))
730
+ * Support `#detailed_message` for `NonregularTypeAliasError`, `CyclicTypeParameterBound`, `InconsistentClassModuleAliasError` and `CyclicClassAliasDefinitionError` ([#1289](https://github.com/ruby/rbs/pull/1289))
731
+ * Implement `rbs subtract` command ([#1287](https://github.com/ruby/rbs/pull/1287))
732
+ * Support `#detailed_message` for `InvalidVarianceAnnotationError`, `RecursiveAliasDefinitionError`, `MixinClassError` and `RecursiveTypeAliasError` ([#1285](https://github.com/ruby/rbs/pull/1285))
733
+ * Support `#detailed_message` for `NoTypeError`, `InheritModuleError`, `NoSelfTypeFoundError` and `NoMixinFoundError` ([#1280](https://github.com/ruby/rbs/pull/1280))
734
+ * Validate duplicate type aliases ([#1279](https://github.com/ruby/rbs/pull/1279))
735
+ * Add `-e`, `--type`, and `--method-type` options to `rbs parse` ([#1252](https://github.com/ruby/rbs/pull/1252))
736
+
737
+ #### rbs prototype
738
+
739
+ * Convert `include` in `class << self` to `extend` by `prototype rb` ([#1255](https://github.com/ruby/rbs/pull/1255))
740
+
741
+ #### rbs collection
742
+
743
+ * Skip loading `#gemspec` gems via RBS collection ([#1319](https://github.com/ruby/rbs/pull/1319))
744
+
745
+ ### Miscellaneous
746
+
747
+ * Run `bundle install` automatically in `bin/steep` ([#1308](https://github.com/ruby/rbs/pull/1308))
748
+ * Fix warnings ([#1314](https://github.com/ruby/rbs/pull/1314))
749
+
750
+ ## 3.0.4 (2023-03-13)
751
+
752
+ ### Library changes
753
+
754
+ * Add missing implementation to support class/module alias ([#1271](https://github.com/ruby/rbs/pull/1271))
755
+
756
+ ## 3.0.3 (2023-03-07)
757
+
758
+ ### Library changes
759
+
760
+ * Fix `DefinitionBuilder` ([\#1268](https://github.com/ruby/rbs/pull/1268))
761
+
762
+ #### rbs collection
763
+
764
+ * Skip dependencies not included in `Gemfile.lock` ([\#1266](https://github.com/ruby/rbs/pull/1266))
765
+
766
+ ### Miscellaneous
767
+
768
+ * Skip RBS validation on Ruby CI ([\#1264](https://github.com/ruby/rbs/pull/1264), [\#1263](https://github.com/ruby/rbs/pull/1263))
769
+
770
+ ## 3.0.2 (2023-03-01)
771
+
772
+ ### Library changes
773
+
774
+ * Delete `RubyVM::AbstractSyntaxTree` stub type definition ([#1259](https://github.com/ruby/rbs/pull/1259))
775
+
776
+ ## 3.0.1 (2023-02-27)
777
+
778
+ ### Library changes
779
+
780
+ * Ignore `set` library on loading ([#1251](https://github.com/ruby/rbs/pull/1251))
781
+
782
+ ## 3.0.0 (2023-02-22)
783
+
784
+ Read [the release note](https://github.com/ruby/rbs/wiki/Release-Note-3.0) for the overview of the changes.
785
+
786
+ ### Signature updates
787
+
788
+ * Ruby 3.2 core updates ([#1238](https://github.com/ruby/rbs/pull/1238), [#1246](https://github.com/ruby/rbs/pull/1246), [#1242](https://github.com/ruby/rbs/pull/1242))
789
+ * Ruby 3.2 stdlib updates ([#1240](https://github.com/ruby/rbs/pull/1240))
790
+ * Ruby 3.2 incompatibilities ([#1241](https://github.com/ruby/rbs/pull/1241))
791
+ * ripper ([#1193](https://github.com/ruby/rbs/pull/1193))
792
+ * `RubyVM::AbstractSyntaxTree` ([#1189](https://github.com/ruby/rbs/pull/1189))
793
+ * `Array#zip` ([#1232](https://github.com/ruby/rbs/pull/1232))
794
+ * `Enumerable#zip` ([#1232](https://github.com/ruby/rbs/pull/1232))
795
+ * `Module#attr_*` ([#1218](https://github.com/ruby/rbs/pull/1218), [#1229](https://github.com/ruby/rbs/pull/1229))
796
+ * `Regexp.new` ([#1237](https://github.com/ruby/rbs/pull/1237))
797
+ * `Regexp#=~` ([#1195](https://github.com/ruby/rbs/pull/1195))
798
+ * `Socket.new` ([#1185](https://github.com/ruby/rbs/pull/1185))
799
+ * `Object::name` ([#1204](https://github.com/ruby/rbs/pull/1204))
800
+ * `_ToProc#to_proc` ([#1223](https://github.com/ruby/rbs/pull/1223))
801
+ * Add `implicitly-returns-nil` annotations ([#1226](https://github.com/ruby/rbs/pull/1226))
802
+
803
+ ### Language updates
804
+
805
+ #### Class/module alias declaration
806
+
807
+ * Spec: https://hackmd.io/SAE7AGD6SMSJFnYiR2M5-Q?view
808
+ * Pull requests: [#1219](https://github.com/ruby/rbs/pull/1219), [#1220](https://github.com/ruby/rbs/pull/1220)
809
+
810
+ #### `use` directives
811
+
812
+ * Spec: https://hackmd.io/pQehT1u1RfSj6lBcdgW8hg
813
+ * Pull requests: [#1224](https://github.com/ruby/rbs/pull/1224), [#1234](https://github.com/ruby/rbs/pull/1234), [#1235](https://github.com/ruby/rbs/pull/1235)
814
+
815
+ #### Per-overload annotations
816
+
817
+ * Pull requests: [#1174](https://github.com/ruby/rbs/pull/1174)
818
+
819
+ ### Library changes
820
+
821
+ * `Environment` cleanup ([#1209](https://github.com/ruby/rbs/pull/1209), [#1236](https://github.com/ruby/rbs/pull/1236), [#1247](https://github.com/ruby/rbs/pull/1247))
822
+ * Add "Expected one argument." to `rbs ancestors` command ([#1245](https://github.com/ruby/rbs/pull/1245))
823
+ * Implement `#detailed_message` for `ParsingError` ([#1166](https://github.com/ruby/rbs/pull/1166))
824
+ * Support interface in class/module for `Sorter` ([#1191](https://github.com/ruby/rbs/pull/1191))
825
+ * Use `-std=gnu99` instead of `-std=c99` ([#973](https://github.com/ruby/rbs/pull/973))
826
+ * Add `rbs_` prefix to `skip` function ([#1186](https://github.com/ruby/rbs/pull/1186))
827
+ * Better method definition resolution for overload/mixin combination ([#1199](https://github.com/ruby/rbs/pull/1199))
828
+ * Escaping for keywords is no longer necessary ([#1178](https://github.com/ruby/rbs/pull/1178))
829
+ * Fix super-class location ([#1172](https://github.com/ruby/rbs/pull/1172))
830
+
831
+ #### rbs prototype
832
+
833
+ * Introduce new heuristics for block types ([#1180](https://github.com/ruby/rbs/pull/1180))
834
+
835
+ #### rbs collection
836
+
837
+ * Install only *library* dependencies ([#1222](https://github.com/ruby/rbs/pull/1222), [#1228](https://github.com/ruby/rbs/pull/1228))
838
+ * Add *local source* ([#854](https://github.com/ruby/rbs/pull/854))
839
+ * Refactor collection ([#1149](https://github.com/ruby/rbs/pull/1149))
840
+ * Let `#resolved_revision` return the last fetched commit ([#1215](https://github.com/ruby/rbs/pull/1215))
841
+
842
+ ### Miscellaneous
843
+
844
+ * Update `syntax.md` ([#1243](https://github.com/ruby/rbs/pull/1243))
845
+ * Add link to `RBS by Example` to `README.md` [#1225](https://github.com/ruby/rbs/pull/1225)
846
+ * Make `rake stdlib_test` run with single process ([#1207](https://github.com/ruby/rbs/pull/1207), [#1211](https://github.com/ruby/rbs/pull/1211), [#1231](https://github.com/ruby/rbs/pull/1231))
847
+ * Remove `steep/*` files from `.gem` ([#1214](https://github.com/ruby/rbs/pull/1214), [#1216](https://github.com/ruby/rbs/pull/1216))
848
+
849
+ ## 2.8.4 (2023-01-20)
850
+
851
+ ### Miscellaneous
852
+
853
+ * Make `rake stdlib_test` run with single process (Backport [#1207](https://github.com/ruby/rbs/pull/1207), [#1211](https://github.com/ruby/rbs/pull/1211))
854
+ * Remove `steep/*` files from `.gem` (Backport [#1214](https://github.com/ruby/rbs/pull/1214), [#1216](https://github.com/ruby/rbs/pull/1216))
855
+
856
+ ## 2.8.3 (2023-01-06)
857
+
858
+ ### Library changes
859
+
860
+ * Use `-std=gnu99` instead of `-std=c99` (Backport [#973](https://github.com/ruby/rbs/pull/973))
861
+ * Add `rbs_` prefix to `skip` function (Backport [#1186](https://github.com/ruby/rbs/pull/1186))
862
+
863
+ ## 2.8.2 (2022-12-21)
864
+
865
+ ### Signature updates
866
+
867
+ * `YAML.load` ([#1170](https://github.com/ruby/rbs/pull/1170))
868
+
869
+ ### Library changes
870
+
871
+ * Add the methods of the `prepend`ed module itself ([#1182](https://github.com/ruby/rbs/pull/1182))
872
+
873
+ ### Miscellaneous
874
+
875
+ * Add `TestSkip` module to skip tests that fails in ruby CI ([#1167](https://github.com/ruby/rbs/pull/1167))
876
+
877
+ ## 2.8.1 (2022-11-28)
878
+
879
+ ### Signature updates
880
+
881
+ * Update documents based on ruby-3.1.3 ([#1160](https://github.com/ruby/rbs/pull/1160))
882
+
883
+ ### Library changes
884
+
885
+ #### rbs collection
886
+
887
+ * Delay loading `Gemfile` for unbundled environments ([#1161](https://github.com/ruby/rbs/pull/1161))
888
+
889
+ ### Miscellaneous
890
+
891
+ * Fix collection tests ([#1159](https://github.com/ruby/rbs/pull/1159), [#1162](https://github.com/ruby/rbs/pull/1162))
892
+
893
+ ## 2.8.0 (2022-11-24)
894
+
895
+ ### Signature updates
896
+
897
+ * random ([#1144](https://github.com/ruby/rbs/pull/1144))
898
+
899
+ ### Library changes
900
+
901
+ * Fix SEGV when give invalid object to `variables:` ([#1153](https://github.com/ruby/rbs/pull/1153))
902
+
903
+ ### Miscellaneous
904
+
905
+ * Fix some typos ([#1155](https://github.com/ruby/rbs/pull/1155))
906
+ * Fix a formatting some YAML files ([#1154](https://github.com/ruby/rbs/pull/1154))
907
+
908
+ ## 2.8.0.pre.1 (2022-11-17)
909
+
910
+ ### Signature updates
911
+
912
+ * `IO` ([#1132](https://github.com/ruby/rbs/pull/1132))
913
+ * `IO::Buffer` ([#1137](https://github.com/ruby/rbs/pull/1137))
914
+ * `IPAddr` ([#1131](https://github.com/ruby/rbs/pull/1131), [#1151](https://github.com/ruby/rbs/pull/1151))
915
+ * `Socket` ([#1133](https://github.com/ruby/rbs/pull/1133), [#1134](https://github.com/ruby/rbs/pull/1134), [#1151](https://github.com/ruby/rbs/pull/1151))
916
+ * `Yaml` ([#1141](https://github.com/ruby/rbs/pull/1141))
917
+
918
+ ### Library changes
919
+
920
+ * Make type/method-type parser more flexible about input position ([#1140](https://github.com/ruby/rbs/pull/1140))
921
+ * Raise an error if a class definition inherits a module ([#1152](https://github.com/ruby/rbs/pull/1152))
922
+ * Fix SEGV when parse with invalid content ([#1146](https://github.com/ruby/rbs/pull/1146))
923
+
924
+ #### rbs collection
925
+
926
+ * Support to call collection command in child dir ([#1025](https://github.com/ruby/rbs/pull/1025), [#1135](https://github.com/ruby/rbs/pull/1135))
927
+
928
+ ### Miscellaneous
929
+
930
+ * Remove `rubygems` from `rbs`’s manifest ([#1150](https://github.com/ruby/rbs/pull/1150))
931
+ * Use `untyped` instead of `any` in `syntax.md` ([#1147](https://github.com/ruby/rbs/pull/1147))
932
+ * Fix typo and grammatical mistakes in "Generics" section of `syntax.md` ([#1127](https://github.com/ruby/rbs/pull/1127))
933
+ * Add a doc that describes tools related to RBS ([#1125](https://github.com/ruby/rbs/pull/1125))
934
+ * Add self-type-bindings to `syntax.md` ([#1123](https://github.com/ruby/rbs/pull/1123))
935
+ * Add documentation for `...` in `syntax.md` ([#1120](https://github.com/ruby/rbs/pull/1120))
936
+
937
+ ## 2.7.0 (2022-10-07)
938
+
939
+ ### Signature updates
940
+
941
+ * `Symbol#start_with?` ([#1118](https://github.com/ruby/rbs/pull/1118))
942
+ * `URL::*.build` ([#1118](https://github.com/ruby/rbs/pull/1118))
943
+
944
+ ## 2.7.0.pre.3 (2022-10-06)
945
+
946
+ ### Signature updates
947
+
948
+ * rubygems ([#1107](https://github.com/ruby/rbs/pull/1107))
949
+ * `OptionParser` ([#1114](https://github.com/ruby/rbs/pull/1114))
950
+
951
+ ## 2.7.0.pre.2 (2022-09-20)
952
+
953
+ ### Signature updates
954
+
955
+ * `Set` ([#1110](https://github.com/ruby/rbs/pull/1110))
956
+ * `RDoc::Markup` ([#1109](https://github.com/ruby/rbs/pull/1109))
957
+
958
+ ### Library changes
959
+
960
+ * Always skip CR explicitly ([#1112](https://github.com/ruby/rbs/pull/1112))
961
+
962
+ ### Miscellaneous
963
+
964
+ * Use `append_cflags` for other than GCC ([#1106](https://github.com/ruby/rbs/pull/1106))
965
+
966
+ ## 2.7.0.pre.1 (2022-09-02)
967
+
968
+ See [Release Note 2.7](https://github.com/ruby/rbs/wiki/Release-Note-2.7) for the highlights of this release.
969
+
970
+ ### Signature updates
971
+
972
+ * fiber ([#1071](https://github.com/ruby/rbs/pull/1071))
973
+ * `BigDecimal` ([#1053](https://github.com/ruby/rbs/pull/1053))
974
+ * `ERB::Util`, `ERB::DefMethod` ([#1074](https://github.com/ruby/rbs/pull/1074))
975
+ * `Float::Infinity` ([#1095](https://github.com/ruby/rbs/pull/1095))
976
+ * `Logger` ([#1046](https://github.com/ruby/rbs/pull/1046))
977
+ * `IO.pipe`, `IO.foreach` ([#1057](https://github.com/ruby/rbs/pull/1057))
978
+ * `Module#refine` ([#1064](https://github.com/ruby/rbs/pull/1064))
979
+ * `Regexp.new` ([#1059](https://github.com/ruby/rbs/pull/1059))
980
+ * `StringIO#write` ([#1065](https://github.com/ruby/rbs/pull/1065))
981
+ * `Warning.#warn`, `Kernel.#warn` ([#1056](https://github.com/ruby/rbs/pull/1056))
982
+
983
+ ### Language updates
984
+
985
+ * Type of `self` in blocks/procs ([#1077](https://github.com/ruby/rbs/issues/1077), [#1101](https://github.com/ruby/rbs/pull/1101))
986
+
987
+ ### Library changes
988
+
989
+ * RDoc plugin ([#1048](https://github.com/ruby/rbs/pull/1048))
990
+ * Dedupe method comments ([#1103](https://github.com/ruby/rbs/pull/1103))
991
+ * Reduce object allocations for GC ([#1102](https://github.com/ruby/rbs/pull/1102))
992
+ * Add `frozen_string_literal: true` ([#1100](https://github.com/ruby/rbs/pull/1100))
993
+ * Load dependencies on `-r` option also ([#1013](https://github.com/ruby/rbs/pull/1013))
994
+ * Fix DefinitionBuilder for methods aliased from module self constraints ([#1099](https://github.com/ruby/rbs/pull/1099))
995
+ * Fix RBS type definitions ([#1098](https://github.com/ruby/rbs/pull/1098))
996
+ * Give aliases of `.new` methods correct type ([#1097](https://github.com/ruby/rbs/pull/1097))
997
+ * `nil` versions are discouraged and will be deprecated in Rubygems 4 ([#1091](https://github.com/ruby/rbs/pull/1091))
998
+ * Fixes towards Rubygems 4.0 ([#1090](https://github.com/ruby/rbs/pull/1090))
999
+ * Remove redundant `add` for `Repository.default` ([#1062](https://github.com/ruby/rbs/pull/1062))
1000
+ * Refactor: Use Repository in stdlib source ([#1063](https://github.com/ruby/rbs/pull/1063))
1001
+ * Move `bin/sort` implementation to under `lib/` ([#1051](https://github.com/ruby/rbs/pull/1051))
1002
+
1003
+ #### rbs prototype
1004
+
1005
+ * Fix some error on `prototype runtime` ([#1055](https://github.com/ruby/rbs/pull/1055))
1006
+ * Skip existing RBS files from batch `prototype` ([#1060](https://github.com/ruby/rbs/pull/1060))
1007
+
1008
+ ### Miscellaneous
1009
+
1010
+ * Discard outputs from test code ([#1093](https://github.com/ruby/rbs/pull/1093))
1011
+ * Skip testing visibility methods with Ruby 3.2 ([#1082](https://github.com/ruby/rbs/pull/1082))
1012
+
1013
+ ## 2.6.0 (2022-06-22)
1014
+
1015
+ RBS 2.6 ships with `rbs prototype` commands improvements and signature updates.
1016
+ New minitest RBS definitions will help you to type check your tests.
1017
+
1018
+ ### Signature updates
1019
+
1020
+ * etc ([\#1006](https://github.com/ruby/rbs/pull/1006))
1021
+ * minitest ([\#1009](https://github.com/ruby/rbs/pull/1009))
1022
+ * date ([\#1033](https://github.com/ruby/rbs/pull/1033))
1023
+ * `ENV`. `ARGF`, `Random::Base` ([\#1041](https://github.com/ruby/rbs/pull/1041))
1024
+ * `Hash#dig` ([\#1011](https://github.com/ruby/rbs/pull/1011))
1025
+ * `Hash#reject` ([\#1016](https://github.com/ruby/rbs/pull/1016))
1026
+ * `Kernel?.fail` ([\#1026](https://github.com/ruby/rbs/pull/1026), [\#1028](https://github.com/ruby/rbs/pull/1028))
1027
+ * `Rational#*` ([\#1012](https://github.com/ruby/rbs/pull/1012))
1028
+ * `Regexp.new` ([\#1040](https://github.com/ruby/rbs/pull/1040))
1029
+
1030
+ ### Library changes
1031
+
1032
+ * Add `visibility` columns in {AttrReader,AttrAccessor,AttrWriter}#to_json ([\#1014](https://github.com/ruby/rbs/pull/1014))
1033
+ * Add support for RSpec's verifying doubles in test setup helper ([\#1015](https://github.com/ruby/rbs/pull/1015))
1034
+ * Fix lexer to analyze escape characters ([\#1043](https://github.com/ruby/rbs/pull/1043))
1035
+
1036
+ #### rbs prototype
1037
+
1038
+ * [rb] Support the case where the return value is `self` ([\#1003](https://github.com/ruby/rbs/pull/1003))
1039
+ * [rb] Lean to the optional side ([\#1021](https://github.com/ruby/rbs/pull/1021))
1040
+ * [rb] Fix method commenting ([\#1027](https://github.com/ruby/rbs/pull/1027))
1041
+ * [runtime] Fix decls of output from `Prototype::Runtime` ([\#1030](https://github.com/ruby/rbs/pull/1030))
1042
+ * [runtime] Fix class name resolution of prototype runtime ([\#1032](https://github.com/ruby/rbs/pull/1032))
1043
+ * [rbi] Improve `Prototype::RBI` ([\#1018](https://github.com/ruby/rbs/pull/1018))
1044
+
1045
+ ### Miscellaneous
1046
+
1047
+ * Fix typo in `CONTRIBUTING.md` ([\#1004](https://github.com/ruby/rbs/pull/1004))
1048
+ * Use manifest.yaml instead of manually for validate task ([\#1010](https://github.com/ruby/rbs/pull/1010))
1049
+ * Update re2c ([\#1017](https://github.com/ruby/rbs/pull/1017))
1050
+ * Type check `Prototype::RB` ([\#1019](https://github.com/ruby/rbs/pull/1019))
1051
+ * Minor cleanup & fix ([\#1020](https://github.com/ruby/rbs/pull/1020))
1052
+ * Fix type errors ([\#1023](https://github.com/ruby/rbs/pull/1023))
1053
+ * Clarify GHA step name for rake annotate ([\#1024](https://github.com/ruby/rbs/pull/1024))
1054
+ * Silence parser warning ([\#1039](https://github.com/ruby/rbs/pull/1039))
1055
+ * Fix warnings ([\#1035](https://github.com/ruby/rbs/pull/1035))
1056
+
1057
+ ## 2.5.1 (2022-06-19)
1058
+
1059
+ This is a maintenance release mainly to fix errors detected in CI of `ruby/ruby`.
1060
+ Nothing changed related to the users of RBS gem.
1061
+
1062
+ ### Miscellaneous
1063
+
1064
+ * Skip failing tests on ruby/ruby CI ([\#1036](https://github.com/ruby/rbs/pull/1036))
1065
+ * Fix warnings ([\#1035](https://github.com/ruby/rbs/pull/1035) except changes on `test/tools/sort_test.rb` that is not included in this release)
1066
+ * Fix `Regexp.new` argument ([\#1034](https://github.com/ruby/rbs/pull/1034))
1067
+ * Fix errors with OpenSSL 3 ([\#1029](https://github.com/ruby/rbs/pull/1029))
1068
+ * Fix `OpenSSL::PKey::PKeyError: EVP_PKEY_keygen: bad ffc parameters` with OpenSSL 3 ([\#1005](https://github.com/ruby/rbs/pull/1005))
1069
+
1070
+ ## 2.5.0 (2022-05-20)
1071
+
1072
+ This is a minor release with tuple type/record type syntax updates and `rbs prototype` improvements.
1073
+
1074
+ * You can write empty tuple type as `[]`, instead of `[ ]`
1075
+ * You can write empty record type as `{}`
1076
+ * `prototype-rb` command with `--out-dir` option generates multiple RBS files in the directory
1077
+
1078
+ ### Signature updates
1079
+
1080
+ * `Time` ([\#994](https://github.com/ruby/rbs/pull/994))
1081
+
1082
+ ### Language updates
1083
+
1084
+ * Fix empty tuple type syntax and allow empty record type ([\#1001](https://github.com/ruby/rbs/pull/1001))
1085
+
1086
+ ### Library changes
1087
+
1088
+ * Add `name` attribute in `MethodDefinition#to_json` ([\#997](https://github.com/ruby/rbs/pull/997))
1089
+
1090
+ #### rbs prototype
1091
+
1092
+ * Fix (`ArgumentError`) invalid byte sequence in UTF-8 ([\#995](https://github.com/ruby/rbs/pull/995))
1093
+ * Fix broken args after parsed `decls` from `RBS::Prototype::RB` ([\#998](https://github.com/ruby/rbs/pull/998))
1094
+ * Add *batch* mode to `rbs prototype` ([\#1000](https://github.com/ruby/rbs/pull/1000))
1095
+
1096
+ ## 2.4.0 (2022-05-08)
1097
+
1098
+ This is a minor release with some signature updates, `prototype rb` improvement, and test fixes.
1099
+
1100
+ ### Signature updates
1101
+
1102
+ * did_you_mean ([\#980](https://github.com/ruby/rbs/pull/980))
1103
+ * Pattern-matching exceptions ([\#979](https://github.com/ruby/rbs/pull/979/files))
1104
+ * `Singleton::SingletonClassMethods` ([\#978](https://github.com/ruby/rbs/pull/978))
1105
+
1106
+ #### rbs prototype
1107
+
1108
+ * Omit unnecessary param name on keyword arg from `prototype rb` ([\#974](https://github.com/ruby/rbs/pull/974))
1109
+
1110
+ ### Miscellaneous
1111
+
1112
+ * Fix git unsafe repository error on ci test ([\#985](https://github.com/ruby/rbs/pull/985))
1113
+ * Prefer `IO::Buffer.new` for mutable buffer tests ([\#989](https://github.com/ruby/rbs/pull/989))
1114
+ * Update steep ([\#990](https://github.com/ruby/rbs/pull/990))
1115
+
1116
+ ## 2.3.2 (2022-04-06)
1117
+
1118
+ ### Library changes
1119
+
1120
+ * Let modules have constants under `::Object` ([\#972](https://github.com/ruby/rbs/pull/972))
1121
+
1122
+ ### Miscellaneous
1123
+
1124
+ * Delete `-Wold-style-definition` ([\#971](https://github.com/ruby/rbs/pull/971))
1125
+ * `\e` is not defined in C90 ([\#970](https://github.com/ruby/rbs/pull/970))
1126
+
1127
+ ## 2.3.1 (2022-04-05)
1128
+
1129
+ ### Library changes
1130
+
1131
+ * Fix mswin build, use `append_cflags`, add Windows 'compile only' CI ([\#964](https://github.com/ruby/rbs/pull/964))
1132
+ * Raise `RBS::SyntaxError` from `parse_record_attributes` ([\#966](https://github.com/ruby/rbs/pull/966))
1133
+ * Toplevel constant must have the lowest precedence ([\#967](https://github.com/ruby/rbs/pull/967))
1134
+
1135
+ #### rbs prototype
1136
+
1137
+ * Use default value also for `literal_to_type` ([\#962](https://github.com/ruby/rbs/pull/962))
1138
+
1139
+ ## 2.3.0 (2022-04-01)
1140
+
1141
+ ### Signature updates
1142
+
1143
+ * `Enumerator` ([\#931](https://github.com/ruby/rbs/pull/931))
1144
+ * `FalseClass` ([\#931](https://github.com/ruby/rbs/pull/931))
1145
+ * `Integer` ([\#914](https://github.com/ruby/rbs/pull/914))
1146
+ * `Module` ([\#931](https://github.com/ruby/rbs/pull/931))
1147
+ * `NilClass` ([\#931](https://github.com/ruby/rbs/pull/931))
1148
+ * `Object` ([\#931](https://github.com/ruby/rbs/pull/931))
1149
+ * `Prime` ([\#934](https://github.com/ruby/rbs/pull/934))
1150
+ * `TracePoint` ([\#941](https://github.com/ruby/rbs/pull/941))
1151
+ * `TrueClass` ([\#931](https://github.com/ruby/rbs/pull/931))
1152
+ * `#to_d` ([\#936](https://github.com/ruby/rbs/pull/936))
1153
+ * `IO#wait_writable` ([\#943](https://github.com/ruby/rbs/pull/943))
1154
+
1155
+ ### Library changes
1156
+
1157
+ * Add `Resolver::ConstantResolver` and `Resolver::TypeNameResolver` ([\#938](https://github.com/ruby/rbs/pull/938))
1158
+ * Fix RBS::Locator ([\#930](https://github.com/ruby/rbs/pull/930))
1159
+ * Trying to preserve more locations ([\#915](https://github.com/ruby/rbs/pull/915))
1160
+ * Add visibility modifier to method definition json ([\#923](https://github.com/ruby/rbs/pull/923), [\#928](https://github.com/ruby/rbs/pull/928))
1161
+ * Add manifest.yaml for rbs gem ([\#921](https://github.com/ruby/rbs/pull/921))
1162
+ * Fix Environment type checking ([\#929](https://github.com/ruby/rbs/pull/929))
1163
+ * Fix memory violation in C extension ([\#952](https://github.com/ruby/rbs/pull/952))
1164
+ * Fix warnings in C extension ([\#954](https://github.com/ruby/rbs/pull/954))
1165
+
1166
+ #### rbs prototype
1167
+
1168
+ * Better typing for known `self`-returning method calls ([\#932](https://github.com/ruby/rbs/pull/932))
1169
+ * Let constants have literal types ([\#937](https://github.com/ruby/rbs/pull/937))
1170
+
1171
+ #### rbs collection
1172
+
1173
+ * Fix error message to tell gem name when source is not found ([\#927](https://github.com/ruby/rbs/pull/927))
1174
+
1175
+ ### Miscellaneous
1176
+
1177
+ * Fix `bin/sort` for constants ([\#919](https://github.com/ruby/rbs/pull/919))
1178
+ * Use actions/checkout@v3 ([\#944](https://github.com/ruby/rbs/pull/944))
1179
+ * Added actions ecosystem for dependabot ([\#946](https://github.com/ruby/rbs/pull/946))
1180
+ * Confirm RDoc is up to date ([\#945](https://github.com/ruby/rbs/pull/945))
1181
+
1182
+ ## 2.2.2 (2022-02-22)
1183
+
1184
+ ### Signature updates
1185
+
1186
+ * `cgi` ([\#761](https://github.com/ruby/rbs/pull/761))
1187
+ * `json` ([\#761](https://github.com/ruby/rbs/pull/761))
1188
+ * `set` ([\#761](https://github.com/ruby/rbs/pull/761))
1189
+
1190
+ ## 2.2.1 (2022-02-22)
1191
+
1192
+ ### Library changes
1193
+
1194
+ * Let `validate_type_alias` run without an error on unknown type ([\#912](https://github.com/ruby/rbs/pull/912))
1195
+
1196
+ ## 2.2.0 (2022-02-22)
1197
+
1198
+ RBS 2.2 ships with a new syntax to specify the visibility of a method per definition bases.
1199
+
1200
+ ```rbs
1201
+ class Foo
1202
+ private def hello: () -> void
1203
+
1204
+ private attr_accessor world: String
1205
+ end
1206
+ ```
1207
+
1208
+ It also changes the semantics of `self?` method.
1209
+ It defines both _public_ singleton method and _private_ instance method, which is equivalent to `module_function`.
1210
+
1211
+ ## Signature updates
1212
+
1213
+ * `net-http` ([\#892](https://github.com/ruby/rbs/pull/892))
1214
+ * `uri` ([\#864](https://github.com/ruby/rbs/pull/864))
1215
+ * `Encoding` ([\#897](https://github.com/ruby/rbs/pull/897), [\#898](https://github.com/ruby/rbs/pull/898))
1216
+ * `File::Stat` ([\#879](https://github.com/ruby/rbs/pull/879))
1217
+ * `Kernel#sleep` ([\#893](https://github.com/ruby/rbs/pull/893))
1218
+
1219
+ ### Language updates
1220
+
1221
+ * Add public/private per member modifier ([\#911](https://github.com/ruby/rbs/pull/911))
1222
+ * Let `self?.` be equivalent to `module_function` ([\#910](https://github.com/ruby/rbs/pull/910))
1223
+
1224
+ ### Library changes
1225
+
1226
+ * Add c99 flag for compiling on Ruby 2 ([\#895](https://github.com/ruby/rbs/pull/895))
1227
+ * Fix incorrect URI reference in `schema/typeParam.json` ([\#891](https://github.com/ruby/rbs/pull/891))
1228
+ * Allow scaffolding below namespace ([\#894](https://github.com/ruby/rbs/pull/894))
1229
+ * Let `Writer` preserve format ([\#900](https://github.com/ruby/rbs/pull/900))
1230
+ * Reduce memory usage of `RBS::Buffer` ([\#907](https://github.com/ruby/rbs/pull/907))
1231
+ * Do not call `#class` from `#hash` to improve performance ([\#906](https://github.com/ruby/rbs/pull/906))
1232
+ * Skip type variable validation if `unchcked` ([\#909](https://github.com/ruby/rbs/pull/909))
1233
+
1234
+ ### Miscellaneous
1235
+
1236
+ * Add `Thread::Backtrace` and `Thread::Backtrace::Location` test ([\#896](https://github.com/ruby/rbs/pull/896))
1237
+ * Test annotations ([\#902](https://github.com/ruby/rbs/pull/902))
1238
+ * Remove goodcheck rule for arglists section ([\#901](https://github.com/ruby/rbs/pull/901))
1239
+ * Remove `CharScanner` due to no longer used ([\#905](https://github.com/ruby/rbs/pull/905))
1240
+
1241
+ ## 2.1.0 (2022-02-02)
1242
+
1243
+ RBS 2.1 is a release to deliver the types and documents of the new and updated methods of Ruby 3.1.
1244
+
1245
+ ### Signature updates
1246
+
1247
+ * Documents imported from Ruby 3.1 ([\#881](https://github.com/ruby/rbs/pull/881))
1248
+ * Methods/classes updated in Ruby 3.1 ([\#886](https://github.com/ruby/rbs/pull/886))
1249
+ * io/wait ([\#865](https://github.com/ruby/rbs/pull/865))
1250
+ * json ([\#863](https://github.com/ruby/rbs/pull/863))
1251
+ * nkf ([\#873](https://github.com/ruby/rbs/pull/873))
1252
+ * openssl ([\#866](https://github.com/ruby/rbs/pull/866))
1253
+ * `Dir.exists?`, `FileTest#exists?` ([\#884](https://github.com/ruby/rbs/pull/884))
1254
+ * `FileTest` ([\#880](https://github.com/ruby/rbs/pull/880))
1255
+ * `Gem::Version#<=>` ([\#869](https://github.com/ruby/rbs/pull/869))
1256
+ * `Process.clock_gettime` ([\#858](https://github.com/ruby/rbs/pull/858))
1257
+
1258
+ ### Library changes
1259
+
1260
+ * Introduce `rbs annotate` command ([\#881](https://github.com/ruby/rbs/pull/881))
1261
+ * Make prototype rb to be aware of prepend ([\#861](https://github.com/ruby/rbs/pull/861))
1262
+ * Fixes incorrect "Invalid Variance" error when method type variable shadows outer type variable ([#889](https://github.com/ruby/rbs/pull/889))
1263
+
1264
+ ## 2.0.0 (2021-12-24)
1265
+
1266
+ ### Bounded Generics
1267
+
1268
+ RBS 2.0 ships with _bounded generics_, which improves the expressiveness of the language by adding a new syntax to define constraints on type parameters.
1269
+
1270
+ ```rbs
1271
+ class PrettyPrint[T < _Output]
1272
+ interface _Output
1273
+ def <<: (String) -> void
1274
+ end
1275
+
1276
+ attr_reader output: T
1277
+
1278
+ def initialize: (T output) -> void
1279
+ end
1280
+ ```
1281
+
1282
+ This is the motivating example I found in the [prettyprint library](https://github.com/ruby/prettyprint).
1283
+ The `#initialize` receives a object of type `T` and it must have `#<<` method.
1284
+ This is defined with `< _Output` syntax in the example.
1285
+ It means _`T` has to be compatible with `_Output` interface._
1286
+ `PrettyPrint[String]` is okay, but `PrettyPrint[Integer]` is a type error.
1287
+
1288
+ See [the PR for details](https://github.com/ruby/rbs/pull/844).
1289
+
1290
+ ### RBS Collection manager
1291
+
1292
+ RBS Collection feature is generally available on RBS 2.0. In short, it is Bundler for RBS. You can manage RBSs of standard libraries and third party gems with `rbs collection` subcommand.
1293
+
1294
+ ```bash
1295
+ $ rbs collection init
1296
+ created: rbs_collection.yaml
1297
+
1298
+ # The `install` command set up RBS files and creates `rbs_collection.lock.yaml` file
1299
+ $ rbs collection install
1300
+ Installing actionpack:6.0 (actionpack@ce6664cec73)
1301
+ (...snip...)
1302
+ Using tsort:0 (/path/to/rbs-2.0.0/stdlib/tsort/0)
1303
+ It's done! 21 gems' RBSs now installed.
1304
+
1305
+ # Now you can use `rbs`, `typeprof` and `steep` commands with the dependencies out of the box!
1306
+ $ rbs validate
1307
+ $ typeprof app.rb
1308
+ $ steep check
1309
+ ```
1310
+
1311
+ RBS 2.0 also introduces `manifest.yaml` to declare the dependencies from your gems to standard libraries explicitly.
1312
+ See [the documentation](https://github.com/ruby/rbs/blob/master/docs/collection.md) for more information.
1313
+
1314
+ ### Breaking changes
1315
+
1316
+ This version contains a bug fix, which potentially breaks the compatibility with older versions.
1317
+ The super class names in class definitions are now resolved in _outer_ context.
1318
+ It was an incompatibility with Ruby and [this PR](https://github.com/ruby/rbs/pull/856) fixed the problem.
1319
+
1320
+ ### Signature updates
1321
+
1322
+ * uri ([\#846](https://github.com/ruby/rbs/pull/846), [\#852](https://github.com/ruby/rbs/pull/852), [\#851](https://github.com/ruby/rbs/pull/851), [\#850](https://github.com/ruby/rbs/pull/850), [#849](https://github.com/ruby/rbs/pull/849))
1323
+
1324
+ ### Language updates
1325
+
1326
+ * Bounded generics ([\#844](https://github.com/ruby/rbs/pull/844))
1327
+ * Resolve super type names in outer context ([\#856](https://github.com/ruby/rbs/pull/856))
1328
+
1329
+ ### Library changes
1330
+
1331
+ * Add `manifest.yaml` for collection to specify stdlib dependencies ([\#808](https://github.com/ruby/rbs/pull/808))
1332
+ * Remove experimental warning of `rbs collection` ([\#855](https://github.com/ruby/rbs/pull/855))
1333
+ * Add the utility `#map_type` methods ([\#841](https://github.com/ruby/rbs/pull/841))
1334
+
1335
+ ## 1.8.1 (2021-12-13)
1336
+
1337
+ ### Library changes
1338
+
1339
+ * Validate `extend` arguments ([\#840](https://github.com/ruby/rbs/pull/840))
1340
+ * Allow a relative path as git remote in collection ([\#839](https://github.com/ruby/rbs/pull/839))
1341
+
1342
+ ## 1.8.0 (2021-12-02)
1343
+
1344
+ RBS 1.8.0 ships with a language feature enhancement, _generic type alias_.
1345
+ You can define a type alias with type parameters now.
1346
+
1347
+ ```rbs
1348
+ type list[T] = [T, list[T]] | nil # Defines a list of type T
1349
+
1350
+ type int_list = list[Integer] # List of Integer
1351
+ type string_list = list[String] # List of String
1352
+ ```
1353
+
1354
+ You can find the detail in the [PR](https://github.com/ruby/rbs/pull/823).
1355
+
1356
+ ### Signature updates
1357
+
1358
+ * `Date#+`, `Date#-` ([\#830](https://github.com/ruby/rbs/pull/830))
1359
+ * `#include?`, `#member?`, `#delete`, `#count` ([\#835](https://github.com/ruby/rbs/pull/835))
1360
+
1361
+ ### Language updates
1362
+
1363
+ * Generic type alias ([\#823](https://github.com/ruby/rbs/pull/823))
1364
+
1365
+ ## 1.7.1 (2021-11-18)
1366
+
1367
+ ### Signature updates
1368
+
1369
+ * `Thread#value` ([\#824](https://github.com/ruby/rbs/pull/824/files))
1370
+
1371
+ ### Library changes
1372
+
1373
+ * Unquote parameter name ([\#827](https://github.com/ruby/rbs/pull/827))
1374
+ * Remove `ruby/signature.rb` ([\#825](https://github.com/ruby/rbs/pull/825))
1375
+
1376
+ ### Miscellaneous
1377
+
1378
+ * Use `untyped` as an expectation of return value of `IO#ready?` in test ([\#828](https://github.com/ruby/rbs/pull/828/files))
1379
+
1380
+ ## 1.7.0 (2021-11-11)
1381
+
1382
+ This version replaces `RBS::Parser` implementation from pure Ruby code based on [Racc](https://github.com/ruby/racc) to C extension.
1383
+ It improves the RBS file parsing performance up to 5 times faster. :rocket:
1384
+
1385
+ * There are some incompatibilities to drop obsolete syntax rules: `super` keyword and `any` type are no longer supported.
1386
+ * [re2c](https://github.com/skvadrik/re2c) is used to generate lexical generator.
1387
+
1388
+ When you want to change the parser/lexer, change the files under `ext/rbs_extension` directory and run `rake compile` to compile the extension.
1389
+
1390
+ ### Signature updates
1391
+
1392
+ * io/console ([\#783](https://github.com/ruby/rbs/pull/783))
1393
+ * `ENV` -- Note that it introduces a dummy `::ENVClass` class, which is not defined in Ruby. ([\#812](https://github.com/ruby/rbs/pull/812))
1394
+ * `Net::HTTPRequest` ([\#784](https://github.com/ruby/rbs/pull/784))
1395
+ * `#clone` ([#811](https://github.com/ruby/rbs/pull/811), [\#813](https://github.com/ruby/rbs/pull/813))
1396
+ * `Kernel#BigDecimal` ([\#817](https://github.com/ruby/rbs/pull/817))
1397
+ * `Tempfile.new`, `Tempfile.create` ([\#792](https://github.com/ruby/rbs/pull/792), [\#791](https://github.com/ruby/rbs/pull/791))
1398
+
1399
+ ### Library changes
1400
+
1401
+ * Replace `RBS::Parser` ([#788](https://github.com/ruby/rbs/pull/788), [#789](https://github.com/ruby/rbs/pull/789))
1402
+ * Fix unexpected `CollectionNotAvailable` without `gems` from git source ([\#795](https://github.com/ruby/rbs/pull/795))
1403
+ * Print deprecation warning ([\#801](https://github.com/ruby/rbs/pull/801))
1404
+ * Make `Parser::KEYWORDS` a hash ([\#804](https://github.com/ruby/rbs/pull/804))
1405
+ * Use _partial clone_ for `rbs collection` installer ([#805](https://github.com/ruby/rbs/pull/805))
1406
+ * Respect logger level for test/setup logger ([\#819](https://github.com/ruby/rbs/pull/819), [\#822](https://github.com/ruby/rbs/pull/822))
1407
+
1408
+ ## Miscellaneous
1409
+
1410
+ * Avoid a mixture of `Array#filter` and `Array#select` ([\#820](https://github.com/ruby/rbs/pull/820))
1411
+ * Remove leftover documentation about `super` ([\#807](https://github.com/ruby/rbs/pull/807))
1412
+
1413
+ ## 1.6.2 (2021-09-09)
1414
+
1415
+ ### Signature updates
1416
+
1417
+ * `Enumerator::Lazy#force` ([\#782](https://github.com/ruby/rbs/pull/782))
1418
+ * `IO.readlines` ([\#780](https://github.com/ruby/rbs/pull/780))
1419
+
1420
+ ### Miscellaneous
1421
+
1422
+ * Set `$XDG_CACHE_HOME` during test ([\#781](https://github.com/ruby/rbs/pull/781))
1423
+
1424
+ ## 1.6.1 (2021-09-05)
1425
+
1426
+ This is a minor release including test fixes.
1427
+
1428
+ ### Miscellaneous
1429
+
1430
+ * Fix stdlib test for `Resolv::Hosts` by removing `/etc/hosts` dependency ([\#779](https://github.com/ruby/rbs/pull/779))
1431
+ * Fix bundler related test for test-bundled-gems ([\#778](https://github.com/ruby/rbs/pull/778))
1432
+
1433
+ ## 1.6.0 (2021-09-05)
1434
+
1435
+ This release includes a preview of `rbs collection` commands, which is _bundler for RBS_.
1436
+ The command helps you manage RBS files from gem_rbs_collection or other repositories.
1437
+
1438
+ This feature is a preview, and any feedback is welcome!
1439
+
1440
+ ### Signature updates
1441
+
1442
+ * objspace ([\#763](https://github.com/ruby/rbs/pull/763), [\#776](https://github.com/ruby/rbs/pull/776))
1443
+ * tempfile ([\#767](https://github.com/ruby/rbs/pull/767), [\#775](https://github.com/ruby/rbs/pull/775))
1444
+ * `IO#set_encoding_by_bom` ([\#106](https://github.com/ruby/rbs/pull/106))
1445
+ * `OpenSSL::PKey::EC#dh_compute_key` ([\#775](https://github.com/ruby/rbs/pull/775))
1446
+
1447
+ ### Library changes
1448
+
1449
+ * Add `rbs collection` ([\#589](https://github.com/ruby/rbs/pull/589), [\#772](https://github.com/ruby/rbs/pull/772), [\#773](https://github.com/ruby/rbs/pull/773))
1450
+
1451
+ ### Miscellaneous
1452
+
1453
+ * Let `bin/annotate-with-rdoc` process nested constants/classes ([\#766](https://github.com/ruby/rbs/pull/766), [\#768](https://github.com/ruby/rbs/pull/768))
1454
+ * Stop printing version mismatch message in CI ([\#777](https://github.com/ruby/rbs/pull/777))
1455
+ * Update Steep and fix type errors ([\#770](https://github.com/ruby/rbs/pull/770), [\#774](https://github.com/ruby/rbs/pull/774))
1456
+ * Add dependabot configuration ([\#771](https://github.com/ruby/rbs/pull/771))
1457
+
1458
+ ## 1.5.1 (2021-08-22)
1459
+
1460
+ ### Miscellaneous
1461
+
1462
+ * Fix Net_HTTP_test ([\#759](https://github.com/ruby/rbs/pull/759))
1463
+
1464
+ ## 1.5.0 (2021-08-22)
1465
+
1466
+ This release includes stdlib signature updates.
1467
+
1468
+ ### Signature updates
1469
+
1470
+ * digest ([\#744](https://github.com/ruby/rbs/pull/744), [\#757](https://github.com/ruby/rbs/pull/757))
1471
+ * io-wait ([\#756](https://github.com/ruby/rbs/pull/756), [\#758](https://github.com/ruby/rbs/pull/758))
1472
+ * `Ractor` ([\#755](https://github.com/ruby/rbs/pull/755))
1473
+ * `File::Stat#size?` ([\#754](https://github.com/ruby/rbs/pull/754))
1474
+ * `$-i`, `$0`, `$PROGRAM_NAME` ([\#753](https://github.com/ruby/rbs/pull/753))
1475
+
1476
+ ## 1.4.0 (2021-08-19)
1477
+
1478
+ This release includes feature enhancements including recursive `type` definition validation, improved compatibility of global variable names, and various method type updates.
1479
+
1480
+ ### Signature updates
1481
+
1482
+ * openssl ([\#743](https://github.com/ruby/rbs/pull/743))
1483
+ * `Array`, `Enumerator`, `Enumerable`, `Hash`, `FalseClass`, `Float`, `Hash`, `Integer`, `Object`, `Range`, `TrueClass` ([\#728](https://github.com/ruby/rbs/pull/728))
1484
+ * `Array#[]` ([\#732](https://github.com/ruby/rbs/pull/732))
1485
+ * `Exception#set_backtrace` ([\#738](https://github.com/ruby/rbs/pull/738))
1486
+ * `Kernel#Array` ([\#733](https://github.com/ruby/rbs/pull/733))
1487
+ * `Kernel#spawn` ([\#748](https://github.com/ruby/rbs/pull/748))
1488
+ * `Kernel#String` ([\#745](https://github.com/ruby/rbs/pull/745), [\#751](https://github.com/ruby/rbs/pull/751))
1489
+ * `URI::Generic#fragment` ([\#752](https://github.com/ruby/rbs/pull/752))
1490
+ * `URI::Generic#merge` ([\#746](https://github.com/ruby/rbs/pull/746))
1491
+
1492
+ ### Language updates
1493
+
1494
+ * Add global variables signature ([\#749](https://github.com/ruby/rbs/pull/749))
1495
+
1496
+ ### Library changes
1497
+
1498
+ * Add Recursive type alias definition validation ([\#719](https://github.com/ruby/rbs/pull/719))
1499
+ * Generate included modules with complete name ([\#731](https://github.com/ruby/rbs/pull/731))
1500
+ * Fix `rbs-prototype-rb` error when multi assign with const ([\#740](https://github.com/ruby/rbs/pull/740))
1501
+
1502
+ ## 1.3.3 (2021-07-28)
1503
+
1504
+ This release includes a minor update of `resolv` library RBS and a fix of test for `ruby/ruby` CI.
1505
+
1506
+ ### Signature updates
1507
+
1508
+ * resolv ([#726](https://github.com/ruby/rbs/pull/726))
1509
+
1510
+ ## 1.3.2 (2021-07-23)
1511
+
1512
+ This release is to fix a bug introduced by parser update in 1.3.0.
1513
+
1514
+ * Fix parser to accept alias names starting with `_` ([#723](https://github.com/ruby/rbs/pull/723))
1515
+
1516
+ ## 1.3.1 (2021-07-21)
1517
+
1518
+ This release is to fix a bug introduced by parser update in 1.3.0.
1519
+
1520
+ * Fix parser to accept param names starting with `_` ([#721](https://github.com/ruby/rbs/pull/721))
1521
+
1522
+ ## 1.3.0 (2021-07-20)
1523
+
1524
+ ### Summary
1525
+
1526
+ RBS 1.3.0 includes bug fixes of the parser and class/module definition validations.
1527
+
1528
+ ### Signature updates
1529
+
1530
+ * dbm ([#718](https://github.com/ruby/rbs/pull/718))
1531
+ * net-http ([#686](https://github.com/ruby/rbs/pull/686))
1532
+ * optparse ([#693](https://github.com/ruby/rbs/pull/693))
1533
+ * resolv ([#697](https://github.com/ruby/rbs/pull/697))
1534
+ * socket ([#699](https://github.com/ruby/rbs/pull/699))
1535
+ * `IO` ([#698](https://github.com/ruby/rbs/pull/698))
1536
+ * `Marshal` ([#684](https://github.com/ruby/rbs/pull/684))
1537
+ * `Mutex` ([#683](https://github.com/ruby/rbs/pull/683))
1538
+ * `Array#shift` ([#707](https://github.com/ruby/rbs/pull/707))
1539
+ * `BasicObject#method_missing` ([#707](https://github.com/ruby/rbs/pull/706), [#710](https://github.com/ruby/rbs/pull/710))
1540
+ * `Kernel#caller` ([#705](https://github.com/ruby/rbs/pull/705))
1541
+
1542
+ ### Library changes
1543
+
1544
+ * Interface names starting with lower case characters are now syntax error ([#678](https://github.com/ruby/rbs/pull/678), [#720](https://github.com/ruby/rbs/pull/720))
1545
+ * Mixins of classes are rejected ([#681](https://github.com/ruby/rbs/pull/681))
1546
+ * Generate prototype of `initialize` method with return type `void` ([#685](https://github.com/ruby/rbs/pull/685))
1547
+ * Let `prototype runtime` generate class/module declarations in nested syntax ([#700](https://github.com/ruby/rbs/pull/700))
1548
+ * Fix race condition for multi-thread support ([#702](https://github.com/ruby/rbs/pull/702))
1549
+
1550
+ ### Miscellaneous
1551
+
1552
+ * Add new doc `docs/rbs_by_example.md` ([#694](https://github.com/ruby/rbs/pull/694))
1553
+
1554
+ ## 1.2.1 (2021-05-27)
1555
+
1556
+ This release includes the following minor changes:
1557
+
1558
+ * Fix test to run the tests in ruby repository. ([#679](https://github.com/ruby/rbs/pull/679))
1559
+ * Remove unnecessary files from the gem package. ([#675](https://github.com/ruby/rbs/pull/675))
1560
+ * Suppress unused variable warning ([#674](https://github.com/ruby/rbs/pull/674))
1561
+ * Update documents ([#672](https://github.com/ruby/rbs/pull/672))
1562
+
1563
+ ## 1.2.0 (2021-04-21)
1564
+
1565
+ ### Summary
1566
+
1567
+ RBS 1.2 ships with better support for AST/token locations and `Locator` utility class. The AST objects now keep the locations of tokens. The `Locator` class is to translate the text position (line and column) to semantic object at the location. The class allows to find if a text position is on the class name of a class declaration.
1568
+
1569
+ ### Signature updates
1570
+
1571
+ * Hash ([#631](https://github.com/ruby/rbs/pull/631), [#632](https://github.com/ruby/rbs/pull/632), [\#637](https://github.com/ruby/rbs/pull/637), [\#638](https://github.com/ruby/rbs/pull/638), [\#639](https://github.com/ruby/rbs/pull/639), )
1572
+ * Module ([\#645](https://github.com/ruby/rbs/pull/645))
1573
+ * Enumerable ([\#647](https://github.com/ruby/rbs/pull/647))
1574
+ * Array ([\#648](https://github.com/ruby/rbs/pull/648))
1575
+ * Proc ([\#649](https://github.com/ruby/rbs/pull/649))
1576
+ * Struct ([\#650](https://github.com/ruby/rbs/pull/650), [\#668](https://github.com/ruby/rbs/pull/668))
1577
+ * Thread ([\#651](https://github.com/ruby/rbs/pull/651))
1578
+ * Random ([\#669](https://github.com/ruby/rbs/pull/669))
1579
+ * Shellwords ([\#665](https://github.com/ruby/rbs/pull/665))
1580
+ * IO ([\#659](https://github.com/ruby/rbs/pull/659))
1581
+
1582
+ ### Language updates
1583
+
1584
+ * Module self type syntax update ([\#653](https://github.com/ruby/rbs/pull/653))
1585
+
1586
+ ### Library changes
1587
+
1588
+ * Token locations ([\#666](https://github.com/ruby/rbs/pull/666))
1589
+ * Add RBS::Locator ([\#667](https://github.com/ruby/rbs/pull/667))
1590
+ * Fix runtime type checker ([\#644](https://github.com/ruby/rbs/pull/644))
1591
+
1592
+ ### Miscellaneous
1593
+
1594
+ * Update documentation for overloading ([\#658](https://github.com/ruby/rbs/pull/658))
1595
+ * Update target ruby version ([\#633](https://github.com/ruby/rbs/pull/633))
1596
+
1597
+ ## 1.1.1 (2021-03-12)
1598
+
1599
+ ### Signature updates
1600
+
1601
+ * rubygem ([#630](https://github.com/ruby/rbs/pull/630))
1602
+
1603
+ ## 1.1.0 (2021-03-08)
1604
+
1605
+ ### Summary
1606
+
1607
+ Errors are now organized by `RBS::BaseError`, `RBS::ParsingError`, `RBS::LoadingError`, and `RBS::DefinitionError`.
1608
+ The library users can rescue RBS related errors with `RBS::BaseError`, parsing errors with `RBS::ParsingError`, and other errors with `RBS::LoadingError` and `RBS::DefinitionErrors`.
1609
+
1610
+ Updating a part of environments are supported. Library users can remove declarations read from a set of files, adding new declarations, running name resolution related to the new decls, and deleting `DefinitionBuilder` caches related to the changes.
1611
+ See `RBS::Environment#reject`, `RBS::Environment#resolve_type_names`, `RBS::AncestorGraph`, and `RBS::DefinitionBuilder#update`.
1612
+
1613
+ `RBS::DefinitionBuilder#build_singleton` now returns definitions containing `instance` type, which had returned resolved class instance types. This is a breaking change, but we consider it a bug fix because `RBS::DefinitionBuilder#build_instance` has returned `instance` types and `#build_singleton` has returned `class` type.
1614
+
1615
+ ### Signature updates
1616
+
1617
+ * rubygem ([\#605](https://github.com/ruby/rbs/pull/605), [\#610](https://github.com/ruby/rbs/pull/610))
1618
+ * Array ([\#612](https://github.com/ruby/rbs/pull/612), [\#614](https://github.com/ruby/rbs/pull/614))
1619
+ * cgi/core ([\#599](https://github.com/ruby/rbs/pull/599))
1620
+ * Thread ([\#618](https://github.com/ruby/rbs/pull/618))
1621
+
1622
+ ### Language updates
1623
+
1624
+ * Allow trailing comma for Record and Tuple types ([\#606](https://github.com/ruby/rbs/pull/606))
1625
+
1626
+ ### Library changes
1627
+
1628
+ * Allow partial update of RBS declarations ([\#608](https://github.com/ruby/rbs/pull/608), [\#621](https://github.com/ruby/rbs/pull/621))
1629
+ * Let errors have `TypeName` ([\#611](https://github.com/ruby/rbs/pull/611))
1630
+ * Add `Parser::LexerError` ([\#615](https://github.com/ruby/rbs/pull/615))
1631
+ * Performance improvement ([\#617](https://github.com/ruby/rbs/pull/617), [\#620](https://github.com/ruby/rbs/pull/620))
1632
+ * No substitute `instance` types on `#build_singleton` ([\#619](https://github.com/ruby/rbs/pull/619))
1633
+
1634
+ ### Miscellaneous
1635
+
1636
+ * Make racc name customizable by `RACC` environment variable ([\#602](https://github.com/ruby/rbs/pull/602))
1637
+ * Suppress warnings ([\#624](https://github.com/ruby/rbs/pull/624))
1638
+ * Remove needless `Gem::Version` polyfill ([\#622](https://github.com/ruby/rbs/pull/622))
1639
+
1640
+ ## 1.0.6 (2021-02-17)
1641
+
1642
+ * Signature Updates
1643
+ * `Enumerable` ([\#595](https://github.com/ruby/rbs/pull/595), [\#596](https://github.com/ruby/rbs/pull/596), [\#601](https://github.com/ruby/rbs/pull/601))
1644
+ * `#as_json` ([\#597](https://github.com/ruby/rbs/pull/597))
1645
+
1646
+ ## 1.0.5 (2021-02-13)
1647
+
1648
+ * Signature Updates
1649
+ * Enumerable ([\#596](https://github.com/ruby/rbs/pull/596))
1650
+ * Set ([\#595](https://github.com/ruby/rbs/pull/595))
1651
+ * `#to_json` ([\#592](https://github.com/ruby/rbs/pull/592))
1652
+ * `<=>` ([\#593](https://github.com/ruby/rbs/pull/593))
1653
+ * Timeout ([\#586](https://github.com/ruby/rbs/pull/586))
1654
+ * URI::RFC2396_Parser ([\#587](https://github.com/ruby/rbs/pull/587))
1655
+ * Rename generic class parameters on re-open ([\#594](https://github.com/ruby/rbs/pull/594))
1656
+ * Make `refute_send_type` check that method call doesn't match with types in RBS ([\#588](https://github.com/ruby/rbs/pull/588))
1657
+
1658
+ ## 1.0.4 (2021-01-31)
1659
+
1660
+ * Unbundle `rr` to run test in `ruby/ruby` repo ([#585](https://github.com/ruby/rbs/pull/585))
1661
+
1662
+ ## 1.0.3 (2021-01-28)
1663
+
1664
+ * Set up `#ancestors` and `#location` of `RecursiveAncestorError` ([#583](https://github.com/ruby/rbs/pull/583))
1665
+
1666
+ ## 1.0.2 (2021-01-28)
1667
+
1668
+ * Signature Updates
1669
+ * Kernel([#582](https://github.com/ruby/rbs/pull/582))
1670
+
1671
+ ## 1.0.1 (2021-01-27)
1672
+
1673
+ * Signature Updates
1674
+ * PrettyPrint ([\#573](https://github.com/ruby/rbs/pull/573))
1675
+ * FileUtils ([\#576](https://github.com/ruby/rbs/pull/576))
1676
+ * UnboundMethod ([\#555](https://github.com/ruby/rbs/pull/555))
1677
+ * IO ([\#571](https://github.com/ruby/rbs/pull/571))
1678
+ * Kernel ([\#549](https://github.com/ruby/rbs/pull/549), [\#569](https://github.com/ruby/rbs/pull/569))
1679
+ * File ([\#552](https://github.com/ruby/rbs/pull/552))
1680
+ * Data is removed ([\#570](https://github.com/ruby/rbs/pull/570))
1681
+ * Module ([\#568](https://github.com/ruby/rbs/pull/568))
1682
+ * Object ([\#557](https://github.com/ruby/rbs/pull/557))
1683
+ * Renew test sample code ([#581](https://github.com/ruby/rbs/pull/581))
1684
+ * Add description to `generate:stdlib_test` Rake task ([\#578](https://github.com/ruby/rbs/pull/578))
1685
+ * Declare supported ruby version >= 2.6 ([\#548](https://github.com/ruby/rbs/pull/548))
1686
+ * Fix module self-type override ([\#577](https://github.com/ruby/rbs/pull/577))
1687
+ * Fix parser to support all operator symbols ([\#550](https://github.com/ruby/rbs/pull/550))
1688
+ * Migrate from Minitest to Test::Unit ([\#556](https://github.com/ruby/rbs/pull/556))
1689
+ * Fix type alias parsing ([\#565](https://github.com/ruby/rbs/pull/565))
1690
+ * Support end-less method definition in `prototype rb` ([\#561](https://github.com/ruby/rbs/pull/561))
1691
+ * Support method argument forwarding in `prototype rb` ([\#560](https://github.com/ruby/rbs/pull/560))
1692
+
1693
+ ## 1.0.0 (2020-12-24)
1694
+
1695
+ * Signature updates for `URI`, `IO`, `File`, `Pathname`, `Module`, and `Time` ([#529](https://github.com/ruby/rbs/pull/529), [#521](https://github.com/ruby/rbs/pull/521), [#520](https://github.com/ruby/rbs/pull/520), [#511](https://github.com/ruby/rbs/pull/511), [#517](https://github.com/ruby/rbs/pull/517), [#542](https://github.com/ruby/rbs/pull/542), [#546](https://github.com/ruby/rbs/pull/546), [#540](https://github.com/ruby/rbs/pull/540), [#538](https://github.com/ruby/rbs/pull/538))
1696
+ * `rbs prototype runtime` generates `extend`s ([#535](https://github.com/ruby/rbs/pull/535))
1697
+ * `rbs prototype runtime` stability improvements ([#533](https://github.com/ruby/rbs/pull/533), [#526](https://github.com/ruby/rbs/pull/526))
1698
+ * `rbs prototype rb` compatibility improvements ([#545](https://github.com/ruby/rbs/pull/545))
1699
+ * Implement method names escape in `RBS::Writer` ([#537](https://github.com/ruby/rbs/pull/537))
1700
+ * Improve runtime type checker compatibility ([#532](https://github.com/ruby/rbs/pull/532), [#528](https://github.com/ruby/rbs/pull/528), [#547](https://github.com/ruby/rbs/pull/547))
1701
+ * Fix `ruby2_keywords` for `Proc` in Ruby <2.7 ([#513](https://github.com/ruby/rbs/pull/513))
1702
+ * Better compatibility for record type attribute names ([#525](https://github.com/ruby/rbs/pull/525), [#524](https://github.com/ruby/rbs/pull/524))
1703
+ * Let module self-types be classes ([#523](https://github.com/ruby/rbs/pull/523))
1704
+ * Delete `extension` syntax ([#543](https://github.com/ruby/rbs/pull/543))
1705
+ * Method resolution improvements about `alias` and `.new` ([#522](https://github.com/ruby/rbs/pull/522), [#519](https://github.com/ruby/rbs/pull/519), [#516](https://github.com/ruby/rbs/pull/516))
1706
+ * Better message for `DuplicatedMethodDefinitionError` ([#539](https://github.com/ruby/rbs/pull/539))
1707
+
1708
+ ## 0.20.1 (2020-12-06)
1709
+
1710
+ * Make the order of RBS load reproducible ([#508](https://github.com/ruby/rbs/pull/508))
1711
+
1712
+ ## 0.20.0 (2020-12-06)
1713
+
1714
+ * Signature updates for `TSort`, `DBM`, `Time`, and `Hash` ([#496](https://github.com/ruby/rbs/pull/496), [#497](https://github.com/ruby/rbs/pull/497), [#499](https://github.com/ruby/rbs/pull/499), [#507](https://github.com/ruby/rbs/pull/507))
1715
+ * Add _singleton attribute_ syntax ([#502](https://github.com/ruby/rbs/pull/502), [#506](https://github.com/ruby/rbs/pull/506), [#505](https://github.com/ruby/rbs/pull/505))
1716
+ * Proc types with blocks ([#503](https://github.com/ruby/rbs/pull/503))
1717
+ * Add support for escape sequences in string literal types ([#501](https://github.com/ruby/rbs/pull/501))
1718
+ * Fix runtime type checking of blocks with keyword args ([#500](https://github.com/ruby/rbs/pull/500))
1719
+
1720
+ ## 0.19.0 (2020-12-02)
1721
+
1722
+ * Signature updates for `Monitor` and File ([#485](https://github.com/ruby/rbs/pull/485), [#495](https://github.com/ruby/rbs/pull/495))
1723
+
1724
+ ## 0.18.1 (2020-12-01)
1725
+
1726
+ * Fix `EnvironmentWalker#each_type_name` ([#494](https://github.com/ruby/rbs/pull/494))
1727
+
1728
+ ## 0.18.0 (2020-12-01)
1729
+
1730
+ * Signature updates for `YAML`, `ObjectSpace`, and `Singleton` ([#408](https://github.com/ruby/rbs/pull/408), [#477](https://github.com/ruby/rbs/pull/477), [#482](https://github.com/ruby/rbs/pull/482))
1731
+ * `prototype rb` improvements ([#492](https://github.com/ruby/rbs/pull/492), [#487](https://github.com/ruby/rbs/pull/487), [#486](https://github.com/ruby/rbs/pull/486), [#481](https://github.com/ruby/rbs/pull/481))
1732
+ * Runtime type checker improvements ([#488](https://github.com/ruby/rbs/pull/488), [#489](https://github.com/ruby/rbs/pull/489), [#490](https://github.com/ruby/rbs/pull/490))
1733
+ * Update `DependencyWalker` API to receive _Node_ objects instead of `TypeName` ([#484](https://github.com/ruby/rbs/pull/484))
1734
+ * Assume encoding of RBS files to be UTF-8 ([#493](https://github.com/ruby/rbs/pull/493))
1735
+
1736
+ ## 0.17.0 (2020-11-14)
1737
+
1738
+ * Signature updates for `Enumerable`, `Hash`, and `TSort` ([#462](https://github.com/ruby/rbs/pull/462), [#468](https://github.com/ruby/rbs/pull/468), [#471](https://github.com/ruby/rbs/pull/471), [#472](https://github.com/ruby/rbs/pull/472), [#473](https://github.com/ruby/rbs/pull/473), [#474](https://github.com/ruby/rbs/pull/474))
1739
+ * Parser error handling improvement ([#463](https://github.com/ruby/rbs/pull/463), [#475](https://github.com/ruby/rbs/pull/475))
1740
+ * Hash spread syntax handling improvement with `prototype rb` ([#465](https://github.com/ruby/rbs/pull/465))
1741
+
1742
+ ## 0.16.0 (2020-11-05)
1743
+
1744
+ * Signature update for `DBM` ([#441](https://github.com/ruby/rbs/pull/441))
1745
+ * RBS repository ([#405](https://github.com/ruby/rbs/pull/405))
1746
+ * Support `alias` in `rbs prototype rb` ([#457](https://github.com/ruby/rbs/pull/457))
1747
+
1748
+ ## 0.15.0 (2020-11-02)
1749
+
1750
+ * Signature updates for `Kernel`, `PStore`, `Enumerable`, and `Array` ([#450](https://github.com/ruby/rbs/pull/450), [#443](https://github.com/ruby/rbs/pull/443), [#438](https://github.com/ruby/rbs/pull/438), [#437](https://github.com/ruby/rbs/pull/437), [#433](https://github.com/ruby/rbs/pull/433), [#432](https://github.com/ruby/rbs/pull/432))
1751
+ * Add helper interfaces ([#434](https://github.com/ruby/rbs/pull/434), [#428](https://github.com/ruby/rbs/pull/428))
1752
+ * Change `bool` type semantics ([#456](https://github.com/ruby/rbs/pull/456))
1753
+ * Support alias in `rbs prototype rb` ([#457](https://github.com/ruby/rbs/pull/457))
1754
+ * Runtime testing improvements ([#455](https://github.com/ruby/rbs/pull/455), [#447](https://github.com/ruby/rbs/pull/447), [#444](https://github.com/ruby/rbs/pull/444), [#431](https://github.com/ruby/rbs/pull/431))
1755
+ * Fix proc type parsing ([#451](https://github.com/ruby/rbs/pull/451))
1756
+ * Fix type variable parsing ([#442](https://github.com/ruby/rbs/pull/442))
1757
+
1758
+
1759
+ ## 0.14.0 (2020-10-17)
1760
+
1761
+ * Allow keyword names ending with `?` and `!` ([#417](https://github.com/ruby/rbs/pull/417))
1762
+ * Make `Range[T]` covariant ([#418](https://github.com/ruby/rbs/pull/418))
1763
+
1764
+ ## 0.13.1 (2020-10-09)
1765
+
1766
+ * Fix test for CI of ruby/ruby ([#412](https://github.com/ruby/rbs/pull/412))
1767
+
1768
+ ## 0.13.0 (2020-10-09)
1769
+
1770
+ * Signature updates for `URI` classes.
1771
+ * Fix tests ([#410](https://github.com/ruby/rbs/pull/410))
1772
+ * Add `--silent` option for `rbs validate` ([#411](https://github.com/ruby/rbs/pull/411))
1773
+
1774
+ ## 0.12.2 (2020-09-17)
1775
+
1776
+ * Minor signature update for `pty`
1777
+ * Fix `PTY` stdlib test
1778
+
1779
+ ## 0.12.1 (2020-09-16)
1780
+
1781
+ This version is to improve Ruby 3 testing compatibility. Nothing changed for users.
1782
+
1783
+ ## 0.12.0 (2020-09-15)
1784
+
1785
+ * Signature updates for `forwardable`, `struct`, `set`, `URI::Generic`, `URI::File`, and `BigDecimal`.
1786
+ * Define `.new` methods from `initialize` included from modules [#390](https://github.com/ruby/rbs/pull/390)
1787
+
1788
+ ## 0.11.0 (2020-08-31)
1789
+
1790
+ * Signature update for `date/datetime` [#367](https://github.com/ruby/rbs/pull/367)
1791
+ * Add test double support for runtime type checker [#380](https://github.com/ruby/rbs/pull/380)
1792
+ * Add `rbs test` command for runtime type checking [#366](https://github.com/ruby/rbs/pull/366)
1793
+ * Fix runtime type checking for record types [#365](https://github.com/ruby/rbs/pull/365)
1794
+ * Improve EnvironmentLoader API [#370](https://github.com/ruby/rbs/pull/370)
1795
+ * Allow overloading from super methods [#364](https://github.com/ruby/rbs/pull/364)
1796
+
1797
+ ## 0.10.0 (2020-08-10)
1798
+
1799
+ * Signature update for `Zlib`
1800
+ * Make "no type checker installed" message a debug print [#363](https://github.com/ruby/rbs/pull/363)
1801
+ * Print `...` for overloading method definitions [#362](https://github.com/ruby/rbs/pull/362)
1802
+ * Allow missing method implementation in Ruby code [#359](https://github.com/ruby/rbs/pull/359)
1803
+ * Runtime testing improvements [#356](https://github.com/ruby/rbs/pull/356)
1804
+
1805
+ ## 0.9.1 (2020-08-04)
1806
+
1807
+ * Ensure using Module#name [#354](https://github.com/ruby/rbs/pull/354)
1808
+ * Fix runtime test setup [#353](https://github.com/ruby/rbs/pull/353)
1809
+
1810
+ ## 0.9.0 (2020-08-03)
1811
+
1812
+ * Fix signature validation [#351](https://github.com/ruby/rbs/pull/351), [#352](https://github.com/ruby/rbs/pull/352)
1813
+ * Parsing performance improvement [#350](https://github.com/ruby/rbs/pull/350)
1814
+
1815
+ ## 0.8.0 (2020-08-01)
1816
+
1817
+ * Signature updates for `Enumerator` and `PTY`
1818
+ * Fix prototype rb/rbi error handling [#349](https://github.com/ruby/rbs/pull/349)
1819
+ * Runtime test improvements [#344](https://github.com/ruby/rbs/pull/344), [#343](https://github.com/ruby/rbs/pull/343)
1820
+ * Add `...` syntax [#342](https://github.com/ruby/rbs/pull/342)
1821
+
1822
+ ## 0.7.0 (2020-07-20)
1823
+
1824
+ * Add `DefinitionBuilder#one_instance_ancestors` and `DefinitionBuilder#one_singleton_ancestors` [#341](https://github.com/ruby/rbs/pull/341)
1825
+ * Bug fix in ConstantTable [#340](https://github.com/ruby/rbs/pull/340)
1826
+ * Make `rbs validate` faster [#338](https://github.com/ruby/rbs/pull/338)
1827
+ * Dedup methods generated by `rbs prototype rb` [#334](https://github.com/ruby/rbs/pull/334)
1828
+
1829
+ ## 0.6.0 (2020-07-12)
1830
+
1831
+ * Signature update for `Logger`.
1832
+ * Clean `Environment#inspect`. [#331](https://github.com/ruby/rbs/pull/331)
1833
+ * Module self type syntax update. [#329](https://github.com/ruby/rbs/pull/329)
1834
+ * Better validation. [#328](https://github.com/ruby/rbs/pull/328)
1835
+ * Parser performance improvement. [#327](https://github.com/ruby/rbs/pull/327)
1836
+ * Runtime type checking performance improvements with sampling [#323](https://github.com/ruby/rbs/pull/323)
1837
+
1838
+ ## 0.5.0 (2020-07-04)
1839
+
1840
+ * Signature updates for `Mutex_m`, `IO`, and `Enumerable`.
1841
+ * Syntax update. [#307](https://github.com/ruby/rbs/pull/307)
1842
+ * AST command prints _absolute_ type names with file name filtering. [#312](https://github.com/ruby/rbs/pull/312)
1843
+ * Improve CLI message. [#309](https://github.com/ruby/rbs/pull/309)
1844
+
1845
+ ## 0.4.0 (2020-06-15)
1846
+
1847
+ * Signature update for `Fiber`, `Encoding`, and `Enumerator`.
1848
+ * Fix syntax error for underscore and `!` `?` [#304](https://github.com/ruby/rbs/pull/304)
1849
+ * Improved return type inference in `rbs prototype rb` [#303](https://github.com/ruby/rbs/pull/303)
1850
+ * Skip anonymous modules/classes in `rbs prototype runtime` [#302](https://github.com/ruby/rbs/pull/302)
1851
+ * Fix `--require-relative` option in `rbs prototype runtime` [#299](https://github.com/ruby/rbs/pull/299)
1852
+ * Add JSON schema for `rbs ast` [#295](https://github.com/ruby/rbs/pull/295)
1853
+
1854
+ ## 0.3.1 (2020-05-22)
1855
+
1856
+ * Fix constant resolution again [#289](https://github.com/ruby/rbs/pull/289)
1857
+
1858
+ ## 0.3.0 (2020-05-20)
1859
+
1860
+ * Fix constant resolution [#288](https://github.com/ruby/rbs/pull/288)
1861
+
1862
+ ## 0.2.0
1863
+
1864
+ * The first release of RBS gem.
1865
+
1866
+ ## 0.1.0
1867
+
1868
+ * Version 0.1.0 is the original `rbs` gem and it is different software from RBS.