Skip to content

Releases: CycloneDX/cdxgen

Release v11.2.3 - Scala and SaaSBOM 2

01 Apr 09:46
2c0058f
Compare
Choose a tag to compare

This release brings evinse support for Scala and the next generation of SaaSBOM. Our LinkedIn announcement blog has more details.

Evinse for Scala

cdxgen v11.2.x features an innovative hybrid semantic analysis engine (based on both source code and TASTy files) for Scala 3 codebases. cdxgen supports both Scala 2 and 3 projects for basic SBOM generation. However, for Scala versions 3.3 to 3.6.4, it can produce highly detailed SBOMs enriched with occurrence data and SaaSBOM evidence.

The semantic analysis performed by cdxgen (with atom) is precise and state-of-the-art. Here are a few examples:

Automatic expansion of wildcard imports entirely with static analysis

Our analyzer exactly knows the full type names of the modules and its Package URLs, even when the codebase uses dynamic imports and aliasing.

1

Occurrence evidences for scala

4

Services evidence for scala

6

SaaSBOM Enhancements

Version 11.2.x introduces the next generation of the SaaSBOM generator, featuring enhanced granularity in endpoint detection, specifically the tracking of precise HTTP methods (GET, POST, PUT, DELETE, etc.) utilized by the application in its interactions with services and clients.

Let’s look at an example:

scope ":account_id", as: "account", constraints: { account_id: /\d+/ } do resources :articles end

This single line of Ruby code would result in the following 7 routes!

url_pattern='/account_id/articles', method='GET'
url_pattern='/account_id/articles/new', method='GET'
url_pattern='/account_id/articles', method='POST'
url_pattern='/account_id/articles/{id}', method='GET'
url_pattern='/account_id/articles/{id}/edit', method='GET'
url_pattern='/account_id/articles/{id}', method='PUT'
url_pattern='/account_id/articles/{id}', method='DELETE'

Users of cdxgen require no knowledge of programming languages, frameworks, or SDKs. The tool handles tasks like setting up build tools and compilation automatically. If user intervention is required, the tool will provide clear troubleshooting tips in plain English.

We support the following languages with SaaSBOM v2.

  • Java
  • JavaScript
  • TypeScript
  • Python
  • Ruby
  • Scala

In v1 mode, we support additional languages such as PHP and C/C++.

Generating SaaSBOMs has also become much easier. We’ve added a new dedicated command called “saasbom”.

npm install -g @cyclonedx/cdxgen
saasbom -t language

What's Changed

Other Changes

New Contributors

Full Changelog: v11.2.2...v11.2.3

Release v11.2.2

17 Mar 18:24
19d486a
Compare
Choose a tag to compare

We have introduced several improvements to container SBOMs. cdxgen now collects executable binaries and shared libraries in container images as file components, and it tracks specific environment variables that may affect the security properties of the hosted applications.

What's Changed

Other Changes

Full Changelog: v11.2.1...v11.2.2

Release v11.2.1

05 Mar 19:49
78394dd
Compare
Choose a tag to compare

cocoapods is now supported by cdxgen (Thank you @malice00)! We even support hybrid projects that use both cocoapods and swift pm to generate a single aggregate SBOM.

What's Changed

  • Improves name identification for yarn v1 lock files with self aliases by @prabhu in #1668
  • Basic support for twincat project types such as tsproj, plcproj, hmiproj by @prabhu in #1669
  • [Cocoa] Added generating SBOM for projects using Cocoapods by @malice00 in #1667
  • adhoc changes by @prabhu in #1672

Full Changelog: v11.2.0...v11.2.1

Release v11.2.0 - Think, Evaluate, and Improve

28 Feb 15:16
205ad38
Compare
Choose a tag to compare

Thanks to continuous thought logging and GPT-powered evaluation, we have fixed several bugs to enhance precision and improve the user experience.

What's Changed

  • [Documentation] Split the table in ENV.md by language/tool and sorted the keys. by @malice00 in #1649
  • Convert to relative paths using postgen + goodies by @prabhu in #1652
  • Auto-detect gradle composite builds by @prabhu in #1658
  • npm workspace improvements by @prabhu in #1659
  • [swift] Parent hierarchy and properties improvements by @prabhu in #1664

Full Changelog: v11.1.10...v11.2.0

Release v11.1.10

22 Feb 15:38
1807d97
Compare
Choose a tag to compare

What's Changed

Other Changes

  • result.stderr could be null in node.js even with non-zero error code by @prabhu in #1641
  • Fix pnpm and yarn lock file detection by @konstantinas1 in #1643

New Contributors

Full Changelog: v11.1.9...v11.1.10

Release v11.1.9

18 Feb 20:50
450d3bc
Compare
Choose a tag to compare

cdxgen can now log its thought process while generating the xBOM. cdxgenGPT can then interpret this log and advise whether the generated SBOM is accurate and complete. Below is an example for the Kafka repository:

Screenshot 2025-02-15 at 17 37 21
Screenshot 2025-02-15 at 17 38 10

bom.json
cdxgen-thoughts.txt

What's Changed

Other Changes

New Contributors

Full Changelog: v11.1.8...v11.1.9

Release v11.1.8

14 Feb 18:28
87084e1
Compare
Choose a tag to compare

What's Changed

🐛 Bug Fixes

Other Changes

Full Changelog: v11.1.7...v11.1.8

Release v11.1.7

01 Feb 17:11
b704676
Compare
Choose a tag to compare

cdxgen (>= v11.1.7) now includes a "secure mode," powered by the Node.js permission model. This "seat-belt approach" allows you to control which system resources cdxgen can access and what actions it can perform with those resources. For example, in --lifecycle pre-build mode, you can restrict cdxgen to reading only specific files, without granting permission to execute child processes. Even when executing node-based commands such as npm or atom, you can further limit the directories these external commands can read and write, as well as their permissions to execute child processes. This makes cdxgen an ideal SBOM tool when dealing with untrusted codebases (which is all software).

For further information, please refer to the permissions documentation or start using the new ghcr.io/cyclonedx/cdxgen-secure container image.

Thank you to @eran-medan and the other security researchers for helping bring this feature live.

Addresses CVE-2024-50611 and #1328. Please update at your convenience.

Full Changelog: v11.1.6...v11.1.7

Release v11.1.6

31 Jan 10:23
7fb050a
Compare
Choose a tag to compare
  • Reduce validation warnings. Fix for #1610
  • golang is included in a few Python images

What's Changed

Other Changes

Full Changelog: v11.1.5...v11.1.6

Release v11.1.5

29 Jan 23:19
6e066ee
Compare
Choose a tag to compare

What's Changed

🧪 Testing

Other Changes

Full Changelog: v11.1.4...v11.1.5