zhengziyi0117
f230947ddb
Improve JFR async profiler parser ( #12777 )
2024-11-18 19:42:40 +08:00
kezhenxu94
7e6061a918
Bump up netty to 4.1.115 ( #12770 )
2024-11-14 15:05:41 +08:00
吴晟 Wu Sheng
e78dd7c2d8
Released 10.1.0 and start 10.2.0 iteration. ( #12669 )
2024-09-29 22:44:25 +08:00
kezhenxu94
9eaced35de
Flatten ci-friendly revision when deploy ( #12659 )
2024-09-27 17:06:39 +08:00
kezhenxu94
a5d8777ee7
Use CI-friendly revision to set the project version ( #12640 )
2024-09-24 17:53:14 +08:00
kezhenxu94
4f046e7f43
Fix wrong phase of delombok plugin to reduce build warnings ( #12599 )
2024-09-07 18:44:34 +08:00
Calvin Kirs
c25cedaaba
minor: Add SBOM to the project. ( #12231 )
2024-05-16 19:35:24 +08:00
吴晟 Wu Sheng
054d0e4ff9
Release 10.0.0 and move forward to 10.1.0 ( #12203 )
2024-05-10 09:19:56 +08:00
Gao Hongtao
28bf55219f
Bump BanyanDB Java Client to 0.6.0 ( #12195 )
2024-05-09 17:31:52 +08:00
kezhenxu94
c79423c358
Bump up dependencies to fix CVEs ( #12080 )
2024-04-09 17:25:15 +08:00
吴晟 Wu Sheng
497a7bdb02
Release 9.7 and start 10.0 iteration ( #11607 )
2023-11-28 23:49:44 -08:00
吴晟 Wu Sheng
247016fbb5
Support packaging the project in JDK21 ( #11528 )
2023-11-10 11:23:02 +08:00
吴晟 Wu Sheng
3c8ac675b5
Update Groovy 3 to 4.0.15. ( #11517 )
2023-11-09 11:31:31 +08:00
yswdqz
92af797296
[Feature] GraalVM Native Image support (Experimental). ( #11365 )
2023-10-30 21:23:53 +08:00
kezhenxu94
920d6531cf
Bump up netty again to 4.1.100 ( #11414 )
...
* Bump up netty again to 4.1.100
2023-10-17 10:54:53 -05:00
kezhenxu94
fc151a4843
Bump up netty to 4.1.99 ( #11389 )
2023-10-08 22:35:10 -05:00
yswdqz
a1822201ad
[Feature] Substitute classes to prepare for Graal native-image[stage 1]. ( #11354 )
2023-09-27 11:03:11 +08:00
吴晟 Wu Sheng
a336b3cff4
Release 9.6.0 and begin 9.7.0 iteration ( #11289 )
2023-09-01 22:57:18 +08:00
kezhenxu94
49bf7a171a
Make builds reproducible for automatic releases CI ( #11204 )
2023-08-11 10:38:12 +08:00
吴晟 Wu Sheng
a1ed1fb447
Bump up version of ASF parent pom to v30. ( #11209 )
2023-08-11 09:29:30 +08:00
kezhenxu94
14fbd975be
Bump up grpc version to 1.53.0 ( #11056 )
2023-07-06 20:00:01 +02:00
吴晟 Wu Sheng
1f6ea1d744
Begin 9.6.0 iteration ( #10935 )
...
* [maven-release-plugin] prepare release v9.5.0
* [maven-release-plugin] prepare for next development iteration
* Create changes-9.5.0.md
* Set changes.md for 9.6.0
2023-06-14 18:26:50 +08:00
kezhenxu94
2e04b069bf
JavaDoc input should contain delombok output and fix javadoc not executed in CI ( #10534 )
2023-03-14 07:35:37 +08:00
吴晟 Wu Sheng
c74d21c96f
Fix `Duplicate class found` due to the `delombok` goal. ( #10532 )
2023-03-13 17:21:21 +08:00
kezhenxu94
5099cc72ba
Fix javadoc error and run javadoc in CI ( #10515 )
2023-03-09 11:41:15 +08:00
kezhenxu94
55233afd54
chore: skip tests when releasing ( #10511 )
2023-03-09 07:56:49 +08:00
吴晟 Wu Sheng
4874374ace
Tag 9.4.0 release, prepare for 9.5.0 iteration. ( #10512 )
2023-03-08 23:30:37 +08:00
Wan Kai
fb9117b8e7
Support prometheus HTTP APIs and promQL. ( #10415 )
...
Support HTTP APIs list:
- /api/v1/metadata
- /api/v1/labels
- /api/v1/label/{label_name}/values
- /api/v1/series
- /api/v1/query
-/api/v1/query_range
Support basic promQL for query traffic/metrics/labeled_metrics/topN/sampled_records from OAP
2023-02-22 12:59:45 +08:00
kezhenxu94
49594c4db1
Bump up Java version to 11 and use junit tag to group IT and slow IT ( #10390 )
...
- `./mvnw test ...` by its nature only runs unit tests, whose name is pattern of `*Test`, and it does never runs integration tests, whose name is patter of `IT*` or `*IT`, so in this PR we use `./mvnw clean test ...` to only run unit tests.
- `./mvnw integration-test ...` will run integration tests and unit tests, so we have `skipUTs` to control whether to skip the UT when running ITs, we already had this before.
- As for ITs, we have two groups, one is normal tests without any `@Tag`s, the other one is slow integration tests, which is annotated with `@Tag("slow")`, so we divided the integration tests into two workflow jobs:
- `./mvnw -DskipUTs=true clean integration-test -DexcludedGroups=slow ...` run the ITs but don't run the slow ITs and UTs, `-DexcludedGroups=slow` excludes tests annotated with `@Tag("slow")`
- `./mvnw -DskipUTs=true clean integration-test -Dcheckstyle.skip -Dtest=${{ matrix.test.class }}` run the slow ITs (because `excludedGroups` is not set) one case at a time, by setting `-Dtest={{ class }}`, not run UTs,
2023-02-14 23:19:32 +08:00
kezhenxu94
383a5bbf7b
Migrate tests from junit 4 to junit 5 ( #10382 )
2023-02-13 18:54:32 +08:00
kezhenxu94
b8e4a025aa
Avoid Antlr dependencies' versions might be different in compile time and runtime ( #10339 )
2023-02-04 15:26:49 +08:00
吴晟 Wu Sheng
ccbfa3e554
Bump so11y docs ( #10288 )
2023-01-17 23:00:36 +08:00
kezhenxu94
6c1044c37c
Bump up netty to 4.1.86 ( #10188 )
2022-12-21 11:04:02 +08:00
吴晟 Wu Sheng
18008aa6b2
Release 9.3.0. Begin 9.4.0 iteration ( #10077 )
2022-12-02 21:19:13 +08:00
kezhenxu94
a7210f6633
Add OpenSearch 1.3.6 and 2.4.0 to test matrix ( #10040 )
2022-11-29 11:13:01 +08:00
Wan Kai
0a2ee589d5
Test: Add integration test for Shardingsphere-proxy ( #9969 )
...
* Fix `ShardingTopologyQueryDAO.loadServiceRelationsDetectedAtServerSide` miss serviceIds.
* Add sharding integration test.
2022-11-17 20:42:09 +08:00
kezhenxu94
b3c7658a0e
webapp: migrate from Spring Web to Armeria ( #9592 )
2022-09-11 16:33:53 +08:00
kezhenxu94
fefe90be37
Bump up dependencies to fix some cve ( #9545 )
2022-08-31 13:47:38 +08:00
吴晟 Wu Sheng
608a084350
Begin 9.3.0 iteration, 9.2.0 release is on vote ( #9539 )
...
* [maven-release-plugin] prepare release v9.2.0
* [maven-release-plugin] prepare for next development iteration
* Create changes-9.2.0.md
* Update changes.md
* Update LICENSE
2022-08-31 00:31:04 +08:00
吴晟 Wu Sheng
8584ada7cc
Begin 9.2.0 iteration ( #9191 )
...
* [maven-release-plugin] prepare release v9.1.0
* [maven-release-plugin] prepare for next development iteration
2022-06-08 17:24:15 +08:00
kezhenxu94
adac49a14d
Upgrade netty to fix bug in Ubuntu 22 ( #9141 )
2022-05-27 17:11:54 +08:00
吴晟 Wu Sheng
c53d242a32
Upgrade OAP and webapp dependencies to fix CVEs. ( #8988 )
...
* Upgrade OAP dependencies zipkin to 2.23.16, H2 to 2.1.212, Apache Freemarker to 2.3.31, gRPC-java 1.46.0, netty to 4.1.76.
* Upgrade Webapp dependencies, spring-cloud-dependencies to 2021.0.2, logback-classic to 1.2.11
2022-05-04 23:02:56 +08:00
Hper
05afa982f4
ADD kafka consumers number default = 1,enhance consumption capacity ( #8828 )
2022-04-22 07:25:17 +08:00
mrproliu
db3c1da10d
Update the eBPF Profiling task as service level ( #8840 )
2022-04-14 07:30:40 +08:00
kezhenxu94
118ba3b569
Fix wrong example in doc, sync Python E2E version and adjust E2E ( #8751 )
...
* Fix wrong example in doc, sync Python E2E version and adjust E2E
2022-04-07 13:02:21 +08:00
吴晟 Wu Sheng
91413a753c
Start 9.1.0-dev iteration ( #8822 )
2022-04-06 18:56:49 +08:00
吴晟 Wu Sheng
34a4553e23
Bump up versions for Apache httpclient, commons-io, postgresql, log4j2(test codes) ( #8811 )
2022-04-05 20:26:18 +08:00
吴晟 Wu Sheng
d86880ce7e
Upgrade depdencies ( #8781 )
...
* Upgrade OAP dependencies gson(2.9.0), guava(31.1), jackson(2.13.2), protobuf-java(3.18.4).
* Remove commons-pool and commons-dbcp from OAP dependencies(Not used before).
* Upgrade webapp dependencies gson(2.9.0), spring boot(2.6.5), jackson(2.13.2.2), spring cloud(2021.0.1).
2022-04-01 10:16:10 +08:00
kezhenxu94
bf03d9f67a
Improve CI with the GHA new feature ( #8691 )
2022-03-17 10:06:53 +08:00
Kirs
057fdf553e
Use the plugin version defined by the Apache maven parent ( #8613 )
2022-03-02 09:57:11 +08:00