You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Summary
This PR makes several improvements to the codebase, including making the rate limit error detection function public, updating dependencies, fixing documentation links, and refactoring the HTTP transport server structure.
## Changes
- Made `isRateLimitError` function public by renaming it to `IsRateLimitError` to allow external packages to use it
- Updated AWS SDK dependencies from v1.39.3 to v1.39.5
- Updated GORM dependency from v1.31.0 to v1.31.1
- Fixed documentation link in plugins getting-started.mdx (writing-plugins → writing-plugin)
- Moved HTTP server implementation from main package to dedicated server package for better code organization
- Updated UI import paths to use the @enterprise alias consistently
## Type of change
- [x] Bug fix
- [ ] Feature
- [x] Refactor
- [x] Documentation
- [x] Chore/CI
## Affected areas
- [x] Core (Go)
- [x] Transports (HTTP)
- [ ] Providers/Integrations
- [x] Plugins
- [x] UI (Next.js)
- [x] Docs
## How to test
```sh
# Core/Transports
go version
go test ./...
# UI
cd ui
pnpm i
pnpm build
```
## Breaking changes
- [ ] Yes
- [x] No
## Security considerations
No security implications as this is primarily a refactoring and dependency update PR.
## Checklist
- [x] I added/updated tests where appropriate
- [x] I updated documentation where needed
- [x] I verified builds succeed (Go and UI)
Copy file name to clipboardExpand all lines: docs/plugins/getting-started.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,5 +76,5 @@ Plugins execute in a specific order:
76
76
77
77
## Next Steps
78
78
79
-
Ready to build your first plugin? Continue to [Writing Plugins](./writing-plugins) to learn how to create, build, and deploy custom plugins for Bifrost.
79
+
Ready to build your first plugin? Continue to [Writing Plugins](./writing-plugin) to learn how to create, build, and deploy custom plugins for Bifrost.
0 commit comments