Skip to content

Releases: bivashy/java-vk-bots-long-poll-api

Release 3.4.0

11 Aug 12:02
ae6f8b5
Compare
Choose a tag to compare
<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

10 Aug 18:05
Compare
Choose a tag to compare
<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

17 Jul 08:57
Compare
Choose a tag to compare
<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

15 Jul 20:33
d0b9575
Compare
Choose a tag to compare
<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

15 Jul 14:49
Compare
Choose a tag to compare
<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

14 Jul 19:06
16d88d5
Compare
Choose a tag to compare
<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

10 Jul 17:13
96057d9
Compare
Choose a tag to compare
<dependency>
  <groupId>com.github.yvasyliev</groupId>
  <artifactId>java-vk-bots-longpoll-api</artifactId>
  <version>3.2.11</version>
</dependency>

Updates:

Execute.Response response = vk.other.execute()
        .setCode("return 1;")
        .execute();
System.out.println(response);

Release 3.2.10

24 Apr 09:25
8ff7d2b
Compare
Choose a tag to compare
<dependency>
  <groupId>com.github.yvasyliev</groupId>
  <artifactId>java-vk-bots-longpoll-api</artifactId>
  <version>3.2.10</version>
</dependency>

Updates:

Release 3.2.9

12 Mar 18:39
ace7ea2
Compare
Choose a tag to compare
<dependency>
  <groupId>com.github.yvasyliev</groupId>
  <artifactId>java-vk-bots-longpoll-api</artifactId>
  <version>3.2.9</version>
</dependency>

Updates:

  • groups.getById can accept either group_id or screen_name

Release 3.2.8

08 Mar 16:30
e8e6f99
Compare
Choose a tag to compare
<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