Releases: slicknode/slicknode
Releases · slicknode/slicknode
v0.14.0
New Features
- Run Slicknode locally or host it in any data center with:
slicknode start - Apply database migrations after schema changes:
slicknode migrate - Slicknode runtime handlers now support ESM modules.
Check out the documentation for more details.
v0.11.0
v0.9.0
Improvements:
slicknode deploycan now be executed in a project that does not have cached dependencies loaded. This allows you to clone a repository and just runslicknode deployto deploy a backend, without having to runslicknode pullfirst.- Console/playground URLs are now loaded dynamically from the API instead of hardcoded values from the config. URLs are removed from the local
.slicknodercfile to keep them upgradeable in the future.
v0.8.1
v0.8.0
v0.7.0
v0.6.0
This release comes with some major changes. The underlying library for the CLI was migrated to oclif. This allows for better testing, extensibility, etc.
Breaking
The GraphQL version was upgraded to 14.3. This version has a stricter validation of directives in the GraphQL schema. The builtin directives were previously not part of the schemas, therefore validation and deployment will fail with those directives missing.
To be able to validate the schema again and deploy changes, the schemas have to be updated in the project directories:
slicknode pull
Afterwards, everything should work as usual, just with strict directives validation.