Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog
## TBD
## 2.9.0 (2025-01-20)

### Enhancements
- Add a wrapper for the `npm` package to interact with the BugSnag CLI [161](https://github.com/bugsnag/bugsnag-cli/pull/161)
- Add the support for .so.* files when processing ndk symbol files [163](https://github.com/bugsnag/bugsnag-cli/pull/163)

- Add additional logging to the Android AAB upload command [165](https://github.com/bugsnag/bugsnag-cli/pull/165)
## 2.8.0 (2025-01-06)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ display_help() {
EOS
}

VERSION="2.8.0"
VERSION="2.9.0"

while [[ "$#" -gt 0 ]]; do
case "$1" in
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/bugsnag/bugsnag-cli/pkg/utils"
)

var package_version = "2.8.0"
var package_version = "2.9.0"

func main() {
commands := options.CLI{}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bugsnag/cli",
"version": "2.8.0",
"version": "2.9.0",
"description": "BugSnag CLI",
"main": "bugsnag-cli-wrapper.js",
"bin": {
Expand Down
4 changes: 4 additions & 0 deletions pkg/upload/android-aab.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package upload

import (
"fmt"
"os"
"path/filepath"

Expand Down Expand Up @@ -38,6 +39,7 @@ func ProcessAndroidAab(globalOptions options.CLI, endpoint string, logger log.Lo
}

if aabFile != "" && aabDir == "" {
logger.Debug(fmt.Sprintf("Extracting AAB file: %s", aabFile))
aabDir, err = utils.ExtractFile(aabFile, "aab")

defer os.RemoveAll(aabDir)
Expand All @@ -57,6 +59,7 @@ func ProcessAndroidAab(globalOptions options.CLI, endpoint string, logger log.Lo
soFilePath := filepath.Join(aabDir, "BUNDLE-METADATA", "com.android.tools.build.debugsymbols")

if utils.FileExists(soFilePath) {
logger.Debug(fmt.Sprintf("Found NDK (.so) files at: %s", soFilePath))
soFileList, err := utils.BuildFileList([]string{soFilePath})

if err != nil {
Expand Down Expand Up @@ -87,6 +90,7 @@ func ProcessAndroidAab(globalOptions options.CLI, endpoint string, logger log.Lo
mappingFilePath := filepath.Join(aabDir, "BUNDLE-METADATA", "com.android.tools.build.obfuscation", "proguard.map")

if utils.FileExists(mappingFilePath) {
logger.Debug(fmt.Sprintf("Found Proguard (mapping.txt) file at: %s", mappingFilePath))
globalOptions.Upload.AndroidProguard = options.AndroidProguardMapping{
ApplicationId: manifestData["applicationId"],
BuildUuid: manifestData["buildUuid"],
Expand Down
Loading