You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

974 lines
34 KiB

Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
5 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
4 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
4 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add support for migrating from Gitlab (#9084) * First stab at a Gitlab migrations interface. * Modify JS to show migration for Gitlab * Properly strip out #gitlab tag from repo name * Working Gitlab migrations! Still need to figure out how to hide tokens/etc from showing up in opts.CloneAddr * Try #2 at trying to hide credentials. CloneAddr was being used as OriginalURL. Now passing OriginalURL through from the form and saving it. * Add go-gitlab dependency * Vendor go-gitlab * Use gitlab.BasicAuthClient Correct CloneURL. This should be functioning! Previous commits fixed "Migrated from" from including the migration credentials. * Replaced repoPath with repoID globally. RepoID is grabbed in NewGitlabDownloader * Logging touchup * Properly set private repo status. Properly set milestone deadline time. Consistently use Gitlab username for 'Name'. * Add go-gitlab vendor cache * Fix PR migrations: - Count of issues is kept to set a non-conflicting PR.ID - Bool is used to tell whether to fetch Issue or PR comments * Ensure merged PRs are closed and set with the proper time * Remove copyright and some commented code * Rip out '#gitlab' based self-hosted Gitlab support * Hide given credentials for migrated repos. CloneAddr was being saved as OriginalURL. Now passing OriginalURL through from the form and saving it in it's place * Use asset.URL directly, no point in parsing. Opened PRs should fall through to false. * Fix importing Milestones. Allow importing using Personal Tokens or anonymous access. * Fix Gitlab Milestone migration if DueDate isn't set * Empty Milestone due dates properly return nil, not zero time * Add GITLAB_READ_TOKEN to drone unit-test step * Add working gitlab_test.go. A Personal Access Token, given in env variable GITLAB_READ_TOKEN is required to run the test. * Fix linting issues * Add modified JS files * Remove pre-build JS files * Only merged PRs are marged as merged/closed * Test topics * Skip test if gitlab is inaccessible * Grab personal token from username, not password. Matches Github migration implementation * Add SetContext() to GitlabDownloader. * Checking Updated field in Issues. * Actually fetch Issue Updated time from Gitlab * Add Gitlab migration GetReviews() stub * Fix Patch and Clone URLs * check Updated too * fix mod * make vendor with go1.14 Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
4 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
  1. # cloud.google.com/go v0.46.3
  2. cloud.google.com/go/compute/metadata
  3. # code.gitea.io/gitea-vet v0.2.1
  4. ## explicit
  5. code.gitea.io/gitea-vet
  6. code.gitea.io/gitea-vet/checks
  7. # gitea.com/lunny/levelqueue v0.3.0
  8. ## explicit
  9. gitea.com/lunny/levelqueue
  10. # gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
  11. ## explicit
  12. gitea.com/macaron/binding
  13. # gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
  14. ## explicit
  15. gitea.com/macaron/cache
  16. gitea.com/macaron/cache/memcache
  17. gitea.com/macaron/cache/redis
  18. # gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
  19. ## explicit
  20. gitea.com/macaron/captcha
  21. # gitea.com/macaron/cors v0.0.0-20190826180238-95aec09ea8b4
  22. ## explicit
  23. gitea.com/macaron/cors
  24. # gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439
  25. ## explicit
  26. gitea.com/macaron/csrf
  27. # gitea.com/macaron/gzip v0.0.0-20200827120000-efa5e8477cf5
  28. ## explicit
  29. gitea.com/macaron/gzip
  30. # gitea.com/macaron/i18n v0.0.0-20200910171939-7bbf54aa4c76
  31. ## explicit
  32. gitea.com/macaron/i18n
  33. # gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a
  34. ## explicit
  35. gitea.com/macaron/inject
  36. # gitea.com/macaron/macaron v1.5.0
  37. ## explicit
  38. gitea.com/macaron/macaron
  39. # gitea.com/macaron/session v0.0.0-20200902202411-e3a87877db6e
  40. ## explicit
  41. gitea.com/macaron/session
  42. gitea.com/macaron/session/couchbase
  43. gitea.com/macaron/session/memcache
  44. gitea.com/macaron/session/mysql
  45. gitea.com/macaron/session/nodb
  46. gitea.com/macaron/session/postgres
  47. gitea.com/macaron/session/redis
  48. # gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7
  49. ## explicit
  50. gitea.com/macaron/toolbox
  51. # github.com/BurntSushi/toml v0.3.1
  52. ## explicit
  53. github.com/BurntSushi/toml
  54. # github.com/PuerkitoBio/goquery v1.5.1
  55. ## explicit
  56. github.com/PuerkitoBio/goquery
  57. # github.com/PuerkitoBio/purell v1.1.1
  58. github.com/PuerkitoBio/purell
  59. # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578
  60. github.com/PuerkitoBio/urlesc
  61. # github.com/RoaringBitmap/roaring v0.4.23
  62. github.com/RoaringBitmap/roaring
  63. # github.com/alecthomas/chroma v0.8.0
  64. ## explicit
  65. github.com/alecthomas/chroma
  66. github.com/alecthomas/chroma/formatters/html
  67. github.com/alecthomas/chroma/lexers
  68. github.com/alecthomas/chroma/lexers/a
  69. github.com/alecthomas/chroma/lexers/b
  70. github.com/alecthomas/chroma/lexers/c
  71. github.com/alecthomas/chroma/lexers/circular
  72. github.com/alecthomas/chroma/lexers/d
  73. github.com/alecthomas/chroma/lexers/e
  74. github.com/alecthomas/chroma/lexers/f
  75. github.com/alecthomas/chroma/lexers/g
  76. github.com/alecthomas/chroma/lexers/h
  77. github.com/alecthomas/chroma/lexers/i
  78. github.com/alecthomas/chroma/lexers/internal
  79. github.com/alecthomas/chroma/lexers/j
  80. github.com/alecthomas/chroma/lexers/k
  81. github.com/alecthomas/chroma/lexers/l
  82. github.com/alecthomas/chroma/lexers/m
  83. github.com/alecthomas/chroma/lexers/n
  84. github.com/alecthomas/chroma/lexers/o
  85. github.com/alecthomas/chroma/lexers/p
  86. github.com/alecthomas/chroma/lexers/q
  87. github.com/alecthomas/chroma/lexers/r
  88. github.com/alecthomas/chroma/lexers/s
  89. github.com/alecthomas/chroma/lexers/t
  90. github.com/alecthomas/chroma/lexers/v
  91. github.com/alecthomas/chroma/lexers/w
  92. github.com/alecthomas/chroma/lexers/x
  93. github.com/alecthomas/chroma/lexers/y
  94. github.com/alecthomas/chroma/lexers/z
  95. github.com/alecthomas/chroma/styles
  96. # github.com/andybalholm/brotli v0.0.0-20190621154722-5f990b63d2d6
  97. github.com/andybalholm/brotli
  98. # github.com/andybalholm/cascadia v1.1.0
  99. github.com/andybalholm/cascadia
  100. # github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  101. github.com/anmitsu/go-shlex
  102. # github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535
  103. github.com/asaskevich/govalidator
  104. # github.com/aymerick/douceur v0.2.0
  105. github.com/aymerick/douceur/css
  106. # github.com/beorn7/perks v1.0.1
  107. github.com/beorn7/perks/quantile
  108. # github.com/blevesearch/bleve v1.0.10
  109. ## explicit
  110. github.com/blevesearch/bleve
  111. github.com/blevesearch/bleve/analysis
  112. github.com/blevesearch/bleve/analysis/analyzer/custom
  113. github.com/blevesearch/bleve/analysis/analyzer/keyword
  114. github.com/blevesearch/bleve/analysis/analyzer/standard
  115. github.com/blevesearch/bleve/analysis/datetime/flexible
  116. github.com/blevesearch/bleve/analysis/datetime/optional
  117. github.com/blevesearch/bleve/analysis/lang/en
  118. github.com/blevesearch/bleve/analysis/token/lowercase
  119. github.com/blevesearch/bleve/analysis/token/porter
  120. github.com/blevesearch/bleve/analysis/token/stop
  121. github.com/blevesearch/bleve/analysis/token/unicodenorm
  122. github.com/blevesearch/bleve/analysis/tokenizer/single
  123. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  124. github.com/blevesearch/bleve/document
  125. github.com/blevesearch/bleve/geo
  126. github.com/blevesearch/bleve/index
  127. github.com/blevesearch/bleve/index/scorch
  128. github.com/blevesearch/bleve/index/scorch/mergeplan
  129. github.com/blevesearch/bleve/index/scorch/segment
  130. github.com/blevesearch/bleve/index/store
  131. github.com/blevesearch/bleve/index/store/boltdb
  132. github.com/blevesearch/bleve/index/store/gtreap
  133. github.com/blevesearch/bleve/index/upsidedown
  134. github.com/blevesearch/bleve/mapping
  135. github.com/blevesearch/bleve/numeric
  136. github.com/blevesearch/bleve/registry
  137. github.com/blevesearch/bleve/search
  138. github.com/blevesearch/bleve/search/collector
  139. github.com/blevesearch/bleve/search/facet
  140. github.com/blevesearch/bleve/search/highlight
  141. github.com/blevesearch/bleve/search/highlight/format/html
  142. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  143. github.com/blevesearch/bleve/search/highlight/highlighter/html
  144. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  145. github.com/blevesearch/bleve/search/query
  146. github.com/blevesearch/bleve/search/scorer
  147. github.com/blevesearch/bleve/search/searcher
  148. github.com/blevesearch/bleve/size
  149. # github.com/blevesearch/go-porterstemmer v1.0.3
  150. github.com/blevesearch/go-porterstemmer
  151. # github.com/blevesearch/mmap-go v1.0.2
  152. github.com/blevesearch/mmap-go
  153. # github.com/blevesearch/segment v0.9.0
  154. github.com/blevesearch/segment
  155. # github.com/blevesearch/snowballstem v0.9.0
  156. github.com/blevesearch/snowballstem
  157. github.com/blevesearch/snowballstem/english
  158. # github.com/blevesearch/zap/v11 v11.0.10
  159. github.com/blevesearch/zap/v11
  160. # github.com/blevesearch/zap/v12 v12.0.10
  161. github.com/blevesearch/zap/v12
  162. # github.com/blevesearch/zap/v13 v13.0.2
  163. github.com/blevesearch/zap/v13
  164. # github.com/blevesearch/zap/v14 v14.0.1
  165. github.com/blevesearch/zap/v14
  166. # github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc
  167. github.com/boombuler/barcode
  168. github.com/boombuler/barcode/qr
  169. github.com/boombuler/barcode/utils
  170. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  171. github.com/bradfitz/gomemcache/memcache
  172. # github.com/chris-ramon/douceur v0.2.0
  173. github.com/chris-ramon/douceur/parser
  174. # github.com/couchbase/gomemcached v0.0.0-20191004160342-7b5da2ec40b2
  175. ## explicit
  176. github.com/couchbase/gomemcached
  177. github.com/couchbase/gomemcached/client
  178. # github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85
  179. github.com/couchbase/goutils/logging
  180. github.com/couchbase/goutils/scramsha
  181. # github.com/couchbase/vellum v1.0.2
  182. github.com/couchbase/vellum
  183. github.com/couchbase/vellum/levenshtein
  184. github.com/couchbase/vellum/regexp
  185. github.com/couchbase/vellum/utf8
  186. # github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
  187. github.com/couchbaselabs/go-couchbase
  188. # github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d
  189. ## explicit
  190. # github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
  191. ## explicit
  192. # github.com/cznic/strutil v0.0.0-20181122101858-275e90344537
  193. ## explicit
  194. # github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964
  195. github.com/danwakefield/fnmatch
  196. # github.com/davecgh/go-spew v1.1.1
  197. github.com/davecgh/go-spew/spew
  198. # github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc
  199. ## explicit
  200. github.com/denisenkom/go-mssqldb
  201. github.com/denisenkom/go-mssqldb/internal/cp
  202. github.com/denisenkom/go-mssqldb/internal/decimal
  203. github.com/denisenkom/go-mssqldb/internal/querytext
  204. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  205. ## explicit
  206. github.com/dgrijalva/jwt-go
  207. # github.com/dlclark/regexp2 v1.2.1
  208. ## explicit
  209. github.com/dlclark/regexp2
  210. github.com/dlclark/regexp2/syntax
  211. # github.com/dsnet/compress v0.0.1
  212. github.com/dsnet/compress
  213. github.com/dsnet/compress/bzip2
  214. github.com/dsnet/compress/bzip2/internal/sais
  215. github.com/dsnet/compress/internal
  216. github.com/dsnet/compress/internal/errors
  217. github.com/dsnet/compress/internal/prefix
  218. # github.com/dustin/go-humanize v1.0.0
  219. ## explicit
  220. github.com/dustin/go-humanize
  221. # github.com/editorconfig/editorconfig-core-go/v2 v2.1.1
  222. ## explicit
  223. github.com/editorconfig/editorconfig-core-go/v2
  224. # github.com/emirpasic/gods v1.12.0
  225. ## explicit
  226. github.com/emirpasic/gods/containers
  227. github.com/emirpasic/gods/lists
  228. github.com/emirpasic/gods/lists/arraylist
  229. github.com/emirpasic/gods/trees
  230. github.com/emirpasic/gods/trees/binaryheap
  231. github.com/emirpasic/gods/utils
  232. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  233. ## explicit
  234. github.com/ethantkoenig/rupture
  235. # github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51
  236. ## explicit
  237. # github.com/facebookgo/stack v0.0.0-20160209184415-751773369052
  238. ## explicit
  239. # github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870
  240. ## explicit
  241. # github.com/fatih/color v1.9.0
  242. github.com/fatih/color
  243. # github.com/fatih/structtag v1.2.0
  244. github.com/fatih/structtag
  245. # github.com/fsnotify/fsnotify v1.4.9
  246. github.com/fsnotify/fsnotify
  247. # github.com/gliderlabs/ssh v0.2.2
  248. ## explicit
  249. github.com/gliderlabs/ssh
  250. # github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a
  251. ## explicit
  252. github.com/glycerine/go-unsnap-stream
  253. # github.com/go-enry/go-enry/v2 v2.5.2
  254. ## explicit
  255. github.com/go-enry/go-enry/v2
  256. github.com/go-enry/go-enry/v2/data
  257. github.com/go-enry/go-enry/v2/data/rule
  258. github.com/go-enry/go-enry/v2/internal/tokenizer
  259. github.com/go-enry/go-enry/v2/internal/tokenizer/flex
  260. github.com/go-enry/go-enry/v2/regex
  261. # github.com/go-enry/go-oniguruma v1.2.1
  262. github.com/go-enry/go-oniguruma
  263. # github.com/go-git/gcfg v1.5.0
  264. github.com/go-git/gcfg
  265. github.com/go-git/gcfg/scanner
  266. github.com/go-git/gcfg/token
  267. github.com/go-git/gcfg/types
  268. # github.com/go-git/go-billy/v5 v5.0.0
  269. ## explicit
  270. github.com/go-git/go-billy/v5
  271. github.com/go-git/go-billy/v5/helper/chroot
  272. github.com/go-git/go-billy/v5/helper/polyfill
  273. github.com/go-git/go-billy/v5/osfs
  274. github.com/go-git/go-billy/v5/util
  275. # github.com/go-git/go-git/v5 v5.1.0
  276. ## explicit
  277. github.com/go-git/go-git/v5
  278. github.com/go-git/go-git/v5/config
  279. github.com/go-git/go-git/v5/internal/revision
  280. github.com/go-git/go-git/v5/internal/url
  281. github.com/go-git/go-git/v5/plumbing
  282. github.com/go-git/go-git/v5/plumbing/cache
  283. github.com/go-git/go-git/v5/plumbing/color
  284. github.com/go-git/go-git/v5/plumbing/filemode
  285. github.com/go-git/go-git/v5/plumbing/format/commitgraph
  286. github.com/go-git/go-git/v5/plumbing/format/config
  287. github.com/go-git/go-git/v5/plumbing/format/diff
  288. github.com/go-git/go-git/v5/plumbing/format/gitignore
  289. github.com/go-git/go-git/v5/plumbing/format/idxfile
  290. github.com/go-git/go-git/v5/plumbing/format/index
  291. github.com/go-git/go-git/v5/plumbing/format/objfile
  292. github.com/go-git/go-git/v5/plumbing/format/packfile
  293. github.com/go-git/go-git/v5/plumbing/format/pktline
  294. github.com/go-git/go-git/v5/plumbing/object
  295. github.com/go-git/go-git/v5/plumbing/object/commitgraph
  296. github.com/go-git/go-git/v5/plumbing/protocol/packp
  297. github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
  298. github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
  299. github.com/go-git/go-git/v5/plumbing/revlist
  300. github.com/go-git/go-git/v5/plumbing/storer
  301. github.com/go-git/go-git/v5/plumbing/transport
  302. github.com/go-git/go-git/v5/plumbing/transport/client
  303. github.com/go-git/go-git/v5/plumbing/transport/file
  304. github.com/go-git/go-git/v5/plumbing/transport/git
  305. github.com/go-git/go-git/v5/plumbing/transport/http
  306. github.com/go-git/go-git/v5/plumbing/transport/internal/common
  307. github.com/go-git/go-git/v5/plumbing/transport/server
  308. github.com/go-git/go-git/v5/plumbing/transport/ssh
  309. github.com/go-git/go-git/v5/storage
  310. github.com/go-git/go-git/v5/storage/filesystem
  311. github.com/go-git/go-git/v5/storage/filesystem/dotgit
  312. github.com/go-git/go-git/v5/storage/memory
  313. github.com/go-git/go-git/v5/utils/binary
  314. github.com/go-git/go-git/v5/utils/diff
  315. github.com/go-git/go-git/v5/utils/ioutil
  316. github.com/go-git/go-git/v5/utils/merkletrie
  317. github.com/go-git/go-git/v5/utils/merkletrie/filesystem
  318. github.com/go-git/go-git/v5/utils/merkletrie/index
  319. github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
  320. github.com/go-git/go-git/v5/utils/merkletrie/noder
  321. # github.com/go-openapi/analysis v0.19.10
  322. github.com/go-openapi/analysis
  323. github.com/go-openapi/analysis/internal
  324. # github.com/go-openapi/errors v0.19.6
  325. github.com/go-openapi/errors
  326. # github.com/go-openapi/inflect v0.19.0
  327. github.com/go-openapi/inflect
  328. # github.com/go-openapi/jsonpointer v0.19.3
  329. github.com/go-openapi/jsonpointer
  330. # github.com/go-openapi/jsonreference v0.19.4
  331. github.com/go-openapi/jsonreference
  332. # github.com/go-openapi/loads v0.19.5
  333. github.com/go-openapi/loads
  334. github.com/go-openapi/loads/fmts
  335. # github.com/go-openapi/runtime v0.19.20
  336. github.com/go-openapi/runtime
  337. github.com/go-openapi/runtime/logger
  338. github.com/go-openapi/runtime/middleware
  339. github.com/go-openapi/runtime/middleware/denco
  340. github.com/go-openapi/runtime/middleware/header
  341. github.com/go-openapi/runtime/middleware/untyped
  342. github.com/go-openapi/runtime/security
  343. # github.com/go-openapi/spec v0.19.8
  344. github.com/go-openapi/spec
  345. # github.com/go-openapi/strfmt v0.19.5
  346. github.com/go-openapi/strfmt
  347. # github.com/go-openapi/swag v0.19.9
  348. github.com/go-openapi/swag
  349. # github.com/go-openapi/validate v0.19.10
  350. github.com/go-openapi/validate
  351. # github.com/go-redis/redis v6.15.2+incompatible
  352. ## explicit
  353. github.com/go-redis/redis
  354. github.com/go-redis/redis/internal
  355. github.com/go-redis/redis/internal/consistenthash
  356. github.com/go-redis/redis/internal/hashtag
  357. github.com/go-redis/redis/internal/pool
  358. github.com/go-redis/redis/internal/proto
  359. github.com/go-redis/redis/internal/util
  360. # github.com/go-sql-driver/mysql v1.5.0
  361. ## explicit
  362. github.com/go-sql-driver/mysql
  363. # github.com/go-stack/stack v1.8.0
  364. github.com/go-stack/stack
  365. # github.com/go-swagger/go-swagger v0.25.0
  366. ## explicit
  367. github.com/go-swagger/go-swagger/cmd/swagger
  368. github.com/go-swagger/go-swagger/cmd/swagger/commands
  369. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  370. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  371. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  372. github.com/go-swagger/go-swagger/codescan
  373. github.com/go-swagger/go-swagger/generator
  374. github.com/go-swagger/go-swagger/scan
  375. # github.com/go-testfixtures/testfixtures/v3 v3.4.0
  376. ## explicit
  377. github.com/go-testfixtures/testfixtures/v3
  378. # github.com/gobwas/glob v0.2.3
  379. ## explicit
  380. github.com/gobwas/glob
  381. github.com/gobwas/glob/compiler
  382. github.com/gobwas/glob/match
  383. github.com/gobwas/glob/syntax
  384. github.com/gobwas/glob/syntax/ast
  385. github.com/gobwas/glob/syntax/lexer
  386. github.com/gobwas/glob/util/runes
  387. github.com/gobwas/glob/util/strings
  388. # github.com/gogs/chardet v0.0.0-20191104214054-4b6791f73a28
  389. ## explicit
  390. github.com/gogs/chardet
  391. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  392. ## explicit
  393. github.com/gogs/cron
  394. # github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe
  395. github.com/golang-sql/civil
  396. # github.com/golang/gddo v0.0.0-20190419222130-af0f2af80721
  397. github.com/golang/gddo/httputil
  398. github.com/golang/gddo/httputil/header
  399. # github.com/golang/protobuf v1.4.2
  400. github.com/golang/protobuf/proto
  401. # github.com/golang/snappy v0.0.1
  402. github.com/golang/snappy
  403. # github.com/google/go-github/v32 v32.1.0
  404. ## explicit
  405. github.com/google/go-github/v32/github
  406. # github.com/google/go-querystring v1.0.0
  407. github.com/google/go-querystring/query
  408. # github.com/google/uuid v1.1.1
  409. ## explicit
  410. github.com/google/uuid
  411. # github.com/gorilla/context v1.1.1
  412. ## explicit
  413. github.com/gorilla/context
  414. # github.com/gorilla/css v1.0.0
  415. github.com/gorilla/css/scanner
  416. # github.com/gorilla/handlers v1.4.2
  417. github.com/gorilla/handlers
  418. # github.com/gorilla/mux v1.7.3
  419. github.com/gorilla/mux
  420. # github.com/gorilla/securecookie v1.1.1
  421. github.com/gorilla/securecookie
  422. # github.com/gorilla/sessions v1.2.0
  423. github.com/gorilla/sessions
  424. # github.com/hashicorp/go-cleanhttp v0.5.1
  425. github.com/hashicorp/go-cleanhttp
  426. # github.com/hashicorp/go-retryablehttp v0.6.7
  427. ## explicit
  428. github.com/hashicorp/go-retryablehttp
  429. # github.com/hashicorp/go-version v0.0.0-00010101000000-000000000000 => github.com/6543/go-version v1.2.3
  430. ## explicit
  431. github.com/hashicorp/go-version
  432. # github.com/hashicorp/hcl v1.0.0
  433. github.com/hashicorp/hcl
  434. github.com/hashicorp/hcl/hcl/ast
  435. github.com/hashicorp/hcl/hcl/parser
  436. github.com/hashicorp/hcl/hcl/printer
  437. github.com/hashicorp/hcl/hcl/scanner
  438. github.com/hashicorp/hcl/hcl/strconv
  439. github.com/hashicorp/hcl/hcl/token
  440. github.com/hashicorp/hcl/json/parser
  441. github.com/hashicorp/hcl/json/scanner
  442. github.com/hashicorp/hcl/json/token
  443. # github.com/huandu/xstrings v1.3.0
  444. ## explicit
  445. github.com/huandu/xstrings
  446. # github.com/imdario/mergo v0.3.9
  447. github.com/imdario/mergo
  448. # github.com/issue9/assert v1.3.2
  449. ## explicit
  450. # github.com/issue9/identicon v1.0.1
  451. ## explicit
  452. github.com/issue9/identicon
  453. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  454. ## explicit
  455. github.com/jaytaylor/html2text
  456. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  457. github.com/jbenet/go-context/io
  458. # github.com/jessevdk/go-flags v1.4.0
  459. github.com/jessevdk/go-flags
  460. # github.com/jmhodges/levigo v1.0.0
  461. ## explicit
  462. # github.com/json-iterator/go v1.1.10
  463. github.com/json-iterator/go
  464. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  465. ## explicit
  466. github.com/kballard/go-shellquote
  467. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  468. github.com/kevinburke/ssh_config
  469. # github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4
  470. ## explicit
  471. github.com/keybase/go-crypto/brainpool
  472. github.com/keybase/go-crypto/cast5
  473. github.com/keybase/go-crypto/curve25519
  474. github.com/keybase/go-crypto/ed25519
  475. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  476. github.com/keybase/go-crypto/openpgp
  477. github.com/keybase/go-crypto/openpgp/armor
  478. github.com/keybase/go-crypto/openpgp/ecdh
  479. github.com/keybase/go-crypto/openpgp/elgamal
  480. github.com/keybase/go-crypto/openpgp/errors
  481. github.com/keybase/go-crypto/openpgp/packet
  482. github.com/keybase/go-crypto/openpgp/s2k
  483. github.com/keybase/go-crypto/rsa
  484. # github.com/klauspost/compress v1.10.11
  485. ## explicit
  486. github.com/klauspost/compress/flate
  487. github.com/klauspost/compress/fse
  488. github.com/klauspost/compress/gzip
  489. github.com/klauspost/compress/huff0
  490. github.com/klauspost/compress/snappy
  491. github.com/klauspost/compress/zstd
  492. github.com/klauspost/compress/zstd/internal/xxhash
  493. # github.com/klauspost/cpuid v1.3.1
  494. github.com/klauspost/cpuid
  495. # github.com/klauspost/pgzip v1.2.1
  496. github.com/klauspost/pgzip
  497. # github.com/kr/pretty v0.2.0
  498. github.com/kr/pretty
  499. # github.com/kr/text v0.2.0
  500. github.com/kr/text
  501. # github.com/lafriks/xormstore v1.3.2
  502. ## explicit
  503. github.com/lafriks/xormstore
  504. github.com/lafriks/xormstore/util
  505. # github.com/lib/pq v1.8.1-0.20200908161135-083382b7e6fc
  506. ## explicit
  507. github.com/lib/pq
  508. github.com/lib/pq/oid
  509. github.com/lib/pq/scram
  510. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  511. ## explicit
  512. github.com/lunny/dingtalk_webhook
  513. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  514. github.com/lunny/log
  515. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  516. github.com/lunny/nodb
  517. github.com/lunny/nodb/config
  518. github.com/lunny/nodb/store
  519. github.com/lunny/nodb/store/driver
  520. github.com/lunny/nodb/store/goleveldb
  521. # github.com/magiconair/properties v1.8.1
  522. github.com/magiconair/properties
  523. # github.com/mailru/easyjson v0.7.1
  524. github.com/mailru/easyjson
  525. github.com/mailru/easyjson/buffer
  526. github.com/mailru/easyjson/jlexer
  527. github.com/mailru/easyjson/jwriter
  528. # github.com/markbates/goth v1.61.2
  529. ## explicit
  530. github.com/markbates/goth
  531. github.com/markbates/goth/gothic
  532. github.com/markbates/goth/providers/bitbucket
  533. github.com/markbates/goth/providers/discord
  534. github.com/markbates/goth/providers/dropbox
  535. github.com/markbates/goth/providers/facebook
  536. github.com/markbates/goth/providers/gitea
  537. github.com/markbates/goth/providers/github
  538. github.com/markbates/goth/providers/gitlab
  539. github.com/markbates/goth/providers/google
  540. github.com/markbates/goth/providers/nextcloud
  541. github.com/markbates/goth/providers/openidConnect
  542. github.com/markbates/goth/providers/twitter
  543. github.com/markbates/goth/providers/yandex
  544. # github.com/mattn/go-colorable v0.1.6
  545. github.com/mattn/go-colorable
  546. # github.com/mattn/go-isatty v0.0.12
  547. ## explicit
  548. github.com/mattn/go-isatty
  549. # github.com/mattn/go-runewidth v0.0.7
  550. github.com/mattn/go-runewidth
  551. # github.com/mattn/go-sqlite3 v1.14.0
  552. ## explicit
  553. github.com/mattn/go-sqlite3
  554. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  555. github.com/matttproud/golang_protobuf_extensions/pbutil
  556. # github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81
  557. ## explicit
  558. github.com/mgechev/dots
  559. # github.com/mgechev/revive v1.0.2
  560. ## explicit
  561. github.com/mgechev/revive/formatter
  562. github.com/mgechev/revive/lint
  563. github.com/mgechev/revive/rule
  564. # github.com/mholt/archiver/v3 v3.3.0
  565. ## explicit
  566. github.com/mholt/archiver/v3
  567. # github.com/microcosm-cc/bluemonday v1.0.3-0.20191119130333-0a75d7616912
  568. ## explicit
  569. github.com/microcosm-cc/bluemonday
  570. # github.com/minio/md5-simd v1.1.0
  571. github.com/minio/md5-simd
  572. # github.com/minio/minio-go/v7 v7.0.4
  573. ## explicit
  574. github.com/minio/minio-go/v7
  575. github.com/minio/minio-go/v7/pkg/credentials
  576. github.com/minio/minio-go/v7/pkg/encrypt
  577. github.com/minio/minio-go/v7/pkg/lifecycle
  578. github.com/minio/minio-go/v7/pkg/notification
  579. github.com/minio/minio-go/v7/pkg/replication
  580. github.com/minio/minio-go/v7/pkg/s3utils
  581. github.com/minio/minio-go/v7/pkg/set
  582. github.com/minio/minio-go/v7/pkg/signer
  583. github.com/minio/minio-go/v7/pkg/sse
  584. github.com/minio/minio-go/v7/pkg/tags
  585. # github.com/minio/sha256-simd v0.1.1
  586. github.com/minio/sha256-simd
  587. # github.com/mitchellh/go-homedir v1.1.0
  588. ## explicit
  589. github.com/mitchellh/go-homedir
  590. # github.com/mitchellh/mapstructure v1.3.2
  591. github.com/mitchellh/mapstructure
  592. # github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
  593. github.com/modern-go/concurrent
  594. # github.com/modern-go/reflect2 v1.0.1
  595. github.com/modern-go/reflect2
  596. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  597. github.com/mrjones/oauth
  598. # github.com/mschoch/smat v0.2.0
  599. github.com/mschoch/smat
  600. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  601. ## explicit
  602. github.com/msteinert/pam
  603. # github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
  604. ## explicit
  605. github.com/nfnt/resize
  606. # github.com/niklasfasching/go-org v1.3.2
  607. ## explicit
  608. github.com/niklasfasching/go-org/org
  609. # github.com/nwaples/rardecode v1.0.0
  610. github.com/nwaples/rardecode
  611. # github.com/olekukonko/tablewriter v0.0.4
  612. github.com/olekukonko/tablewriter
  613. # github.com/oliamb/cutter v0.2.2
  614. ## explicit
  615. github.com/oliamb/cutter
  616. # github.com/olivere/elastic/v7 v7.0.9
  617. ## explicit
  618. github.com/olivere/elastic/v7
  619. github.com/olivere/elastic/v7/config
  620. github.com/olivere/elastic/v7/uritemplates
  621. # github.com/pelletier/go-toml v1.8.0
  622. github.com/pelletier/go-toml
  623. # github.com/philhofer/fwd v1.0.0
  624. github.com/philhofer/fwd
  625. # github.com/pierrec/lz4 v2.0.5+incompatible
  626. github.com/pierrec/lz4
  627. github.com/pierrec/lz4/internal/xxh32
  628. # github.com/pkg/errors v0.9.1
  629. ## explicit
  630. github.com/pkg/errors
  631. # github.com/pmezard/go-difflib v1.0.0
  632. github.com/pmezard/go-difflib/difflib
  633. # github.com/pquerna/otp v1.2.0
  634. ## explicit
  635. github.com/pquerna/otp
  636. github.com/pquerna/otp/hotp
  637. github.com/pquerna/otp/totp
  638. # github.com/prometheus/client_golang v1.1.0
  639. ## explicit
  640. github.com/prometheus/client_golang/prometheus
  641. github.com/prometheus/client_golang/prometheus/internal
  642. github.com/prometheus/client_golang/prometheus/promhttp
  643. # github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  644. github.com/prometheus/client_model/go
  645. # github.com/prometheus/common v0.6.0
  646. github.com/prometheus/common/expfmt
  647. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  648. github.com/prometheus/common/model
  649. # github.com/prometheus/procfs v0.0.4
  650. ## explicit
  651. github.com/prometheus/procfs
  652. github.com/prometheus/procfs/internal/fs
  653. github.com/prometheus/procfs/internal/util
  654. # github.com/quasoft/websspi v1.0.0
  655. ## explicit
  656. github.com/quasoft/websspi
  657. github.com/quasoft/websspi/secctx
  658. # github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001
  659. ## explicit
  660. # github.com/rs/xid v1.2.1
  661. github.com/rs/xid
  662. # github.com/sergi/go-diff v1.1.0
  663. ## explicit
  664. github.com/sergi/go-diff/diffmatchpatch
  665. # github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b
  666. ## explicit
  667. github.com/shurcooL/httpfs/vfsutil
  668. # github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
  669. ## explicit
  670. github.com/shurcooL/vfsgen
  671. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  672. github.com/siddontang/go-snappy/snappy
  673. # github.com/spf13/afero v1.3.2
  674. github.com/spf13/afero
  675. github.com/spf13/afero/mem
  676. # github.com/spf13/cast v1.3.1
  677. github.com/spf13/cast
  678. # github.com/spf13/jwalterweatherman v1.1.0
  679. github.com/spf13/jwalterweatherman
  680. # github.com/spf13/pflag v1.0.5
  681. github.com/spf13/pflag
  682. # github.com/spf13/viper v1.7.0
  683. github.com/spf13/viper
  684. # github.com/steveyen/gtreap v0.1.0
  685. github.com/steveyen/gtreap
  686. # github.com/stretchr/testify v1.6.1
  687. ## explicit
  688. github.com/stretchr/testify/assert
  689. github.com/stretchr/testify/require
  690. # github.com/subosito/gotenv v1.2.0
  691. github.com/subosito/gotenv
  692. # github.com/syndtr/goleveldb v1.0.0
  693. github.com/syndtr/goleveldb/leveldb
  694. github.com/syndtr/goleveldb/leveldb/cache
  695. github.com/syndtr/goleveldb/leveldb/comparer
  696. github.com/syndtr/goleveldb/leveldb/errors
  697. github.com/syndtr/goleveldb/leveldb/filter
  698. github.com/syndtr/goleveldb/leveldb/iterator
  699. github.com/syndtr/goleveldb/leveldb/journal
  700. github.com/syndtr/goleveldb/leveldb/memdb
  701. github.com/syndtr/goleveldb/leveldb/opt
  702. github.com/syndtr/goleveldb/leveldb/storage
  703. github.com/syndtr/goleveldb/leveldb/table
  704. github.com/syndtr/goleveldb/leveldb/util
  705. # github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481
  706. ## explicit
  707. # github.com/tinylib/msgp v1.1.2
  708. ## explicit
  709. github.com/tinylib/msgp/msgp
  710. # github.com/toqueteos/webbrowser v1.2.0
  711. github.com/toqueteos/webbrowser
  712. # github.com/tstranex/u2f v1.0.0
  713. ## explicit
  714. github.com/tstranex/u2f
  715. # github.com/ulikunitz/xz v0.5.6
  716. github.com/ulikunitz/xz
  717. github.com/ulikunitz/xz/internal/hash
  718. github.com/ulikunitz/xz/internal/xlog
  719. github.com/ulikunitz/xz/lzma
  720. # github.com/unknwon/com v1.0.1
  721. ## explicit
  722. github.com/unknwon/com
  723. # github.com/unknwon/i18n v0.0.0-20200823051745-09abd91c7f2c
  724. ## explicit
  725. github.com/unknwon/i18n
  726. # github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  727. ## explicit
  728. github.com/unknwon/paginater
  729. # github.com/urfave/cli v1.20.0
  730. ## explicit
  731. github.com/urfave/cli
  732. # github.com/willf/bitset v1.1.10
  733. github.com/willf/bitset
  734. # github.com/xanzy/go-gitlab v0.37.0
  735. ## explicit
  736. github.com/xanzy/go-gitlab
  737. # github.com/xanzy/ssh-agent v0.2.1
  738. github.com/xanzy/ssh-agent
  739. # github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
  740. github.com/xi2/xz
  741. # github.com/yohcop/openid-go v1.0.0
  742. ## explicit
  743. github.com/yohcop/openid-go
  744. # github.com/yuin/goldmark v1.2.1
  745. ## explicit
  746. github.com/yuin/goldmark
  747. github.com/yuin/goldmark/ast
  748. github.com/yuin/goldmark/extension
  749. github.com/yuin/goldmark/extension/ast
  750. github.com/yuin/goldmark/parser
  751. github.com/yuin/goldmark/renderer
  752. github.com/yuin/goldmark/renderer/html
  753. github.com/yuin/goldmark/text
  754. github.com/yuin/goldmark/util
  755. # github.com/yuin/goldmark-highlighting v0.0.0-20200307114337-60d527fdb691
  756. ## explicit
  757. github.com/yuin/goldmark-highlighting
  758. # github.com/yuin/goldmark-meta v0.0.0-20191126180153-f0638e958b60
  759. ## explicit
  760. github.com/yuin/goldmark-meta
  761. # go.etcd.io/bbolt v1.3.5
  762. go.etcd.io/bbolt
  763. # go.jolheiser.com/pwn v0.0.3
  764. ## explicit
  765. go.jolheiser.com/pwn
  766. # go.mongodb.org/mongo-driver v1.3.5
  767. go.mongodb.org/mongo-driver/bson
  768. go.mongodb.org/mongo-driver/bson/bsoncodec
  769. go.mongodb.org/mongo-driver/bson/bsonoptions
  770. go.mongodb.org/mongo-driver/bson/bsonrw
  771. go.mongodb.org/mongo-driver/bson/bsontype
  772. go.mongodb.org/mongo-driver/bson/primitive
  773. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  774. # golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
  775. ## explicit
  776. golang.org/x/crypto/acme
  777. golang.org/x/crypto/acme/autocert
  778. golang.org/x/crypto/argon2
  779. golang.org/x/crypto/bcrypt
  780. golang.org/x/crypto/blake2b
  781. golang.org/x/crypto/blowfish
  782. golang.org/x/crypto/cast5
  783. golang.org/x/crypto/chacha20
  784. golang.org/x/crypto/curve25519
  785. golang.org/x/crypto/ed25519
  786. golang.org/x/crypto/ed25519/internal/edwards25519
  787. golang.org/x/crypto/internal/subtle
  788. golang.org/x/crypto/md4
  789. golang.org/x/crypto/openpgp
  790. golang.org/x/crypto/openpgp/armor
  791. golang.org/x/crypto/openpgp/elgamal
  792. golang.org/x/crypto/openpgp/errors
  793. golang.org/x/crypto/openpgp/packet
  794. golang.org/x/crypto/openpgp/s2k
  795. golang.org/x/crypto/pbkdf2
  796. golang.org/x/crypto/poly1305
  797. golang.org/x/crypto/scrypt
  798. golang.org/x/crypto/ssh
  799. golang.org/x/crypto/ssh/agent
  800. golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
  801. golang.org/x/crypto/ssh/knownhosts
  802. # golang.org/x/mod v0.3.0
  803. golang.org/x/mod/module
  804. golang.org/x/mod/semver
  805. # golang.org/x/net v0.0.0-20200904194848-62affa334b73
  806. ## explicit
  807. golang.org/x/net/context
  808. golang.org/x/net/context/ctxhttp
  809. golang.org/x/net/html
  810. golang.org/x/net/html/atom
  811. golang.org/x/net/html/charset
  812. golang.org/x/net/http/httpguts
  813. golang.org/x/net/idna
  814. golang.org/x/net/internal/socks
  815. golang.org/x/net/proxy
  816. golang.org/x/net/publicsuffix
  817. # golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
  818. ## explicit
  819. golang.org/x/oauth2
  820. golang.org/x/oauth2/google
  821. golang.org/x/oauth2/internal
  822. golang.org/x/oauth2/jws
  823. golang.org/x/oauth2/jwt
  824. # golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae
  825. ## explicit
  826. golang.org/x/sys/cpu
  827. golang.org/x/sys/internal/unsafeheader
  828. golang.org/x/sys/unix
  829. golang.org/x/sys/windows
  830. golang.org/x/sys/windows/svc
  831. golang.org/x/sys/windows/svc/debug
  832. # golang.org/x/text v0.3.3
  833. ## explicit
  834. golang.org/x/text/encoding
  835. golang.org/x/text/encoding/charmap
  836. golang.org/x/text/encoding/htmlindex
  837. golang.org/x/text/encoding/internal
  838. golang.org/x/text/encoding/internal/identifier
  839. golang.org/x/text/encoding/japanese
  840. golang.org/x/text/encoding/korean
  841. golang.org/x/text/encoding/simplifiedchinese
  842. golang.org/x/text/encoding/traditionalchinese
  843. golang.org/x/text/encoding/unicode
  844. golang.org/x/text/internal/language
  845. golang.org/x/text/internal/language/compact
  846. golang.org/x/text/internal/tag
  847. golang.org/x/text/internal/utf8internal
  848. golang.org/x/text/language
  849. golang.org/x/text/runes
  850. golang.org/x/text/secure/bidirule
  851. golang.org/x/text/transform
  852. golang.org/x/text/unicode/bidi
  853. golang.org/x/text/unicode/norm
  854. golang.org/x/text/width
  855. # golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e
  856. ## explicit
  857. golang.org/x/time/rate
  858. # golang.org/x/tools v0.0.0-20200825202427-b303f430e36d
  859. ## explicit
  860. golang.org/x/tools/cover
  861. golang.org/x/tools/go/analysis
  862. golang.org/x/tools/go/analysis/internal/analysisflags
  863. golang.org/x/tools/go/analysis/internal/facts
  864. golang.org/x/tools/go/analysis/unitchecker
  865. golang.org/x/tools/go/ast/astutil
  866. golang.org/x/tools/go/buildutil
  867. golang.org/x/tools/go/gcexportdata
  868. golang.org/x/tools/go/internal/cgo
  869. golang.org/x/tools/go/internal/gcimporter
  870. golang.org/x/tools/go/internal/packagesdriver
  871. golang.org/x/tools/go/loader
  872. golang.org/x/tools/go/packages
  873. golang.org/x/tools/go/types/objectpath
  874. golang.org/x/tools/imports
  875. golang.org/x/tools/internal/analysisinternal
  876. golang.org/x/tools/internal/event
  877. golang.org/x/tools/internal/event/core
  878. golang.org/x/tools/internal/event/keys
  879. golang.org/x/tools/internal/event/label
  880. golang.org/x/tools/internal/fastwalk
  881. golang.org/x/tools/internal/gocommand
  882. golang.org/x/tools/internal/gopathwalk
  883. golang.org/x/tools/internal/imports
  884. golang.org/x/tools/internal/lsp/fuzzy
  885. golang.org/x/tools/internal/packagesinternal
  886. golang.org/x/tools/internal/typesinternal
  887. # golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
  888. golang.org/x/xerrors
  889. golang.org/x/xerrors/internal
  890. # google.golang.org/appengine v1.6.6
  891. google.golang.org/appengine
  892. google.golang.org/appengine/internal
  893. google.golang.org/appengine/internal/app_identity
  894. google.golang.org/appengine/internal/base
  895. google.golang.org/appengine/internal/datastore
  896. google.golang.org/appengine/internal/log
  897. google.golang.org/appengine/internal/modules
  898. google.golang.org/appengine/internal/remote_api
  899. google.golang.org/appengine/internal/urlfetch
  900. google.golang.org/appengine/urlfetch
  901. # google.golang.org/protobuf v1.25.0
  902. google.golang.org/protobuf/encoding/prototext
  903. google.golang.org/protobuf/encoding/protowire
  904. google.golang.org/protobuf/internal/descfmt
  905. google.golang.org/protobuf/internal/descopts
  906. google.golang.org/protobuf/internal/detrand
  907. google.golang.org/protobuf/internal/encoding/defval
  908. google.golang.org/protobuf/internal/encoding/messageset
  909. google.golang.org/protobuf/internal/encoding/tag
  910. google.golang.org/protobuf/internal/encoding/text
  911. google.golang.org/protobuf/internal/errors
  912. google.golang.org/protobuf/internal/fieldsort
  913. google.golang.org/protobuf/internal/filedesc
  914. google.golang.org/protobuf/internal/filetype
  915. google.golang.org/protobuf/internal/flags
  916. google.golang.org/protobuf/internal/genid
  917. google.golang.org/protobuf/internal/impl
  918. google.golang.org/protobuf/internal/mapsort
  919. google.golang.org/protobuf/internal/pragma
  920. google.golang.org/protobuf/internal/set
  921. google.golang.org/protobuf/internal/strs
  922. google.golang.org/protobuf/internal/version
  923. google.golang.org/protobuf/proto
  924. google.golang.org/protobuf/reflect/protoreflect
  925. google.golang.org/protobuf/reflect/protoregistry
  926. google.golang.org/protobuf/runtime/protoiface
  927. google.golang.org/protobuf/runtime/protoimpl
  928. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  929. ## explicit
  930. gopkg.in/alexcesaro/quotedprintable.v3
  931. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  932. ## explicit
  933. gopkg.in/asn1-ber.v1
  934. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  935. ## explicit
  936. gopkg.in/gomail.v2
  937. # gopkg.in/ini.v1 v1.61.0
  938. ## explicit
  939. gopkg.in/ini.v1
  940. # gopkg.in/ldap.v3 v3.0.2
  941. ## explicit
  942. gopkg.in/ldap.v3
  943. # gopkg.in/warnings.v0 v0.1.2
  944. gopkg.in/warnings.v0
  945. # gopkg.in/yaml.v2 v2.3.0
  946. ## explicit
  947. gopkg.in/yaml.v2
  948. # gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
  949. gopkg.in/yaml.v3
  950. # mvdan.cc/xurls/v2 v2.1.0
  951. ## explicit
  952. mvdan.cc/xurls/v2
  953. # strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
  954. ## explicit
  955. strk.kbt.io/projects/go/libravatar
  956. # xorm.io/builder v0.3.7
  957. ## explicit
  958. xorm.io/builder
  959. # xorm.io/xorm v1.0.5
  960. ## explicit
  961. xorm.io/xorm
  962. xorm.io/xorm/caches
  963. xorm.io/xorm/contexts
  964. xorm.io/xorm/convert
  965. xorm.io/xorm/core
  966. xorm.io/xorm/dialects
  967. xorm.io/xorm/internal/json
  968. xorm.io/xorm/internal/statements
  969. xorm.io/xorm/internal/utils
  970. xorm.io/xorm/log
  971. xorm.io/xorm/names
  972. xorm.io/xorm/schemas
  973. xorm.io/xorm/tags
  974. # github.com/hashicorp/go-version => github.com/6543/go-version v1.2.3