Skip to content

Commit

Permalink
Prepare the release of Otoroshi version 16.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuancelin committed Dec 13, 2022
1 parent b6250cd commit 726a492
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ 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.0.0-rc.1] - 2022-12-13

https://github.com/MAIF/otoroshi/milestone/53?closed=1
https://github.com/MAIF/otoroshi/compare/v1.5.20...v16.0.0-rc.1
https://github.com/MAIF/otoroshi/releases/tag/v16.0.0-rc.1

- ensure everything is wired for the rollout of the new proxy engine (#1161)
- Remove leveldb support (#466)
- Remove mongodb support (#467)
- introduce new versioning scheme (#1275)
- Improve externals vault secrets-ttl (#1339)
- admin login does not work anymore after upgrading webauthn-server-core to 2.1.0 (#1340)
- switch lettuce as default redis driver (#1363)
- remove StoredNgTargets (#1365)

## [1.5.20] - 2022-11-30

https://github.com/MAIF/otoroshi/milestone/51?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: 51) {\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: 53) {\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 726a492

Please sign in to comment.