Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuancelin committed Aug 31, 2023
1 parent f9910a5 commit 76238f9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [16.8.0] - 2023-08-31

https://github.com/MAIF/otoroshi/milestone/71?closed=1
https://github.com/MAIF/otoroshi/compare/v16.7.0...v16.8.0
https://github.com/MAIF/otoroshi/releases/tag/v16.8.0

### Added

- allow different mutual auth. settings on play server and netty server (#1691)
- add endpoints to get otoroshi version and cluster infos (#1696)

### Fixed

- tls session issue with first request using TLS 1.3 (#1695)
- issue when consuming backoffice with the netty backend and tls (#1694)
- issue in el add on 16.7.0 with this kind of EL '${now.plus_ms(300000).epoch_ms}' (#1689)


## [16.7.0] - 2023-08-01

https://github.com/MAIF/otoroshi/milestone/70?closed=1
Expand Down
2 changes: 1 addition & 1 deletion scripts/changelog.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
curl -H "Authorization: bearer ${GITHUB_TOKEN}" \
-X POST -d '{"query":"{\n repository(owner: \"MAIF\", name: \"otoroshi\") {\n milestone(number: 70) {\n id\n issues(first: 500) {\n edges {\n node {\n number,\n title\n }\n }\n }\n }\n }\n}","variables":null}' https://api.github.com/graphql | jqn 'at("data.repository.milestone.issues.edges") | map(a => a.map(i => i.node.title + " (#" + i.node.number + ")" ))'
-X POST -d '{"query":"{\n repository(owner: \"MAIF\", name: \"otoroshi\") {\n milestone(number: 71) {\n id\n issues(first: 500) {\n edges {\n node {\n number,\n title\n }\n }\n }\n }\n }\n}","variables":null}' https://api.github.com/graphql | jqn 'at("data.repository.milestone.issues.edges") | map(a => a.map(i => i.node.title + " (#" + i.node.number + ")" ))'

# -X POST -d '{"query":"{\n repository(owner: \"MAIF\", name: \"otoroshi\") {\n milestone(number: 6) {\n id\n issues(first: 500, labels: [\"1.5.0-rc.4\"]) {\n edges {\n node {\n number,\n title\n }\n }\n }\n }\n }\n}","variables":null}' https://api.github.com/graphql | jqn 'at("data.repository.milestone.issues.edges") | map(a => a.map(i => i.node.title + " (#" + i.node.number + ")" ))'

0 comments on commit 76238f9

Please sign in to comment.