Skip to content

Commit 1d81b72

Browse files
Release v3.4.5 (#307)
* Update package.json * Update package-lock.json * Update __init__.py * Bump urllib3 in /backend in the pip group across 1 directory (#306) Bumps the pip group with 1 update in the /backend directory: [urllib3](https://github.com/urllib3/urllib3). Updates `urllib3` from 2.5.0 to 2.6.0 - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@2.5.0...2.6.0) --- updated-dependencies: - dependency-name: urllib3 dependency-version: 2.6.0 dependency-type: direct:production dependency-group: pip ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump sqlparse from 0.5.3 to 0.5.4 (#305) Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.5.3 to 0.5.4. - [Changelog](https://github.com/andialbrecht/sqlparse/blob/master/CHANGELOG) - [Commits](andialbrecht/sqlparse@0.5.3...0.5.4) --- updated-dependencies: - dependency-name: sqlparse dependency-version: 0.5.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump rpds-py from 0.29.0 to 0.30.0 (#304) Bumps [rpds-py](https://github.com/crate-py/rpds) from 0.29.0 to 0.30.0. - [Release notes](https://github.com/crate-py/rpds/releases) - [Commits](crate-py/rpds@v0.29.0...v0.30.0) --- updated-dependencies: - dependency-name: rpds-py dependency-version: 0.30.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update Pipfile(s) * Update package-lock.json * bump urllib3 version * Update launch.json --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e4b7a33 commit 1d81b72

File tree

7 files changed

+159
-159
lines changed

7 files changed

+159
-159
lines changed

.vscode/launch.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"version": "3.4.4",
2+
"version": "3.4.5",
33
"configurations": [
44

55
{
66
"name": "Python: Bookings API",
77
"type": "python",
88
"request": "launch",
9-
"pythonPath": "/Users/conorheffron/.local/share/virtualenvs/booking-sys-kyjdh7L0/bin/python3", // path to your virtual environment's python
9+
"pythonPath": "/Users/conorheffron/.local/share/virtualenvs/booking-sys-kyjdh7L0/bin/python3",
1010
"program": "${workspaceFolder}/backend/manage.py",
1111
"args": [
1212
"runserver",
13-
"8000", // or any other port you wish to use
13+
"8000",
1414
],
1515
"env": {
1616
"PYTHONUNBUFFERED": "1",
@@ -23,7 +23,7 @@
2323
"name": "Django Run All Tests",
2424
"type": "python",
2525
"request": "launch",
26-
"pythonPath": "/Users/conorheffron/.local/share/virtualenvs/booking-sys-kyjdh7L0/bin/python3", // path to your virtual environment's python
26+
"pythonPath": "/Users/conorheffron/.local/share/virtualenvs/booking-sys-kyjdh7L0/bin/python3",
2727
"program": "${workspaceFolder}/backend/manage.py",
2828
"args": [
2929
"test",

backend/Pipfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ rcssmin = "==1.2.1"
5252
referencing = "==0.37.0"
5353
requests = "==2.32.5"
5454
rjsmin = "==1.2.4"
55-
rpds-py = "==0.29.0"
56-
sqlparse = "==0.5.3"
55+
rpds-py = "==0.30.0"
56+
sqlparse = "==0.5.4"
5757
tomlkit = "==0.13.3"
5858
typing-extensions = "==4.15.0"
5959
uritemplate = "==4.2.0"
60-
urllib3 = "==2.5.0"
60+
urllib3 = "==2.6.0"
6161
virtualenv = "==20.35.4"
6262
whitenoise = "==6.11.0"
6363

backend/Pipfile.lock

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

backend/hr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""
1010

1111
__title__ = 'booking-sys'
12-
__version__ = '3.4.4'
12+
__version__ = '3.4.5'
1313
__author__ = 'Conor Heffron'
1414

1515
# Version synonym

backend/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ rcssmin==1.2.1
4444
referencing==0.37.0
4545
requests==2.32.5
4646
rjsmin==1.2.4
47-
rpds-py==0.29.0
47+
rpds-py==0.30.0
4848
setuptools==80.9.0
49-
sqlparse==0.5.3
49+
sqlparse==0.5.4
5050
tomlkit==0.13.3
5151
typing_extensions==4.15.0
5252
uritemplate==4.2.0
53-
urllib3==2.5.0
53+
urllib3==2.6.0
5454
virtualenv==20.35.4
5555
whitenoise==6.11.0

frontend/package-lock.json

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

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@conorheffron/booking-sys-frontend",
3-
"version": "3.4.4",
3+
"version": "3.4.5",
44
"private": false,
55
"license": "GPL-3.0-or-later",
66
"description": "React + TypeScript frontend for Booking System",

0 commit comments

Comments
 (0)