File tree Expand file tree Collapse file tree 2 files changed +61
-3
lines changed Expand file tree Collapse file tree 2 files changed +61
-3
lines changed Original file line number Diff line number Diff line change 1+ # m3-tracing Release Notes
2+
3+ <!--
4+ ## Unreleased
5+ -->
6+
7+ ## Release notes - 1.0.3 (2020-08-04)
8+
9+ ### Breaking Change
10+
11+ - apache-httpclient: to refer an instance of ` M3TracingHttpInterceptor ` , use the ` INSTANCE ` static field instaed of ` getInstance ` static method
12+
13+ ### Added
14+
15+ - opencensus: enable to control ` publicEndpoint ` settings for tracing context propagation. [ #3 ] ( https://github.com/m3dev/m3-tracing/pull/3 )
16+ - spring-web: enable to add ` traceparent ` header taking over trace id to other services with HTTP [ #4 ] ( https://github.com/m3dev/m3-tracing/pull/4 )
17+ - apache-httpclient: enable to add ` traceparent ` header when using apache-httpclient [ #6 ] ( https://github.com/m3dev/m3-tracing/pull/6 )
18+
19+ ### Changed
20+
21+ - include sources in package for convenient code reading
22+
23+
24+
25+ ## Release notes - 1.0.2 (2020-02-09)
26+
27+ ## Fixed
28+
29+ - Commit uncomitted files
30+
31+
32+ ## Release notes - 1.0.1 (2019-09-19)
33+
34+ ### Added
35+
36+ - apache-httpclient: enable to add ` traceparent ` header when using apache-httpclient [ #1 ] ( https://github.com/m3dev/m3-tracing/pull/1 )
37+
38+
39+
40+ ## Release notes - 1.0.0 (2019-09-11)
41+
42+ First release
43+
44+ <!-- template https://keepachangelog.com/en/1.0.0/
45+ ## Release notes - x.x.x (yyyy-mm-dd)
46+
47+ ### Added
48+
49+ ### Changed
50+
51+ ## Deprecated
52+
53+ ## Removed
54+
55+ ## Fixed
56+
57+ ## Security
58+ -->
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
1212
1313allprojects {
1414 group = " com.m3.tracing"
15- version = " 1.0.3-SNAPSHOT "
15+ version = " 1.0.3"
1616
1717 repositories {
1818 jcenter()
@@ -84,9 +84,9 @@ subprojects {
8484 maven {
8585 // change to point to your repo, e.g. http://my.org/repo
8686 if (version.toString().endsWith(" SNAPSHOT" )) {
87- url = uri(" http ://maven:8081/artifactory/libs -snapshots" )
87+ url = uri(" https ://packages.m3internal.com/repository/maven -snapshots/ " )
8888 } else {
89- url = uri(" http ://maven:8081/artifactory/libs -releases" )
89+ url = uri(" https ://packages.m3internal.com/repository/maven -releases/ " )
9090 }
9191 }
9292 }
You can’t perform that action at this time.
0 commit comments