website/docs: prepare 2022.4
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
5af7baf36c
commit
677d46d7fd
|
@ -36,10 +36,3 @@ jobs:
|
|||
body: "core: compile backend translations"
|
||||
delete-branch: true
|
||||
signoff: true
|
||||
- name: Enable Pull Request Automerge
|
||||
if: steps.cpr.outputs.pull-request-operation == 'created'
|
||||
uses: peter-evans/enable-pull-request-automerge@v2
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
|
||||
merge-method: squash
|
||||
|
|
|
@ -39,10 +39,3 @@ jobs:
|
|||
body: "web: Update Web API Client version"
|
||||
delete-branch: true
|
||||
signoff: true
|
||||
- name: Enable Pull Request Automerge
|
||||
if: steps.cpr.outputs.pull-request-operation == 'created'
|
||||
uses: peter-evans/enable-pull-request-automerge@v2
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
|
||||
merge-method: squash
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
| Version | Supported |
|
||||
| ---------- | ------------------ |
|
||||
| 2022.2.x | :white_check_mark: |
|
||||
| 2022.3.x | :white_check_mark: |
|
||||
| 2022.4.x | :white_check_mark: |
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
|
|
|
@ -21,6 +21,27 @@ slug: "2022.4"
|
|||
|
||||
## Minor changes/fixes
|
||||
|
||||
- core: add method to set key of token
|
||||
- core: add num_pk to group for applications that need a numerical group id
|
||||
- internal: disable HTML encoding in go-generated log messages
|
||||
- lifecycle: fix password and hostname in redis URI not properly quoted
|
||||
- outposts: check if docker ports should be mapped before comparing ports
|
||||
- policies: add policy log messages to test endpoints
|
||||
- providers/oauth2: map internal groups to GitHub teams in GHE OAuth emulation (#2497)
|
||||
- providers/oauth2: pass scope and other parameters to access policy request context
|
||||
- stages/email: allow overriding of destination email in plan context
|
||||
- stages/invitation: add invitation name
|
||||
- stages/prompt: filter rest_framework.fields.empty when field is not required
|
||||
- stages/prompt: fix non-required fields not allowing blank values
|
||||
- stages/prompt: set field default based on placeholder
|
||||
- tenants: add tenant-level attributes, applied to users based on request
|
||||
- web: live-convert to slug in fields where only slugs are allowed
|
||||
- web: migrate dropdowns to wizards (#2633)
|
||||
- web/admin: allow editing of invitations
|
||||
- web/admin: fix missing protocols on generated nginx config
|
||||
- web/admin: trigger update when provider wizard finishes
|
||||
- web/user: add column layouts
|
||||
|
||||
## Upgrading
|
||||
|
||||
This release does not introduce any new requirements.
|
||||
|
|
|
@ -168,6 +168,7 @@ module.exports = {
|
|||
type: "category",
|
||||
label: "Release Notes",
|
||||
items: [
|
||||
"releases/v2022.4",
|
||||
"releases/v2022.3",
|
||||
"releases/v2022.2",
|
||||
"releases/v2022.1",
|
||||
|
|
Reference in New Issue