-
Notifications
You must be signed in to change notification settings - Fork 12
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
feat: sync latest framework changes #20
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.
Great PR π
routes/web.go
Outdated
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.
If move this, please update README.
tests/middlewares/main_test.go
Outdated
func route(path string) string { | ||
return fmt.Sprintf("http://%s:%s/%s", | ||
facades.Config().GetString("APP_HOST"), | ||
facades.Config().GetString("APP_PORT"), | ||
str.Of(path).LTrim("/").String()) | ||
} |
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.
We can move this to a helper method.
Important Review skippedAuto reviews are limited to specific labels. Labels to auto review (1)
Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 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 (
|
* feat: add the example of transform carbon (#21) * feat: add the example of transform carbon * optimize unit test * optimize unit test * Switch sqlite * fix: unit tests (#23) * fix: unit tests * remove postgres * remove db * feat: add CRUD example (#24) * feat: add curl example * add resource route * update comments * feat: sync latest framework changes (#20) * feat: sync latest framework changes * feat: add rate limiter example * fix: lint * fix: lint * fix: lint * fix: lint * feat: add throttle test * feat: optimize throttle test * feat: bump postgres version to 16 * feat: modify port * fix: test * fix: test * optimize test * optimize test * optimize test * optimize test --------- Co-authored-by: Bowen <[email protected]> * upgrade v1.14.5 * optimize test cases * demo: auth (#27) * demo: auth * rename * rename * upgrade: v1.14.7 (#29) --------- Co-authored-by: θε <[email protected]>
* chore: merge master into v1.14.x (#31) * feat: add the example of transform carbon (#21) * feat: add the example of transform carbon * optimize unit test * optimize unit test * Switch sqlite * fix: unit tests (#23) * fix: unit tests * remove postgres * remove db * feat: add CRUD example (#24) * feat: add curl example * add resource route * update comments * feat: sync latest framework changes (#20) * feat: sync latest framework changes * feat: add rate limiter example * fix: lint * fix: lint * fix: lint * fix: lint * feat: add throttle test * feat: optimize throttle test * feat: bump postgres version to 16 * feat: modify port * fix: test * fix: test * optimize test * optimize test * optimize test * optimize test --------- Co-authored-by: Bowen <[email protected]> * upgrade v1.14.5 * optimize test cases * demo: auth (#27) * demo: auth * rename * rename * upgrade: v1.14.7 (#29) --------- Co-authored-by: θε <[email protected]> * fix: [#523] [Bug] The same listener can not be registered by multiple events, framework will threw an error: job signature duplicate (#33) * fix: [#523] [Bug] The same listener can not be registered by multiple events, framework will threw an error: job signature duplicate * Optimize test * Update go.mod * Update go.mod * Add redis * Add GraphQL (#34) * Add graphql setup * Missed modified files --------- Co-authored-by: θε <[email protected]> Co-authored-by: Viet Pham <[email protected]>
π Description
Sync latest framework changes and add test for throttle.
β Checks