Skip to content

Commit

Permalink
chore: release 2024-05-17 [skip ci]
Browse files Browse the repository at this point in the history
Co-authored-by: Thomas Raffray <Fluf22@users.noreply.github.com>
  • Loading branch information
algolia-bot and Fluf22 committed May 17, 2024
1 parent 44473a8 commit 00ca590
Show file tree
Hide file tree
Showing 103 changed files with 236 additions and 236 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<RepositoryType>git</RepositoryType>
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
<Copyright>Copyright 2019 Algolia</Copyright>
<Version>7.0.0-beta.1</Version>
<Version>7.0.0-beta.2</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// Current package version
const packageVersion = '1.9.0';
const packageVersion = '1.10.0';
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: algoliasearch
version: 1.9.0
version: 1.10.0
description: A Dart package for Algolia. Enables seamless integration for instant search, typo tolerance & user insights, and more, in Dart/Flutter apps.
homepage: https://www.algolia.com/doc/
repository: https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/algoliasearch
Expand All @@ -11,9 +11,9 @@ environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
algolia_client_core: ^1.9.0
algolia_client_search: ^1.9.0
algolia_client_insights: ^1.9.0
algolia_client_core: ^1.10.0
algolia_client_search: ^1.10.0
algolia_client_insights: ^1.10.0
json_annotation: ^4.8.1
collection: ^1.17.1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// Current package version
const packageVersion = '1.9.0';
const packageVersion = '1.10.0';
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// Current package version
const packageVersion = '1.9.0';
const packageVersion = '1.10.0';
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: algolia_client_insights
version: 1.9.0
version: 1.10.0
description: A sub-package of the AlgoliaSearch library, offering insights-specific functionalities for enhanced search and discovery in Dart/Flutter apps.
homepage: https://www.algolia.com/doc/
repository: https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/client_insights
Expand All @@ -11,7 +11,7 @@ environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
algolia_client_core: ^1.9.0
algolia_client_core: ^1.10.0
json_annotation: ^4.8.1
collection: ^1.17.1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// Current package version
const packageVersion = '1.9.0';
const packageVersion = '1.10.0';
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: algolia_client_recommend
version: 1.9.0
version: 1.10.0
description: A sub-package of the AlgoliaSearch library, offering recommend-specific functionalities for enhanced search and discovery in Dart/Flutter apps.
homepage: https://www.algolia.com/doc/
repository: https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/client_recommend
Expand All @@ -11,7 +11,7 @@ environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
algolia_client_core: ^1.9.0
algolia_client_core: ^1.10.0
json_annotation: ^4.8.1
collection: ^1.17.1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// Current package version
const packageVersion = '1.9.0';
const packageVersion = '1.10.0';
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: algolia_client_search
version: 1.9.0
version: 1.10.0
description: A sub-package of the AlgoliaSearch library, offering search-specific functionalities for enhanced search and discovery in Dart/Flutter apps.
homepage: https://www.algolia.com/doc/
repository: https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/client_search
Expand All @@ -11,7 +11,7 @@ environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
algolia_client_core: ^1.9.0
algolia_client_core: ^1.10.0
json_annotation: ^4.8.1
collection: ^1.17.1

Expand Down
6 changes: 3 additions & 3 deletions clients/algoliasearch-client-go/algolia/abtesting/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func getDefaultHosts(r Region) []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); Abtesting (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); Abtesting (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down Expand Up @@ -252,14 +252,14 @@ func reportError(format string, a ...any) error {
}

// A wrapper for strict JSON decoding.
func newStrictDecoder(data []byte) *json.Decoder {
func newStrictDecoder(data []byte) *json.Decoder {
dec := json.NewDecoder(bytes.NewBuffer(data))
dec.DisallowUnknownFields()
return dec
}

// A wrapper for validating a struct, returns nil if value is not a struct.
func validateStruct(v any) error {
func validateStruct(v any) error {
err := validator.New().Struct(v)
validationErrors, ok := err.(validator.ValidationErrors)
if ok && len(validationErrors) > 0 {
Expand Down
6 changes: 3 additions & 3 deletions clients/algoliasearch-client-go/algolia/analytics/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func getDefaultHosts(r Region) []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); Analytics (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); Analytics (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down Expand Up @@ -252,14 +252,14 @@ func reportError(format string, a ...any) error {
}

// A wrapper for strict JSON decoding.
func newStrictDecoder(data []byte) *json.Decoder {
func newStrictDecoder(data []byte) *json.Decoder {
dec := json.NewDecoder(bytes.NewBuffer(data))
dec.DisallowUnknownFields()
return dec
}

// A wrapper for validating a struct, returns nil if value is not a struct.
func validateStruct(v any) error {
func validateStruct(v any) error {
err := validator.New().Struct(v)
validationErrors, ok := err.(validator.ValidationErrors)
if ok && len(validationErrors) > 0 {
Expand Down
6 changes: 3 additions & 3 deletions clients/algoliasearch-client-go/algolia/ingestion/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func getDefaultHosts(r Region) []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); Ingestion (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); Ingestion (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down Expand Up @@ -248,14 +248,14 @@ func reportError(format string, a ...any) error {
}

// A wrapper for strict JSON decoding.
func newStrictDecoder(data []byte) *json.Decoder {
func newStrictDecoder(data []byte) *json.Decoder {
dec := json.NewDecoder(bytes.NewBuffer(data))
dec.DisallowUnknownFields()
return dec
}

// A wrapper for validating a struct, returns nil if value is not a struct.
func validateStruct(v any) error {
func validateStruct(v any) error {
err := validator.New().Struct(v)
validationErrors, ok := err.(validator.ValidationErrors)
if ok && len(validationErrors) > 0 {
Expand Down
6 changes: 3 additions & 3 deletions clients/algoliasearch-client-go/algolia/insights/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func getDefaultHosts(r Region) []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); Insights (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); Insights (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down Expand Up @@ -252,14 +252,14 @@ func reportError(format string, a ...any) error {
}

// A wrapper for strict JSON decoding.
func newStrictDecoder(data []byte) *json.Decoder {
func newStrictDecoder(data []byte) *json.Decoder {
dec := json.NewDecoder(bytes.NewBuffer(data))
dec.DisallowUnknownFields()
return dec
}

// A wrapper for validating a struct, returns nil if value is not a struct.
func validateStruct(v any) error {
func validateStruct(v any) error {
err := validator.New().Struct(v)
validationErrors, ok := err.(validator.ValidationErrors)
if ok && len(validationErrors) > 0 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func getDefaultHosts() []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); Monitoring (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); Monitoring (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func getDefaultHosts(r Region) []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); Personalization (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); Personalization (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func getDefaultHosts(r Region) []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); QuerySuggestions (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); QuerySuggestions (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down Expand Up @@ -248,14 +248,14 @@ func reportError(format string, a ...any) error {
}

// A wrapper for strict JSON decoding.
func newStrictDecoder(data []byte) *json.Decoder {
func newStrictDecoder(data []byte) *json.Decoder {
dec := json.NewDecoder(bytes.NewBuffer(data))
dec.DisallowUnknownFields()
return dec
}

// A wrapper for validating a struct, returns nil if value is not a struct.
func validateStruct(v any) error {
func validateStruct(v any) error {
err := validator.New().Struct(v)
validationErrors, ok := err.(validator.ValidationErrors)
if ok && len(validationErrors) > 0 {
Expand Down
6 changes: 3 additions & 3 deletions clients/algoliasearch-client-go/algolia/recommend/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func getDefaultHosts(appID string) []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); Recommend (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); Recommend (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down Expand Up @@ -254,14 +254,14 @@ func reportError(format string, a ...any) error {
}

// A wrapper for strict JSON decoding.
func newStrictDecoder(data []byte) *json.Decoder {
func newStrictDecoder(data []byte) *json.Decoder {
dec := json.NewDecoder(bytes.NewBuffer(data))
dec.DisallowUnknownFields()
return dec
}

// A wrapper for validating a struct, returns nil if value is not a struct.
func validateStruct(v any) error {
func validateStruct(v any) error {
err := validator.New().Struct(v)
validationErrors, ok := err.(validator.ValidationErrors)
if ok && len(validationErrors) > 0 {
Expand Down
2 changes: 1 addition & 1 deletion clients/algoliasearch-client-go/algolia/search/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func getDefaultHosts(appID string) []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); Search (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); Search (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down
6 changes: 3 additions & 3 deletions clients/algoliasearch-client-go/algolia/usage/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func getDefaultHosts(appID string) []transport.StatefulHost {
}

func getUserAgent() string {
return fmt.Sprintf("Algolia for Go (4.0.0-beta.13); Go (%s); Usage (4.0.0-beta.13)", runtime.Version())
return fmt.Sprintf("Algolia for Go (4.0.0-beta.14); Go (%s); Usage (4.0.0-beta.14)", runtime.Version())
}

// queryParameterToString convert any query parameters to string.
Expand Down Expand Up @@ -254,14 +254,14 @@ func reportError(format string, a ...any) error {
}

// A wrapper for strict JSON decoding.
func newStrictDecoder(data []byte) *json.Decoder {
func newStrictDecoder(data []byte) *json.Decoder {
dec := json.NewDecoder(bytes.NewBuffer(data))
dec.DisallowUnknownFields()
return dec
}

// A wrapper for validating a struct, returns nil if value is not a struct.
func validateStruct(v any) error {
func validateStruct(v any) error {
err := validator.New().Struct(v)
validationErrors, ok := err.(validator.ValidationErrors)
if ok && len(validationErrors) > 0 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ private BuildConfig() {
// Empty.
}

public static final String VERSION = "4.0.0-beta.31";
public static final String VERSION = "4.0.0-beta.32";
}
2 changes: 1 addition & 1 deletion clients/algoliasearch-client-java/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.algolia
VERSION_NAME=4.0.0-beta.31
VERSION_NAME=4.0.0-beta.32

SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import type {
import type { SearchMethodParams } from '../model/searchMethodParams';
import type { SearchResponses } from '../model/searchResponses';

export const apiClientVersion = '5.0.0-beta.1';
export const apiClientVersion = '5.0.0-beta.2';

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import type {
} from '../model/clientMethodProps';
import type { ListABTestsResponse } from '../model/listABTestsResponse';

export const apiClientVersion = '5.0.0-beta.1';
export const apiClientVersion = '5.0.0-beta.2';

export const REGIONS = ['de', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ import type { GetTopHitsResponse } from '../model/getTopHitsResponse';
import type { GetTopSearchesResponse } from '../model/getTopSearchesResponse';
import type { GetUsersCountResponse } from '../model/getUsersCountResponse';

export const apiClientVersion = '5.0.0-beta.1';
export const apiClientVersion = '5.0.0-beta.2';

export const REGIONS = ['de', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import type {
import type { EventsResponse } from '../model/eventsResponse';
import type { InsightsEvents } from '../model/insightsEvents';

export const apiClientVersion = '5.0.0-beta.1';
export const apiClientVersion = '5.0.0-beta.2';

export const REGIONS = ['de', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import type { GetUserTokenResponse } from '../model/getUserTokenResponse';
import type { PersonalizationStrategyParams } from '../model/personalizationStrategyParams';
import type { SetPersonalizationStrategyResponse } from '../model/setPersonalizationStrategyResponse';

export const apiClientVersion = '5.0.0-beta.1';
export const apiClientVersion = '5.0.0-beta.2';

export const REGIONS = ['eu', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import type { GetLogFile200Response } from '../model/getLogFile200Response';
import type { QuerySuggestionsConfigurationResponse } from '../model/querySuggestionsConfigurationResponse';
import type { QuerySuggestionsConfigurationWithIndex } from '../model/querySuggestionsConfigurationWithIndex';

export const apiClientVersion = '5.0.0-beta.1';
export const apiClientVersion = '5.0.0-beta.2';

export const REGIONS = ['eu', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ import type { UpdatedAtWithObjectIdResponse } from '../model/updatedAtWithObject
import type { UpdatedRuleResponse } from '../model/updatedRuleResponse';
import type { UserId } from '../model/userId';

export const apiClientVersion = '5.0.0-beta.1';
export const apiClientVersion = '5.0.0-beta.2';

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import type {
} from '../model/clientMethodProps';
import type { GetUsage200Response } from '../model/getUsage200Response';

export const apiClientVersion = '0.0.2-beta.1';
export const apiClientVersion = '0.0.2-beta.2';

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
Loading

0 comments on commit 00ca590

Please sign in to comment.