mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
7caa43ab23
# Which Problems Are Solved The action v2 messages were didn't contain anything providing security for the sent content. # How the Problems Are Solved Each Target now has a SigningKey, which can also be newly generated through the API and returned at creation and through the Get-Endpoints. There is now a HTTP header "Zitadel-Signature", which is generated with the SigningKey and Payload, and also contains a timestamp to check with a tolerance if the message took to long to sent. # Additional Changes The functionality to create and check the signature is provided in the pkg/actions package, and can be reused in the SDK. # Additional Context Closes #7924 --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
72 lines
2.5 KiB
JSON
72 lines
2.5 KiB
JSON
{
|
|
"name": "zitadel-docs",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"docusaurus": "docusaurus",
|
|
"start": "docusaurus start",
|
|
"start:api": "yarn run generate && docusaurus start",
|
|
"build": "yarn run generate && NODE_OPTIONS=--max-old-space-size=8192 docusaurus build",
|
|
"swizzle": "docusaurus swizzle",
|
|
"deploy": "docusaurus deploy",
|
|
"clear": "docusaurus clear",
|
|
"serve": "docusaurus serve",
|
|
"write-translations": "docusaurus write-translations",
|
|
"write-heading-ids": "docusaurus write-heading-ids",
|
|
"generate": "yarn run generate:grpc && yarn run generate:apidocs && yarn run generate:configdocs",
|
|
"generate:grpc": "buf generate ../proto",
|
|
"generate:apidocs": "docusaurus gen-api-docs all",
|
|
"generate:configdocs": "cp -r ../cmd/defaults.yaml ./docs/self-hosting/manage/configure/ && cp -r ../cmd/setup/steps.yaml ./docs/self-hosting/manage/configure/",
|
|
"generate:re-gen": "yarn generate:clean-all && yarn generate",
|
|
"generate:clean-all": "docusaurus clean-api-docs all"
|
|
},
|
|
"dependencies": {
|
|
"@bufbuild/buf": "^1.14.0",
|
|
"@docusaurus/core": "3.4.0",
|
|
"@docusaurus/preset-classic": "3.4.0",
|
|
"@docusaurus/theme-mermaid": "3.4.0",
|
|
"@docusaurus/theme-search-algolia": "3.4.0",
|
|
"@headlessui/react": "^1.7.4",
|
|
"@heroicons/react": "^2.0.13",
|
|
"@mdx-js/react": "^3.0.0",
|
|
"@swc/core": "^1.3.74",
|
|
"autoprefixer": "^10.4.13",
|
|
"clsx": "^1.2.1",
|
|
"docusaurus-plugin-image-zoom": "^1.0.1",
|
|
"docusaurus-plugin-openapi-docs": "3.0.1",
|
|
"docusaurus-theme-github-codeblock": "^2.0.2",
|
|
"docusaurus-theme-openapi-docs": "3.0.1",
|
|
"mdx-mermaid": "^2.0.0",
|
|
"mermaid": "^10.9.1",
|
|
"postcss": "^8.4.31",
|
|
"prism-react-renderer": "^2.1.0",
|
|
"raw-loader": "^4.0.2",
|
|
"react": "^18.2.0",
|
|
"react-copy-to-clipboard": "^5.1.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-google-charts": "^5.2.1",
|
|
"react-player": "^2.15.1",
|
|
"sitemap": "7.1.1",
|
|
"swc-loader": "^0.2.3",
|
|
"wait-on": "6.0.1"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.5%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@docusaurus/module-type-aliases": "3.4.0",
|
|
"@docusaurus/types": "3.4.0",
|
|
"tailwindcss": "^3.2.4"
|
|
},
|
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
}
|