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

Updating vixeny to 0.1.53 #8028

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
124,174 changes: 60,101 additions & 64,073 deletions data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion data.min.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion go/echo/config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
framework:
website: echo.labstack.com
version: 4.11
version: 4.13
15 changes: 7 additions & 8 deletions javascript/vixeny-bun/app.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
import { wrap } from "vixeny";

const app = wrap()()
.stdPetition({
const app = await wrap()()
.get({
path: '/',
f: () => null
f: () => ''
})
.stdPetition({
.get({
path: '/user/:id',
param: {
unique: true
},
f: ctx => ctx.param
})
.stdPetition({
method: 'POST',
.post({
path: '/user',
f: () => null
f: () => ""
})
.compose()

export default {
port: 3000,
fetch: app,
Expand Down
2 changes: 1 addition & 1 deletion javascript/vixeny-bun/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"dependencies": {
"vixeny": "~0.1.43"
"vixeny": "0.1.53"
}
}
17 changes: 8 additions & 9 deletions javascript/vixeny-deno/app.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
import { wrap } from "jsr:@vixeny/[email protected].42";
import { wrap } from "jsr:@vixeny/[email protected].53";

const app = wrap()()
.stdPetition({
const app = await wrap()()
.get({
path: '/',
f: () => null
f: () => ''
})
.stdPetition({
.get({
path: '/user/:id',
param: {
unique: true
},
f: ctx => ctx.param
})
.stdPetition({
method: 'POST',
.post({
path: '/user',
f: () => null
f: () => ''
})
.compose()

Deno.serve({port: 3000}, app)
Deno.serve({port: 3000}, app)
2 changes: 1 addition & 1 deletion javascript/vixeny-deno/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"dependencies": {
"vixeny": "~0.1.43"
"vixeny": "0.1.53"
}
}
2 changes: 1 addition & 1 deletion kotlin/http4k/config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
framework:
website: http4k.org
version: 5.37
version: 5.38
4 changes: 4 additions & 0 deletions perl/dancer2/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@ framework:
unsecure: true
website: perldancer.org
version: 1.1

bootstrap:
# This is temporary, see https://github.com/PerlDancer/Dancer2/issues/1720#issuecomment-2513150364
- cpanm --notest --force Module::Pluggable
2 changes: 1 addition & 1 deletion php/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ language:
command: ./rr serve
swoole:
extensions:
- swoole/5.1.5
- swoole/5.1.6
command: php public/index.php
build_deps:
- libbrotli-dev
Expand Down
2 changes: 1 addition & 1 deletion rust/silent/config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
framework:
github: hubertshelley/silent
version: 1.0
version: 2.0
Loading