Skip to content

Commit 3d8dc8e

Browse files
Merge pull request #1140 from NHSDigital/develop
ERSSUP-69932 APIM-R 1.25 Cut
2 parents ec35d31 + bbed326 commit 3d8dc8e

File tree

10 files changed

+615
-582
lines changed

10 files changed

+615
-582
lines changed

package-lock.json

Lines changed: 264 additions & 348 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"license": "MIT",
1313
"homepage": "https://github.com/NHSDigital/e-referrals-service-api",
1414
"dependencies": {
15-
"@redocly/cli": "^1.0.0-beta.130"
15+
"@redocly/cli": "^1.0.2"
1616
},
1717
"devDependencies": {
1818
"apigeetool": "^0.16.1",

poetry.lock

Lines changed: 160 additions & 121 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ pyyaml = "^6.0"
2626
docopt = "^0.6.2"
2727
jsonpath-rw = "^1.4.0"
2828
semver = "^3.0.1"
29-
gitpython = "^3.1.32"
29+
gitpython = "^3.1.36"
3030
lxml = "^4.7.1"
3131
xmlformatter = "^0.2.4"
3232
pytest-check = "^2.2.1"
3333
requests = "^2.27.1"
34-
openapi-core = "0.14.2"
34+
openapi-core = "0.17.1"
3535

3636

3737
[tool.poetry.dev-dependencies]
3838
flake8 = "^5.0.4"
39-
black = "^23.7"
39+
black = "^23.9"
4040
pip-licenses = "^4.3.2"
4141
jinja2 = "^3.1.2"
4242
pytest = "^6.1.2"
43-
pytest-asyncio = "^0.14.0"
43+
pytest-asyncio = "^0.20.3"
4444
pytest-nhsd-apim = "^3.3.5"
4545

4646
[tool.poetry.scripts]

sandbox/package-lock.json

Lines changed: 70 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sandbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"lodash": "^4.17.20"
1818
},
1919
"devDependencies": {
20-
"eslint": "^8.47.0"
20+
"eslint": "^8.49.0"
2121
}
2222
}

scripts/rhel_setup_environment.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ BASHSTAMP="# APIM_DEV-VM"
2424
#Adding pyenv configuration to .bash_profile
2525
echo "Adding pyenv configuration to .bash_profile ..."
2626
if ! grep -Fxq "$BASHSTAMP" $HOME/.bash_profile ; then
27-
cat <<EOF >> $HOME/.bash_profile
27+
cat <<EOF >> $HOME/.bash_profile
2828
2929
$BASHSTAMP
3030
if ! grep -Fxq "$BASHSTAMP" $HOME/.bashrc ; then
@@ -82,7 +82,7 @@ fi
8282
echo "Installing python 3.8.12 with pyenv ..."
8383
if pyenv versions | grep -Fq "3.8.12" ; then
8484
echo "Pyenv has already got Python 3.8.12 installed."
85-
else
85+
else
8686
if pyenv install 3.8.12 ; then
8787
echo "Pyenv installed Python 3.8.12 successfully."
8888
else
@@ -96,7 +96,7 @@ fi
9696
echo "Creating Apigee environment with Python 3.8.12 ..."
9797
if pyenv versions | grep -q ".*apigee" ; then
9898
echo "A Python virtualenv named 'apigee' already exists."
99-
else
99+
else
100100
if pyenv virtualenv 3.8.12 apigee ; then
101101
echo "A Python 3.8.12 virtualenv named 'apigee' was created."
102102
else
@@ -140,8 +140,8 @@ fi
140140
echo "Installing poetry ..."
141141
if poetry -V 2> /dev/null ; then
142142
echo "Poetry is already installed on apigee environment."
143-
else
144-
if pip install poetry ; then
143+
else
144+
if pip install poetry==1.5.1 ; then
145145
echo "Poetry was installed on apigee environment."
146146
else
147147
echo "Poetry was NOT installed on apigee environment."

0 commit comments

Comments
 (0)