Skip to content

Commit 7de0503

Browse files
committed
Merge remote-tracking branch 'origin/main' into config-plugins
2 parents 995033e + bbc07f1 commit 7de0503

37 files changed

Lines changed: 3080 additions & 107 deletions

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.0.51] - 2026-04-28
4+
5+
### Added
6+
7+
- Auth and user registration in local dev (#475)
8+
- Social login and custom Google OAuth commands (#445)
9+
- Connector automation support for backend functions (#471)
10+
- Forward service token header from `Authorization` in `base44 dev` (#461)
11+
12+
### Fixed
13+
14+
- Convert function entry path to file URL for Windows compatibility (#482)
15+
316
## [0.0.50] - 2026-03-30
417

518
### Added

bun.lock

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "base44",
3-
"version": "0.0.50",
3+
"version": "0.0.51",
44
"description": "Base44 CLI - Unified interface for managing Base44 applications",
55
"type": "module",
66
"bin": {
@@ -55,6 +55,7 @@
5555
"@types/multer": "^2.0.0",
5656
"@types/node": "^22.10.5",
5757
"@vercel/detect-agent": "^1.1.0",
58+
"outdent": "^0.8.0",
5859
"chalk": "^5.6.2",
5960
"chokidar": "^5.0.0",
6061
"commander": "^12.1.0",

packages/cli/src/cli/commands/auth/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ import { getPasswordLoginCommand } from "./password-login.js";
33
import { getAuthPullCommand } from "./pull.js";
44
import { getAuthPushCommand } from "./push.js";
55
import { getSocialLoginCommand } from "./social-login.js";
6+
import { getSSOCommand } from "./sso.js";
67

78
export function getAuthCommand(): Command {
89
return new Command("auth")
910
.description("Manage app authentication settings")
1011
.addCommand(getPasswordLoginCommand())
1112
.addCommand(getSocialLoginCommand())
13+
.addCommand(getSSOCommand())
1214
.addCommand(getAuthPullCommand())
1315
.addCommand(getAuthPushCommand());
1416
}

0 commit comments

Comments
 (0)