Skip to content

Commit 261630c

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/github-script-8
2 parents e79d6b5 + 6cd0f0c commit 261630c

File tree

40 files changed

+224
-135
lines changed

40 files changed

+224
-135
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
# Initializes the CodeQL tools for scanning.
3636
- name: Initialize CodeQL
37-
uses: github/codeql-action/init@v2
37+
uses: github/codeql-action/init@v4
3838
with:
3939
languages: ${{ matrix.language }}
4040
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -48,7 +48,7 @@ jobs:
4848
# If this step fails, then you should remove it and run the build manually (see below)
4949
- name: Autobuild
5050
if: ${{ matrix.language != 'java' }}
51-
uses: github/codeql-action/autobuild@v2
51+
uses: github/codeql-action/autobuild@v4
5252

5353
- name: Setup JDK
5454
uses: actions/setup-java@v5
@@ -73,6 +73,6 @@ jobs:
7373
# ./location_of_script_within_repo/buildscript.sh
7474

7575
- name: Perform CodeQL Analysis
76-
uses: github/codeql-action/analyze@v2
76+
uses: github/codeql-action/analyze@v4
7777
with:
7878
category: "/language:${{matrix.language}}"

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 1.4.4-RC2
2+
3+
- Upgrade many dependencies to recent versions
4+
- Migrate from "Tool calls" to "Function calls" terminology, deprecated OpenAIFunctionToolCall
5+
- Refactored Data storage area to be more extensible and added Oracle Database support (Thank you to the contributors
6+
from Oracle for the contribution)
7+
18
# 1.4.4-RC1
29

310
- Add Agent framework abstractions.
@@ -25,7 +32,8 @@
2532
# 1.4.0
2633

2734
- Upgrade to azure-ai-openai 1.0.0-beta.12
28-
- Add vector stores with vector search support for Azure AI Search, Redis, JDBC with Postgres, MySQL, SQLite and HSQLDB. Moving these features out of the experimental stage.
35+
- Add vector stores with vector search support for Azure AI Search, Redis, JDBC with Postgres, MySQL, SQLite and HSQLDB.
36+
Moving these features out of the experimental stage.
2937

3038
# 1.3.0
3139

COMMUNITY.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,6 @@ Below are some ways that you can get involved in the SK Community.
77
File issues, submit PRs, and provide feedback and ideas to what you'd like to see from the Semantic Kernel.
88
We do our best to respond to each submission.
99

10-
## Public Community Office Hours
11-
12-
We regularly have Community Office Hours that are open to the **public** to join.
13-
14-
Add Semantic Kernel events to your calendar - we're running two community calls to cater different timezones for Q&A Office Hours:
15-
* Americas timezone: download the [calendar.ics](https://aka.ms/sk-community-calendar) file.
16-
* Asia Pacific timezone: download the [calendar-APAC.ics](https://aka.ms/sk-community-calendar-apac) file.
17-
18-
Add Semantic Kernel Development Office Hours for Python and Java to your calendar to help with development:
19-
* Java Development Office Hours: [Java Development Office Hours](https://aka.ms/sk-java-dev-sync)
20-
* Python Development Office Hours: [Python Development Office Hours](https://aka.ms/sk-python-dev-sync)
21-
22-
If you have any questions or if you would like to showcase your project(s), please email what you'd like us to cover here: skofficehours[at]microsoft.com.
23-
24-
If you are unable to make it live, all meetings will be recorded and posted online.
25-
2610
## Join the conversation on Discord
2711

2812
We have a growing and active channel on Discord where you can get help, engage in lively discussion,

agents/semantickernel-agents-core/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>com.microsoft.semantic-kernel</groupId>
76
<artifactId>semantickernel-parent</artifactId>
8-
<version>1.4.4-RC2-SNAPSHOT</version>
7+
<version>1.4.4-RC3-SNAPSHOT</version>
98
<relativePath>../../pom.xml</relativePath>
109
</parent>
1110

aiservices/google/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.semantic-kernel</groupId>
66
<artifactId>semantickernel-parent</artifactId>
7-
<version>1.4.4-RC2-SNAPSHOT</version>
7+
<version>1.4.4-RC3-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010

aiservices/huggingface/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.microsoft.semantic-kernel</groupId>
88
<artifactId>semantickernel-parent</artifactId>
9-
<version>1.4.4-RC2-SNAPSHOT</version>
9+
<version>1.4.4-RC3-SNAPSHOT</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

aiservices/openai/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.microsoft.semantic-kernel</groupId>
88
<artifactId>semantickernel-parent</artifactId>
9-
<version>1.4.4-RC2-SNAPSHOT</version>
9+
<version>1.4.4-RC3-SNAPSHOT</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

api-test/integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.microsoft.semantic-kernel</groupId>
88
<artifactId>api-test</artifactId>
9-
<version>1.4.4-RC2-SNAPSHOT</version>
9+
<version>1.4.4-RC3-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

api-test/pom.xml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.microsoft.semantic-kernel</groupId>
88
<artifactId>semantickernel-parent</artifactId>
9-
<version>1.4.4-RC2-SNAPSHOT</version>
9+
<version>1.4.4-RC3-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

@@ -34,6 +34,28 @@
3434
</dependency>
3535
</dependencies>
3636
</dependencyManagement>
37+
<dependencies>
38+
<dependency>
39+
<groupId>com.microsoft.semantic-kernel</groupId>
40+
<artifactId>semantickernel-api</artifactId>
41+
</dependency>
42+
<dependency>
43+
<groupId>com.microsoft.semantic-kernel</groupId>
44+
<artifactId>semantickernel-aiservices-openai</artifactId>
45+
</dependency>
46+
<dependency>
47+
<groupId>com.microsoft.semantic-kernel</groupId>
48+
<artifactId>semantickernel-api-ai-services</artifactId>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.microsoft.semantic-kernel</groupId>
52+
<artifactId>semantickernel-api-builders</artifactId>
53+
</dependency>
54+
<dependency>
55+
<groupId>com.microsoft.semantic-kernel</groupId>
56+
<artifactId>semantickernel-api-exceptions</artifactId>
57+
</dependency>
58+
</dependencies>
3759

3860
<build>
3961
<plugins>
@@ -57,6 +79,7 @@
5779
<plugin>
5880
<groupId>com.diffplug.spotless</groupId>
5981
<artifactId>spotless-maven-plugin</artifactId>
82+
<version>${maven.spotless-plugin.version}</version>
6083
<configuration>
6184
<skip>true</skip>
6285
</configuration>

data/semantickernel-data-azureaisearch/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.semantic-kernel</groupId>
66
<artifactId>semantickernel-parent</artifactId>
7-
<version>1.4.4-RC2-SNAPSHOT</version>
7+
<version>1.4.4-RC3-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010

0 commit comments

Comments
 (0)