v1.0.0-beta.7
What's Changed
- feat: add laf new homepage by @LeezQ in #1018
- fix: compress img by @LeezQ in #1019
- doc: fix logo and link by @zuoFeng59556 in #1021
- fix: route dashboard link by @LeezQ in #1020
- fix(deploy): modify the installation order of APISIX by @nightwhite in #1022
- fix(web): copywriting description by @LeezQ in #1025
- docs: update how to use the database by @Otto-J in #1032
- fix(web): Repair document link address by @nightwhite in #1027
- doc: fix image and add http by @zuoFeng59556 in #1031
- feat(cli): add ignore file by @nightwhite in #1030
- feat(web): use laf ai to generate code by @LeezQ in #1029
- doc: fix function-in-client url error by @zuoFeng59556 in #1037
- feat: update @lafjs/cloud runtime version by @nightwhite in #1039
- fix: optimize invoke code prompts and documents by @nightwhite in #1038
- feat(web): common error handler by @LeezQ in #1040
- fix(server): suspend cronjob after instance stopped by @maslow in #1045
- feat(web): add homepage darkmode by @newfish-cmyk in #1043
- fix(web): add scrollbar by @newfish-cmyk in #1046
- feat(web): delete folder in storage (#1047) by @yuedanlabs in #1048
- fix(server): avoid acct-trans addition in free order by @maslow in #1049
- fix(cli): fix cli with function name rule and add laf-cli option to bug_issues template (#1034) by @yuedanlabs in #1035
- doc: improved cloud function related documents by @nightwhite in #1050
- doc: add document for the interceptor by @nightwhite in #1051
- feat(web): add ChatGPT example by @zuoFeng59556 in #1052
- feat(server): add func debug params, add envs update api by @maslow in #1055
- doc: optimize cloud function document && add document search function by @nightwhite in #1057
- refactor(web): update env modify modal by @LeezQ in #1058
- fix(web): opt ide typings for response & request, opt function templates by @maslow in #1059
- refactor(web): editor scrollbar & colorMode fix by @LeezQ in #1061
- doc: optimize the search button style && add database quickstart by @nightwhite in #1062
- doc: change start button name by @nightwhite in #1064
- fix(server): check env name regex for batch update by @maslow in #1065
- fix(server): remove minio alias init by @maslow in #1066
- ci: init e2e(check deployment and app create) by @aFlyBird0 in #1056
- ci: report broken links as an issue by @aFlyBird0 in #1060
- doc: database document optimization and hosting document optimization by @nightwhite in #1068
- feat(web): add status bar by @newfish-cmyk in #1054
- feat(web): add loginpage darkmode by @newfish-cmyk in #1070
- fix(web): common error handler by @LeezQ in #1071
- fix(runtime): fix func logging order by @maslow in #1072
- fix(server): use _id to sort logs instead of created_at by @maslow in #1073
- feat(runtime): support process.env in runtime by @maslow in #1074
- fix(server): fix waiting time in instance starting task by @maslow in #1075
- doc: optimize cloud function documents and database documents by @nightwhite in #1076
- feat(server): hot load environments for runtime instead of restarting runtime by @maslow in #1077
- feat(web): update environment variables without app restart by @maslow in #1079
- feat(runtime): add init hook in runtime by @maslow in #1081
New Contributors
- @Otto-J made their first contribution in #1032
- @newfish-cmyk made their first contribution in #1043
Full Changelog: v1.0.0-beta.6...v1.0.0-beta.7
Upgrade Guide
run this in your master node to upgrade laf-server & laf-web
kubectl set image deployments/laf-server -n laf-system \
laf-server=docker.io/lafyun/laf-server:1.0.0-beta.7
kubectl set image deployments/laf-web -n laf-system \
laf-web=docker.io/lafyun/laf-web:1.0.0-beta.7
run this in your mongodb shell to upgrade runtime version
use sys_db;
// runtime version
const version = "1.0.0-beta.7"
const main_image = `docker.io/lafyun/runtime-node:${version}`
const init_image = `docker.io/lafyun/runtime-node-init:${version}`
db.Runtime.updateOne({ latest: true }, {
$set: {
version: version,
image: {
main: main_image,
init: init_image
}
}
})
db.Runtime.find().pretty()
``