-
Notifications
You must be signed in to change notification settings - Fork 3.3k
v2.7.2 #806
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
Conversation
add aliyun DNS plugin
add aliyun DNS plugin
Allow a top-level custom `stream` configuration file to be loaded.
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. - [Release notes](https://github.com/isaacs/ini/releases) - [Commits](npm/ini@v1.3.5...v1.3.8) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. - [Release notes](https://github.com/isaacs/ini/releases) - [Commits](npm/ini@v1.3.5...v1.3.8) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. - [Release notes](https://github.com/isaacs/ini/releases) - [Commits](npm/ini@v1.3.5...v1.3.8) Signed-off-by: dependabot[bot] <[email protected]>
…ling Better custom certificate handling
Bump ini from 1.3.5 to 1.3.8 in /docs
Bump ini from 1.3.5 to 1.3.8 in /test
…-1.3.8 Bump ini from 1.3.5 to 1.3.8 in /backend
Fix dead hosts verification count
allow custom stream conf
Add Gandi Live DNS to certbot-dns-plugins.js
Docker Image for build 1 is available on DockerHub as |
Hello, from 2.7.1 i got an error log : [1/6/2021] [1:53:46 PM] [Migrate ] › ℹ info Current database version: 20201014143841 [1/6/2021] [1:53:46 PM] [Global ] › ✖ error The migration directory is corrupt, the following files are missing: 20200522113248_openid_connect.js, 20200522144240_openid_allowed_users.js have a nice day, and thanks for this awesome app |
This is because you have used a docker image from the OIDC branch or PR. There is a migration file in there that has been run on your database. As a result, you have to revert these database changes in order to use the main branch. This is the risk with using code that is not merged yet. This is the migration you'll need to revert. Connect to your database: ALTER TABLE proxy_host DROP COLUMN openidc_restrict_users_enabled;
ALTER TABLE proxy_host DROP COLUMN openidc_allowed_users;
DELETE FROM migrations WHERE name="20200522144240_openid_allowed_users.js"; |
I also forgot that this migration will also need reverting: ALTER TABLE proxy_host DROP COLUMN openidc_enabled;
ALTER TABLE proxy_host DROP COLUMN openidc_redirect_uri;
ALTER TABLE proxy_host DROP COLUMN openidc_discovery;
ALTER TABLE proxy_host DROP COLUMN openidc_auth_method;
ALTER TABLE proxy_host DROP COLUMN openidc_client_id;
ALTER TABLE proxy_host DROP COLUMN openidc_client_secret;
DELETE FROM migrations WHERE name="20200522113248_openid_connect.js"; |
No description provided.