Skip to content

Commit 4ab85a2

Browse files
authored
Merge pull request #105 from awslabs/feat/asharp-model
Fix SHELL directive in Dockerfile and small items in Mkdocs config
2 parents c628a2d + ed548a8 commit 4ab85a2

File tree

6 files changed

+22
-8
lines changed

6 files changed

+22
-8
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ helper_dockerfiles
55
quickstart
66
sample_report.txt
77
utils/cfn-to-cdk/cdk.out
8+
tests

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ utils/cfn-to-cdk/cdk.out/
55
utils/cfn-to-cdk/cfn_to_cdk/cfn_to_cdk_stack.py
66
ash_output
77
*.bak
8+
src/automated_security_helper/models/*generated*
9+
!tests/test_data/aggregated_results.txt
810

911
### macOS ###
1012
# General

CHANGELOG.md

+16-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# Automated Security Helper - CHANGELOG
22

3-
- [v1.5.0](#v150)
3+
- [v1.5.1](#v151)
44
- [What's Changed](#whats-changed)
5+
- [v1.5.0](#v150)
6+
- [What's Changed](#whats-changed-1)
57
- [New Contributors](#new-contributors)
68
- [v1.4.1](#v141)
7-
- [What's Changed](#whats-changed-1)
8-
- [v1.4.0](#v140)
99
- [What's Changed](#whats-changed-2)
10-
- [v1.3.3](#v133)
10+
- [v1.4.0](#v140)
1111
- [What's Changed](#whats-changed-3)
12-
- [v1.3.2](#v132)
12+
- [v1.3.3](#v133)
1313
- [What's Changed](#whats-changed-4)
14+
- [v1.3.2](#v132)
15+
- [What's Changed](#whats-changed-5)
1416
- [New Contributors](#new-contributors-1)
1517
- [1.3.0 - 2024-04-17](#130---2024-04-17)
1618
- [Features](#features)
@@ -24,6 +26,15 @@
2426
- [1.0.1-e-10Jan2023](#101-e-10jan2023)
2527

2628

29+
## v1.5.1
30+
31+
### What's Changed
32+
33+
- Fix SHELL directive in Dockerfile
34+
- Fix small items in Mkdocs config
35+
36+
**Full Changelog**: https://github.com/awslabs/automated-security-helper/compare/v1.5.0...v1.5.1
37+
2738
## v1.5.0
2839

2940
### What's Changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN poetry build
2929

3030

3131
FROM ${BASE_IMAGE} as ash
32-
SHELL ["bash", "-c"]
32+
SHELL ["/bin/bash", "-c"]
3333
ARG OFFLINE="NO"
3434
ARG OFFLINE_SEMGREP_RULESETS="p/ci"
3535

mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ theme:
5353
- content.code.select
5454
icon:
5555
logo: aws-logo-light
56-
repo: fontawesome/brands/gitlab
56+
repo: fontawesome/brands/github
5757
favicon: assets/images/aws-logo-light.svg
5858

5959
markdown_extensions:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33
[tool.poetry]
44
name = "automated-security-helper"
5-
version = "1.5.0"
5+
version = "1.5.1"
66
description = ""
77
authors = ["Nate Ferrell <nateferl@amazon.com>", "Nathan Bates <nbb@amazon.com>"]
88
license = "Apache-2.0"

0 commit comments

Comments
 (0)