Skip to content

Commit c2973b5

Browse files
Juan Pedro Monetta Sanchezjpmonettas
authored andcommitted
Big patch
1 parent 13a2f67 commit c2973b5

33 files changed

+3238
-224
lines changed

CHANGELOG.md

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