Skip to content
Merged
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ All notable changes to the **Sinch Java SDK** are documented in this file.
### Major breaking changes with major release
- see [MIGRATION-GUIDE](MIGRATION-GUIDE.md#200)

### Chore
- **[dependency]** Updated `maven-model` dependency to `3.9.14` or more recent version to fix security vulnerabilities [#8](https://github.com/sinch/sinch-sdk-java/security/dependabot/8)

### Conversation
- **[feature]** Support `Project Settings` API
- **[feature]** Support `Contacts Identity Conflicts` API
Expand Down
8 changes: 8 additions & 0 deletions examples/snippets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,14 @@
<artifactId>slf4j-jdk14</artifactId>
<version>2.0.9</version>
</dependency>

<dependency>
<!-- transient dependency overwrite: https://github.com/sinch/sinch-sdk-java/security/dependabot/8 -->
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>[3.9.14,)</version>
</dependency>

</dependencies>

</project>
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@
</pluginManagement>

<plugins>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
Expand Down Expand Up @@ -491,9 +490,10 @@
</dependency>

<dependency>
<!-- transient dependency overwrite: https://github.com/sinch/sinch-sdk-java/security/dependabot/8 -->
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>3.9.5</version>
<version>[3.9.14,)</version>
</dependency>

</dependencies>
Expand Down
Loading