ALTER TABLE supascript_log ENABLE ROW LEVEL SECURITY;
ALTER TABLE supascript_js_modules ENABLE ROW LEVEL SECURITY;
Note: This changes the security model for functions called fromanon
andauthenticated
user roles.
- Major overhaul of the README.md file
- added
ALTER PUBLICATION supabase_realtime ADD TABLE supascript_log
so log file can be queried with the realtime engine
- better handling for logging of the current query name (function name)
- added EASY-INSTALL-V1.3.SQL for quick copy-paste installation into Supabase
- added package.json for publishing to npm
- added
console
object to log debug objects toSUPASCRIPT_LOG
table- console.log()
- console.info()
- console.warn()
- console.error()
- console.assert()
- console.time()
- console.timeEnd()
- added
require("http")
built-in module to handle web requests