Skip to content

Commit 44b8291

Browse files
Juan Pedro Monetta Sanchezjpmonettas
authored andcommitted
Big patch
1 parent 14c72d6 commit 44b8291

33 files changed

+3149
-202
lines changed

CHANGELOG.md

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

Makefile

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

0 commit comments

Comments
 (0)