File: CHANGELOG.md

package info (click to toggle)
tools-analyzer-jvm-clojure 1.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 472 kB
  • sloc: xml: 50; sh: 23; makefile: 22
file content (191 lines) | stat: -rw-r--r-- 9,270 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
Changelog
========================================
Since tools.analyzer.jvm version are usually cut simultaneously with a tools.analyzer version, check also the tools.analyzer [CHANGELOG](https://github.com/clojure/tools.analyzer/blob/master/CHANGELOG.md) for changes on the corresponding version, since changes in that library will reflect on this one.
- - -
* next
  * Bumped dep on tools.analyzer to 1.1.1
* Release 1.2.2 on 13 Dec 2021
  * Bumped dep on asm to 9.2
* Release 1.2.1 on 6 Dec 2021
  * Bumped dep on core.memoize to 1.0.253
  * Bumped dep on tools.reader to 1.3.6
* Release 1.2.0 on 14 Sep 2021
  * Bumped dep on tools.analyzer to 1.1.0
* Release 1.1.0 on 24 Jul 2020
  * Bumped dep on core.memoize to 1.0.236
* Release 1.0.0 on 18 Feb 2020
  * Avoid calling `update-ns-map` on known pure vars
* Release 0.7.3 on 2 Dec 2019
  * Bumped deps
* Release 0.7.2 on 16 Jan 2018
  * Correctly handle deftype analysis when `let` is excluded
* Release 0.7.1 on 21 Jun 2017
  * Correctly handle array classes
* Release 0.7.0 on 14 Feb 2017
* Release 0.7.0-alpha1 on 26 Jan 2017
  * Added handle-evaluation-exception opts to `analyze+eval`
  * Changed `analyze+eval`'s default behaviour on eval exception
  * Stop caching maybe-class-from-string as it implicitely relies on dynamic state
  * Make analyze work from nested invocations -- remove state mutation
* Release 0.6.10 on 17 Jun 2016
  * Fix ns munging
* Release 0.6.9 on 10 Nov 2015
  * Correctly check for recur on case :then branches
* Release 0.6.8 on 3 Nov 2015
  * Fixed eof check in tools.reader usage
  * Avoid reflection on catch local
  * Fix context in analyze+eval statement
* Release 0.6.7 on 23 Apr 2015
  * Add support for reader conditionals
  * Ensure *file* is correctly bound in analyze-ns
  * Fixed emit-form for :host-interop
* Release 0.6.6 on 23 Feb 2015
  * Small performance enhancements
  * Added validate-recur pass
  * Renamed annotate-methods to annotate-host-info
  * Fixed class resolution
  * Added macroexpand-all
  * Fixed ::resolved-op handling in analyze+eval
* Release 0.6.5 on 20 Nov 2014
  * Ensure *ns* is correctly bound during analysis
  * Removed analyze' and analyze+eval'
  * Improvements in class resolution
* Release 0.6.4 on 03 Nov 2014
  * Disallow def of a symbol that maps to a Class
  * Made the target of a host interop expression privilege classnames over the lexical scope, as in clojure
  * Preserve correct meta on emit-form
  * Validate the target of a new expression
  * Fixed bug that caused the symbols used as primitive type hints to be interpreted as classes in host interop expressions
  * Made update-ns-map! an optional global-env field
  * Enhanced source-info support on analyze+eval
* Release 0.6.3 on 27 Oct 2014
  * Better interop method matcher
  * Fixed a bug when using analyze+eval and lein uberjar caused by Compiler/LOADER being unbound during macroexpansion
  * Faster maybe-class impl
* Release 0.6.1 on 13 Oct 2014
  * Significant performance enhancements
  * Made Class literals shadow Vars
  * Fixed a bug in :arglists automatic tag qualification
  * :env :locals are no longer uniquified by default, can be changed via pass-opts
  * Fixed tag validation
  * Removed annotate-class-id, annotate-internal-name, ensure-tag, collect, collect-closed-overs and clear-locals, moved to tools.emiter.jvm
  * Fixed a bug in the method resolution code, caused some unnecessary reflection
  * Added opts and env args to analyze-ns, consistent with the other analyze functions
  * Made emit-form with :qualified-symbols qualify def symbol
* Release 0.6.0 on 18 Sep 2014
  * Started using clojure.tools.analyzer.passes/schedule to schedule the default passes and configured all the passes
  * Reduced the set of default passes, removed: annotate-class-id, annotate-internal-name, ensure-tag
  * Changed the interface of the collect pass
  * Added default-passes and default-passes-opts to the clojure.tools.analyzer.jvm namespace
* Release 0.5.6 on 02 Sep 2014
  * Fixed a bug in classify-invoke that caused default-exprs in keyword invoke expressions to be lost
* Release 0.5.5 on 31 Aug 2014
  * Fixed analyze-ns analysis caching
  * Qualify :arglists class names
* Release 0.5.4 on 21 Aug 2014
  * Added optional unresolved symbol handler, configurable via :passes-opts
* Release 0.5.3 on 14 Aug 2014
  * Compare contexts with isa? rather than =
  * Fixed a reflection warning
  * Fixed a bug in the :protocol-invoke nodes that caused ast/children to crash
* Release 0.5.2 on 09 Aug 2014
  * Fixed emit-form
  * Imported collect pass from tools.analyzer
  * Fixed infer-tag for :def
* Release 0.5.1 on 09 Aug 2014
  * Allow ^:const values to be unboxed
  * Made :keyword a children in :keyword-invoke
  * Added optional Var tag inference, configurable via :passes-opts
  * Added optional wrong tag handler, configurable via :passes-opts
  * Added optional mismatched arity handler, configurable via :passes-opts
* Release 0.5.0 on 29 Jul 2014
  * BREAKING CHANGE: changed :protocol-invoke and :keyword-invoke fields
  * Made :host-interop :assignable?
* Release 0.4.0 on 26 Jul 2014
  * BREAKING CHANGE: update to new :class field for :new and :catch nodes
  * Elide source info metadata on :reify, :fn
  * Fixed performance regression
  * Added :qualified-symbols option to emit-form, deprecate :qualified-vars
  * Don't promote :invoke to :keyword-invoke when the keyword is namespaced
  * Added analyze-ns
  * Fixed some wrong contexts
  * Fixed and enhanced :tag/:arglists inference for :try nodes
  * Fixed handling of void bodies in loops
  * Collect closed-overs on :try
* Release 0.3.0 on 21 Jun 2014
  * BREAKING API CHANGE: Updated to new :context
  * Fixed 1-arity macroexpand-1
  * validate throws on Var not found
* Release 0.2.2 on 13 Jun 2014
  * Added 1-arity version of macroexpand-1
  * Made analyze+eval handle exceptions via ExceptionThrown
  * Fixed a bug in the validate pass that caused some instance-methods to stay unresolved
  * Keep :raw-forms on analyze+eval
  * Update \*ns\* in each call to analyze+eval
* Release 0.2.1 on 08 Jun 2014
  * Made run-passes dynamic
  * Made analyze-host-expr and classify-invoke preserve the original AST fields
* Release 0.2.0 on 05 Jun 2014
  * BREAKING API CHANGE: Updated to new global env interface
  * Made analyze+eval attach the result of evaluating the form to the AST
* Release 0.1.0-beta13 on 11 Mar 2014
  * Don't run cleanup on analyze, added analyze' and analyze+eval' that run it
  * Added :top-level true to constructed :do nodes
  * Added 3-arity to analyze taking an optional map of options
  * Fixes regarding :fn-method :o-tag/:tag handling
* Release 0.1.0-beta12 on 25 Apr 2014
  * Default to (empty-env) if env not provided
  * Fix a bug in check-recur with case
* Release 0.1.0-beta11 on 18 Apr 2014
  * Performance enhancements on reflection utils
  * Workaround for a weird behaviour of clojure.reflect on interfaces
  * Fix for annotate-tag and validate-loop-locals interaction
  * Improve logic of try-best-match
  * Improve handling of Void tag
  * Fix handling of tag on constructor that defer to runtime reflection
  * Fix validate-loop-locals when the return type of the loop changed after the invalidation
  * Added :qualified-vars option to emit-form
* Release 0.1.0-beta10 on 1 Apr 2014
  * Fix validate-loop-locals handling of tag
  * merge &form meta into mfrom meta to preserve source info during macroexpansion
* Release 0.1.0-beta9 on 29 Mar 2014
  * Macroexpand evaluates :inline/:inline-arities to allow using the inlined version
    in the fn body
  * Fix fn name munging
  * Fix annotate-loops handling of statements
  * Update the ns map in the env after macroexpansion as some interning might
    happen at macroexpansion time
  * Added analyze+eval
  * Pass (:locals env) as &env instead of env, macros that use (keys &env) now work
  * Fix binding init tag
  * Fix create-var handling of meta
* Release 0.1.0-beta8 on 11 Mar 2014
  * Removed :name in env for the :fn name, moved in a tools.analyzer.jvm pass
  * Added docstrings
  * Add annotate-internal-name pass
  * Add warn-on-reflection pass
  * clear-locals is *compiler-options* aware
* Release 0.1.0-beta7 on 28 Feb 2014
  * Moved :should-not-clear annotation from annotate-branch to clear-locals
* Release 0.1.0-beta6 on 27 Feb 2014
  * Bind Compiler/LOADER to a new DynamicClassLoader on every analyze call to avoid
    problems regarding deftype redefinitions
  * Fix handling of meta by create-var
* Release 0.1.0-beta5 on 26 Feb 2014
  * Clear :catch locals
  * Added "this" clearing where possible (CLJ-1250)
  * Clear unused bindings
  * Attach the correct :tag on instance call/field instances
  * Fixes to clear-locals pass regarding nested loops
* Release 0.1.0-beta4 on 17 Feb 2014
  * Fix validate-loop-locals to short-circuit on nested loops
  * Added docstrings
  * Correctly clear closed-overs on :once fns
  * Correctly clear closed-overs used in closure creation
* Release 0.1.0-beta3 on 15 Feb 2014
  * Added annotate-class-id
  * clear-locals clears loop locals when possible
* Release 0.1.0-beta2 on 14 Feb 2014
  * Memoize only maybe-class and member*, a new deftype invalidates the cache
* Release 0.1.0-beta1 on 11 Feb 2014
  * First beta release