Skip to content

Commit

Permalink
chore: release 7.10.0
Browse files Browse the repository at this point in the history
Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
algolia-bot and shortcuts committed Dec 9, 2024
1 parent 11ef4f8 commit 44ddfa6
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 10 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## [7.10.0](https://github.com/algolia/algoliasearch-client-csharp/compare/7.9.2...7.10.0)

- [068fdacb5](https://github.com/algolia/api-clients-automation/commit/068fdacb5) feat(specs): add info and link about indexing rate limits ([#4136](https://github.com/algolia/api-clients-automation/pull/4136)) by [@kai687](https://github.com/kai687/)
- [9e0235697](https://github.com/algolia/api-clients-automation/commit/9e0235697) fix(specs): `nb_api_calls` in `getLogs` response is optional ([#4142](https://github.com/algolia/api-clients-automation/pull/4142)) by [@shortcuts](https://github.com/shortcuts/)
- [b728c5f25](https://github.com/algolia/api-clients-automation/commit/b728c5f25) fix(specs): `consequence` is required when saving rules ([#4146](https://github.com/algolia/api-clients-automation/pull/4146)) by [@shortcuts](https://github.com/shortcuts/)
- [afd94fac8](https://github.com/algolia/api-clients-automation/commit/afd94fac8) fix(specs): `saveRule` response type ([#4170](https://github.com/algolia/api-clients-automation/pull/4170)) by [@shortcuts](https://github.com/shortcuts/)
- [2325c61b8](https://github.com/algolia/api-clients-automation/commit/2325c61b8) feat(clients): allow batch size on objects helper ([#4172](https://github.com/algolia/api-clients-automation/pull/4172)) by [@shortcuts](https://github.com/shortcuts/)
- [aae74cb38](https://github.com/algolia/api-clients-automation/commit/aae74cb38) fix(specs): remove SFCC source type ([#4190](https://github.com/algolia/api-clients-automation/pull/4190)) by [@millotp](https://github.com/millotp/)
- [254052857](https://github.com/algolia/api-clients-automation/commit/254052857) fix(specs): add sourceType to listTasks ([#4193](https://github.com/algolia/api-clients-automation/pull/4193)) by [@millotp](https://github.com/millotp/)
- [106d64313](https://github.com/algolia/api-clients-automation/commit/106d64313) feat(generators): allow per-spec timeouts ([#4173](https://github.com/algolia/api-clients-automation/pull/4173)) by [@shortcuts](https://github.com/shortcuts/)
- [9e1e60f9e](https://github.com/algolia/api-clients-automation/commit/9e1e60f9e) chore(deps): dependencies 2024-12-09 ([#4197](https://github.com/algolia/api-clients-automation/pull/4197)) by [@algolia-bot](https://github.com/algolia-bot/)

## [7.9.2](https://github.com/algolia/algoliasearch-client-csharp/compare/7.9.1...7.9.2)

- [f246995a7](https://github.com/algolia/api-clients-automation/commit/f246995a7) chore(deps): dependencies 2024-11-18 ([#4109](https://github.com/algolia/api-clients-automation/pull/4109)) by [@algolia-bot](https://github.com/algolia-bot/)
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Algolia.Search.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<RepositoryUrl>https://github.com/algolia/algoliasearch-client-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
<Version>7.9.2</Version>
<Version>7.10.0</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Clients/AbtestingConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public sealed class AbtestingConfig : AlgoliaConfig
/// <param name="appId">Your application ID</param>
/// <param name="apiKey">Your API Key</param>
/// <param name="region">Targeted region (optional)</param>
public AbtestingConfig(string appId, string apiKey, string region = null) : base(appId, apiKey, "Abtesting", "7.9.2")
public AbtestingConfig(string appId, string apiKey, string region = null) : base(appId, apiKey, "Abtesting", "7.10.0")
{
DefaultHosts = GetDefaultHosts(region);
Compression = CompressionType.None;
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Clients/AnalyticsConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public sealed class AnalyticsConfig : AlgoliaConfig
/// <param name="appId">Your application ID</param>
/// <param name="apiKey">Your API Key</param>
/// <param name="region">Targeted region (optional)</param>
public AnalyticsConfig(string appId, string apiKey, string region = null) : base(appId, apiKey, "Analytics", "7.9.2")
public AnalyticsConfig(string appId, string apiKey, string region = null) : base(appId, apiKey, "Analytics", "7.10.0")
{
DefaultHosts = GetDefaultHosts(region);
Compression = CompressionType.None;
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Clients/IngestionConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public sealed class IngestionConfig : AlgoliaConfig
/// <param name="appId">Your application ID</param>
/// <param name="apiKey">Your API Key</param>
/// <param name="region">Targeted region </param>
public IngestionConfig(string appId, string apiKey, string region) : base(appId, apiKey, "Ingestion", "7.9.2")
public IngestionConfig(string appId, string apiKey, string region) : base(appId, apiKey, "Ingestion", "7.10.0")
{
DefaultHosts = GetDefaultHosts(region);
Compression = CompressionType.None;
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Clients/InsightsConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public sealed class InsightsConfig : AlgoliaConfig
/// <param name="appId">Your application ID</param>
/// <param name="apiKey">Your API Key</param>
/// <param name="region">Targeted region (optional)</param>
public InsightsConfig(string appId, string apiKey, string region = null) : base(appId, apiKey, "Insights", "7.9.2")
public InsightsConfig(string appId, string apiKey, string region = null) : base(appId, apiKey, "Insights", "7.10.0")
{
DefaultHosts = GetDefaultHosts(region);
Compression = CompressionType.None;
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Clients/MonitoringConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public sealed class MonitoringConfig : AlgoliaConfig
/// </summary>
/// <param name="appId">Your application ID</param>
/// <param name="apiKey">Your API Key</param>
public MonitoringConfig(string appId, string apiKey) : base(appId, apiKey, "Monitoring", "7.9.2")
public MonitoringConfig(string appId, string apiKey) : base(appId, apiKey, "Monitoring", "7.10.0")
{
DefaultHosts = GetDefaultHosts();
Compression = CompressionType.None;
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Clients/PersonalizationConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public sealed class PersonalizationConfig : AlgoliaConfig
/// <param name="appId">Your application ID</param>
/// <param name="apiKey">Your API Key</param>
/// <param name="region">Targeted region </param>
public PersonalizationConfig(string appId, string apiKey, string region) : base(appId, apiKey, "Personalization", "7.9.2")
public PersonalizationConfig(string appId, string apiKey, string region) : base(appId, apiKey, "Personalization", "7.10.0")
{
DefaultHosts = GetDefaultHosts(region);
Compression = CompressionType.None;
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Clients/QuerySuggestionsConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public sealed class QuerySuggestionsConfig : AlgoliaConfig
/// <param name="appId">Your application ID</param>
/// <param name="apiKey">Your API Key</param>
/// <param name="region">Targeted region </param>
public QuerySuggestionsConfig(string appId, string apiKey, string region) : base(appId, apiKey, "QuerySuggestions", "7.9.2")
public QuerySuggestionsConfig(string appId, string apiKey, string region) : base(appId, apiKey, "QuerySuggestions", "7.10.0")
{
DefaultHosts = GetDefaultHosts(region);
Compression = CompressionType.None;
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Clients/RecommendConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public sealed class RecommendConfig : AlgoliaConfig
/// </summary>
/// <param name="appId">Your application ID</param>
/// <param name="apiKey">Your API Key</param>
public RecommendConfig(string appId, string apiKey) : base(appId, apiKey, "Recommend", "7.9.2")
public RecommendConfig(string appId, string apiKey) : base(appId, apiKey, "Recommend", "7.10.0")
{
DefaultHosts = GetDefaultHosts(appId);
Compression = CompressionType.None;
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/Clients/SearchConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public sealed class SearchConfig : AlgoliaConfig
/// </summary>
/// <param name="appId">Your application ID</param>
/// <param name="apiKey">Your API Key</param>
public SearchConfig(string appId, string apiKey) : base(appId, apiKey, "Search", "7.9.2")
public SearchConfig(string appId, string apiKey) : base(appId, apiKey, "Search", "7.10.0")
{
DefaultHosts = GetDefaultHosts(appId);
Compression = CompressionType.None;
Expand Down

0 comments on commit 44ddfa6

Please sign in to comment.