|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). |
| 6 | + |
| 7 | +> **Versioning note:** Releases through `1.1.3` used bare semver tags (e.g. `1.1.3`). |
| 8 | +> Starting with `v2.0.0` the project follows the [GitHub Actions tag convention][gha-tags] |
| 9 | +> using a `v` prefix (e.g. `v2.0.0`) with a floating major tag (`v2`). |
| 10 | +
|
| 11 | +[gha-tags]: https://docs.github.com/en/actions/sharing-automations/creating-actions/releasing-and-maintaining-actions |
| 12 | + |
| 13 | +--- |
| 14 | + |
| 15 | +## [Unreleased] |
| 16 | + |
| 17 | +### Added |
| 18 | +- Multi-stage Dockerfiles for both `socket-basics` and `socket-basics-app-tests` — Trivy, |
| 19 | + TruffleHog, and Go are now pulled from their official registry images as named stages, |
| 20 | + making them Dependabot-trackable via `FROM` lines |
| 21 | +- GHCR + Docker Hub publish workflow (`publish-docker.yml`) with build → smoke test → |
| 22 | + integration test → push fail-fast pipeline |
| 23 | +- Integration test script (`scripts/integration-test-docker.sh`) that runs a real |
| 24 | + opengrep scan and socket-basics CLI scan without requiring API credentials |
| 25 | +- Dependabot configuration for Docker images, `app_tests/` Dockerfile, and GitHub Actions |
| 26 | +- Buildkite-style dynamic CI pipeline via `scripts/ci_matrix.py` — image and Python |
| 27 | + version matrices are now Python-driven, not hardcoded in YAML |
| 28 | +- Reusable `_docker-pipeline.yml` workflow as a single lego-brick called by both |
| 29 | + `smoke-test.yml` and `publish-docker.yml` |
| 30 | +- Floating major version tag automation (`v2` auto-updated on every release) |
| 31 | +- OCI image labels baked into published images (`com.socket.trivy-version`, etc.) |
| 32 | +- `python:3.12-slim` base image (~850 MB smaller than full) |
| 33 | +- Root `.dockerignore` to exclude tests, docs, and artifacts from the build context |
| 34 | +- This changelog and automated changelog update workflow |
| 35 | + |
| 36 | +### Changed |
| 37 | +- `uv` pinned to `0.10.9` (was `:latest`) |
| 38 | +- `smoke-test.yml` restructured as a matrix pipeline driven by `ci_matrix.py` |
| 39 | + (previously only tested the main image; `socket-basics-app-tests` will be re-enabled |
| 40 | + once its missing source files are committed — see `ci_matrix.py` TODO) |
| 41 | +- `smoke-test-docker.sh` gains `--skip-build` and `--check-set` flags for use in CI |
| 42 | + pipelines that build separately |
| 43 | + |
| 44 | +--- |
| 45 | + |
| 46 | +## [1.1.3] - 2026-03-03 |
| 47 | + |
| 48 | +### Added |
| 49 | +- Smoke test Docker workflow with scheduled runs every 12 hours ([#41]) |
| 50 | +- `pytest` GitHub Actions workflow for Python unit tests ([#42]) |
| 51 | +- Structured findings added to webhook payload ([#38]) |
| 52 | + |
| 53 | +### Fixed |
| 54 | +- Slack and MS Teams notifiers not reading URL from dashboard config ([#37]) |
| 55 | + |
| 56 | +[#37]: https://github.com/SocketDev/socket-basics/pull/37 |
| 57 | +[#38]: https://github.com/SocketDev/socket-basics/pull/38 |
| 58 | +[#41]: https://github.com/SocketDev/socket-basics/pull/41 |
| 59 | +[#42]: https://github.com/SocketDev/socket-basics/pull/42 |
| 60 | + |
| 61 | +## [1.1.2] - 2026-03-02 |
| 62 | + |
| 63 | +### Changed |
| 64 | +- Bump Trivy from `v0.67.2` to `v0.69.2` ([#39]) |
| 65 | +- `CODEOWNERS` updated with new team name ([#36]) |
| 66 | + |
| 67 | +[#36]: https://github.com/SocketDev/socket-basics/pull/36 |
| 68 | +[#39]: https://github.com/SocketDev/socket-basics/pull/39 |
| 69 | + |
| 70 | +## [1.1.1] - 2026-02-26 |
| 71 | + |
| 72 | +### Fixed |
| 73 | +- Webhook notifier not reading URL from dashboard config ([#34]) |
| 74 | +- `CODEOWNERS` syntax error ([#35]) |
| 75 | + |
| 76 | +[#34]: https://github.com/SocketDev/socket-basics/pull/34 |
| 77 | +[#35]: https://github.com/SocketDev/socket-basics/pull/35 |
| 78 | + |
| 79 | +## [1.1.0] - 2026-02-20 |
| 80 | + |
| 81 | +### Fixed |
| 82 | +- Jira dashboard config params not reaching notifier ([#22]) |
| 83 | +- Notifiers reading repo/branch from wrong source ([#30]) |
| 84 | +- GitHub PR comment enhancement and layout improvements ([#26]) |
| 85 | + |
| 86 | +### Changed |
| 87 | +- `CODEOWNERS` updated to reference new GHEC team name ([#33]) |
| 88 | + |
| 89 | +[#22]: https://github.com/SocketDev/socket-basics/pull/22 |
| 90 | +[#26]: https://github.com/SocketDev/socket-basics/pull/26 |
| 91 | +[#30]: https://github.com/SocketDev/socket-basics/pull/30 |
| 92 | +[#33]: https://github.com/SocketDev/socket-basics/pull/33 |
| 93 | + |
| 94 | +## [1.0.29] - 2026-02-19 |
| 95 | + |
| 96 | +### Added |
| 97 | +- `SKIP_SOCKET_SUBMISSION` and `SKIP_SOCKET_REACH` environment variables for Node.js |
| 98 | + Socket CLI integration ([#29]) |
| 99 | + |
| 100 | +### Changed |
| 101 | +- Pin TruffleHog to known-good version tag ([#32]) |
| 102 | +- Enrich OpenGrep alerts with full vulnerability metadata and detailed reports ([#28]) |
| 103 | + |
| 104 | +[#28]: https://github.com/SocketDev/socket-basics/pull/28 |
| 105 | +[#29]: https://github.com/SocketDev/socket-basics/pull/29 |
| 106 | +[#32]: https://github.com/SocketDev/socket-basics/pull/32 |
| 107 | + |
| 108 | +## [1.0.28] - 2026-02-06 |
| 109 | + |
| 110 | +### Changed |
| 111 | +- Dependency upgrades and internal maintenance ([#27]) |
| 112 | + |
| 113 | +[#27]: https://github.com/SocketDev/socket-basics/pull/27 |
| 114 | + |
| 115 | +## [1.0.27] - 2026-02-06 |
| 116 | + |
| 117 | +### Added |
| 118 | +- Dockerfile auto-discovery workflow pattern documentation ([#25]) |
| 119 | +- `scan_type` parameter added to full scan API calls ([#24]) |
| 120 | + |
| 121 | +[#24]: https://github.com/SocketDev/socket-basics/pull/24 |
| 122 | +[#25]: https://github.com/SocketDev/socket-basics/pull/25 |
| 123 | + |
| 124 | +## [1.0.26] - 2026-01-20 |
| 125 | + |
| 126 | +### Fixed |
| 127 | +- Empty CLI string defaults no longer override env/API config ([#17]) |
| 128 | + |
| 129 | +### Changed |
| 130 | +- Bump `urllib3` from `2.5.0` to `2.6.3` ([#21]) |
| 131 | + |
| 132 | +[#17]: https://github.com/SocketDev/socket-basics/pull/17 |
| 133 | +[#21]: https://github.com/SocketDev/socket-basics/pull/21 |
| 134 | + |
| 135 | +## [1.0.25] - 2025-10-28 |
| 136 | + |
| 137 | +### Fixed |
| 138 | +- Regression in rule name detection ([#15]) |
| 139 | + |
| 140 | +[#15]: https://github.com/SocketDev/socket-basics/pull/15 |
| 141 | + |
| 142 | +## [1.0.24] - 2025-10-28 |
| 143 | + |
| 144 | +### Fixed |
| 145 | +- Hard-coded detection for Golang ([#14]) |
| 146 | + |
| 147 | +[#14]: https://github.com/SocketDev/socket-basics/pull/14 |
| 148 | + |
| 149 | +## [1.0.23] - 2025-10-28 |
| 150 | + |
| 151 | +### Changed |
| 152 | +- Improve default SAST ruleset ([#13]) |
| 153 | + |
| 154 | +[#13]: https://github.com/SocketDev/socket-basics/pull/13 |
| 155 | + |
| 156 | +## [1.0.21] - 2025-10-24 |
| 157 | + |
| 158 | +### Fixed |
| 159 | +- Caching result fix ([#12]) |
| 160 | + |
| 161 | +[#12]: https://github.com/SocketDev/socket-basics/pull/12 |
| 162 | + |
| 163 | +## [1.0.20] - 2025-10-24 |
| 164 | + |
| 165 | +### Fixed |
| 166 | +- Restore Node.js and Socket CLI in container ([#11]) |
| 167 | + |
| 168 | +[#11]: https://github.com/SocketDev/socket-basics/pull/11 |
| 169 | + |
| 170 | +## [1.0.11] - 2025-10-22 |
| 171 | + |
| 172 | +### Fixed |
| 173 | +- Git detection logic not using `workspace` or `GITHUB_WORKSPACE` correctly ([#10]) |
| 174 | + |
| 175 | +[#10]: https://github.com/SocketDev/socket-basics/pull/10 |
| 176 | + |
| 177 | +## [1.0.10] - 2025-10-22 |
| 178 | + |
| 179 | +### Changed |
| 180 | +- Updated examples with PR check and commit hash pinning ([#9]) |
| 181 | + |
| 182 | +[#9]: https://github.com/SocketDev/socket-basics/pull/9 |
| 183 | + |
| 184 | +## [1.0.9] - 2025-10-22 |
| 185 | + |
| 186 | +### Added |
| 187 | +- Action inputs for configuring scan behavior ([#8]) |
| 188 | + |
| 189 | +### Fixed |
| 190 | +- Documentation and version check issues ([#7]) |
| 191 | + |
| 192 | +[#7]: https://github.com/SocketDev/socket-basics/pull/7 |
| 193 | +[#8]: https://github.com/SocketDev/socket-basics/pull/8 |
| 194 | + |
| 195 | +## [1.0.3] - 2025-10-21 |
| 196 | + |
| 197 | +### Added |
| 198 | +- GitHub token support in `action.yml` ([#3]) |
| 199 | + |
| 200 | +### Fixed |
| 201 | +- `action.yml` configuration issues ([#3]) |
| 202 | +- Documentation link ([#5]) |
| 203 | + |
| 204 | +[#3]: https://github.com/SocketDev/socket-basics/pull/3 |
| 205 | +[#5]: https://github.com/SocketDev/socket-basics/pull/5 |
| 206 | + |
| 207 | +## [1.0.2] - 2025-10-20 |
| 208 | + |
| 209 | +### Fixed |
| 210 | +- Initial Trivy + Socket results integration fixes ([#2]) |
| 211 | + |
| 212 | +[#2]: https://github.com/SocketDev/socket-basics/pull/2 |
| 213 | + |
| 214 | +--- |
| 215 | + |
| 216 | +<!-- Comparison links — updated automatically by scripts/update_changelog.py on each release --> |
| 217 | +[Unreleased]: https://github.com/SocketDev/socket-basics/compare/1.1.3...HEAD |
| 218 | +[2.0.0]: https://github.com/SocketDev/socket-basics/compare/1.1.3...v2.0.0 |
| 219 | +[1.1.3]: https://github.com/SocketDev/socket-basics/compare/1.1.2...1.1.3 |
| 220 | +[1.1.2]: https://github.com/SocketDev/socket-basics/compare/1.1.1...1.1.2 |
| 221 | +[1.1.1]: https://github.com/SocketDev/socket-basics/compare/1.1.0...1.1.1 |
| 222 | +[1.1.0]: https://github.com/SocketDev/socket-basics/compare/1.0.29...1.1.0 |
| 223 | +[1.0.29]: https://github.com/SocketDev/socket-basics/compare/1.0.28...1.0.29 |
| 224 | +[1.0.28]: https://github.com/SocketDev/socket-basics/compare/1.0.27...1.0.28 |
| 225 | +[1.0.27]: https://github.com/SocketDev/socket-basics/compare/1.0.26...1.0.27 |
| 226 | +[1.0.26]: https://github.com/SocketDev/socket-basics/compare/1.0.25...1.0.26 |
| 227 | +[1.0.25]: https://github.com/SocketDev/socket-basics/compare/1.0.24...1.0.25 |
| 228 | +[1.0.24]: https://github.com/SocketDev/socket-basics/compare/1.0.23...1.0.24 |
| 229 | +[1.0.23]: https://github.com/SocketDev/socket-basics/compare/1.0.21...1.0.23 |
| 230 | +[1.0.21]: https://github.com/SocketDev/socket-basics/compare/1.0.20...1.0.21 |
| 231 | +[1.0.20]: https://github.com/SocketDev/socket-basics/compare/1.0.11...1.0.20 |
| 232 | +[1.0.11]: https://github.com/SocketDev/socket-basics/compare/1.0.10...1.0.11 |
| 233 | +[1.0.10]: https://github.com/SocketDev/socket-basics/compare/1.0.9...1.0.10 |
| 234 | +[1.0.9]: https://github.com/SocketDev/socket-basics/compare/1.0.3...1.0.9 |
| 235 | +[1.0.3]: https://github.com/SocketDev/socket-basics/compare/1.0.2...1.0.3 |
| 236 | +[1.0.2]: https://github.com/SocketDev/socket-basics/commits/1.0.2 |
0 commit comments