Skip to content

Commit

Permalink
Merge pull request #192 from open-zaak/release/1.7.1
Browse files Browse the repository at this point in the history
📝release 1.7.1
  • Loading branch information
Coperh authored Oct 4, 2024
2 parents 5fbe04c + f7be44e commit 20f186a
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = False
current_version = 1.7.0
current_version = 1.7.1

[bumpversion:file:README.rst]

Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,28 +124,28 @@ jobs:
path: image.tar
retention-days: 1

image_scan:
runs-on: ubuntu-latest
name: Scan docker image
needs:
- docker

steps:
- name: Download built image
uses: actions/download-artifact@v4
with:
name: docker-image
- name: Scan image with Trivy
uses: aquasecurity/trivy-action@master
with:
input: /github/workspace/image.tar # from download-artifact
format: 'sarif'
output: 'trivy-results-docker.sarif'
ignore-unfixed: true
- name: Upload results to GH Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: 'trivy-results-docker.sarif'
# image_scan:
# runs-on: ubuntu-latest
# name: Scan docker image
# needs:
# - docker
#
# steps:
# - name: Download built image
# uses: actions/download-artifact@v4
# with:
# name: docker-image
# - name: Scan image with Trivy
# uses: aquasecurity/trivy-action@master
# with:
# input: /github/workspace/image.tar # from download-artifact
# format: 'sarif'
# output: 'trivy-results-docker.sarif'
# ignore-unfixed: true
# - name: Upload results to GH Security tab
# uses: github/codeql-action/upload-sarif@v2
# with:
# sarif_file: 'trivy-results-docker.sarif'

publish:
needs:
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
Changes
=======

1.7.1 (2024-10-04)
------------------

**Bugfixes and QOL**

* [#190] change SameSite session cookie to lax to fix OIDC login not working
* [#190] fix API schema not showing caused by CSP errors
* [#185] remove the need to manually configure Site.domain for the 2FA app title
* [#188] change all setup configuration to disabled by default

**Documentation**

* [#188] update config env var descriptions
* [#190, #191] remove broken links from documentation


1.7.0 (2024-09-02)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Open Notificaties
=================

:Version: 1.7.0
:Version: 1.7.1
:Source: https://github.com/open-zaak/open-notificaties
:Keywords: zaken, zaakgericht werken, GEMMA, notificaties
:PythonVersion: 3.11
Expand Down
2 changes: 1 addition & 1 deletion deployment/single-server/open-notificaties.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

- role: open_notificaties_docker
vars:
opennotificaties_version: '1.7.0' # see https://hub.docker.com/r/openzaak/open-notificaties/tags
opennotificaties_version: '1.7.1' # see https://hub.docker.com/r/openzaak/open-notificaties/tags
opennotificaties_cache_db: 1
tags:
- replicas
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nrc",
"version": "1.7.0",
"version": "1.7.1",
"description": "Open Notificaties",
"main": "src/index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/nrc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

__all__ = ("celery_app",)

__version__ = "1.7.0"
__version__ = "1.7.1"
__author__ = "Maykin Media"
__homepage__ = "https://github.com/open-zaak/open-notificaties"

0 comments on commit 20f186a

Please sign in to comment.