Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
1b4afc9
ci: merge main to release (#8579)
rjsparks Feb 21, 2025
589ba7a
ci: merge release to main (#8777)
rjsparks Apr 3, 2025
8957afd
ci: merge main to release (#8778)
rjsparks Apr 3, 2025
2b7d4ad
ci: add update staging DB step to deploy workflow
NGPixel Apr 4, 2025
f9ca030
fix: unexpected chatlog links (#8774)
rudimatz Apr 9, 2025
a728cf2
test: fix apparent typo / tautological test (#8773)
jennifer-richards Apr 9, 2025
0348dbd
feat: new meeting registration implementation (#8408)
rpcross Apr 15, 2025
d5e3840
fix: 500->400 for bad /api/v1/ requests (#8802)
jennifer-richards Apr 15, 2025
86988eb
fix: remove credentials omit from agenda fetch call (#8779)
NGPixel Apr 15, 2025
be06d7c
chore: reorder migrations (#8804)
rjsparks Apr 16, 2025
3d69b2c
feat: add API for related emails (#8671)
rpcross Apr 16, 2025
4a5716e
ci: Update build workflow to handle AWS breaking things for no reason
NGPixel Apr 18, 2025
2404263
refactor: smtpd->aiosmtpd (#8805)
jennifer-richards Apr 21, 2025
2652c96
ci: update base image target version to 20250421T1600
rjsparks Apr 21, 2025
35db339
fix: lengthen liaison response_contact field (#8823)
rjsparks Apr 22, 2025
7be503c
feat: use new mail archive search API for review app lookups (#8788)
rpcross Apr 23, 2025
f4209ea
chore: k8s plumbing for mailarchive secret (#8827)
jennifer-richards Apr 23, 2025
1bede71
refactor: update secretariat dashboard style (#8140)
rpcross Apr 23, 2025
1a309b7
ci: Revert build.yml s3 sync command change
NGPixel Apr 23, 2025
3c8f972
chore: get django out of the forwarded header business (#8634)
jennifer-richards Apr 24, 2025
0735aef
ci: merge release to main (#8834)
rjsparks Apr 24, 2025
d528ff2
ci: merge main to release (#8836)
rjsparks Apr 24, 2025
1ccf83d
ci: increase timeout for staging db refresh
jennifer-richards Apr 24, 2025
f64470c
chore: fix typo in help_text (#8841)
jennifer-richards Apr 25, 2025
6f76df2
Put draft name first in subject of review email (#8830)
mnot Apr 25, 2025
3ece7bd
chore: tag db docker img with dump info via env (#8831)
jennifer-richards Apr 25, 2025
afa5783
fix: restore proceedings refresh task (#8842)
jennifer-richards Apr 25, 2025
c36ece8
chore(deps): bump the npm group across 1 directory with 3 updates (#8…
dependabot[bot] Apr 28, 2025
f67aa6b
chore(deps): bump actions/download-artifact from 4.1.9 to 4.3.0 (#8849)
dependabot[bot] Apr 28, 2025
31c6c32
chore(deps): bump the npm group in /dev/diff with 2 updates (#8759)
dependabot[bot] Apr 28, 2025
ae542fb
chore(deps): bump luxon in /dev/coverage-action in the npm group (#8757)
dependabot[bot] Apr 28, 2025
0a57e49
ci: merge release to main (#8851)
rjsparks Apr 28, 2025
279cbee
ci: merge main to release (#8852)
rjsparks Apr 28, 2025
f505ce4
chore(deps): pin django-celery-beat (#8870)
jennifer-richards Apr 30, 2025
efc1d01
ci: merge release to main (#8871)
rjsparks Apr 30, 2025
5283b1a
ci: merge main to release (#8872)
rjsparks Apr 30, 2025
5b78311
ci: update build.yml to allow chore for semver bump
NGPixel Apr 30, 2025
587ac13
ci: merge release to main (#8873)
rjsparks Apr 30, 2025
7765ff1
feat: set BEAT_CRON_STARTING_DEADLINE (#8876)
jennifer-richards May 1, 2025
a62387d
Make submission text less passive (#8845)
mnot May 1, 2025
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
20 changes: 17 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
token: ${{ github.token }}
branch: release
skipInvalidTags: true
patchList: fix, bugfix, perf, refactor, test, tests, chore

- name: Get Dev Version
if: ${{ github.ref_name != 'release' }}
Expand Down Expand Up @@ -185,7 +186,7 @@ jobs:

- name: Download a Coverage Results
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
uses: actions/download-artifact@v4.1.9
uses: actions/download-artifact@v4.3.0
with:
name: coverage

Expand Down Expand Up @@ -292,7 +293,7 @@ jobs:

- name: Download Coverage Results
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
uses: actions/download-artifact@v4.1.9
uses: actions/download-artifact@v4.3.0
with:
name: coverage

Expand Down Expand Up @@ -407,7 +408,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download a Release Artifact
uses: actions/download-artifact@v4.1.9
uses: actions/download-artifact@v4.3.0
with:
name: release-${{ env.PKG_VERSION }}

Expand Down Expand Up @@ -444,6 +445,19 @@ jobs:
PKG_VERSION: ${{needs.prepare.outputs.pkg_version}}

steps:
- name: Refresh Staging DB
uses: the-actions-org/workflow-dispatch@v4
with:
workflow: update-staging-db.yml
repo: ietf-tools/infra-k8s
ref: main
token: ${{ secrets.GH_INFRA_K8S_TOKEN }}
inputs: '{ "sourceDb":"datatracker" }'
wait-for-completion: true
wait-for-completion-timeout: 10m
wait-for-completion-interval: 20s
display-workflow-run-url: false

- name: Deploy to staging
uses: the-actions-org/workflow-dispatch@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion client/agenda/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const useAgendaStore = defineStore('agenda', {
meetingNumber = meetingData.meetingNumber
}

const resp = await fetch(`/api/meeting/${meetingNumber}/agenda-data`, { credentials: 'omit' })
const resp = await fetch(`/api/meeting/${meetingNumber}/agenda-data`)
if (!resp.ok) {
throw new Error(resp.statusText)
}
Expand Down
2 changes: 1 addition & 1 deletion dev/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/ietf-tools/datatracker-app-base:20250402T1611
FROM ghcr.io/ietf-tools/datatracker-app-base:20250421T1600
LABEL maintainer="IETF Tools Team <tools-discuss@ietf.org>"

ENV DEBIAN_FRONTEND=noninteractive
Expand Down
2 changes: 1 addition & 1 deletion dev/build/TARGET_BASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20250402T1611
20250421T1600
15 changes: 8 additions & 7 deletions dev/coverage-action/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dev/coverage-action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"lodash": "4.17.21",
"luxon": "3.5.0"
"luxon": "3.6.1"
}
}
Loading