Skip to content

Commit 05109a8

Browse files
feat(sdk): Auto-created from 'analyticsapi-engines-sdk-generator' repository PR 68 for SDK version v6.1.0 (#92)
Updated stach-extensions and other package versions to fix vulnerabilities
1 parent 2e60a26 commit 05109a8

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

auto-generated-sdk/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Add this dependency to your project's POM:
4242
<dependency>
4343
<groupId>com.factset.analyticsapi</groupId>
4444
<artifactId>engines-sdk</artifactId>
45-
<version>6.0.0</version>
45+
<version>6.1.0</version>
4646
<scope>compile</scope>
4747
</dependency>
4848
```
@@ -52,7 +52,7 @@ Add this dependency to your project's POM:
5252
Add this dependency to your project's build file:
5353

5454
```groovy
55-
compile "com.factset.analyticsapi:engines-sdk:6.0.0"
55+
compile "com.factset.analyticsapi:engines-sdk:6.1.0"
5656
```
5757

5858
### Others
@@ -65,7 +65,7 @@ mvn clean package
6565

6666
Then manually install the following JARs:
6767

68-
- `target/engines-sdk-6.0.0.jar`
68+
- `target/engines-sdk-6.1.0.jar`
6969
- `target/lib/*.jar`
7070

7171
## Usage

auto-generated-sdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.factset.analyticsapi'
5-
version = '6.0.0'
5+
version = '6.1.0'
66

77
buildscript {
88
repositories {

auto-generated-sdk/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.factset.analyticsapi",
44
name := "engines-sdk",
5-
version := "6.0.0",
5+
version := "6.1.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

auto-generated-sdk/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>engines-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>engines-sdk</name>
8-
<version>6.0.0</version>
8+
<version>6.1.0</version>
99
<url>https://github.com/factset/analyticsapi-engines-java-sdk</url>
1010
<description>SDK for FactSet Analytics Engines API</description>
1111
<distributionManagement>
@@ -323,10 +323,10 @@
323323
<properties>
324324
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
325325
<swagger-annotations-version>1.6.1</swagger-annotations-version>
326-
<stach-extensions-version>1.1.1</stach-extensions-version>
326+
<stach-extensions-version>1.5.0</stach-extensions-version>
327327
<jersey-version>2.30.1</jersey-version>
328-
<jackson-version>2.10.5</jackson-version>
329-
<jackson-databind-version>2.10.5.1</jackson-databind-version>
328+
<jackson-version>2.13.5</jackson-version>
329+
<jackson-databind-version>2.13.5</jackson-databind-version>
330330
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
331331
<threetenbp-version>2.9.10</threetenbp-version>
332332
<javax-annotation-version>1.3.2</javax-annotation-version>

auto-generated-sdk/src/main/java/factset/analyticsapi/engines/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public ApiClient(Map<String, Authentication> authMap) {
118118
httpClient = buildHttpClient();
119119
this.dateFormat = new RFC3339DateFormat();
120120
// Set default User-Agent.
121-
setUserAgent("engines-api/6.0.0/java");
121+
setUserAgent("engines-api/6.1.0/java");
122122
// Setup authentications (key: authentication name, value: authentication).
123123
authentications = new HashMap<String, Authentication>();
124124
Authentication auth = null;

examples/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
</dependency>
106106
<dependency>
107107
<scope>system</scope>
108-
<systemPath>${project.basedir}/../auto-generated-sdk/target/engines-sdk-5.5.0.jar</systemPath>
108+
<systemPath>${project.basedir}/../auto-generated-sdk/target/engines-sdk-6.1.0.jar</systemPath>
109109
<groupId>com.factset.analyticsapi</groupId>
110110
<artifactId>engines-sdk</artifactId>
111111
<version>${engines-sdk-version}</version>
@@ -114,15 +114,15 @@
114114
<properties>
115115
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
116116
<jersey-version>2.30.1</jersey-version>
117-
<jackson-version>2.10.5</jackson-version>
118-
<jackson-databind-version>2.10.5.1</jackson-databind-version>
117+
<jackson-version>2.13.5</jackson-version>
118+
<jackson-databind-version>2.13.5</jackson-databind-version>
119119
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
120120
<jsr305-version>3.0.2</jsr305-version>
121121
<threetenbp-version>2.9.10</threetenbp-version>
122122
<migbase64-version>2.2</migbase64-version>
123-
<protobuf-version>3.12.2</protobuf-version>
124-
<stach-extension-version>1.1.1</stach-extension-version>
125-
<engines-sdk-version>5.5.0</engines-sdk-version>
126-
<poi-ooxml-version>4.0.1</poi-ooxml-version>
123+
<protobuf-version>3.25.5</protobuf-version>
124+
<stach-extension-version>1.5.0</stach-extension-version>
125+
<engines-sdk-version>6.1.0</engines-sdk-version>
126+
<poi-ooxml-version>4.1.2</poi-ooxml-version>
127127
</properties>
128128
</project>

tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
</dependency>
117117
<dependency>
118118
<scope>system</scope>
119-
<systemPath>${project.basedir}/../auto-generated-sdk/target/engines-sdk-5.6.0.jar</systemPath>
119+
<systemPath>${project.basedir}/../auto-generated-sdk/target/engines-sdk-6.1.0.jar</systemPath>
120120
<groupId>com.factset.analyticsapi</groupId>
121121
<artifactId>engines-sdk</artifactId>
122122
<version>${engines-sdk-version}</version>
@@ -142,7 +142,7 @@
142142
<junit-version>4.13.1</junit-version>
143143
<protobuf-version>3.12.2</protobuf-version>
144144
<stach-extension-version>1.1.1</stach-extension-version>
145-
<engines-sdk-version>5.6.0</engines-sdk-version>
145+
<engines-sdk-version>6.1.0</engines-sdk-version>
146146
<poi-ooxml-version>4.0.1</poi-ooxml-version>
147147
</properties>
148148
</project>

0 commit comments

Comments
 (0)