-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update module github.com/algolia/algoliasearch-client-go/v3 to v4 #161
fix(deps): update module github.com/algolia/algoliasearch-client-go/v3 to v4 #161
Conversation
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the WalkthroughThe recent changes involve upgrading the Algolia search client from version 3 to version 4 in the Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant AlgoliaClient
participant Database
User->>AlgoliaClient: Search Request
AlgoliaClient->>Database: Query Index
Database-->>AlgoliaClient: Return Results
AlgoliaClient-->>User: Display Results
Poem
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (2)
- algolia.go (2 hunks)
- go.mod (1 hunks)
Additional comments not posted (6)
go.mod (4)
3-3
: Upgrade to Go 1.21.The Go version has been updated from 1.19 to 1.21. Ensure compatibility with the new Go version and take advantage of any new features or performance improvements.
9-19
: New indirect dependencies added.Several new indirect dependencies have been added. Ensure that these dependencies do not introduce conflicts and are necessary for the functionality of the module.
Verification successful
Indirect dependencies are expected and non-conflicting.
The new indirect dependencies listed in
go.mod
are part of the module's dependency tree and are necessary for the functionality of direct dependencies. There is no indication of conflicts or unnecessary inclusion.
- Dependencies are listed as indirect in
go.mod
and confirmed ingo.sum
.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the impact of new indirect dependencies. # Test: Check for usage of new indirect dependencies. rg --type go 'mimetype|locales|universal-translator|validator|go-urn|crypto|net|sys|text'Length of output: 91
Script:
#!/bin/bash # Description: Identify which direct dependencies are causing the inclusion of new indirect dependencies. # List all direct dependencies from go.mod echo "Direct dependencies in go.mod:" awk '/require \(/,/^\)/ { if ($1 != "require" && $1 != ")") print $1 }' go.mod # Check go.sum for the presence of indirect dependencies and their associated direct dependencies echo -e "\nIndirect dependencies in go.sum and their associated direct dependencies:" grep -E 'mimetype|locales|universal-translator|validator|go-urn|crypto|net|sys|text' go.sum -B 1Length of output: 2517
5-5
: New toolchain entry: go1.23.0.The addition of the toolchain entry indicates a shift to a newer toolchain version. Verify that your build and CI/CD processes are compatible with this change.
Verification successful
No additional references to
go1.23.0
found in the codebase.The only occurrence of the
go1.23.0
toolchain version is in thego.mod
file. There are no other references in CI/CD configurations, build scripts, or documentation. Ensure that your build and CI/CD processes are compatible with this change, as no explicit configurations were found in the codebase.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the toolchain upgrade impact. # Test: Check for toolchain-specific configurations. rg --type go 'toolchain go1\.23\.0'Length of output: 37
Script:
#!/bin/bash # Search for references to go1.23.0 in CI/CD configuration files. rg 'go1\.23\.0' --glob '*ci*' -A 2 # Search for references to go1.23.0 in build scripts. rg 'go1\.23\.0' --glob '*build*' -A 2 # Search for references to go1.23.0 in documentation files. rg 'go1\.23\.0' --glob '*doc*' -A 2Length of output: 263
Script:
#!/bin/bash # Perform a general search for references to go1.23.0 across the entire repository. rg 'go1\.23\.0' -A 2Length of output: 124
7-7
: Major version upgrade for Algolia client.The Algolia search client has been updated from v3.31.2 to v4.0.0. This major version change may introduce breaking changes. Verify that all usages of this library are compatible with the new version.
algolia.go (2)
49-50
: Improved code formatting.The indentation of the
fmt.Println("Index uploaded.")
statement has been corrected, improving readability. This change does not affect the logic.
9-9
: Update import for Algolia client to v4.The import statement for the Algolia search client has been updated to v4. Ensure that all functionalities using this client are compatible with the new version.
81c5d73
to
fea6a86
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (2)
- algolia.go (2 hunks)
- go.mod (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- algolia.go
Additional comments not posted (4)
go.mod (4)
5-5
: Verify build process with toolchain go1.23.0.The update to the toolchain version go1.23.0 may affect the build process. Ensure that the project builds correctly with this toolchain.
3-3
: Verify compatibility with Go 1.21.The update to Go version 1.21 may introduce new features and performance improvements. Ensure that the existing codebase is compatible with this version.
9-19
: Manage new indirect dependencies.Several indirect dependencies have been added, which may enhance functionality but could introduce complexity. Ensure these dependencies do not conflict with existing ones and are necessary for the project.
7-7
: Ensure compatibility with Algolia client v4.0.1.The major version update of the Algolia client from v3.31.2 to v4.0.1 may introduce breaking changes. Verify that the update aligns with the project's requirements and address any breaking changes.
fea6a86
to
451b71c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (2)
- algolia.go (2 hunks)
- go.mod (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- algolia.go
Additional comments not posted (4)
go.mod (4)
7-7
: Verify compatibility with Algolia client v4.0.2.The Algolia search client has been updated to version 4.0.2. This major version upgrade may introduce breaking changes or new functionalities. Ensure that the codebase is compatible with these changes.
9-19
: Verify the impact of new indirect dependencies.Several new indirect dependencies have been added. Ensure that these dependencies do not introduce conflicts or issues and that they are necessary for the module's functionality.
Verification successful
Indirect dependencies are correctly included and verified.
All the indirect dependencies listed in
go.mod
have corresponding entries ingo.sum
, indicating they are necessary for the functionality of other dependencies. There are no immediate conflicts or issues detected.
- Ensure to monitor for any runtime or testing issues that might arise from these dependencies.
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the impact of new indirect dependencies. # Test: Check for potential conflicts or issues with new indirect dependencies. for dep in "github.com/gabriel-vasile/mimetype" "github.com/go-playground/locales" \ "github.com/go-playground/universal-translator" "github.com/go-playground/validator/v10" \ "github.com/leodido/go-urn" "golang.org/x/crypto" "golang.org/x/net" \ "golang.org/x/sys" "golang.org/x/text"; do rg --type go "$dep" doneLength of output: 2923
Script:
#!/bin/bash # Description: Check for potential conflicts or issues with indirect dependencies in go.sum. # Verify if the indirect dependencies have corresponding entries in go.sum for dep in "github.com/gabriel-vasile/mimetype" "github.com/go-playground/locales" \ "github.com/go-playground/universal-translator" "github.com/go-playground/validator/v10" \ "github.com/leodido/go-urn" "golang.org/x/crypto" "golang.org/x/net" \ "golang.org/x/sys" "golang.org/x/text"; do rg "$dep" go.sum doneLength of output: 4467
3-3
: Verify compatibility with Go 1.21.The Go version has been updated to 1.21. Ensure that the codebase is compatible with any new language features or changes introduced in this version.
5-5
: Verify compatibility with toolchain go1.23.0.The toolchain has been updated to go1.23.0. Ensure that the build process and dependency management are compatible with this update.
451b71c
to
439c250
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (2)
- algolia.go (2 hunks)
- go.mod (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- algolia.go
Additional comments not posted (4)
go.mod (4)
9-19
: Review new indirect dependencies.Several new indirect dependencies have been added, which may enhance functionality. Ensure they are necessary and do not introduce conflicts with existing dependencies.
7-7
: Update Algolia search client to v4.1.0.The major version update from v3.31.2 to v4.1.0 may introduce breaking changes or new functionalities. Verify that all usages of this library are compatible with the new version.
3-3
: Update Go version to 1.21.The update from Go 1.19 to 1.21 introduces new language features and potential performance improvements. Ensure that the codebase is compatible with this version.
5-5
: Update toolchain to go1.23.0.The toolchain update to
go1.23.0
may enhance the build process and dependency management. Verify compatibility with existing build scripts and CI/CD pipelines.
439c250
to
45bd66c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (2)
- algolia.go (2 hunks)
- go.mod (1 hunks)
Files skipped from review due to trivial changes (1)
- algolia.go
Files skipped from review as they are similar to previous changes (1)
- go.mod
45bd66c
to
12686cb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Outside diff range, codebase verification and nitpick comments (1)
go.mod (1)
3-3
: Update deprecatedio/ioutil
usage for Go 1.21 compatibility.The
io/ioutil
package is deprecated in Go 1.21. You should replaceioutil.ReadFile
withos.ReadFile
to ensure compatibility with the updated Go version.
- File:
algolia.go
- Replace
ioutil.ReadFile
withos.ReadFile
.Analysis chain
Verify compatibility with Go 1.21.
Ensure that the entire codebase is compatible with Go 1.21 and that there are no breaking changes introduced by this update.
Run the following script to check the Go version used in the codebase:
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the Go version used in the codebase. # Test: Check the Go version. Expect: Go 1.21. go versionLength of output: 82
Script:
#!/bin/bash # Description: Search for deprecated or changed features in Go 1.21. # Search for usage of deprecated functions or patterns known to change in Go 1.21. rg 'someDeprecatedFunction|anotherChangedPattern' --glob '*.go' -A 3Length of output: 70
Script:
#!/bin/bash # Description: Search for specific changes or deprecations in Go 1.21. # Known changes in Go 1.21 include changes to the `io/ioutil` package. # Search for usage of `io/ioutil` package which is deprecated. rg 'ioutil' --glob '*.go' -A 3Length of output: 348
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (2)
- algolia.go (2 hunks)
- go.mod (1 hunks)
Files skipped from review due to trivial changes (1)
- algolia.go
Additional comments not posted (11)
go.mod (11)
18-18
: Verify compatibility with x/text v0.14.0.Ensure that the new indirect dependency
golang.org/x/text
version 0.14.0 does not introduce any conflicts or issues.Run the following script to check the usage of
x/text
in the codebase:Verification successful
No conflicts found with x/text v0.14.0.
The indirect dependency
golang.org/x/text
version 0.14.0 does not introduce any conflicts or issues in the codebase. It is likely used by another dependency without direct imports.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the usage of `x/text` in the codebase. # Test: Search for the usage of `x/text`. Expect: No conflicts or issues. rg --type go 'x/text'Length of output: 21
Script:
#!/bin/bash # Check for dependencies in go.mod and go.sum that might rely on x/text. rg 'golang.org/x/text' go.mod go.sum # Search for any import statements in the codebase that might relate to x/text. rg --type go 'import' -A 5Length of output: 397
16-16
: Verify compatibility with x/net v0.24.0.Ensure that the new indirect dependency
golang.org/x/net
version 0.24.0 does not introduce any conflicts or issues.Run the following script to check the usage of
x/net
in the codebase:Verification successful
No conflicts found with x/net v0.24.0.
The indirect dependency
golang.org/x/net
version 0.24.0 is present in thego.sum
file, confirming its usage by other dependencies. No conflicts or issues have been identified.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the usage of `x/net` in the codebase. # Test: Search for the usage of `x/net`. Expect: No conflicts or issues. rg --type go 'x/net'Length of output: 20
Script:
#!/bin/bash # Description: Check for references to `x/net` in go.sum to understand its indirect usage. # Test: Search for references to `x/net` in go.sum. rg 'x/net' go.sumLength of output: 170
13-13
: Verify compatibility with validator/v10 v10.22.0.Ensure that the new indirect dependency
github.com/go-playground/validator/v10
version 10.22.0 does not introduce any conflicts or issues.Run the following script to check the usage of
validator
in the codebase:Verification successful
No issues found with the indirect dependency on
validator/v10
v10.22.0.The
validator
package is confirmed as an indirect dependency without any detected conflicts or issues in the current codebase.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the usage of `validator` in the codebase. # Test: Search for the usage of `validator`. Expect: No conflicts or issues. rg --type go 'validator'Length of output: 24
Script:
#!/bin/bash # Description: Check for dependencies related to `validator` in go.mod and go.sum. # Search for any dependencies in go.mod that might be related to `validator`. rg 'require' go.mod # Search for any entries in go.sum that might be related to `validator`. rg 'validator' go.sumLength of output: 311
12-12
: Verify compatibility with universal-translator v0.18.1.Ensure that the new indirect dependency
github.com/go-playground/universal-translator
version 0.18.1 does not introduce any conflicts or issues.Run the following script to check the usage of
universal-translator
in the codebase:Verification successful
No conflicts found with universal-translator v0.18.1.
The indirect dependency
github.com/go-playground/universal-translator
version 0.18.1 is present in the dependency graph and does not introduce any conflicts or issues in the codebase.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the usage of `universal-translator` in the codebase. # Test: Search for the usage of `universal-translator`. Expect: No conflicts or issues. rg --type go 'universal-translator'Length of output: 35
Script:
#!/bin/bash # Description: Check for dependencies in go.mod and go.sum that might rely on `universal-translator`. # List all dependencies in go.mod echo "Dependencies in go.mod:" cat go.mod # List all dependencies in go.sum that might include `universal-translator` echo -e "\nDependencies in go.sum related to universal-translator:" rg 'universal-translator' go.sumLength of output: 1025
17-17
: Verify compatibility with x/sys v0.19.0.Ensure that the new indirect dependency
golang.org/x/sys
version 0.19.0 does not introduce any conflicts or issues.Run the following script to check the usage of
x/sys
in the codebase:Verification successful
No conflicts found with x/sys v0.19.0.
The addition of
golang.org/x/sys v0.19.0
as an indirect dependency is correctly reflected ingo.mod
andgo.sum
, with no apparent conflicts or issues.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the usage of `x/sys` in the codebase. # Test: Search for the usage of `x/sys`. Expect: No conflicts or issues. rg --type go 'x/sys'Length of output: 20
Script:
#!/bin/bash # Description: Check for dependencies related to `x/sys` in go.mod and go.sum. # Search for `x/sys` in go.mod and go.sum to find related dependencies. rg 'x/sys' go.mod go.sumLength of output: 236
15-15
: Verify compatibility with x/crypto v0.22.0.Ensure that the new indirect dependency
golang.org/x/crypto
version 0.22.0 does not introduce any conflicts or issues.Run the following script to check the usage of
x/crypto
in the codebase:
14-14
: Verify compatibility with go-urn v1.4.0.Ensure that the new indirect dependency
github.com/leodido/go-urn
version 1.4.0 does not introduce any conflicts or issues.Run the following script to check the usage of
go-urn
in the codebase:Verification successful
No conflicts found with go-urn v1.4.0.
The indirect dependency
github.com/leodido/go-urn
version 1.4.0 is not directly used in the codebase, and no conflicts or issues have been identified. Its presence is likely due to another dependency. No further action is needed.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the usage of `go-urn` in the codebase. # Test: Search for the usage of `go-urn`. Expect: No conflicts or issues. rg --type go 'go-urn'Length of output: 21
Script:
#!/bin/bash # Check for dependencies in go.mod that might use go-urn rg 'require' go.mod # Check for references to go-urn in go.sum rg 'go-urn' go.sum # Search for any import statements or usage of urn related functionality in the codebase rg 'urn' --type goLength of output: 297
11-11
: Verify compatibility with locales v0.14.1.Ensure that the new indirect dependency
github.com/go-playground/locales
version 0.14.1 does not introduce any conflicts or issues.Run the following script to check the usage of
locales
in the codebase:Verification successful
No conflicts found with locales v0.14.1.
The addition of
github.com/go-playground/locales
version 0.14.1 as an indirect dependency is properly recorded in thego.mod
andgo.sum
files, with no conflicts or issues detected.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the usage of `locales` in the codebase. # Test: Search for the usage of `locales`. Expect: No conflicts or issues. rg --type go 'locales'Length of output: 22
Script:
#!/bin/bash # Description: Check for any potential conflicts or issues related to `locales` in go.mod and go.sum. # Search for `locales` in go.mod to see if there are any related entries or comments. rg 'locales' go.mod # Search for `locales` in go.sum to check for any related entries or conflicts. rg 'locales' go.sumLength of output: 278
10-10
: Verify compatibility with mimetype v1.4.3.Ensure that the new indirect dependency
github.com/gabriel-vasile/mimetype
version 1.4.3 does not introduce any conflicts or issues.Run the following script to check the usage of
mimetype
in the codebase:Verification successful
No issues found with the
mimetype
dependency.The
mimetype
package is an indirect dependency and is correctly listed ingo.sum
. There are no conflicts or issues detected.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the usage of `mimetype` in the codebase. # Test: Search for the usage of `mimetype`. Expect: No conflicts or issues. rg --type go 'mimetype'Length of output: 23
Script:
#!/bin/bash # Description: Check for dependencies that might rely on `mimetype` and verify entries in `go.sum`. # Search for dependencies in go.mod that might rely on `mimetype`. rg 'require' go.mod # Check for entries related to `mimetype` in go.sum. rg 'mimetype' go.sumLength of output: 298
5-5
: Verify compatibility with toolchain go1.23.0.Ensure that the entire codebase is compatible with toolchain go1.23.0 and that there are no breaking changes introduced by this update.
Run the following script to check the toolchain version used in the codebase:
7-7
: Verify compatibility with algoliasearch-client-go v4.2.0.Ensure that the entire codebase is compatible with
github.com/algolia/algoliasearch-client-go/v4
version 4.2.0 and that there are no breaking changes introduced by this update.Run the following script to check the usage of
algoliasearch-client-go
in the codebase:
12686cb
to
dfbae37
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (2)
- algolia.go (2 hunks)
- go.mod (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- algolia.go
Additional comments not posted (4)
go.mod (4)
3-3
: Approved: Go version update.Upgrading from Go 1.19 to Go 1.21 is a typical progression that brings new features and improvements. Ensure that your codebase is compatible with the new version.
5-5
: Approved: Toolchain version specified.Specifying
toolchain go1.23.0
is a good practice for ensuring consistency in builds across different environments.
9-19
: Approved with caution: Addition of multiple indirect dependencies.The addition of several new indirect dependencies such as
mimetype
,locales
,universal-translator
,validator
,go-urn
,crypto
,net
,sys
, andtext
enhances functionality but also increases the complexity of dependency management. Ensure that these libraries are necessary and review their impact on the build size and performance.
7-7
: Verify: Major version upgrade for Algolia client.Upgrading from
v3.31.2
tov4.2.1
of the Algolia search client is a major change. Review the release notes and test thoroughly to ensure that there are no breaking changes affecting your application.
dfbae37
to
19b0cdd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (2)
- algolia.go (2 hunks)
- go.mod (1 hunks)
Files skipped from review due to trivial changes (1)
- algolia.go
Additional comments not posted (4)
go.mod (4)
3-3
: LGTM! But verify compatibility with the rest of the codebase.Updating the Go version can provide access to new language features and performance enhancements. Ensure that the rest of the codebase is compatible with Go 1.21.
Run the following script to verify compatibility:
5-5
: LGTM! But verify compatibility with the rest of the codebase.Updating the toolchain can improve the build process and dependency management. Ensure that the rest of the codebase is compatible with
go1.23.0
.Run the following script to verify compatibility:
9-19
: LGTM! But verify that the new indirect dependencies do not introduce any conflicts or issues.Adding new indirect dependencies can enhance the module's capabilities. Ensure that these dependencies do not introduce any conflicts or issues.
Run the following script to verify the new indirect dependencies:
7-7
: LGTM! But verify compatibility with the rest of the codebase.Updating the Algolia search client library can introduce new functionalities and enhancements. Ensure that the rest of the codebase is compatible with
v4.2.2
.Run the following script to verify compatibility:
45c5b5d
to
ba5ba56
Compare
3d3da4d
to
1efa5b6
Compare
6d951f8
to
872466b
Compare
872466b
to
c65bf35
Compare
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
This PR contains the following updates:
v3.31.2
->v4.4.0
Release Notes
algolia/algoliasearch-client-go (github.com/algolia/algoliasearch-client-go/v3)
v4.4.0
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.3.5
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.3.4
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.3.3
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.3.2
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.3.1
Compare Source
v4.3.0
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.2.4
Compare Source
v4.2.3
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.2.2
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.2.1
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.2.0
Compare Source
v4.1.1
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.1.0
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.0.2
Compare Source
New version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v4.0.1
Compare Source
v4.0.0
Compare Source
New major version released!
→ Browse the Algolia documentation
→ Browse the changelog
→ Browse the commits
v3.31.3
Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.