Skip to content
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 platform koa #924

Merged
merged 2 commits into from
Sep 19, 2020
Merged

Feat platform koa #924

merged 2 commits into from
Sep 19, 2020

Conversation

Romakita
Copy link
Collaborator

Add Koa support

@Romakita Romakita force-pushed the feat-platform-koa branch 2 times, most recently from fb2712d to 298e49e Compare September 19, 2020 08:05
… twice or more on the same class or method

BREAKING CHANGE:
If you use UseBefore or UseAfter as following:
```typescript
class MyController {
  @UseBefore(Middleware1)
  @UseBefore(Middleware2)
  test(){}
}
```
You have to inverse the middlewares:
```typescript
class MyController {
  @UseBefore(Middleware2)
  @UseBefore(Middleware1)
  test(){}
}
```

The calls order was wrong in v5. v6 fix this problem.
@Romakita
Copy link
Collaborator Author

🎉 This PR is included in version 6.0.0-alpha.20 🎉

The release is available on:

Your semantic-release bot 📦🚀

@Romakita Romakita mentioned this pull request Sep 20, 2020
18 tasks
@Romakita
Copy link
Collaborator Author

🎉 This PR is included in version 6.0.0-beta.1 🎉

The release is available on:

Your semantic-release bot 📦🚀

@Romakita Romakita deleted the feat-platform-koa branch October 4, 2020 08:24
@Romakita
Copy link
Collaborator Author

🎉 This PR is included in version 6.0.0-rc.1 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant