diff --git a/CHANGELOG.md b/CHANGELOG.md index addf3fe8f..cdb326330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,20 @@ # Changelog All notable changes to this project will be documented in this file. - ## [master] ### Added +### Changed + +### Removed + +### Fixed + +## [1.9.0] - 2023-09-16 + +### Added + - [doc] Add a section about metric API usage. - [crawler] Add a Github user Pull Requests crawler. - [config] Add an optional `crawlers` section to set global crawlers setting. @@ -13,17 +22,17 @@ All notable changes to this project will be documented in this file. - [cli] Add a CLI command to stream user Pull Requests. - [cli] Add a human readable flag to github-changes and github-user-changes commands. - [cli] Add a command to wipe any data created by a Crawler. +- [api] Add log debug statements to show OIDC token `oidc_user_claim` status. ### Changed - [metric] Changed the Peer strength metric computation to enable filtering by change author (#1037). - [api] Disable /health and /metrics request logging. -### Removed - ### Fixed - [crawler] Authentification token are no longer written in the service logs. +- [doc] Wrong OIDC callback URI. ## [1.8.0] - 2022-11-28 ### Added diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 321da6095..3f685e815 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,7 +44,7 @@ The API serves the web UI and the Monocle API. The web App must be built first b cd web && npm install && npm run build && cd - ``` -Then, ensure you have set the Monocle config file `config.yaml` (see [README.md](README.md#create-the-config-yaml-file)) and run: +Then, ensure you have set the Monocle config file `config.yaml` (see [README.md](README.md#configuration)) and run: ```ShellSession nix develop --command monocle-repl diff --git a/README.md b/README.md index c7c31044b..759bf920b 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ the configuration. ### Start docker-compose The docker-compose file is set to use the container image of the latest stable -release of Monocle (1.8.0). It is adviced to use the latest stable Monocle version. +release of Monocle (1.9.0). It is adviced to use the latest stable Monocle version. However, as our CI publishes the latest (devel) container image then it is possible to run the very last version. To do so set `COMPOSE_MONOCLE_VERSION` to `latest` in the `.env` file. diff --git a/docker-compose.yml b/docker-compose.yml index b505ac824..e8a06ac5b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,7 +15,7 @@ services: retries: 6 test: "curl --silent --fail localhost:8080/health || exit 1" timeout: "60s" - image: "quay.io/change-metrics/monocle:${COMPOSE_MONOCLE_VERSION:-1.8.0}" + image: "quay.io/change-metrics/monocle:${COMPOSE_MONOCLE_VERSION:-1.9.0}" ports: - "${COMPOSE_MONOCLE_API_ADDR:-0.0.0.0}:${COMPOSE_MONOCLE_API_PORT:-8080}:8080" restart: unless-stopped @@ -33,7 +33,7 @@ services: retries: 6 test: "curl --silent --fail localhost:9001/health || exit 1" timeout: "60s" - image: "quay.io/change-metrics/monocle:${COMPOSE_MONOCLE_VERSION:-1.8.0}" + image: "quay.io/change-metrics/monocle:${COMPOSE_MONOCLE_VERSION:-1.9.0}" restart: unless-stopped volumes: - "./etc:/etc/monocle:z" diff --git a/k8s/api-deployment.yaml b/k8s/api-deployment.yaml index 51b41e743..33c1da79f 100644 --- a/k8s/api-deployment.yaml +++ b/k8s/api-deployment.yaml @@ -29,7 +29,7 @@ spec: env: - name: MONOCLE_ELASTIC_URL value: http://elastic:9200 - image: quay.io/change-metrics/monocle:1.8.0 + image: quay.io/change-metrics/monocle:1.9.0 livenessProbe: httpGet: path: /health diff --git a/k8s/crawler-deployment.yaml b/k8s/crawler-deployment.yaml index 9ad52374a..897d6e17a 100644 --- a/k8s/crawler-deployment.yaml +++ b/k8s/crawler-deployment.yaml @@ -29,7 +29,7 @@ spec: env: - name: MONOCLE_PUBLIC_URL value: http://api:8080 - image: quay.io/change-metrics/monocle:1.8.0 + image: quay.io/change-metrics/monocle:1.9.0 name: crawler resources: {} livenessProbe: diff --git a/monocle.cabal b/monocle.cabal index e10559bef..aa039bb98 100644 --- a/monocle.cabal +++ b/monocle.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: monocle -version: 0.1.8.0 +version: 0.1.9.0 homepage: https://github.com/change-metrics/monocle#readme bug-reports: https://github.com/change-metrics/monocle/issues license: AGPL-3.0-only