Releases: bivashy/java-vk-bots-long-poll-api
Releases · bivashy/java-vk-bots-long-poll-api
Release 3.4.0
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.4.0</version>
</dependency>
Updates:
- HTTP module optimization
Release 3.3.2
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.3.2</version>
</dependency>
Updates:
- Fixed bugs
Release 3.3.1
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.3.1</version>
</dependency>
Updates:
- Photos and documents can be attached to massages by
InputStream
:
try (InputStream inputStream = new FileInputStream("path/to/photo.png")) {
vk.messages.send()
.setPeerId(PEER_ID)
.setMessage("Sending photo by InputStream")
.addPhoto(inputStream, "png")
.execute();
}
Release 3.3.0
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.3.0</version>
</dependency>
Updates:
- Refactoring and various code optimization
Release 3.2.13
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.2.13</version>
</dependency>
Updates:
Story
was added to attachment deserializer
Release 3.2.12
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.2.12</version>
</dependency>
Updates:
Message#cropped
flag was added
Release 3.2.11
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.2.11</version>
</dependency>
Updates:
- Implemented execute method:
Execute.Response response = vk.other.execute()
.setCode("return 1;")
.execute();
System.out.println(response);
Release 3.2.10
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.2.10</version>
</dependency>
Updates:
- Fixed #98
Release 3.2.9
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.2.9</version>
</dependency>
Updates:
groups.getById
can accept eithergroup_id
orscreen_name
Release 3.2.8
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.2.8</version>
</dependency>
Updates:
users.get
can accept both user IDs and screen names