Commit Graph

7 Commits

Author SHA1 Message Date
Patrik 5dd7d306ba
feat: re-enable legacy client IDs (#3628)
This patch changes the primary key of the `hydra_client` table. We do not expect issues, as that table is probably not overly huge in any deployment. We do however highly recommend to test the migration performance on a staging environment with a similar database setup.
2023-09-19 11:20:23 +02:00
Arne Luenser f56e5fad74 fix: append /v2 to module path 2023-01-28 08:40:41 +01:00
Kevin Goslar d768cf6580
docs: standardize license headers (#3216) 2022-11-03 10:10:12 -05:00
zepatrik cc9d9e5b5d
refactor: make commands easier to consume 2022-10-06 10:54:04 +02:00
aeneasr da3e2b4438 refactor: `hydra token introspect` command
BREAKING CHANGE: The `hydra token introspect` command has been renamed to `hydra introspect token` and now supports structured output (JSON, tables, ...).
2022-09-07 08:10:31 +02:00
aeneasr d1f5a0efbd fix: compile errors 2022-09-07 08:10:31 +02:00
aeneasr 7482b77c71 refactor: rename `hydra clients update` command
BREAKING CHANGE: Command `hydra clients update` is now `hydra update client`. Additionally, all flags are now singular:

```patch
hydra update client [client-id] \
- --redirect-uris foo --redirect-uris bar \
+ --redirect-uri foo --redirect-uri bar \
- --grant-types foo --grant-types bar \
+ --grant-type foo --grant-type bar \
- --response-types foo --response-types bar \
+ --response-type foo --response-type bar \
- --allowed-cors-origins foo --allowed-cors-origins bar \
+ --allowed-cors-origin foo --allowed-cors-origin bar \
- --post-logout-callbacks foo --post-logout-callbacks bar \
+ --post-logout-callback foo --post-logout-callback bar
```
2022-09-07 08:10:31 +02:00