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
1 change: 1 addition & 0 deletions .gitallowed
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ CidrIp: 0\.0\.0\.0/0
.*\.venv.*
.*node_modules.*
pom\.xml
poetry\.lock
5 changes: 2 additions & 3 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
maven 3.9.0
java corretto-21.0.2.14.1
python 3.12.7
poetry 1.8.2
python 3.12.12
poetry 2.2.1
shellcheck 0.9.0
direnv 2.32.2
actionlint 1.6.26
nodejs 20.19.0
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ guard-%:
fi

# install targets
install: install-python install-hooks install-node
install: install-python install-hooks

install-python:
poetry install

install-node:
npm ci

install-hooks: install-python
poetry run pre-commit install --install-hooks --overwrite

Expand Down
1 change: 0 additions & 1 deletion SAMtemplates/lambda_resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Parameters:
SplunkSubscriptionFilterRole:
Type: String
Description: Subscription filter role for sending logs to splunk
Default: none
SplunkDeliveryStream:
Type: String
Description: Splunk delivery stream
Expand Down
13 changes: 0 additions & 13 deletions package-lock.json

This file was deleted.

13 changes: 0 additions & 13 deletions package.json

This file was deleted.

1,408 changes: 756 additions & 652 deletions poetry.lock

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,11 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>5.5.0.6356</version>
</plugin>
</plugins>
</build>

Expand Down
20 changes: 9 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[project]
python = "3.12.7"
python = "^3.12"
name = "eps-FHIR-validator-lambda"

[tool.poetry]
name = "eps-FHIR-validator-lambda"
Expand All @@ -11,19 +12,16 @@ authors = [
]
readme = "README.md"
repository = "https://github.com/NHSDigital/eps-FHIR-validator-lambda"
package-mode = false

[tool.poetry.dependencies]
python = "3.12.7"
requests = "^2.32.3"
python = "^3.12"
flake8 = "^7.3.0"
requests = "^2.32.5"

[tool.poetry.dev-dependencies]
flake8 = "^7.1.2"
[tool.poetry.group.dev.dependencies]
pip-licenses = "^5.0.0"
pre-commit = "^4.1.0"
cfn-lint = "^1.27.0"
pre-commit = "^4.5.1"
cfn-lint = "^1.43.2"

[tool.poetry.scripts]

[build-system]
requires = ["poetry>=1.6"]
build-backend = "poetry.masonry.api"
87 changes: 0 additions & 87 deletions release.config.js

This file was deleted.

Loading