Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b87994b
chore(deps): bump openai from 2.0.0 to 2.4.0 in /requirements/in
dependabot[bot] Oct 16, 2025
7377b6d
chore(deps): bump actions/setup-node from 5 to 6
dependabot[bot] Oct 17, 2025
d6778d8
Merge pull request #5 from FullStackWithLawrence/dependabot/github_ac…
lpm0073 Oct 20, 2025
e543bdd
Merge branch 'main' into alpha
actions-user Oct 20, 2025
7386032
Merge branch 'main' into alpha
actions-user Oct 20, 2025
a9d9bbd
Merge branch 'main' into alpha
actions-user Oct 20, 2025
1a70d7e
Merge pull request #13 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Oct 20, 2025
c1c4c23
chore(deps): bump python-dotenv from 1.1.1 to 1.2.1 in /requirements/in
dependabot[bot] Nov 1, 2025
25bf58e
chore(deps): bump isort from 6.0.1 to 7.0.0 in /requirements/in
dependabot[bot] Nov 1, 2025
7a3c3e0
chore(deps): bump tox from 4.31.0 to 4.32.0 in /requirements/in
dependabot[bot] Nov 1, 2025
bc4ec01
chore(deps): bump openai from 2.4.0 to 2.6.1 in /requirements/in
dependabot[bot] Nov 1, 2025
d6fd649
Merge pull request #14 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Nov 1, 2025
c13411c
Merge pull request #15 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Nov 1, 2025
98f9602
Merge pull request #16 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Nov 1, 2025
04fa30e
Merge branch 'alpha' into dependabot/pip/requirements/in/alpha/openai…
lpm0073 Nov 1, 2025
6162d2f
Merge pull request #18 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Nov 1, 2025
4607a4e
chore(deps): bump openai from 2.6.1 to 2.8.1 in /requirements/in
dependabot[bot] Dec 1, 2025
221d358
chore(deps): bump bandit from 1.8.6 to 1.9.2 in /requirements/in
dependabot[bot] Dec 1, 2025
daf291e
chore(deps): bump pre-commit from 4.3.0 to 4.5.0 in /requirements/in
dependabot[bot] Dec 1, 2025
c6f324a
chore(deps): bump coverage from 7.11.0 to 7.12.0 in /requirements/in
dependabot[bot] Dec 1, 2025
da19873
chore(deps): bump mypy from 1.18.2 to 1.19.0 in /requirements/in
dependabot[bot] Dec 1, 2025
e5b4e39
chore(deps): bump actions/checkout from 5 to 6
dependabot[bot] Dec 1, 2025
10e24ad
chore(deps): bump cycjimmy/semantic-release-action from 5 to 6
dependabot[bot] Dec 1, 2025
edbcfef
chore(deps): bump actions/cache from 4 to 5
dependabot[bot] Jan 1, 2026
d984aef
Merge pull request #20 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Apr 2, 2026
a60449e
Merge pull request #21 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Apr 2, 2026
d6654cb
Merge pull request #26 from FullStackWithLawrence/dependabot/github_a…
lpm0073 Apr 2, 2026
4ff90a0
Merge pull request #25 from FullStackWithLawrence/dependabot/github_a…
lpm0073 Apr 2, 2026
56c916b
Merge pull request #24 from FullStackWithLawrence/dependabot/github_a…
lpm0073 Apr 2, 2026
204e96b
Merge pull request #23 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Apr 2, 2026
c0efb9e
Merge pull request #22 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Apr 2, 2026
747feec
Merge pull request #19 from FullStackWithLawrence/dependabot/pip/requ…
lpm0073 Apr 2, 2026
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
8 changes: 4 additions & 4 deletions .github/workflows/precommitVersionBumps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false

Expand All @@ -33,15 +33,15 @@ jobs:
git pull origin next

- name: Cache NPM dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node

- name: Cache Python dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements/**') }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
SITE_PACKAGES_PATH: ${{ env.SITE_PACKAGES_PATH }}

- name: Setup Node.js environment
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: "20.9.0"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pullRequestController.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Semantic Release
uses: cycjimmy/semantic-release-action@v5
uses: cycjimmy/semantic-release-action@v6
id: semantic
with:
dry_run: true
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Check for changed files
id: file_changes
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pushMain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Merge main into next
uses: ./.github/actions/merge-branch
Expand Down Expand Up @@ -56,13 +56,13 @@ jobs:
GITHUB_TOKEN: ${{ secrets.PAT }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
id: checkout
with:
persist-credentials: false

- name: Semantic Release
uses: cycjimmy/semantic-release-action@v5
uses: cycjimmy/semantic-release-action@v6
id: semantic
with:
branches: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/semanticVersionBump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
PACKAGE_PATH: ${{ github.workspace }}/app/

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false

- name: Cache NPM dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -42,7 +42,7 @@ jobs:
python-version: "3.13"

- name: Setup Node.js environment
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: "20.9.0"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testsPython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Run Python tests
uses: ./.github/actions/tests/python
Expand Down
4 changes: 2 additions & 2 deletions requirements/in/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

-r constraints.in

python-dotenv==1.1.1
openai==2.0.0
openai==2.8.1
python-dotenv==1.2.1
PyMySQL==1.1.2
pydantic==2.12.2
12 changes: 6 additions & 6 deletions requirements/in/local.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ pip-tools==7.5.0
black==25.9.0
flake8==7.3.0
flake8-coding==1.3.2
pre-commit==4.3.0
isort==6.0.1
mypy==1.18.2
pre-commit==4.5.0
isort==7.0.0
mypy==1.19.0
pylint==4.0.1
bandit==1.8.6
bandit==1.9.2
pydocstringformatter==0.7.5
tox==4.31.0
tox==4.32.0
codespell==2.4.1
coverage==7.11.0
coverage==7.12.0
Loading