Skip to content

Commit 6cf43c1

Browse files
Release 0.14.6 (#20148)
1 parent 9e3530e commit 6cf43c1

File tree

6 files changed

+62
-35
lines changed

6 files changed

+62
-35
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -114,38 +114,10 @@ jobs:
114114
working-directory: "."
115115

116116
- name: Create GitHub Release
117-
id: create_release
118-
uses: actions/create-release@v1
119117
env:
120118
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
121-
with:
122-
tag_name: v${{ steps.get_version.outputs.version }}
123-
release_name: v${{ steps.get_version.outputs.version }}
124-
body_path: "RELEASE.md"
125-
draft: false
126-
prerelease: false
127-
128-
- name: Get Asset name
129-
run: |
130-
export PKG=$(ls dist/ | grep tar)
131-
set -- $PKG
132-
echo "name=$1" >> $GITHUB_ENV
133-
134-
- name: Upload Release Asset (sdist) to GitHub
135-
id: upload-release-asset
136-
uses: actions/upload-release-asset@v1
137-
env:
138-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
139-
with:
140-
upload_url: ${{ steps.create_release.outputs.upload_url }}
141-
asset_path: dist/${{ env.name }}
142-
asset_name: ${{ env.name }}
143-
asset_content_type: application/zip
144-
145-
- name: Tag the released commit
146119
run: |
147-
git config user.name "github-actions[bot]"
148-
git config user.email "github-actions[bot]@users.noreply.github.com"
149-
TAG_NAME="v${{ steps.get_version.outputs.version }}"
150-
git tag "${TAG_NAME}" -m "${TAG_NAME}"
151-
git push origin --tags
120+
gh release create "v${{ steps.get_version.outputs.version }}" \
121+
--title "v${{ steps.get_version.outputs.version }}" \
122+
--notes-file RELEASE.md \
123+
dist/*.tar.gz

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,57 @@
22

33
<!--- generated changelog --->
44

5+
## [2025-10-26]
6+
7+
### llama-index-core [0.14.6]
8+
- Add allow_parallel_tool_calls for non-streaming ([#20117](https://github.com/run-llama/llama_index/pull/20117))
9+
- Fix invalid use of field-specific metadata ([#20122](https://github.com/run-llama/llama_index/pull/20122))
10+
- update doc for SemanticSplitterNodeParser ([#20125](https://github.com/run-llama/llama_index/pull/20125))
11+
- fix rare cases when sentence splits are larger than chunk size ([#20147](https://github.com/run-llama/llama_index/pull/20147))
12+
13+
### llama-index-embeddings-bedrock [0.7.0]
14+
- Fix BedrockEmbedding to support Cohere v4 response format ([#20094](https://github.com/run-llama/llama_index/pull/20094))
15+
16+
### llama-index-embeddings-isaacus [0.1.0]
17+
- feat: Isaacus embeddings integration ([#20124](https://github.com/run-llama/llama_index/pull/20124))
18+
19+
### llama-index-embeddings-oci-genai [0.4.2]
20+
- Update OCI GenAI cohere models ([#20146](https://github.com/run-llama/llama_index/pull/20146))
21+
22+
### llama-index-llms-anthropic [0.9.7]
23+
- Fix double token stream in anthropic llm ([#20108](https://github.com/run-llama/llama_index/pull/20108))
24+
- Ensure anthropic content delta only has user facing response ([#20113](https://github.com/run-llama/llama_index/pull/20113))
25+
26+
### llama-index-llms-baseten [0.1.7]
27+
- add GLM ([#20121](https://github.com/run-llama/llama_index/pull/20121))
28+
29+
### llama-index-llms-helicone [0.1.0]
30+
- integrate helicone to llama-index ([#20131](https://github.com/run-llama/llama_index/pull/20131))
31+
32+
### llama-index-llms-oci-genai [0.6.4]
33+
- Update OCI GenAI cohere models ([#20146](https://github.com/run-llama/llama_index/pull/20146))
34+
35+
### llama-index-llms-openai [0.6.5]
36+
- chore: openai vbump ([#20095](https://github.com/run-llama/llama_index/pull/20095))
37+
38+
### llama-index-readers-imdb-review [0.4.2]
39+
- chore: Update selenium dependency in imdb-review reader ([#20105](https://github.com/run-llama/llama_index/pull/20105))
40+
41+
### llama-index-retrievers-bedrock [0.5.0]
42+
- feat(bedrock): add async support for AmazonKnowledgeBasesRetriever ([#20114](https://github.com/run-llama/llama_index/pull/20114))
43+
44+
### llama-index-retrievers-superlinked [0.1.3]
45+
- Update README.md ([#19829](https://github.com/run-llama/llama_index/pull/19829))
46+
47+
### llama-index-storage-kvstore-postgres [0.4.2]
48+
- fix: Replace raw SQL string interpolation with proper SQLAlchemy parameterized APIs in PostgresKVStore ([#20104](https://github.com/run-llama/llama_index/pull/20104))
49+
50+
### llama-index-tools-mcp [0.4.3]
51+
- Fix BasicMCPClient resource signatures ([#20118](https://github.com/run-llama/llama_index/pull/20118))
52+
53+
### llama-index-vector-stores-postgres [0.7.1]
54+
- Add GIN index support for text array metadata in PostgreSQL vector store ([#20130](https://github.com/run-llama/llama_index/pull/20130))
55+
556
## [2025-10-15]
657

758
### llama-index-core [0.14.5]

docs/api_reference/mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,8 @@ plugins:
731731
- ../../llama-index-integrations/memory/llama-index-memory-bedrock-agentcore
732732
- ../../llama-index-integrations/tools/llama-index-tools-signnow
733733
- ../../llama-index-integrations/llms/llama-index-llms-sglang
734+
- ../../llama-index-integrations/embeddings/llama-index-embeddings-isaacus
735+
- ../../llama-index-integrations/llms/llama-index-llms-helicone
734736
site_name: LlamaIndex
735737
site_url: https://developers.llamaindex.ai/python/framework-api-reference/
736738
theme:

docs/src/content/docs/framework/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
title: ChangeLog
33
---
44

5+
<!--- generated changelog --->
6+
57
## [2025-10-15]
68

79
### llama-index-core [0.14.5]

llama-index-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dev = [
3131

3232
[project]
3333
name = "llama-index-core"
34-
version = "0.14.5"
34+
version = "0.14.6"
3535
description = "Interface between LLMs and your data"
3636
authors = [{name = "Jerry Liu", email = "[email protected]"}]
3737
requires-python = ">=3.9,<4.0"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ classifiers = [
4040
]
4141
dependencies = [
4242
"llama-index-cli>=0.5.0,<0.6 ; python_version > '3.9'",
43-
"llama-index-core>=0.14.5,<0.15.0",
43+
"llama-index-core>=0.14.6,<0.15.0",
4444
"llama-index-embeddings-openai>=0.5.0,<0.6",
4545
"llama-index-indices-managed-llama-cloud>=0.4.0",
4646
"llama-index-llms-openai>=0.6.0,<0.7",
@@ -70,7 +70,7 @@ maintainers = [
7070
name = "llama-index"
7171
readme = "README.md"
7272
requires-python = ">=3.9,<4.0"
73-
version = "0.14.5"
73+
version = "0.14.6"
7474

7575
[project.scripts]
7676
llamaindex-cli = "llama_index.cli.command_line:main"

0 commit comments

Comments
 (0)