Skip to content

Commit 4acbee1

Browse files
chore: release 7.18.0
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 7936fb1 commit 4acbee1

12 files changed

+23
-11
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## [7.18.0](https://github.com/algolia/algoliasearch-client-csharp/compare/7.17.0...7.18.0)
2+
3+
- [9db03b532b](https://github.com/algolia/api-clients-automation/commit/9db03b532b) fix(specs): typo ([#4854](https://github.com/algolia/api-clients-automation/pull/4854)) by [@kai687](https://github.com/kai687/)
4+
- [db02a51d50](https://github.com/algolia/api-clients-automation/commit/db02a51d50) chore(deps): dependencies 2025-05-19 ([#4853](https://github.com/algolia/api-clients-automation/pull/4853)) by [@algolia-bot](https://github.com/algolia-bot/)
5+
- [969cae23ab](https://github.com/algolia/api-clients-automation/commit/969cae23ab) fix(specs): change fileSize to int64 type ([#4877](https://github.com/algolia/api-clients-automation/pull/4877)) by [@millotp](https://github.com/millotp/)
6+
- [90b49b1e1b](https://github.com/algolia/api-clients-automation/commit/90b49b1e1b) feat(specs): add global push endpoint ([#4855](https://github.com/algolia/api-clients-automation/pull/4855)) by [@shortcuts](https://github.com/shortcuts/)
7+
- [cf416e6b91](https://github.com/algolia/api-clients-automation/commit/cf416e6b91) fix(specs): updated watchResponse ([#4879](https://github.com/algolia/api-clients-automation/pull/4879)) by [@shortcuts](https://github.com/shortcuts/)
8+
- [e46e762c0c](https://github.com/algolia/api-clients-automation/commit/e46e762c0c) chore(deps): dependencies 2025-05-26 ([#4880](https://github.com/algolia/api-clients-automation/pull/4880)) by [@algolia-bot](https://github.com/algolia-bot/)
9+
- [06ad06e4a8](https://github.com/algolia/api-clients-automation/commit/06ad06e4a8) feat(specs): update transformation specs for no-code ([#4901](https://github.com/algolia/api-clients-automation/pull/4901)) by [@mehmetaligok](https://github.com/mehmetaligok/)
10+
- [4ec0e13e28](https://github.com/algolia/api-clients-automation/commit/4ec0e13e28) fix(specs): more indexing actions to push ([#4930](https://github.com/algolia/api-clients-automation/pull/4930)) by [@shortcuts](https://github.com/shortcuts/)
11+
- [1951e4d127](https://github.com/algolia/api-clients-automation/commit/1951e4d127) fix(specs): wrong ACL for getSettings ([#4933](https://github.com/algolia/api-clients-automation/pull/4933)) by [@kai687](https://github.com/kai687/)
12+
113
## [7.17.0](https://github.com/algolia/algoliasearch-client-csharp/compare/7.16.5...7.17.0)
214

315
- [bebb56e0b9](https://github.com/algolia/api-clients-automation/commit/bebb56e0b9) fix(specs): add x-acl to insights endpoints ([#4822](https://github.com/algolia/api-clients-automation/pull/4822)) by [@kai687](https://github.com/kai687/)

algoliasearch/Algolia.Search.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<RepositoryUrl>https://github.com/algolia/algoliasearch-client-csharp</RepositoryUrl>
2020
<RepositoryType>git</RepositoryType>
2121
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
22-
<Version>7.17.0</Version>
22+
<Version>7.18.0</Version>
2323
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2424
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
2525
<IncludeSymbols>true</IncludeSymbols>

algoliasearch/Clients/AbtestingConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class AbtestingConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region (optional)</param>
3030
public AbtestingConfig(string appId, string apiKey, string region = null)
31-
: base(appId, apiKey, "Abtesting", "7.17.0")
31+
: base(appId, apiKey, "Abtesting", "7.18.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

algoliasearch/Clients/AnalyticsConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class AnalyticsConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region (optional)</param>
3030
public AnalyticsConfig(string appId, string apiKey, string region = null)
31-
: base(appId, apiKey, "Analytics", "7.17.0")
31+
: base(appId, apiKey, "Analytics", "7.18.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

algoliasearch/Clients/CompositionConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public sealed class CompositionConfig : AlgoliaConfig
2727
/// <param name="appId">Your application ID</param>
2828
/// <param name="apiKey">Your API Key</param>
2929
public CompositionConfig(string appId, string apiKey)
30-
: base(appId, apiKey, "Composition", "7.17.0")
30+
: base(appId, apiKey, "Composition", "7.18.0")
3131
{
3232
DefaultHosts = GetDefaultHosts(appId);
3333
Compression = CompressionType.None;

algoliasearch/Clients/IngestionConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class IngestionConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region </param>
3030
public IngestionConfig(string appId, string apiKey, string region)
31-
: base(appId, apiKey, "Ingestion", "7.17.0")
31+
: base(appId, apiKey, "Ingestion", "7.18.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

algoliasearch/Clients/InsightsConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class InsightsConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region (optional)</param>
3030
public InsightsConfig(string appId, string apiKey, string region = null)
31-
: base(appId, apiKey, "Insights", "7.17.0")
31+
: base(appId, apiKey, "Insights", "7.18.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

algoliasearch/Clients/MonitoringConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public sealed class MonitoringConfig : AlgoliaConfig
2727
/// <param name="appId">Your application ID</param>
2828
/// <param name="apiKey">Your API Key</param>
2929
public MonitoringConfig(string appId, string apiKey)
30-
: base(appId, apiKey, "Monitoring", "7.17.0")
30+
: base(appId, apiKey, "Monitoring", "7.18.0")
3131
{
3232
DefaultHosts = GetDefaultHosts();
3333
Compression = CompressionType.None;

algoliasearch/Clients/PersonalizationConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class PersonalizationConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region </param>
3030
public PersonalizationConfig(string appId, string apiKey, string region)
31-
: base(appId, apiKey, "Personalization", "7.17.0")
31+
: base(appId, apiKey, "Personalization", "7.18.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

algoliasearch/Clients/QuerySuggestionsConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class QuerySuggestionsConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region </param>
3030
public QuerySuggestionsConfig(string appId, string apiKey, string region)
31-
: base(appId, apiKey, "QuerySuggestions", "7.17.0")
31+
: base(appId, apiKey, "QuerySuggestions", "7.18.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

0 commit comments

Comments
 (0)