chore: version bump

This commit is contained in:
Timothy Jaeryang Baek 2024-11-22 19:22:35 -08:00
parent 320cf06333
commit 9412f51c19
4 changed files with 5 additions and 9 deletions

View File

@ -246,13 +246,9 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
) )
user = Auths.insert_new_auth( user = Auths.insert_new_auth(
email=mail, email=mail, password=str(uuid.uuid4()), name=cn, role=role
password=str(uuid.uuid4()),
name=cn,
role=role
) )
if not user: if not user:
raise HTTPException( raise HTTPException(
500, detail=ERROR_MESSAGES.CREATE_USER_ERROR 500, detail=ERROR_MESSAGES.CREATE_USER_ERROR

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.4.3", "version": "0.4.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "open-webui", "name": "open-webui",
"version": "0.4.3", "version": "0.4.4",
"dependencies": { "dependencies": {
"@codemirror/lang-javascript": "^6.2.2", "@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-python": "^6.1.6", "@codemirror/lang-python": "^6.1.6",

View File

@ -1,6 +1,6 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.4.3", "version": "0.4.4",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "npm run pyodide:fetch && vite dev --host", "dev": "npm run pyodide:fetch && vite dev --host",