|
1 | 1 | Changelog |
2 | 2 | ========= |
3 | 3 |
|
| 4 | +v34.10.2 (unreleased) |
| 5 | +--------------------- |
| 6 | + |
| 7 | +- Add a ``UUID`` field on the DiscoveredDependency model. |
| 8 | + Use the UUID for the DiscoveredDependency spdx_id for better SPDX compatibility. |
| 9 | + https://github.com/aboutcode-org/scancode.io/issues/1651 |
| 10 | + |
| 11 | +v34.10.1 (2025-03-26) |
| 12 | +--------------------- |
| 13 | + |
| 14 | +- Convert the ``declared_license`` field value return by ``python-inspector`` in |
| 15 | + ``resolve_pypi_packages``. |
| 16 | + Resolving requirements.txt files will now return proper license data. |
| 17 | + https://github.com/aboutcode-org/scancode.io/issues/1598 |
| 18 | + |
| 19 | +- Add support for installing on Apple Silicon (macOS ARM64) in dev mode. |
| 20 | + https://github.com/aboutcode-org/scancode.io/pull/1646 |
| 21 | + |
| 22 | +v34.10.0 (2025-03-21) |
| 23 | +--------------------- |
| 24 | + |
| 25 | +- Rename the ``docker``, ``docker_windows``, and ``root_filesystem`` modules to |
| 26 | + ``analyze_docker``, ``analyze_docker_windows``, and ``analyze_root_filesystem`` |
| 27 | + for consistency. |
| 28 | + |
| 29 | +- Refine and document the Webhook system |
| 30 | + https://github.com/aboutcode-org/scancode.io/issues/1587 |
| 31 | + * Add UI to add/delete Webhooks from the project settings |
| 32 | + * Add a new ``add-webhook`` management command |
| 33 | + * Add a ``add_webhook`` REST API action |
| 34 | + * Add a new ``SCANCODEIO_GLOBAL_WEBHOOK`` setting |
| 35 | + * Add a new chapter dedicated to Webhooks management in the documentation |
| 36 | + * Add support for custom payload dedicated to Slack webhooks |
| 37 | + |
| 38 | +- Upgrade Bulma CSS library to version 1.0.2 |
| 39 | + https://github.com/aboutcode-org/scancode.io/pull/1268 |
| 40 | + |
| 41 | +- Disable the creation of the global webhook in the ``batch-create`` command by default. |
| 42 | + The global webhook can be created by providing the ``--create-global-webhook`` option. |
| 43 | + A ``--no-global-webhook`` option was also added to the ``create-project`` command to |
| 44 | + provide the ability to skip the global webhook creation. |
| 45 | + https://github.com/aboutcode-org/scancode.io/pull/1629 |
| 46 | + |
| 47 | +- Add support for "Permission denied" file access in make_codebase_resource. |
| 48 | + https://github.com/aboutcode-org/scancode.io/issues/1630 |
| 49 | + |
| 50 | +- Refine the ``scan_single_package`` pipeline to work on git fetched inputs. |
| 51 | + https://github.com/aboutcode-org/scancode.io/issues/1376 |
| 52 | + |
| 53 | +v34.9.5 (2025-02-19) |
| 54 | +-------------------- |
| 55 | + |
| 56 | +- Add support for the XLSX report in REST API. |
| 57 | + https://github.com/aboutcode-org/scancode.io/issues/1524 |
| 58 | + |
| 59 | +- Add options to the Project reset action. |
| 60 | + Also, the Project labels are kept during reset. |
| 61 | + https://github.com/aboutcode-org/scancode.io/issues/1568 |
| 62 | + |
| 63 | +- Add aboutcode.pipeline as an install_requires external dependency to prevent conflicts |
| 64 | + with other aboutcode submodules. |
| 65 | + https://github.com/aboutcode-org/scancode.io/issues/1423 |
| 66 | + |
| 67 | +- Add a ``add-webhook`` management command that allows to add webhook subscription on |
| 68 | + a project. |
| 69 | + https://github.com/aboutcode-org/scancode.io/issues/1587 |
| 70 | + |
| 71 | +- Add proper progress logging for the ``assemble`` section of the |
| 72 | + ``scan_for_application_packages``. |
| 73 | + https://github.com/aboutcode-org/scancode.io/issues/1601 |
| 74 | + |
| 75 | +v34.9.4 (2025-01-21) |
| 76 | +-------------------- |
| 77 | + |
| 78 | +- Improve Project list page navigation. |
| 79 | + A top previous/next page navigation was added in the header for consistency with other |
| 80 | + list views. |
| 81 | + Any paginated view can now be navigated using the left/right keyboard keys. |
| 82 | + https://github.com/aboutcode-org/scancode.io/issues/1200 |
| 83 | + |
| 84 | +- Add support for importing the ``extra_data`` value from the JSON input with the |
| 85 | + ``load_inventory`` pipeline. |
| 86 | + When multiple JSON files are provided as inputs, the ``extra`` is prefixed with |
| 87 | + the input filename. |
| 88 | + https://github.com/aboutcode-org/scancode.io/issues/926 |
| 89 | + |
| 90 | +- Disable CycloneDX document strict validation, which halts the entire loading process, |
| 91 | + and let the data loading process handle the data issues. |
| 92 | + https://github.com/aboutcode-org/scancode.io/issues/1515 |
| 93 | + |
| 94 | +- Add a report action on project list to export XLSX containing packages from selected |
| 95 | + projects. |
| 96 | + https://github.com/aboutcode-org/scancode.io/issues/1437 |
| 97 | + |
| 98 | +- Add a download action on project list to enable bulk download of Project output files. |
| 99 | + https://github.com/aboutcode-org/scancode.io/issues/1518 |
| 100 | + |
| 101 | +- Add labels to Project level search. |
| 102 | + The labels are now always presented in alphabetical order for consistency. |
| 103 | + https://github.com/aboutcode-org/scancode.io/issues/1520 |
| 104 | + |
| 105 | +- Add a ``batch-create`` management command that allows to create multiple projects |
| 106 | + at once from a directory containing input files. |
| 107 | + https://github.com/aboutcode-org/scancode.io/issues/1437 |
| 108 | + |
| 109 | +- Do not download input_urls in management commands. The fetch/download is delegated to |
| 110 | + the pipeline execution. |
| 111 | + https://github.com/aboutcode-org/scancode.io/issues/1437 |
| 112 | + |
| 113 | +- Add a "TODOS" sheet containing on REQUIRES_REVIEW resources in XLSX. |
| 114 | + https://github.com/aboutcode-org/scancode.io/issues/1524 |
| 115 | + |
| 116 | +- Improve XLSX output for Vulnerabilities. |
| 117 | + Replace the ``affected_by_vulnerabilities`` field in the PACKAGES and DEPENDENCIES |
| 118 | + sheets with a dedicated VULNERABILITIES sheet. |
| 119 | + https://github.com/aboutcode-org/scancode.io/issues/1519 |
| 120 | + |
| 121 | +- Keep the InputSource objects when using ``reset`` on Projects. |
| 122 | + https://github.com/aboutcode-org/scancode.io/issues/1536 |
| 123 | + |
| 124 | +- Add a ``report`` management command that allows to generate XLSX reports for |
| 125 | + multiple projects at once using labels and searching by project name. |
| 126 | + https://github.com/aboutcode-org/scancode.io/issues/1524 |
| 127 | + |
| 128 | +- Add the ability to "select across" in Projects list when using the "select all" |
| 129 | + checkbox on paginated list. |
| 130 | + https://github.com/aboutcode-org/scancode.io/issues/1524 |
| 131 | + |
| 132 | +- Update scancode-toolkit to v32.3.2. See CHANGELOG for updates: |
| 133 | + https://github.com/aboutcode-org/scancode-toolkit/releases/tag/v32.3.2 |
| 134 | + https://github.com/aboutcode-org/scancode-toolkit/releases/tag/v32.3.1 |
| 135 | + |
| 136 | +- Adds a project settings ``scan_max_file_size`` and a scancode.io settings field |
| 137 | + ``SCANCODEIO_SCAN_MAX_FILE_SIZE`` to skip scanning files above a certain |
| 138 | + file size (in bytes) as a temporary fix for large memory spikes while |
| 139 | + scanning for licenses in certain large files. |
| 140 | + https://github.com/aboutcode-org/scancode-toolkit/issues/3711 |
| 141 | + |
| 142 | +v34.9.3 (2024-12-31) |
| 143 | +-------------------- |
| 144 | + |
| 145 | +- Refine the available settings for RQ_QUEUES: |
| 146 | + * Rename the RQ_QUEUES sub-settings to SCANCODEIO_RQ_REDIS_* |
| 147 | + * Add SCANCODEIO_RQ_REDIS_SSL setting to enable SSL. |
| 148 | + https://github.com/aboutcode-org/scancode.io/issues/1465 |
| 149 | + |
| 150 | +- Add support to map binaries to source files using symbols |
| 151 | + for rust binaries and source files. This adds also using |
| 152 | + ``rust-inspector`` to extract symbols from rust binaries. |
| 153 | + This is a new optional ``Rust`` step in the |
| 154 | + ``map_deploy_to_develop`` pipeline. |
| 155 | + https://github.com/aboutcode-org/scancode.io/issues/1435 |
| 156 | + |
| 157 | +v34.9.2 (2024-12-10) |
| 158 | +-------------------- |
| 159 | + |
| 160 | +- Fix an issue with the ``scan_rootfs_for_system_packages`` pipe when a namespace is |
| 161 | + missing for the discovered packages. |
| 162 | + https://github.com/aboutcode-org/scancode.io/issues/1462 |
| 163 | + |
| 164 | +v34.9.1 (2024-12-09) |
| 165 | +-------------------- |
| 166 | + |
| 167 | +- Add the ability to filter on Project endpoint API actions. |
| 168 | + The list of ``resources``, ``packages``, ``dependencies``, ``relations``, and |
| 169 | + ``messages`` can be filtered providing the ``?field_name=value`` in the URL |
| 170 | + parameters. |
| 171 | + https://github.com/aboutcode-org/scancode.io/issues/1449 |
| 172 | + |
| 173 | +- Fix the ability to provide multiple optional step when defining pipelines in the |
| 174 | + REST API. |
| 175 | + The support for providing pipeline names as a comma-separated single string was |
| 176 | + remove as the comma is used as the optional step separator. |
| 177 | + Use a list of pipeline names instead. |
| 178 | + https://github.com/aboutcode-org/scancode.io/issues/1454 |
| 179 | + |
| 180 | +- Make the header row of tables sticky to the top of the screen so it is always |
| 181 | + visible. |
| 182 | + https://github.com/aboutcode-org/scancode.io/issues/1457 |
| 183 | + |
| 184 | +v34.9.0 (2024-11-14) |
| 185 | +-------------------- |
| 186 | + |
| 187 | +- Add ability to declared pipeline selected groups in create project REST API endpoint. |
| 188 | + https://github.com/aboutcode-org/scancode.io/issues/1426 |
| 189 | + |
| 190 | +- Add a new ``list-pipelines`` management command. |
| 191 | + https://github.com/aboutcode-org/scancode.io/issues/1397 |
| 192 | + |
| 193 | +- Refactor the policies related code to its own module. |
| 194 | + https://github.com/aboutcode-org/scancode.io/issues/386 |
| 195 | + |
| 196 | +- Add support for project-specific license policies and compliance alerts. |
| 197 | + Enhance Project model to handle policies from local settings, project input |
| 198 | + "policies.yml" files, or global app settings. |
| 199 | + https://github.com/aboutcode-org/scancode.io/issues/386 |
| 200 | + |
| 201 | +- Refactor the ``group`` decorator for pipeline steps as ``optional_step``. |
| 202 | + The steps decorated as optional are not included by default anymore. |
| 203 | + https://github.com/aboutcode-org/scancode.io/issues/386 |
| 204 | + |
| 205 | +- Add a new ``PublishToFederatedCode`` pipeline (addon) to push scan result |
| 206 | + to FederatedCode. |
| 207 | + https://github.com/nexB/scancode.io/pull/1400 |
| 208 | + |
| 209 | +- Add new ``purl`` field to project model. https://github.com/nexB/scancode.io/pull/1400 |
| 210 | + |
| 211 | +v34.8.3 (2024-10-30) |
| 212 | +-------------------- |
| 213 | + |
| 214 | +- Include the ``aboutcode`` module in the wheel and source distribution. |
| 215 | + https://github.com/aboutcode-org/scancode.io/issues/1423 |
| 216 | + |
| 217 | +- Update ScanCode-toolkit to v32.3.0 |
| 218 | + https://github.com/aboutcode-org/scancode.io/issues/1418 |
| 219 | + |
| 220 | +v34.8.2 (2024-10-28) |
| 221 | +-------------------- |
| 222 | + |
| 223 | +- Add ``android_analysis`` to ``extra_requires``. This installs the package |
| 224 | + ``android_inspector``, which provides a pipeline for Android APK |
| 225 | + deploy-to-development analysis. |
| 226 | + |
| 227 | +- Remove the sleep time in the context of testing ``matchcode.poll_run_url_status`` |
| 228 | + to speed up the test. |
| 229 | + https://github.com/aboutcode-org/scancode.io/issues/1411 |
| 230 | + |
| 231 | +- Add ability to specify the CycloneDX output spec version using the ``output`` |
| 232 | + management command and providing the ``cyclonedx:VERSION`` syntax as format value. |
| 233 | + https://github.com/aboutcode-org/scancode-action/issues/8 |
| 234 | + |
| 235 | +- Add new ``compliance`` REST API action that list all compliance alert for a given |
| 236 | + project. The severity level can be provided using the |
| 237 | + ``?fail_level={ERROR,WARNING,MISSING}`` parameter. |
| 238 | + https://github.com/aboutcode-org/scancode.io/issues/1346 |
| 239 | + |
| 240 | +- Add new ``Compliance alerts`` panel in the project detail view. |
| 241 | + https://github.com/aboutcode-org/scancode.io/issues/1346 |
| 242 | + |
| 243 | +v34.8.1 (2024-09-06) |
| 244 | +-------------------- |
| 245 | + |
| 246 | +- Upgrade Django to security release 5.1.1 and related dependencies. |
| 247 | + |
4 | 248 | v34.8.0 (2024-08-15) |
5 | 249 | -------------------- |
6 | 250 |
|
|
0 commit comments