airborne-core-cli 0.15.6 → 0.17.4

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +90 -0
  2. package/index.js +1 -1
  3. package/package.json +5 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,96 @@
2
2
  All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
3
3
 
4
4
  - - -
5
+ ## airborne_core_cli-v0.2.3 - 2026-01-05
6
+ #### Bug Fixes
7
+ - added .git to repository url - (4a35c5a) - Yaswanth
8
+
9
+ - - -
10
+
11
+ ## airborne_core_cli-v0.2.2 - 2026-01-05
12
+ #### Bug Fixes
13
+ - removed .git from repository url - (9785bd8) - Yaswanth
14
+
15
+ - - -
16
+
17
+ ## airborne_core_cli-v0.2.1 - 2026-01-05
18
+ #### Bug Fixes
19
+ - added repository urls - (9e84ec5) - Yaswanth
20
+
21
+ - - -
22
+
23
+ ## v0.17.1 - 2026-01-05
24
+ #### Miscellaneous Chores
25
+ - **(version)** v0.17.1 [skip ci] - (4c44de0) - Airborne Bot
26
+
27
+ - - -
28
+
29
+ ## v0.17.0 - 2026-01-05
30
+ #### Miscellaneous Chores
31
+ - **(version)** v0.17.0 [skip ci] - (3c25a01) - Airborne Bot
32
+
33
+ - - -
34
+
35
+ ## v0.16.0 - 2026-01-05
36
+ #### Miscellaneous Chores
37
+ - **(version)** v0.16.0 [skip ci] - (bdef647) - Airborne Bot
38
+
39
+ - - -
40
+
41
+ ## v0.15.9 - 2026-01-05
42
+ #### Miscellaneous Chores
43
+ - **(version)** v0.15.9 [skip ci] - (9d3ad53) - Airborne Bot
44
+
45
+ - - -
46
+
47
+ ## v0.15.8 - 2026-01-05
48
+ #### Miscellaneous Chores
49
+ - **(version)** v0.15.8 [skip ci] - (dffa42b) - Airborne Bot
50
+
51
+ - - -
52
+
53
+ ## v0.15.7 - 2026-01-05
54
+ #### Miscellaneous Chores
55
+ - **(version)** v0.15.7 [skip ci] - (b10086c) - Airborne Bot
56
+
57
+ - - -
58
+
59
+ ## v0.15.6 - 2026-01-05
60
+ #### Miscellaneous Chores
61
+ - **(version)** v0.15.6 [skip ci] - (43686ce) - Airborne Bot
62
+
63
+ - - -
64
+
65
+ ## v0.15.5 - 2026-01-05
66
+ #### Miscellaneous Chores
67
+ - **(version)** v0.15.5 [skip ci] - (0c57af4) - Airborne Bot
68
+
69
+ - - -
70
+
71
+ ## v0.15.4 - 2026-01-05
72
+ #### Miscellaneous Chores
73
+ - **(version)** v0.15.4 [skip ci] - (4269cd6) - Airborne Bot
74
+
75
+ - - -
76
+
77
+ ## v0.15.3 - 2026-01-05
78
+ #### Miscellaneous Chores
79
+ - **(version)** v0.15.3 [skip ci] - (bb591e8) - Airborne Bot
80
+
81
+ - - -
82
+
83
+ ## v0.15.2 - 2026-01-05
84
+ #### Miscellaneous Chores
85
+ - **(version)** v0.15.2 [skip ci] - (0479382) - Airborne Bot
86
+
87
+ - - -
88
+
89
+ ## v0.15.1 - 2026-01-05
90
+ #### Miscellaneous Chores
91
+ - **(version)** v0.15.1 [skip ci] - (a49504e) - Airborne Bot
92
+
93
+ - - -
94
+
5
95
  ## airborne_core_cli-v0.2.0 - 2025-11-18
6
96
  #### Features
7
97
  - add pagination to list packages and releases - (760909b) - Yash Rajput
package/index.js CHANGED
@@ -117,7 +117,7 @@ function printColoredJSON(obj, indent = 2) {
117
117
  const program = new Command()
118
118
  .name("airborne-core-cli")
119
119
  .description("Command-line interface for Airborne OTA operations")
120
- .version("0.15.6");
120
+ .version("0.17.4");
121
121
 
122
122
  program
123
123
  .command("CreateApplication")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airborne-core-cli",
3
- "version": "0.15.6",
3
+ "version": "0.17.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "airborne-core-cli": "bin.js"
@@ -13,6 +13,10 @@
13
13
  ],
14
14
  "outputPath": "dist"
15
15
  },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/juspay/airborne.git"
19
+ },
16
20
  "dependencies": {
17
21
  "airborne-server-sdk": "*",
18
22
  "chalk": "^5.6.2",