-
Notifications
You must be signed in to change notification settings - Fork 27
Updated version 7.0.0 to 7.0.1 #126
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
Conversation
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.
Hello @mar-js, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
Summary of Changes
This pull request updates the package version of the Conekta Ruby SDK from 7.0.0 to 7.0.1. The changes include updates to the README.md, VERSION, and config-ruby.json files to reflect the new version number. Additionally, the CheckoutOrderTemplate, CheckoutRequest, and CheckoutResponse models have been updated to include a plan_ids attribute, which is a list of plan IDs that will be associated with the order or available for subscription.
Highlights
- Version Update: The core change is an update to the gem's version from 7.0.0 to 7.0.1 across multiple files.
- New
plan_idsAttribute: TheCheckoutOrderTemplate,CheckoutRequest, andCheckoutResponsemodels now include aplan_idsattribute, allowing association of plan IDs with orders and subscriptions. - Documentation Updates: The documentation for
CheckoutOrderTemplate,CheckoutRequest, andCheckoutResponsehas been updated to reflect the addition of theplan_idsattribute.
Changelog
Click here to see the changelog
- README.md
- Updated package version from 7.0.0 to 7.0.1.
- Updated build date.
- VERSION
- Updated version number from 7.0.0 to 7.0.1.
- config-ruby.json
- Updated gemVersion from 7.0.0 to 7.0.1.
- docs/CheckoutOrderTemplate.md
- Added documentation for the
plan_idsattribute. - Added an example of using the
plan_idsattribute.
- Added documentation for the
- docs/CheckoutRequest.md
- Added documentation for the
plan_idsattribute, including its requirement for subscription payments. - Added an example of using the
plan_idsattribute.
- Added documentation for the
- docs/CheckoutResponse.md
- Added documentation for the
plan_idsattribute. - Added an example of the
plan_idsattribute in the response.
- Added documentation for the
- lib/conekta/models/checkout_order_template.rb
- Added
plan_idsattribute with description. - Updated attribute map to include
plan_ids. - Updated openapi_types to include
plan_idsas an array of strings. - Updated initialize method to handle
plan_idsattribute. - Updated == method to include
plan_idscomparison. - Updated hash method to include
plan_ids.
- Added
- lib/conekta/models/checkout_request.rb
- Added
plan_idsattribute with description and validation for subscriptions. - Updated attribute map to include
plan_ids. - Updated openapi_types to include
plan_idsas an array of strings. - Added EnumAttributeValidator class
- Updated initialize method to handle
plan_idsattribute. - Updated == method to include
plan_idscomparison. - Updated hash method to include
plan_ids.
- Added
- lib/conekta/models/checkout_response.rb
- Added
plan_idsattribute with description. - Updated attribute map to include
plan_ids. - Updated openapi_types to include
plan_idsas an array of strings. - Updated initialize method to handle
plan_idsattribute. - Updated == method to include
plan_idscomparison. - Updated hash method to include
plan_ids.
- Added
- lib/conekta/version.rb
- Updated VERSION constant from '7.0.0' to '7.0.1'.
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.
| Feature | Command | Description |
|---|---|---|
| Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
| Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
| Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
| Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
A version bump so slight,
Yet 'plan_ids' bring new light,
Subscriptions flow,
Where plans now show,
Conekta's future, shining bright.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
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.
Code Review
The pull request updates the gem version from 7.0.0 to 7.0.1. The changes include updating the version in the README, config-ruby.json, and lib/conekta/version.rb files. Additionally, the pull request adds plan_ids to the CheckoutOrderTemplate, CheckoutRequest, and CheckoutResponse models and documentation. Overall, the changes seem straightforward and necessary for releasing a new version of the gem.
Merge Readiness
The pull request updates the gem version and adds plan_ids to several models. The changes seem necessary for releasing a new version of the gem. I am unable to approve the pull request, and users should have others review and approve this code before merging. There are no critical or high severity issues, so the pull request seems ready to be merged.
…t.md to clarify its use in different payment types
Updated version