From 3bbfaf1c43ac296a0f942c2d760c5e4df1d727c6 Mon Sep 17 00:00:00 2001 From: Johannes Koch Date: Sat, 6 Apr 2024 10:24:39 +0200 Subject: [PATCH 1/2] added beta_dpop attribute --- src/schema.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/schema.js b/src/schema.js index 0c14dd5..01dcab5 100644 --- a/src/schema.js +++ b/src/schema.js @@ -257,6 +257,10 @@ const attributes = { parents: ['jwt'], type: 'boolean', }, + beta_dpop: { + parents: ['jwt'], + type: 'boolean', + }, beta_metrics: { parents: ['settings'], type: 'boolean', From d0bbeb98761ce17a8b17013720632b03f70d3195 Mon Sep 17 00:00:00 2001 From: Johannes Koch Date: Wed, 10 Apr 2024 08:19:19 +0200 Subject: [PATCH 2/2] changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa5e0c4..eb3590b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Added - completion for `bearer` attribute for `jwt` block [#128](https://github.com/avenga/couper-vscode/pull/128) +- completion for `beta_dpop` attribute for `jwt` block [#137](https://github.com/avenga/couper-vscode/pull/137) ---