-
Notifications
You must be signed in to change notification settings - Fork 282
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
Release/v1.33.0 #1466
Merged
Merged
Release/v1.33.0 #1466
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…gofrcli merge changes to docs
…gofrcli merging docs
…gofrcli merging docs
add gofrcli docs
minor correction in documentation's tone
Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.218.0 to 0.219.0. - [Release notes](https://github.com/googleapis/google-api-go-client/releases) - [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md) - [Commits](googleapis/google-api-go-client@v0.218.0...v0.219.0) --- updated-dependencies: - dependency-name: google.golang.org/api dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
vipul-rawat
approved these changes
Feb 6, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Release v1.33.0
Features
1. ArangoDB Support as a Datasource
Users can now integrate ArangoDB as a datasource within their GoFr applications. Supported Methods include :
Refer to our official documentation to know more.
2. Default HealthCheck Support for gRPC Servers and Clients
This release introduces built-in HealthCheck support for both gRPC servers and clients.
Prerequisites:
To use the new health check features, ensure that gofr-cli v0.5.0 is installed. Use it to generate your gRPC client and server templates.
gRPC Servers
After running the existing command:
A new file named
health_gofr.go
will be generated. This file contains the health functionality for your gRPC server. The health methods are embedded within the GoFr gRPC server struct, which looks like this:Supported HealthCheck Methods:
To integrate these health features, register your gRPC server in
main.go
as follows:For gRPC Clients
HealthCheck calls are now supported on all gRPC clients generated through the gofr-cli command i.e :
Supported HealthCheck methods include :
For a deeper understanding, check out our official documentation and refer to our example repo.
Fix
Resolved an issue with the
AddRESTHandlers
support where PUT requests were not updating records in the database when we haveautoincrement
tag added in our entity struct. The issue has now been fixed.