Skip to content

Commit 8f03b98

Browse files
Juan Pedro Monetta Sanchezjpmonettas
Juan Pedro Monetta Sanchez
authored andcommitted
Big patch
1 parent 251459b commit 8f03b98

33 files changed

+3252
-228
lines changed

CHANGELOG.md

Lines changed: 219 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,219 @@
1+
# Changelog
2+
3+
## master (unreleased)
4+
5+
### New Features
6+
7+
### Changes
8+
9+
### Bugs fixed
10+
11+
## 1.12.0-10 (26-05-2025)
12+
13+
### New Features
14+
15+
### Changes
16+
17+
### Bugs fixed
18+
19+
- Don't trace non-return try's anon functions calls
20+
21+
## 1.12.0-9 (11-03-2025)
22+
23+
### New Features
24+
25+
### Changes
26+
27+
- Make autoPrefixes and instrumentEnable true by default
28+
29+
### Bugs fixed
30+
31+
## 1.12.0-8 (10-03-2025)
32+
33+
### New Features
34+
35+
### Changes
36+
37+
### Bugs fixed
38+
39+
- Fix binding trace, report symb name instead of demunging lb.name so we don't report _a-bind as -a-bind
40+
41+
## 1.12.0-7 (10-03-2025)
42+
43+
### New Features
44+
45+
- Support multiple clojure.storm.instrumentOnlyPrefixes.* and clojure.storm.instrumentSkipPrefixes.* that will get merged
46+
47+
### Changes
48+
49+
### Bugs fixed
50+
51+
## 1.12.0-6 (09-03-2025)
52+
53+
### New Features
54+
55+
### Changes
56+
57+
### Bugs fixed
58+
59+
- Never instrument flow-storm with auto-prefixes
60+
61+
## 1.12.0-5 (09-03-2025)
62+
63+
### New Features
64+
65+
### Changes
66+
67+
### Bugs fixed
68+
69+
- Fix autoprefixes on Windows
70+
71+
## 1.12.0-4 (19-02-2025)
72+
73+
### New Features
74+
75+
### Changes
76+
77+
### Bugs fixed
78+
79+
- Fix let/loop bindings not being traced inside reify
80+
81+
## 1.12.0-3 (28-01-2025)
82+
83+
### New Features
84+
85+
### Changes
86+
87+
- Bring back instrumentation to the compile path to support decompiling for debugging
88+
89+
### Bugs fixed
90+
91+
## 1.12.0-2 (27-11-2024)
92+
93+
### New Features
94+
95+
### Changes
96+
97+
### Bugs fixed
98+
99+
- Trace most statements also
100+
101+
## 1.12.0-1 (06-09-2024)
102+
103+
### New Features
104+
105+
### Changes
106+
107+
### Bugs fixed
108+
109+
- Fix blank prefixes properties case
110+
111+
## 1.12.0 (06-09-2024)
112+
113+
### New Features
114+
115+
### Changes
116+
117+
- Tracking official 1.12.0
118+
119+
### Bugs fixed
120+
121+
## 1.12.0-rc2 (02-09-2024)
122+
123+
### New Features
124+
125+
### Changes
126+
127+
- Tracking official 1.12.0-rc2
128+
129+
### Bugs fixed
130+
131+
## 1.12.0-rc1 (03-08-2024)
132+
133+
### New Features
134+
135+
### Changes
136+
137+
- Tracking official 1.12.0-rc1
138+
139+
### Bugs fixed
140+
141+
## 1.12.0-beta2 (02-08-2024)
142+
143+
### New Features
144+
145+
### Changes
146+
147+
- Tracking official 1.12.0-beta2
148+
149+
### Bugs fixed
150+
151+
## 1.12.0-beta1_1 (20-06-2024)
152+
153+
### New Features
154+
155+
### Changes
156+
157+
- Don't instrument in .class compilation path
158+
- Lein init form instrumentation ignore
159+
- Move maybe-init-flow-storm out of clojure.main/repl to support nrepl >= 1.3.0
160+
- Move maybe-execute-storm-specials into Compiler.eval to support nrepl >= 1.3.0
161+
162+
### Bugs fixed
163+
164+
## 1.12.0-beta1 (20-06-2024)
165+
166+
### New Features
167+
168+
### Changes
169+
170+
- Tracking official 1.12.0-beta1
171+
- Don't waste time tagging forms for uninstrumented namespaces
172+
173+
### Bugs fixed
174+
175+
- Fix form walking for PersistentTreeMap (sorted-map)
176+
177+
## 1.12.0-alpha12 (27-05-2024)
178+
179+
### New Features
180+
181+
### Changes
182+
183+
- Tracking official 1.12.0-alpha12
184+
185+
### Bugs fixed
186+
187+
## 1.12.0-alpha11_1 (14-05-2024)
188+
189+
### New Features
190+
191+
### Changes
192+
193+
### Bugs fixed
194+
195+
- Don't tag ()
196+
- After eliding meta (reader and coord) leave nil instead of {} when that was the only meta
197+
- Refactor Utils.mergeMeta
198+
199+
## 1.12.0-alpha11 (unreleased)
200+
201+
### New Features
202+
203+
- Instance methods instrumentation
204+
205+
### Changes
206+
207+
- Tracking official 1.12.0-alpha11
208+
209+
### Bugs fixed
210+
211+
## 1.12.0-alpha9_4 (06-04-2024)
212+
213+
### New Features
214+
215+
- Emitter now exposes setInstrumentationSkipRegex, removeInstrumentationSkipRegex and getInstrumentationSkipRegex
216+
217+
### Changes
218+
219+
### Bugs fixed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
install:
2+
mvn -Dmaven.test.skip=true clean
3+
mvn -Dmaven.test.skip=true package
4+
mvn -Dmaven.test.skip=true install

0 commit comments

Comments
 (0)