Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
907 B
Markdown
16 lines
907 B
Markdown
- [Compatibility with OpenSearch](#compatibility-with-opensearch)
|
|
- [Upgrading](#upgrading)
|
|
|
|
## Compatibility with OpenSearch
|
|
|
|
The below matrix shows the compatibility of the [`opensearch-go`](https://pkg.go.dev/github.com/opensearch-project/opensearch-go) with versions of [`OpenSearch`](https://opensearch.org/downloads.html#opensearch).
|
|
|
|
| Client Version | OpenSearch Version |
|
|
| -------------- | ------------------ |
|
|
| 1.x.0 | 1.x |
|
|
| 2.x.0 | 1.3.13-2.11.0 |
|
|
|
|
## Upgrading
|
|
|
|
Major versions of OpenSearch introduce breaking changes that require careful upgrades of the client. While `opensearch-go-client` 2.0.0 works against the latest OpenSearch 1.x, certain deprecated features removed in OpenSearch 2.0 have also been removed from the client. Please refer to the [OpenSearch documentation](https://opensearch.org/docs/latest/clients/index/) for more information.
|