-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[type:refactor] plugin-jwt SPI extension for parsing JWT payloads to ensure compatibility with older versions of JWT tools #5882
Conversation
…get method is not a POST request.
… compatibility with older versions of JWT tools
The field |
hi, just modify the sql, add alter sql |
I know how to add new table fields in the initialization script (db/init). How can I add new table fields in the upgrade script (db/upgrade)?
SKonst
***@***.***
…------------------ 原始邮件 ------------------
发件人: "apache/shenyu" ***@***.***>;
发送时间: 2025年1月6日(星期一) 下午2:11
***@***.***>;
***@***.******@***.***>;
主题: Re: [apache/shenyu] [type:refactor] plugin-jwt SPI extension for parsing JWT payloads to ensure compatibility with older versions of JWT tools (PR #5882)
The field handleType extended by plugin-jwt needs to be added to the database table.
hi, just modify the sql, add alter sql
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
example: |
The field handleType extended by plugin-jwt needs to be added to the database table.
Upgrade database initialization script and upgrade script.
Create upgrade script for 2.7.0 to 2.7.1 in db/upgrade directory
- Added a new SQL script named `2.7.0-upgrade-2.7.1-*.sql` to the `db/upgrade` directory.
- This script contains the necessary SQL statements to upgrade the database from version 2.7.0 to 2.7.1.
SKonst
***@***.***
…------------------ 原始邮件 ------------------
发件人: "apache/shenyu" ***@***.***>;
发送时间: 2025年1月6日(星期一) 下午2:38
***@***.***>;
***@***.******@***.***>;
主题: Re: [apache/shenyu] [type:refactor] plugin-jwt SPI extension for parsing JWT payloads to ensure compatibility with older versions of JWT tools (PR #5882)
I know how to add new table fields in the initialization script (db/init). How can I add new table fields in the upgrade script (db/upgrade)? SKonst @.***
…
------------------ 原始邮件 ------------------ 发件人: "apache/shenyu" @.>; 发送时间: 2025年1月6日(星期一) 下午2:11 @.>; @.@.>; 主题: Re: [apache/shenyu] [type:refactor] plugin-jwt SPI extension for parsing JWT payloads to ensure compatibility with older versions of JWT tools (PR #5882) The field handleType extended by plugin-jwt needs to be added to the database table. hi, just modify the sql, add alter sql — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>
example:
ALTER TABLE dashboard_user ADD COLUMN client_id varchar(32) NULL DEFAULT NULL COMMENT 'client id';
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
…e added to the database table. Upgrade database initialization script and upgrade script
goods to me. |
Make sure that:
./mvnw clean install -Dmaven.javadoc.skip=true
.