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(
email=mail,
password=str(uuid.uuid4()),
name=cn,
role=role
email=mail, password=str(uuid.uuid4()), name=cn, role=role
)
if not user:
raise HTTPException(
500, detail=ERROR_MESSAGES.CREATE_USER_ERROR

4
package-lock.json generated
View File

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

View File

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