Skip to content

Commit

Permalink
Merge branch 'feat/opensearch/aws_auth' of github.com:deepset-ai/hays…
Browse files Browse the repository at this point in the history
…tack-core-integrations into feat/opensearch/aws_auth
  • Loading branch information
tstadel committed Jul 26, 2024
2 parents 82b3a67 + 9ae3054 commit c4879cd
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,33 @@ Please check out our [Contribution Guidelines](CONTRIBUTING.md) for all the deta
| [unstructured-fileconverter-haystack](integrations/unstructured/) | File converter | [![PyPI - Version](https://img.shields.io/pypi/v/unstructured-fileconverter-haystack.svg)](https://pypi.org/project/unstructured-fileconverter-haystack) | [![Test / unstructured](https://github.com/deepset-ai/haystack-core-integrations/actions/workflows/unstructured.yml/badge.svg)](https://github.com/deepset-ai/haystack-core-integrations/actions/workflows/unstructured.yml) |
| [uptrain-haystack](https://github.com/deepset-ai/haystack-core-integrations/tree/staging/integrations/uptrain) | Evaluator | [![PyPI - Version](https://img.shields.io/pypi/v/uptrain-haystack.svg)](https://pypi.org/project/uptrain-haystack) | [Staged](https://docs.haystack.deepset.ai/docs/breaking-change-policy#discontinuing-an-integration) |
| [weaviate-haystack](integrations/weaviate/) | Document Store | [![PyPI - Version](https://img.shields.io/pypi/v/weaviate-haystack.svg)](https://pypi.org/project/weaviate-haystack) | [![Test / weaviate](https://github.com/deepset-ai/haystack-core-integrations/actions/workflows/weaviate.yml/badge.svg)](https://github.com/deepset-ai/haystack-core-integrations/actions/workflows/weaviate.yml) |

## Releasing

> [!NOTE]
> Only maintainers can release new versions of integrations.
> If you're a community contributor and want to release a new version of an integration,
> reach out to a maintainer.
To release a new version of an integration to PyPI tag the commit with the right version number and push the tag to
GitHub. The GitHub Actions workflow will take care of the rest.

1. Tag the commit with the right version number

The tag needs to have the following format:

```
git tag integrations/<INTEGRATION_FOLDER_NAME>-<version>
```
For example, if we want to release version 1.0.99 of the google-vertex-haystack integration we'd have to push the tag:
```
git tag integrations/google_vertex-v1.0.99
```
2. Push the tag to GitHub
```
git push --tags origin
```
3. Wait for the CI to do its magic
42 changes: 42 additions & 0 deletions integrations/nvidia/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Changelog

## [unreleased]

### 🚜 Refactor

- Remove deprecated Nvidia Cloud Functions backend and related code. (#803)

### ⚙️ Miscellaneous Tasks

- Retry tests to reduce flakyness (#836)
- Update ruff invocation to include check parameter (#853)

## [integrations/nvidia-v0.0.3] - 2024-05-22

### 📚 Documentation

- Update docstrings of Nvidia integrations (#599)

### ⚙️ Miscellaneous Tasks

- Add generate docs to Nvidia workflow (#603)

## [integrations/nvidia-v0.0.2] - 2024-03-18

### 📚 Documentation

- Disable-class-def (#556)

## [integrations/nvidia-v0.0.1] - 2024-03-07

### 🚀 Features

- Add `NvidiaTextEmbedder`, `NvidiaDocumentEmbedder` and co. (#537)

### 🐛 Bug Fixes

- `nvidia-haystack`- Handle non-strict env var secrets correctly (#543)

## [integrations/nvidia-v0.0.0] - 2024-03-01

<!-- generated by git-cliff -->
47 changes: 47 additions & 0 deletions integrations/ragas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Changelog

## [integrations/ragas-v1.0.0] - 2024-07-24

### ⚙️ Miscellaneous Tasks

- Retry tests to reduce flakyness (#836)
- Update ruff invocation to include check parameter (#853)
- Ragas - remove context relevancy metric (#917)

## [integrations/ragas-v0.2.0] - 2024-04-23

## [integrations/ragas-v0.1.3] - 2024-04-09

### 🐛 Bug Fixes

- Fix haystack-ai pin (#649)



### 📚 Documentation

- Disable-class-def (#556)

## [integrations/ragas-v0.1.2] - 2024-03-08

### 📚 Documentation

- Update `ragas-haystack` docstrings (#529)

## [integrations/ragas-v0.1.1] - 2024-02-23

### 🐛 Bug Fixes

- Fix order of API docs (#447)

This PR will also push the docs to Readme

### 📚 Documentation

- Update category slug (#442)

### Build

- Pin `ragas` dependency to `0.1.1` (#476)

<!-- generated by git-cliff -->

0 comments on commit c4879cd

Please sign in to comment.