Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Changelog

## 1.0.0 (2025-07-08)


### Features

* Add a2a-tck runs to CI for PRs (GH-152) ([#162](https://github.com/a2aproject/a2a-java/issues/162)) ([a31d73a](https://github.com/a2aproject/a2a-java/commit/a31d73a015ba6401156c8f15d4afcbc9a31a0b4f))
* docs: add community articles ([#156](https://github.com/a2aproject/a2a-java/issues/156)) ([f1b8801](https://github.com/a2aproject/a2a-java/commit/f1b88014d871a8f585c6dc78f42c20586eba3a63))


### Bug Fixes

* add clarifying comment about done callback and consuming order ([#154](https://github.com/a2aproject/a2a-java/issues/154)) ([982138c](https://github.com/a2aproject/a2a-java/commit/982138c726afc8150b0ac2c5110e65ea457c7b40))
* Fix dependency for client example ([#167](https://github.com/a2aproject/a2a-java/issues/167)) ([2c5af01](https://github.com/a2aproject/a2a-java/commit/2c5af01a10b41510e0db6e4a92d3990061b38484))
* fix TCK failure ([#153](https://github.com/a2aproject/a2a-java/issues/153)) ([fd0cdb7](https://github.com/a2aproject/a2a-java/commit/fd0cdb7cfc8a28b12d13624bbf6ca1dcd77dafe7))
* Fixed the intermittent failure issue in `testOnMessageStreamNewMessageSendPushNotificationSuccess` ([#161](https://github.com/a2aproject/a2a-java/issues/161)) ([884dfdb](https://github.com/a2aproject/a2a-java/commit/884dfdb1cea506a665eb7d5e67d2a3e46c745732)), closes [#140](https://github.com/a2aproject/a2a-java/issues/140)
* fixing issues when running in a JakartaEE server. ([#144](https://github.com/a2aproject/a2a-java/issues/144)) ([3ab3ad2](https://github.com/a2aproject/a2a-java/commit/3ab3ad2ff1885d85f793f11bcd9f06ff42c21ebd))
* incorporate feedback from [#138](https://github.com/a2aproject/a2a-java/issues/138) ([#146](https://github.com/a2aproject/a2a-java/issues/146)) ([d8fa0e6](https://github.com/a2aproject/a2a-java/commit/d8fa0e6268f015f03c8b8c6f844324e7d370f588))
* Moving the AsyncExecutorProducer from @Singleton to ([#150](https://github.com/a2aproject/a2a-java/issues/150)) ([33b8e77](https://github.com/a2aproject/a2a-java/commit/33b8e771e4db8031d7a11f0626f56a378d16b508))
* README has a broken link to examples ([#134](https://github.com/a2aproject/a2a-java/issues/134)) ([558e695](https://github.com/a2aproject/a2a-java/commit/558e695459a65124277a952629ca247fabe2ee25))
* Remove `TempLoggerWrapper` and use `logback` as the logging implementation. ([#158](https://github.com/a2aproject/a2a-java/issues/158)) ([9a8e9e5](https://github.com/a2aproject/a2a-java/commit/9a8e9e58d05af4336f769ae63ebebeda00317120))
* remove printlns and use logging ([#159](https://github.com/a2aproject/a2a-java/issues/159)) ([b6712e8](https://github.com/a2aproject/a2a-java/commit/b6712e8a174f592c54bd49d64132adbb06a50ad4))
* Split out server related code from a2a-java-sdk-core into a new a2a-java-sdk-server-common module ([#129](https://github.com/a2aproject/a2a-java/issues/129)) ([8508b8d](https://github.com/a2aproject/a2a-java/commit/8508b8d56f6e16d0e19426fa0f28c0eb0f7b01da))
* Update paths in example READMEs and move the READMEs to the client and server dirs ([#148](https://github.com/a2aproject/a2a-java/issues/148)) ([546d00d](https://github.com/a2aproject/a2a-java/commit/546d00d44f585483a1e3aa4b8048aaae8776614a))
* Update the README following the module re-organization ([#169](https://github.com/a2aproject/a2a-java/issues/169)) ([3e15279](https://github.com/a2aproject/a2a-java/commit/3e152791501113717eec517d554f3568d20d9861))


### Documentation

* fix link to use official repository ([#160](https://github.com/a2aproject/a2a-java/issues/160)) ([f2dae4e](https://github.com/a2aproject/a2a-java/commit/f2dae4e8bad182c8ee5d70b42d5348057809b2db))
6 changes: 2 additions & 4 deletions client/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<artifactId>a2a-java-sdk-client</artifactId>

Expand Down
6 changes: 2 additions & 4 deletions common/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<artifactId>a2a-java-sdk-common</artifactId>

Expand Down
6 changes: 2 additions & 4 deletions examples/helloworld/client/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-examples-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>a2a-java-sdk-examples-client</artifactId>
Expand Down
6 changes: 2 additions & 4 deletions examples/helloworld/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
6 changes: 2 additions & 4 deletions examples/helloworld/server/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-examples-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>a2a-java-sdk-examples-server</artifactId>
Expand Down
6 changes: 2 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>

<packaging>pom</packaging>

Expand Down
8 changes: 3 additions & 5 deletions sdk-jakarta/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<artifactId>a2a-java-sdk-server-jakarta</artifactId>

Expand All @@ -24,7 +22,7 @@
<version.org.jboss.arquillian.jakarta>10.0.0.Final</version.org.jboss.arquillian.jakarta>
<version.shrinkwrap.resolvers>3.3.4</version.shrinkwrap.resolvers>
<jboss.home>${project.build.directory}${file.separator}wildfly</jboss.home>
<arquillian.java.vm.args></arquillian.java.vm.args>
<arquillian.java.vm.args/>
<server.debug.port>8787</server.debug.port>
</properties>
<dependencyManagement>
Expand Down
6 changes: 2 additions & 4 deletions sdk-quarkus/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<artifactId>a2a-java-sdk-server-quarkus</artifactId>

Expand Down
6 changes: 2 additions & 4 deletions sdk-server-common/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<artifactId>a2a-java-sdk-server-common</artifactId>

Expand Down
6 changes: 2 additions & 4 deletions spec/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<artifactId>a2a-java-sdk-spec</artifactId>

Expand Down
6 changes: 2 additions & 4 deletions tck/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>a2a-tck-server</artifactId>
Expand Down
6 changes: 2 additions & 4 deletions tests/server-common/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.a2a.sdk</groupId>
<artifactId>a2a-java-sdk-parent</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>a2a-java-sdk-tests-server-common</artifactId>
Expand Down