@boltic/cli 1.0.43 → 1.0.44-dev1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/serverless.js +1 -1
- package/helper/serverless.js +6 -6
- package/package.json +1 -1
package/commands/serverless.js
CHANGED
|
@@ -2350,7 +2350,7 @@ async function handleStatus(args = []) {
|
|
|
2350
2350
|
lastStatus = status;
|
|
2351
2351
|
} else if (iteration % 3 === 0) {
|
|
2352
2352
|
// Show a dot every 3 iterations to indicate it's still polling
|
|
2353
|
-
process.stdout.write(chalk.dim("
|
|
2353
|
+
process.stdout.write(chalk.dim(".\n"));
|
|
2354
2354
|
}
|
|
2355
2355
|
|
|
2356
2356
|
// Check if we've reached a terminal state
|
package/helper/serverless.js
CHANGED
|
@@ -14,10 +14,10 @@ import ora from "ora";
|
|
|
14
14
|
// Supported languages and their versions
|
|
15
15
|
export const SUPPORTED_LANGUAGES = ["nodejs", "python", "golang", "java"];
|
|
16
16
|
export const LANGUAGE_VERSIONS = {
|
|
17
|
-
nodejs: "
|
|
17
|
+
nodejs: "24",
|
|
18
18
|
python: "3",
|
|
19
|
-
golang: "1.
|
|
20
|
-
java: "
|
|
19
|
+
golang: "1.24",
|
|
20
|
+
java: "21",
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
// Handler mapping per language
|
|
@@ -935,7 +935,7 @@ public class AutogenIndex {
|
|
|
935
935
|
function getGoModContent(appName) {
|
|
936
936
|
return `module ${appName}
|
|
937
937
|
|
|
938
|
-
go 1.
|
|
938
|
+
go 1.24
|
|
939
939
|
`;
|
|
940
940
|
}
|
|
941
941
|
|
|
@@ -963,7 +963,7 @@ function getJavaPomXmlContent(appName) {
|
|
|
963
963
|
<description>Boltic Serverless Function</description>
|
|
964
964
|
|
|
965
965
|
<properties>
|
|
966
|
-
<java.version>
|
|
966
|
+
<java.version>21</java.version>
|
|
967
967
|
</properties>
|
|
968
968
|
|
|
969
969
|
<dependencies>
|
|
@@ -1440,7 +1440,7 @@ export function displayPublishSuccessMessage(name, response) {
|
|
|
1440
1440
|
export function getPulledBolticYamlContent(serverlessData) {
|
|
1441
1441
|
const config = serverlessData.Config;
|
|
1442
1442
|
const runtime = config.Runtime || "code";
|
|
1443
|
-
const language = config.CodeOpts?.Language || "nodejs/
|
|
1443
|
+
const language = config.CodeOpts?.Language || "nodejs/24";
|
|
1444
1444
|
const handler =
|
|
1445
1445
|
HANDLER_MAPPING[language.split("/")[0]] || "handler.handler";
|
|
1446
1446
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boltic/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.44-dev1.1",
|
|
4
4
|
"description": "Professional CLI for interacting with the Boltic platform — create, manage, and publish integrations, serverless functions, workflows, MCPs, and more with enterprise-grade features and a seamless developer experience",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|