|
9 | 9 | - Respect `highlight` kwarg in Ruby 3.2's `detailed_message` to enable/disable control characters (https://github.com/zombocom/dead_end/pull/147) |
10 | 10 | - Added workarounds for running on ruby/ruby repo (https://github.com/ruby/syntax_suggest/pull/156) |
11 | 11 |
|
12 | | -## 4.0.0 |
| 12 | +## dead_end 4.0.0 |
13 | 13 |
|
14 | 14 | - Code that does not have an associated file (eval and streamed) no longer produce a warning saying that the file could not be found. To produce a warning with these code types run with DEBUG=1 environment variable. (https://github.com/zombocom/dead_end/pull/143) |
15 | 15 | - [Breaking] Lazy load SyntaxSuggest internals only if there is a Syntax error. Use `require "dead_end"; require "dead_end/api"` to load eagerly all internals. Otherwise `require "dead_end"` will set up an autoload for the first time the SyntaxSuggest module is used in code. This should only happen on a syntax error. (https://github.com/zombocom/dead_end/pull/142) |
16 | 16 | - Monkeypatch `SyntaxError#detailed_message` in Ruby 3.2+ instead of `require`, `load`, and `require_relative` (https://github.com/zombocom/dead_end/pull/139) |
17 | 17 |
|
18 | | -## 3.1.2 |
| 18 | +## dead_end 3.1.2 |
19 | 19 |
|
20 | 20 | - Fixed internal class AroundBlockScan, minor changes in outputs (https://github.com/zombocom/dead_end/pull/131) |
21 | 21 |
|
22 | | -## 3.1.1 |
| 22 | +## dead_end 3.1.1 |
23 | 23 |
|
24 | 24 | - Fix case where Ripper lexing identified incorrect code as a keyword (https://github.com/zombocom/dead_end/pull/122) |
25 | 25 |
|
26 | | -## 3.1.0 |
| 26 | +## dead_end 3.1.0 |
27 | 27 |
|
28 | 28 | - Add support for Ruby 3.1 by updating `require_relative` logic (https://github.com/zombocom/dead_end/pull/120) |
29 | 29 | - Requiring `dead_end/auto` is now deprecated please require `dead_end` instead (https://github.com/zombocom/dead_end/pull/119) |
30 | 30 | - Requiring `dead_end/api` now loads code without monkeypatching core extensions (https://github.com/zombocom/dead_end/pull/119) |
31 | 31 | - The interface `SyntaxSuggest.handle_error` is declared public and stable (https://github.com/zombocom/dead_end/pull/119) |
32 | 32 |
|
33 | | -## 3.0.3 |
| 33 | +## dead_end 3.0.3 |
34 | 34 |
|
35 | 35 | - Expand explanations coming from additional Ripper errors (https://github.com/zombocom/dead_end/pull/117) |
36 | 36 | - Fix explanation involving shorthand syntax for literals like `%w[]` and `%Q{}` (https://github.com/zombocom/dead_end/pull/116) |
37 | 37 |
|
38 | | -## 3.0.2 |
| 38 | +## dead_end 3.0.2 |
39 | 39 |
|
40 | 40 | - Fix windows filename detection (https://github.com/zombocom/dead_end/pull/114) |
41 | 41 | - Update links on readme and code of conduct (https://github.com/zombocom/dead_end/pull/107) |
42 | 42 |
|
43 | | -## 3.0.1 |
| 43 | +## dead_end 3.0.1 |
44 | 44 |
|
45 | 45 | - Fix CLI parsing when flags come before filename (https://github.com/zombocom/dead_end/pull/102) |
46 | 46 |
|
47 | | -## 3.0.0 |
| 47 | +## dead_end 3.0.0 |
48 | 48 |
|
49 | 49 | - [Breaking] CLI now outputs to STDOUT instead of STDERR (https://github.com/zombocom/dead_end/pull/98) |
50 | 50 | - [Breaking] Remove previously deprecated `require "dead_end/fyi"` interface (https://github.com/zombocom/dead_end/pull/94) |
|
55 | 55 | - Parse errors emitted per-block rather than for the whole document (https://github.com/zombocom/dead_end/pull/94) |
56 | 56 | - The "banner" is now based on lexical analysis rather than parser regex (fix #68, fix #87) (https://github.com/zombocom/dead_end/pull/96) |
57 | 57 |
|
58 | | -## 2.0.2 |
| 58 | +## dead_end 2.0.2 |
59 | 59 |
|
60 | 60 | - Don't print terminal color codes when output is not tty (https://github.com/zombocom/dead_end/pull/91) |
61 | 61 |
|
62 | | -## 2.0.1 |
| 62 | +## dead_end 2.0.1 |
63 | 63 |
|
64 | 64 | - Reintroduce Ruby 2.5 support (https://github.com/zombocom/dead_end/pull/90) |
65 | 65 | - Support naked braces/brackets/parens, invert labels on banner (https://github.com/zombocom/dead_end/pull/89) |
66 | 66 | - Handle mismatched end when using rescue without begin (https://github.com/zombocom/dead_end/pull/83) |
67 | 67 | - CLI returns non-zero exit code when syntax error is found (https://github.com/zombocom/dead_end/pull/86) |
68 | 68 | - Let -v respond with gem version instead of 'unknown' (https://github.com/zombocom/dead_end/pull/82) |
69 | 69 |
|
70 | | -## 2.0.0 |
| 70 | +## dead_end 2.0.0 |
71 | 71 |
|
72 | 72 | - Support "endless" oneline method definitions for Ruby 3+ (https://github.com/zombocom/dead_end/pull/80) |
73 | 73 | - Reduce timeout to 1 second (https://github.com/zombocom/dead_end/pull/79) |
74 | 74 | - Logically consecutive lines (such as chained methods are now joined) (https://github.com/zombocom/dead_end/pull/78) |
75 | 75 | - Output improvement for cases where the only line is an single `end` (https://github.com/zombocom/dead_end/pull/78) |
76 | 76 |
|
77 | | -## 1.2.0 |
| 77 | +## dead_end 1.2.0 |
78 | 78 |
|
79 | 79 | - Output improvements via less greedy unmatched kw capture https://github.com/zombocom/dead_end/pull/73 |
80 | 80 | - Remove NoMethodError patching instead use https://github.com/ruby/error_highlight/ (https://github.com/zombocom/dead_end/pull/71) |
81 | 81 |
|
82 | | -## 1.1.7 |
| 82 | +## dead_end 1.1.7 |
83 | 83 |
|
84 | 84 | - Fix sinatra support for `require_relative` (https://github.com/zombocom/dead_end/pull/63) |
85 | 85 |
|
86 | | -## 1.1.6 |
| 86 | +## dead_end 1.1.6 |
87 | 87 |
|
88 | 88 | - Consider if syntax error caused an unexpected variable instead of end (https://github.com/zombocom/dead_end/pull/58) |
89 | 89 |
|
90 | | -## 1.1.5 |
| 90 | +## dead_end 1.1.5 |
91 | 91 |
|
92 | 92 | - Parse error once and not twice if there's more than one available (https://github.com/zombocom/dead_end/pull/57) |
93 | 93 |
|
94 | | -## 1.1.4 |
| 94 | +## dead_end 1.1.4 |
95 | 95 |
|
96 | 96 | - Avoid including demo gif in built gem (https://github.com/zombocom/dead_end/pull/53) |
97 | 97 |
|
98 | | -## 1.1.3 |
| 98 | +## dead_end 1.1.3 |
99 | 99 |
|
100 | 100 | - Add compatibility with zeitwerk (https://github.com/zombocom/dead_end/pull/52) |
101 | 101 |
|
102 | | -## 1.1.2 |
| 102 | +## dead_end 1.1.2 |
103 | 103 |
|
104 | 104 | - Namespace Kernel method aliases (https://github.com/zombocom/dead_end/pull/51) |
105 | 105 |
|
106 | | -## 1.1.1 |
| 106 | +## dead_end 1.1.1 |
107 | 107 |
|
108 | 108 | - Safer NoMethodError annotation (https://github.com/zombocom/dead_end/pull/48) |
109 | 109 |
|
110 | | -## 1.1.0 |
| 110 | +## dead_end 1.1.0 |
111 | 111 |
|
112 | 112 | - Annotate NoMethodError in non-production environments (https://github.com/zombocom/dead_end/pull/46) |
113 | 113 | - Do not count trailing if/unless as a keyword (https://github.com/zombocom/dead_end/pull/44) |
114 | 114 |
|
115 | | -## 1.0.2 |
| 115 | +## dead_end 1.0.2 |
116 | 116 |
|
117 | 117 | - Fix bug where empty lines were interpreted to have a zero indentation (https://github.com/zombocom/dead_end/pull/39) |
118 | 118 | - Better results when missing "end" comes at the end of a capturing block (such as a class or module definition) (https://github.com/zombocom/dead_end/issues/32) |
119 | 119 |
|
120 | | -## 1.0.1 |
| 120 | +## dead_end 1.0.1 |
121 | 121 |
|
122 | 122 | - Fix performance issue when evaluating multiple block combinations (https://github.com/zombocom/dead_end/pull/35) |
123 | 123 |
|
124 | | -## 1.0.0 |
| 124 | +## dead_end 1.0.0 |
125 | 125 |
|
126 | 126 | - Gem name changed from `syntax_search` to `dead_end` (https://github.com/zombocom/syntax_search/pull/30) |
127 | 127 | - Moved `syntax_search/auto` behavior to top level require (https://github.com/zombocom/syntax_search/pull/30) |
128 | 128 | - Error banner now indicates when missing a `|` or `}` in addition to `end` (https://github.com/zombocom/syntax_search/pull/29) |
129 | 129 | - Trailing slashes are now handled (joined) before the code search (https://github.com/zombocom/syntax_search/pull/28) |
130 | 130 |
|
131 | | -## 0.2.0 |
| 131 | +## dead_end 0.2.0 |
132 | 132 |
|
133 | 133 | - Simplify large file output so minimal context around the invalid section is shown (https://github.com/zombocom/syntax_search/pull/26) |
134 | 134 | - Block expansion is now lexically aware of keywords (def/do/end etc.) (https://github.com/zombocom/syntax_search/pull/24) |
135 | 135 | - Fix bug where not all of a source is lexed which is used in heredoc detection/removal (https://github.com/zombocom/syntax_search/pull/23) |
136 | 136 |
|
137 | | -## 0.1.5 |
| 137 | +## dead_end 0.1.5 |
138 | 138 |
|
139 | 139 | - Strip out heredocs in documents first (https://github.com/zombocom/syntax_search/pull/19) |
140 | 140 |
|
141 | | -## 0.1.4 |
| 141 | +## dead_end 0.1.4 |
142 | 142 |
|
143 | 143 | - Parser gem replaced with Ripper (https://github.com/zombocom/syntax_search/pull/17) |
144 | 144 |
|
145 | | -## 0.1.3 |
| 145 | +## dead_end 0.1.3 |
146 | 146 |
|
147 | 147 | - Internal refactor (https://github.com/zombocom/syntax_search/pull/13) |
148 | 148 |
|
149 | | -## 0.1.2 |
| 149 | +## dead_end 0.1.2 |
150 | 150 |
|
151 | 151 | - Codeblocks in output are now indented with 4 spaces and "code fences" are removed (https://github.com/zombocom/syntax_search/pull/11) |
152 | 152 | - "Unmatched end" and "missing end" not generate different error text instructions (https://github.com/zombocom/syntax_search/pull/10) |
153 | 153 |
|
154 | | -## 0.1.1 |
| 154 | +## dead_end 0.1.1 |
155 | 155 |
|
156 | 156 | - Fire search on both unexpected end-of-input and unexected end (https://github.com/zombocom/syntax_search/pull/8) |
157 | 157 |
|
158 | | -## 0.1.0 |
| 158 | +## dead_end 0.1.0 |
159 | 159 |
|
160 | 160 | - Initial release |
0 commit comments