Releases: stackpress/stackpress
Releases · stackpress/stackpress
0.7.1
What's Changed
- Chore/0.6.7a by @cblanquera in #20
New Contributors
- @cblanquera made their first contribution in #20
Full Changelog: 0.6.1...0.7.1
0.6.1
Bump to sync versions lib, ingest, inquire, idea.
Full Changelog: 0.2.24...0.6.1
0.2.24
What's New
action.props()- where req, res, ctx are passed in an object instead- Added documentation attributes
@description(),@example() - Added validation attributes
@is.starting(),is.ending(),is.pattern() - New
corsoptions forapi.endpoints[]configuration
Action Props
import { action } from 'stackpress/server';
action.props(function Page({ req, res }) {
//...
});Idea Attributes
The following example are used for documentation purposes.
id String @description("A unique generated identifier")
@example("abc123")The following example are additional validation methods.
path String @is.starting("/") @is.ending("/") @is.pattern("[a-b]")API CORS
{
"api": {
endpoints: [
{
"method": "GET",
"route": "/api/foo/bar"
"cors": true,
"type": "public"
}
]
}
}Full Changelog: 0.2.22...0.2.24
0.2.22
What's Changed
- fixed checkbox logic in update by @patlouis in #1
- add load and change language logic 3d by @dnsjm in #5
- Made profile ID render 2d by @amielchristian in #2
- fixed searchable/filterable forms by @rgtoa in #6
- Added nowrap to table headers #4d by @diujin in #7
New Contributors
- @patlouis made their first contribution in #1
- @dnsjm made their first contribution in #5
- @amielchristian made their first contribution in #2
- @rgtoa made their first contribution in #6
- @diujin made their first contribution in #7
Full Changelog: https://github.com/stackpress/stackpress/commits/0.2.22