airborne-devkit 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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,66 @@
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_cli-v0.1.7 - 2026-01-05
6
+ #### Bug Fixes
7
+ - added .git to repository url - (4a35c5a) - Yaswanth
8
+
9
+ - - -
10
+
11
+ ## airborne_cli-v0.1.6 - 2026-01-05
12
+ #### Bug Fixes
13
+ - removed .git from repository url - (9785bd8) - Yaswanth
14
+
15
+ - - -
16
+
17
+ ## airborne_cli-v0.1.5 - 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
+
5
65
  ## airborne_cli-v0.1.4 - 2025-12-07
6
66
  #### Bug Fixes
7
67
  - Remove critical vulnerability via npm audit fix - (8c8f631) - George James
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airborne-devkit",
3
- "version": "0.15.6",
3
+ "version": "0.17.4",
4
4
  "description": "Cli for Airborne",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -22,6 +22,10 @@
22
22
  "publishConfig": {
23
23
  "registry": "https://registry.npmjs.org/"
24
24
  },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/juspay/airborne.git"
28
+ },
25
29
  "dependencies": {
26
30
  "@react-native-community/cli": "18.0.1",
27
31
  "airborne-core-cli": "*",
package/src/index.js CHANGED
@@ -26,7 +26,7 @@ const program = new Command();
26
26
  program
27
27
  .name("airborne-devkit")
28
28
  .description("Command-line interface for Airborne operations")
29
- .version("0.15.6");
29
+ .version("0.17.4");
30
30
 
31
31
  coreCli.commands.forEach((cmd, i) => {
32
32
  if (cmd._name !== "PostLogin") {