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>
24 KiB
8.19.0
API
- Updated APIs to 8.19.0
Typed API
- Update TypedAPI to latest elasticsearch-specification 8.19
8.18.1
- This patch release fixes the broken build found in 8.18.0. If you are using the
TypedClient, you should update to this version.
8.18.0
- Update
elastictransportto8.7.0. - Thanks to @zaneli, the
TypedClientcan now be used in theBulkIndexer.
New
- This release adds a
BaseClientconstructor with no attached APIs, allowing it to be used purely as a transport layer instead of a full-featured API client.
baseClient, err := elasticsearch.NewBaseClient(elasticsearch.Config{
Addresses: []string{
"http://localhost:9200",
},
})
if err != nil {
log.Println(err)
return
}
res, err := esapi.InfoRequest{
Pretty: false,
Human: false,
ErrorTrace: false,
FilterPath: nil,
Header: nil,
Instrument: baseClient.InstrumentationEnabled(),
}.Do(context.Background(), baseClient)
if err != nil {
log.Println(err)
return
}
defer res.Body.Close()
if res.IsError() {
log.Println("Error response:", res)
return
}
var infoMap map[string]interface{}
if err := json.NewDecoder(res.Body).Decode(&infoMap); err != nil {
log.Println("Error parsing response:", err)
return
}
log.Printf("Elasticsearch version esapi: %s\n", infoMap["version"].(map[string]interface{})["number"])
typedRes, err := info.New(baseClient).Do(context.Background())
if err != nil {
log.Println(err)
return
}
log.Printf("Elasticsearch version typedapi: %s\n", typedRes.Version.Int)
API
- Updated APIs to 8.18.0
Typed API
- Update APIs to 8.18 (cbfcc73)
8.17.1
- Update elastictransport to 8.6.1
Thanks to @AkisAya and @jmfrees for their contributions!
8.17.0
- Expose BulkIndexer total flushed bytes metric #914 thanks to @aureleoules
API
Updated APIs to 8.17.0
Typed API
Update APIs to latest elasticsearch-specification 8.17
8.16.0
API
InferenceStreamInferenceDocumentationQueryRulesTestDocumentationIngest.DeleteIPLocationDatabaseDocumentationIngest.GetIPLocationDatabaseDocumentationIngest.PutIPLocationDatabaseDocumentation
Typed API
Update APIs to latest elasticsearch-specification 8.16
8.15.0
API
- API is generated from the Elasticsearch 8.15.0 specification.
Typed API
Update APIs to latest elasticsearch-specification 8.15
8.14.0
API
New APIs:
- ConnectorUpdateActiveFiltering Documentation
- ConnectorUpdateFilteringValidation Documentation
- TextStructureFindFieldStructure Documentation
- TextStructureFindMessageStructure Documentation
Typed API
New APIs:
- UpdateTrainedModelDeployment Documentation
Transport
- Fixed a deadlock in the connection pool https://github.com/elastic/elastic-transport-go/issues/20
8.13.1
Typed API
Update APIs to latest elasticsearch-specification 8.13
Fixes
This patch release brings a fix to the initialisation of the Request in endpoints which would prevent using the shortcuts for fields.
Canonical.Request() method was unaffected.
Autoscaling.PutAutoscalingPolicyIndices.DownsampleIndices.PutSettingsIndices.SimulateTemplateInference.PutModelLogstash.PutPipelineMl.ValidateDetectorSearchApplication.Put
8.13.0
API
New APIS:
-
ConnectorSecretGet -
ConnectorSecretPost -
ConnectorSecretPut -
ConnectorSecretDelete -
ConnectorUpdateIndexName -
ConnectorUpdateNative -
ConnectorUpdateStatus -
ConnectorUpdateAPIKeyDocumentID -
ConnectorUpdateServiceDocumentType -
EsqlAsyncQueryDocumentation -
EsqlAsyncQueryGetDocumentation -
ProfilingFlamegraphDocumentation -
ProfilingStacktracesDocumentation -
TextStructureTestGrokPatternDocumentation -
Indices.ResolveClusterDocumentation -
Security.QueryUserDocumentation
Typed API
indices.ResolveClusterDocumentationtextstructure.TestGrokPatternDocumentation
Thanks to @pakio, transport now has an optional pool based compression option. link
And to @tblyler for fixing a very subtle memory leak in the BulkIndexer. #797
8.12.1
- Fix: ticker memory leak in bulk indexer due to internal flush call resetting the ticker. #797
- Fix: Scroll now uses the body to pass the scroll_id. #785
- Add: generated UnmarshalJSON for Requests to allow injecting payloads using aliases.
- Fix:
put_synonym_rulewas not working due to a type issue in the Elasticsearch API Specification.
8.12.0
Client
Golang version
The client now requires Golang version 1.20
OpenTelemetry
The client now provides OpenTelemetry integration. This integration can be enabled in the config using the elasticsearch.NewOpenTelemetryInstrumentation.
Once set up, the provided context will be used to record spans with useful information about the request being made to the server.
More about what you can expect in the Semantic Conventions for Elasticsearch.
BulkIndexer
if_seq_no & if_primary_term are now supported thanks to @benjyiw #783
API
SimulateIngestConnectorCheckInConnectorDeleteConnectorGetConnectorLastSyncConnectorListConnectorPostConnectorPutConnectorSyncJobCancelConnectorSyncJobCheckInConnectorSyncJobDeleteConnectorSyncJobErrorConnectorSyncJobGetConnectorSyncJobListConnectorSyncJobPostConnectorSyncJobUpdateStatsConnectorUpdateConfigurationConnectorUpdateErrorConnectorUpdateFilteringConnectorUpdateNameConnectorUpdatePipelineConnectorUpdateScheduling
Typed API
Esql.QuerydocumentationFleet.PostSecretInferencedocumentationDeleteModeldocumentationGetModeldocumentationInferencedocumentationPutModeldocumentation
SearchApplicationGetSettingsdocumentationUpdateSettingsdocumentation
8.11.1
Typed API
- Fix https://github.com/elastic/go-elasticsearch/issues/756 preventing from settings indices in
indices.PutSettings
8.11.0
API
Experimental APIs
EsqlQuerydocumentationInferenceDeleteModeldocumentationInferenceGetModeldocumentationInferenceInferencedocumentationInferencePutModeldocumentation
Typed API
- Mandatory URL parameters are not exposed as functions anymore as they already exist in the constructor.
New Compatibility Policy
Starting from version 8.12.0, this library follow the Go language policy. Each major Go release is supported until there are two newer major releases. For example, Go 1.5 was supported until the Go 1.7 release, and Go 1.6 was supported until the Go 1.8 release.
If you have any questions or concerns, please do not hesitate to reach out to us.
8.10.1
Typed API
Update APIs to latest elasticsearch-specification 8.10
8.10.0
API
Experimental APIs for internal use
FleetDeleteSecretFleetGetSecretFleetPostSecret
Exprimental APIs
QueryRulesetList
Stable APIs
Security.GetSettings
Security.UpdateSettings
Typed API
Exprimental APIs
QueryRuleset.List
Technical Preview
Beta
8.9.0
API
New API
Cluster.InfoDocumentation
Experimental APIs
QueryRulesetGetDocumentationQueryRulesetDeleteDocumentationQueryRulesetPutDocumentationSearchApplicationRenderQueryDocumentationSecurity.CreateCrossClusterAPIKeyDocumentationSecurity.UpdateCrossClusterAPIKeyDocumentation
Typed API
- Propagated request fields towards the endpoint for ease of access, taking priority over same-name query string fields.
- Added a stub for Do methods on endpoints that only support a boolean response such as
core.exists. - NDJSON endpoints support with custom serialization like
core.bulk. - Link to endpoints documentation in API index to better display and ease of use.
fixes
- Fixed a deserialization issue for
Property&Analyzer#696
8.8.2
Typed API
- Fixed deserialization for
Suggestin search responses. - Fixed double-quoted strings in deserialization for unions normalized as string. #684
- Fixed handling of
core.Getresponse when the index did not exist. #678
8.7.0
API
ML.DeleteJob: AddedWithDeleteUserAnnotations. Should annotations added by the user be deleted.ML.ResetJob: AddedWithDeleteUserAnnotations. Should annotations added by the user be deleted.ML.StartTrainedModelDeployment: AddedWithPriority. The deployment priority.TransformGetTransformStats: AddedWithTimeout. Controls the time to wait for the stats.TransformStartTransform: AddedWithFrom. Restricts the set of transformed entities to those changed after this time.
New APIs
TransformScheduleNowTransform documentation.
HealthReport documentation.
Typed API
- Inclusion of responses structures.
Changes
Domethod on endpoints now return a typed response, one per endpoint.Performmethod added on endpoints, returnshttp.Responseas didDo.- Elasticsearch exceptions are now handled as
types.ElasticsearchErrorwith.Asand.Ismethods. .Rawnow takes a reader as input.- User defined values such as
_sourceinHitsare nowjson.RawMessageto highlight they later deserializable nature.
8.6.0
API
ML.StartTrainedModelDeployment: AddedWithPriority
New APIs
ML.UpdateTrainedModelDeployment: Updates certain properties of trained model deployment.
Client
BulkIndexer
Improvements were made to the BulkIndexer memory usage to allow better handling under burst use cases. Thanks to @christos68k and @rockdaboot !
8.5.0
API
ML.StartTrainedModelDeployment: Description ofNumberOfAllocationshas been changed in "The total number of allocations this model is assigned across machine learning nodes".Security.GetAPIKey: AddedWithLimitedByboolean parameter. Flag to show the limited-by role descriptors of API Keys.Security.GetUser: AddedWithProfileUIDboolean parameter. Flag to retrieve profile uid (if exists) associated to the user.Security.GetUserProfile: Changed the description of uid parameter, a comma-separated list of unique identifier for user profiles.Security.QueryAPIKeys: AddedWithLimitedByboolean parameter. Flag to show the limited-by role descriptors of API Keys.TextStructureFindStructure: AddedEcsCompatibilitystring parameter. Optional parameter to specify the compatibility mode with ECS Grok patterns - may be either 'v1' or 'disabled'.
Promoted to stable
ML.InferTrainedModelML.PutTrainedModelDefinitionPartML.PutTrainedModelVocabularyML.StartTrainedModelDeploymentML.StopTrainedModelDeploymentSecurity.activateUserProfileSecurity.DisableUserProfileSecurity.EnableUserProfileSecurity.GetUserProfileSecurity.HasPrivilegesUserProfileSecurity.SuggestUserProfilesSecurity.UpdateUserProfileData
New APIs
ML.ClearTrainedModelDeploymentCachedocumentation.Security.BulkUpdateAPIKeysdocumentation.Indices.Downsample(Experimental API) documentation
Typed API
Following multiple feedbacks we decided to remove the builder API for the type tree.
In its place, work has started to further simplify the type tree by removing redundant type aliases. The API also now comes with a helper package named some that allows to call for inline pointers on primitive types.
In addition, a bug was fixed preventing the use of wildcards in index names, and enums are now extensible by default.
The Typed API remains in alpha stage while its development continues.
8.4.0
API
get,mgetandsearchaddedforce_synthetic_source: Should this request force synthetic _source? Use this to test if the mapping supports synthetic _source and to get a sense of the worst case performance. Fetches with this enabled will be slower the enabling synthetic source natively in the index.ML.StartTrainedModelDeploymentaddedcache_size: A byte-size value for configuring the inference cache size. For example, 20mb.Snapshot.Getaddedsort,size,order,from_sort_value,after,offsetandslm_policy_filter. More on these in the documentation.
New API
Security.UpdateAPIKeydocumentation.
Typed API
As highlighted in the release not for the 8.4.0-alpha.1, this release marks the beginning of the newly arrived TypedClient.
This new API is still in alpha stage and will be release alongside the existing esapi.
A few examples of standard use-cases can be found in the TypedAPI section of the documentation.
8.4.0-alpha.2
This second prerelease of the 8.4.0 updates the API for the client and fixes the serialization for types using additional properties.
8.4.0-alpha.1
This prerelease introduces a new typed API generated from the elasticsearch-specification. This generation from the common specification allows us to provide a complete API which uses an exhaustive hierarchy of types reflecting the possibilities given by Elasticsearch.
This new API is the next iteration of the Go client for Elasticsearch, it now lives alongside the existing API, it is in alpha state and will gain features over time and releases.
What's new
The TypedClient is built around a fluent builder for easier request creation and a collection of structures and helpers that mimics as closely as possible the Elasticsearch JSON API.
As a first example, here is a search request:
cfg := elasticsearch.Config{
// Define your configuration
}
es, _ := elasticsearch.NewTypedClient(cfg)
res, err := es.Search().
Index("index_name").
Request(&search.Request{
Query: &types.QueryContainer{
Match: map[types.Field]types.MatchQuery{
"name": {Query: "Foo"},
},
},
},
).Do(context.Background())
The Request uses the structures found in the typedapi/types package which will lead you along the possibilities. A builder for each structure that allows easier access and declaration is also provided.
More on the specifics and a few examples of standard use-cases can be found in the TypedAPI section of the documentation.
Limitations
While most of the endpoints are covered, a few points are still being worked on and will be part of future releases:
- NDJSON endpoints:
bulk,msearch,msearch_template,ML.post_data,find_structure, to name a few. - Response and Errors structures with deserialization.
Transport & config
While being different, the new API uses all the existing layers that were built so far, elastic-transport-go remains the preferred transport and all your configuration and credentials applies, same as before.
Feedback
Feedback is very welcome, play with it, use it, let us know what you think!
8.3.0
API
ML.InferTrainedModelDeploymentrenamed toInferTrainedModelML.PreviewDatafeedhas two new parameters,startandend. DocumentationML.StartTrainedModelDeploymenthas three new parameters,number_of_allocations,threads_per_allocationandqueue_capacity. DocumentationCluster.DeleteVotingConfigExclusionshas a newmaster_timeoutparameter.Cluster.PostVotingConfigExclusionshas a newmaster_timeoutparameter.Snapshot.Gethas a newindex_namesparameters (boolean). Whether to include the name of each index in the snapshot. Defaults to true.
New APIs
Security.HasPrivilegesUserProfile(Experimental API) Documentation
8.2.0
Client
- Fixed a serialisation error for
retry_on_conflictin the BulkIndexer. Thanks to @lpflpf for the help! - Fixed a concurrent map error in the BulkIndexer when custom headers are applied. Thanks to @chzhuo for the contribution!
API
New APIs
-
Cat.ComponentTemplates -
ML.GetMemoryStatsdocumentation -
Security.activateUserProfile(Experimental API) Documentation -
Security.disableUserProfile(Experimental API) Documentation -
Security.enableUserProfile(Experimental API) Documentation -
Security.getUserProfile(Experimental API) Documentation -
Security.suggestUserProfiles(Experimental API) Documentation -
Security.updateUserProfileData(Experimental API) Documentation
8.1.0
API
- API is generated from the Elasticsearch 8.1.0 specification.
New parameters
WithWaitForCompletionforIndices.ForcemergeWithFeaturesforIndices.GetWithForceforML.DeleteTrainedModel
New APIs
OidcAuthenticate,OidcLogoutandOidcPrepareAuthenticationsee documentationTransformResetTransform
8.0.0
Client
- The client now uses
elastic-transport-godependency which lives in its own repository. - With the knewly extracted transport, the
retryOnTimeouthas been replaced with aretryOnErrorcallback. This allows to select more finely which error should be retried by the client. BulkIndexerItemBodyfield is now anio.ReadSeekerallowing reread without increasing memory consumption.BulkIndexerItemknow correctly uses theroutingproperty instead of the deprecated_routing.
API
- API is generated from the Elasticsearch 8.0.0 specification.