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.

967 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-20190822004228-474e714e2223
  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. ## explicit
  63. github.com/RoaringBitmap/roaring
  64. # github.com/alecthomas/chroma v0.8.0
  65. ## explicit
  66. github.com/alecthomas/chroma
  67. github.com/alecthomas/chroma/formatters/html
  68. github.com/alecthomas/chroma/lexers
  69. github.com/alecthomas/chroma/lexers/a
  70. github.com/alecthomas/chroma/lexers/b
  71. github.com/alecthomas/chroma/lexers/c
  72. github.com/alecthomas/chroma/lexers/circular
  73. github.com/alecthomas/chroma/lexers/d
  74. github.com/alecthomas/chroma/lexers/e
  75. github.com/alecthomas/chroma/lexers/f
  76. github.com/alecthomas/chroma/lexers/g
  77. github.com/alecthomas/chroma/lexers/h
  78. github.com/alecthomas/chroma/lexers/i
  79. github.com/alecthomas/chroma/lexers/internal
  80. github.com/alecthomas/chroma/lexers/j
  81. github.com/alecthomas/chroma/lexers/k
  82. github.com/alecthomas/chroma/lexers/l
  83. github.com/alecthomas/chroma/lexers/m
  84. github.com/alecthomas/chroma/lexers/n
  85. github.com/alecthomas/chroma/lexers/o
  86. github.com/alecthomas/chroma/lexers/p
  87. github.com/alecthomas/chroma/lexers/q
  88. github.com/alecthomas/chroma/lexers/r
  89. github.com/alecthomas/chroma/lexers/s
  90. github.com/alecthomas/chroma/lexers/t
  91. github.com/alecthomas/chroma/lexers/v
  92. github.com/alecthomas/chroma/lexers/w
  93. github.com/alecthomas/chroma/lexers/x
  94. github.com/alecthomas/chroma/lexers/y
  95. github.com/alecthomas/chroma/lexers/z
  96. github.com/alecthomas/chroma/styles
  97. # github.com/andybalholm/brotli v0.0.0-20190621154722-5f990b63d2d6
  98. github.com/andybalholm/brotli
  99. # github.com/andybalholm/cascadia v1.1.0
  100. github.com/andybalholm/cascadia
  101. # github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  102. github.com/anmitsu/go-shlex
  103. # github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535
  104. github.com/asaskevich/govalidator
  105. # github.com/aymerick/douceur v0.2.0
  106. github.com/aymerick/douceur/css
  107. # github.com/beorn7/perks v1.0.1
  108. github.com/beorn7/perks/quantile
  109. # github.com/blevesearch/bleve v1.0.7
  110. ## explicit
  111. github.com/blevesearch/bleve
  112. github.com/blevesearch/bleve/analysis
  113. github.com/blevesearch/bleve/analysis/analyzer/custom
  114. github.com/blevesearch/bleve/analysis/analyzer/keyword
  115. github.com/blevesearch/bleve/analysis/analyzer/standard
  116. github.com/blevesearch/bleve/analysis/datetime/flexible
  117. github.com/blevesearch/bleve/analysis/datetime/optional
  118. github.com/blevesearch/bleve/analysis/lang/en
  119. github.com/blevesearch/bleve/analysis/token/lowercase
  120. github.com/blevesearch/bleve/analysis/token/porter
  121. github.com/blevesearch/bleve/analysis/token/stop
  122. github.com/blevesearch/bleve/analysis/token/unicodenorm
  123. github.com/blevesearch/bleve/analysis/tokenizer/single
  124. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  125. github.com/blevesearch/bleve/document
  126. github.com/blevesearch/bleve/geo
  127. github.com/blevesearch/bleve/index
  128. github.com/blevesearch/bleve/index/scorch
  129. github.com/blevesearch/bleve/index/scorch/mergeplan
  130. github.com/blevesearch/bleve/index/scorch/segment
  131. github.com/blevesearch/bleve/index/store
  132. github.com/blevesearch/bleve/index/store/boltdb
  133. github.com/blevesearch/bleve/index/store/gtreap
  134. github.com/blevesearch/bleve/index/upsidedown
  135. github.com/blevesearch/bleve/mapping
  136. github.com/blevesearch/bleve/numeric
  137. github.com/blevesearch/bleve/registry
  138. github.com/blevesearch/bleve/search
  139. github.com/blevesearch/bleve/search/collector
  140. github.com/blevesearch/bleve/search/facet
  141. github.com/blevesearch/bleve/search/highlight
  142. github.com/blevesearch/bleve/search/highlight/format/html
  143. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  144. github.com/blevesearch/bleve/search/highlight/highlighter/html
  145. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  146. github.com/blevesearch/bleve/search/query
  147. github.com/blevesearch/bleve/search/scorer
  148. github.com/blevesearch/bleve/search/searcher
  149. github.com/blevesearch/bleve/size
  150. # github.com/blevesearch/go-porterstemmer v1.0.3
  151. github.com/blevesearch/go-porterstemmer
  152. # github.com/blevesearch/mmap-go v1.0.2
  153. github.com/blevesearch/mmap-go
  154. # github.com/blevesearch/segment v0.9.0
  155. github.com/blevesearch/segment
  156. # github.com/blevesearch/snowballstem v0.9.0
  157. github.com/blevesearch/snowballstem
  158. github.com/blevesearch/snowballstem/english
  159. # github.com/blevesearch/zap/v11 v11.0.7
  160. github.com/blevesearch/zap/v11
  161. # github.com/blevesearch/zap/v12 v12.0.7
  162. github.com/blevesearch/zap/v12
  163. # github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc
  164. github.com/boombuler/barcode
  165. github.com/boombuler/barcode/qr
  166. github.com/boombuler/barcode/utils
  167. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  168. github.com/bradfitz/gomemcache/memcache
  169. # github.com/chris-ramon/douceur v0.2.0
  170. github.com/chris-ramon/douceur/parser
  171. # github.com/couchbase/gomemcached v0.0.0-20191004160342-7b5da2ec40b2
  172. ## explicit
  173. github.com/couchbase/gomemcached
  174. github.com/couchbase/gomemcached/client
  175. # github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85
  176. github.com/couchbase/goutils/logging
  177. github.com/couchbase/goutils/scramsha
  178. # github.com/couchbase/vellum v1.0.1
  179. github.com/couchbase/vellum
  180. github.com/couchbase/vellum/levenshtein
  181. github.com/couchbase/vellum/regexp
  182. github.com/couchbase/vellum/utf8
  183. # github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
  184. github.com/couchbaselabs/go-couchbase
  185. # github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d
  186. ## explicit
  187. # github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
  188. ## explicit
  189. # github.com/cznic/strutil v0.0.0-20181122101858-275e90344537
  190. ## explicit
  191. # github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964
  192. github.com/danwakefield/fnmatch
  193. # github.com/davecgh/go-spew v1.1.1
  194. github.com/davecgh/go-spew/spew
  195. # github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc
  196. ## explicit
  197. github.com/denisenkom/go-mssqldb
  198. github.com/denisenkom/go-mssqldb/internal/cp
  199. github.com/denisenkom/go-mssqldb/internal/decimal
  200. github.com/denisenkom/go-mssqldb/internal/querytext
  201. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  202. ## explicit
  203. github.com/dgrijalva/jwt-go
  204. # github.com/dlclark/regexp2 v1.2.1
  205. ## explicit
  206. github.com/dlclark/regexp2
  207. github.com/dlclark/regexp2/syntax
  208. # github.com/dsnet/compress v0.0.1
  209. github.com/dsnet/compress
  210. github.com/dsnet/compress/bzip2
  211. github.com/dsnet/compress/bzip2/internal/sais
  212. github.com/dsnet/compress/internal
  213. github.com/dsnet/compress/internal/errors
  214. github.com/dsnet/compress/internal/prefix
  215. # github.com/dustin/go-humanize v1.0.0
  216. ## explicit
  217. github.com/dustin/go-humanize
  218. # github.com/editorconfig/editorconfig-core-go/v2 v2.1.1
  219. ## explicit
  220. github.com/editorconfig/editorconfig-core-go/v2
  221. # github.com/emirpasic/gods v1.12.0
  222. ## explicit
  223. github.com/emirpasic/gods/containers
  224. github.com/emirpasic/gods/lists
  225. github.com/emirpasic/gods/lists/arraylist
  226. github.com/emirpasic/gods/trees
  227. github.com/emirpasic/gods/trees/binaryheap
  228. github.com/emirpasic/gods/utils
  229. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  230. ## explicit
  231. github.com/ethantkoenig/rupture
  232. # github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51
  233. ## explicit
  234. # github.com/facebookgo/stack v0.0.0-20160209184415-751773369052
  235. ## explicit
  236. # github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870
  237. ## explicit
  238. # github.com/fatih/color v1.9.0
  239. github.com/fatih/color
  240. # github.com/fatih/structtag v1.2.0
  241. github.com/fatih/structtag
  242. # github.com/fsnotify/fsnotify v1.4.9
  243. github.com/fsnotify/fsnotify
  244. # github.com/gliderlabs/ssh v0.2.2
  245. ## explicit
  246. github.com/gliderlabs/ssh
  247. # github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a
  248. ## explicit
  249. github.com/glycerine/go-unsnap-stream
  250. # github.com/go-enry/go-enry/v2 v2.5.2
  251. ## explicit
  252. github.com/go-enry/go-enry/v2
  253. github.com/go-enry/go-enry/v2/data
  254. github.com/go-enry/go-enry/v2/data/rule
  255. github.com/go-enry/go-enry/v2/internal/tokenizer
  256. github.com/go-enry/go-enry/v2/internal/tokenizer/flex
  257. github.com/go-enry/go-enry/v2/regex
  258. # github.com/go-enry/go-oniguruma v1.2.1
  259. github.com/go-enry/go-oniguruma
  260. # github.com/go-git/gcfg v1.5.0
  261. github.com/go-git/gcfg
  262. github.com/go-git/gcfg/scanner
  263. github.com/go-git/gcfg/token
  264. github.com/go-git/gcfg/types
  265. # github.com/go-git/go-billy/v5 v5.0.0
  266. ## explicit
  267. github.com/go-git/go-billy/v5
  268. github.com/go-git/go-billy/v5/helper/chroot
  269. github.com/go-git/go-billy/v5/helper/polyfill
  270. github.com/go-git/go-billy/v5/osfs
  271. github.com/go-git/go-billy/v5/util
  272. # github.com/go-git/go-git/v5 v5.1.0
  273. ## explicit
  274. github.com/go-git/go-git/v5
  275. github.com/go-git/go-git/v5/config
  276. github.com/go-git/go-git/v5/internal/revision
  277. github.com/go-git/go-git/v5/internal/url
  278. github.com/go-git/go-git/v5/plumbing
  279. github.com/go-git/go-git/v5/plumbing/cache
  280. github.com/go-git/go-git/v5/plumbing/color
  281. github.com/go-git/go-git/v5/plumbing/filemode
  282. github.com/go-git/go-git/v5/plumbing/format/commitgraph
  283. github.com/go-git/go-git/v5/plumbing/format/config
  284. github.com/go-git/go-git/v5/plumbing/format/diff
  285. github.com/go-git/go-git/v5/plumbing/format/gitignore
  286. github.com/go-git/go-git/v5/plumbing/format/idxfile
  287. github.com/go-git/go-git/v5/plumbing/format/index
  288. github.com/go-git/go-git/v5/plumbing/format/objfile
  289. github.com/go-git/go-git/v5/plumbing/format/packfile
  290. github.com/go-git/go-git/v5/plumbing/format/pktline
  291. github.com/go-git/go-git/v5/plumbing/object
  292. github.com/go-git/go-git/v5/plumbing/object/commitgraph
  293. github.com/go-git/go-git/v5/plumbing/protocol/packp
  294. github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
  295. github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
  296. github.com/go-git/go-git/v5/plumbing/revlist
  297. github.com/go-git/go-git/v5/plumbing/storer
  298. github.com/go-git/go-git/v5/plumbing/transport
  299. github.com/go-git/go-git/v5/plumbing/transport/client
  300. github.com/go-git/go-git/v5/plumbing/transport/file
  301. github.com/go-git/go-git/v5/plumbing/transport/git
  302. github.com/go-git/go-git/v5/plumbing/transport/http
  303. github.com/go-git/go-git/v5/plumbing/transport/internal/common
  304. github.com/go-git/go-git/v5/plumbing/transport/server
  305. github.com/go-git/go-git/v5/plumbing/transport/ssh
  306. github.com/go-git/go-git/v5/storage
  307. github.com/go-git/go-git/v5/storage/filesystem
  308. github.com/go-git/go-git/v5/storage/filesystem/dotgit
  309. github.com/go-git/go-git/v5/storage/memory
  310. github.com/go-git/go-git/v5/utils/binary
  311. github.com/go-git/go-git/v5/utils/diff
  312. github.com/go-git/go-git/v5/utils/ioutil
  313. github.com/go-git/go-git/v5/utils/merkletrie
  314. github.com/go-git/go-git/v5/utils/merkletrie/filesystem
  315. github.com/go-git/go-git/v5/utils/merkletrie/index
  316. github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
  317. github.com/go-git/go-git/v5/utils/merkletrie/noder
  318. # github.com/go-openapi/analysis v0.19.10
  319. github.com/go-openapi/analysis
  320. github.com/go-openapi/analysis/internal
  321. # github.com/go-openapi/errors v0.19.6
  322. github.com/go-openapi/errors
  323. # github.com/go-openapi/inflect v0.19.0
  324. github.com/go-openapi/inflect
  325. # github.com/go-openapi/jsonpointer v0.19.3
  326. github.com/go-openapi/jsonpointer
  327. # github.com/go-openapi/jsonreference v0.19.4
  328. github.com/go-openapi/jsonreference
  329. # github.com/go-openapi/loads v0.19.5
  330. github.com/go-openapi/loads
  331. github.com/go-openapi/loads/fmts
  332. # github.com/go-openapi/runtime v0.19.20
  333. github.com/go-openapi/runtime
  334. github.com/go-openapi/runtime/logger
  335. github.com/go-openapi/runtime/middleware
  336. github.com/go-openapi/runtime/middleware/denco
  337. github.com/go-openapi/runtime/middleware/header
  338. github.com/go-openapi/runtime/middleware/untyped
  339. github.com/go-openapi/runtime/security
  340. # github.com/go-openapi/spec v0.19.8
  341. github.com/go-openapi/spec
  342. # github.com/go-openapi/strfmt v0.19.5
  343. github.com/go-openapi/strfmt
  344. # github.com/go-openapi/swag v0.19.9
  345. github.com/go-openapi/swag
  346. # github.com/go-openapi/validate v0.19.10
  347. github.com/go-openapi/validate
  348. # github.com/go-redis/redis v6.15.2+incompatible
  349. ## explicit
  350. github.com/go-redis/redis
  351. github.com/go-redis/redis/internal
  352. github.com/go-redis/redis/internal/consistenthash
  353. github.com/go-redis/redis/internal/hashtag
  354. github.com/go-redis/redis/internal/pool
  355. github.com/go-redis/redis/internal/proto
  356. github.com/go-redis/redis/internal/util
  357. # github.com/go-sql-driver/mysql v1.5.0
  358. ## explicit
  359. github.com/go-sql-driver/mysql
  360. # github.com/go-stack/stack v1.8.0
  361. github.com/go-stack/stack
  362. # github.com/go-swagger/go-swagger v0.25.0
  363. ## explicit
  364. github.com/go-swagger/go-swagger/cmd/swagger
  365. github.com/go-swagger/go-swagger/cmd/swagger/commands
  366. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  367. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  368. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  369. github.com/go-swagger/go-swagger/codescan
  370. github.com/go-swagger/go-swagger/generator
  371. github.com/go-swagger/go-swagger/scan
  372. # github.com/go-testfixtures/testfixtures/v3 v3.4.0
  373. ## explicit
  374. github.com/go-testfixtures/testfixtures/v3
  375. # github.com/gobwas/glob v0.2.3
  376. ## explicit
  377. github.com/gobwas/glob
  378. github.com/gobwas/glob/compiler
  379. github.com/gobwas/glob/match
  380. github.com/gobwas/glob/syntax
  381. github.com/gobwas/glob/syntax/ast
  382. github.com/gobwas/glob/syntax/lexer
  383. github.com/gobwas/glob/util/runes
  384. github.com/gobwas/glob/util/strings
  385. # github.com/gogs/chardet v0.0.0-20191104214054-4b6791f73a28
  386. ## explicit
  387. github.com/gogs/chardet
  388. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  389. ## explicit
  390. github.com/gogs/cron
  391. # github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe
  392. github.com/golang-sql/civil
  393. # github.com/golang/gddo v0.0.0-20190419222130-af0f2af80721
  394. github.com/golang/gddo/httputil
  395. github.com/golang/gddo/httputil/header
  396. # github.com/golang/protobuf v1.4.2
  397. github.com/golang/protobuf/proto
  398. # github.com/golang/snappy v0.0.1
  399. github.com/golang/snappy
  400. # github.com/google/go-github/v32 v32.1.0
  401. ## explicit
  402. github.com/google/go-github/v32/github
  403. # github.com/google/go-querystring v1.0.0
  404. github.com/google/go-querystring/query
  405. # github.com/google/uuid v1.1.1
  406. ## explicit
  407. github.com/google/uuid
  408. # github.com/gorilla/context v1.1.1
  409. ## explicit
  410. github.com/gorilla/context
  411. # github.com/gorilla/css v1.0.0
  412. github.com/gorilla/css/scanner
  413. # github.com/gorilla/handlers v1.4.2
  414. github.com/gorilla/handlers
  415. # github.com/gorilla/mux v1.7.3
  416. github.com/gorilla/mux
  417. # github.com/gorilla/securecookie v1.1.1
  418. github.com/gorilla/securecookie
  419. # github.com/gorilla/sessions v1.2.0
  420. github.com/gorilla/sessions
  421. # github.com/hashicorp/go-cleanhttp v0.5.1
  422. github.com/hashicorp/go-cleanhttp
  423. # github.com/hashicorp/go-retryablehttp v0.6.6
  424. ## explicit
  425. github.com/hashicorp/go-retryablehttp
  426. # github.com/hashicorp/hcl v1.0.0
  427. github.com/hashicorp/hcl
  428. github.com/hashicorp/hcl/hcl/ast
  429. github.com/hashicorp/hcl/hcl/parser
  430. github.com/hashicorp/hcl/hcl/printer
  431. github.com/hashicorp/hcl/hcl/scanner
  432. github.com/hashicorp/hcl/hcl/strconv
  433. github.com/hashicorp/hcl/hcl/token
  434. github.com/hashicorp/hcl/json/parser
  435. github.com/hashicorp/hcl/json/scanner
  436. github.com/hashicorp/hcl/json/token
  437. # github.com/huandu/xstrings v1.3.0
  438. ## explicit
  439. github.com/huandu/xstrings
  440. # github.com/imdario/mergo v0.3.9
  441. github.com/imdario/mergo
  442. # github.com/issue9/assert v1.3.2
  443. ## explicit
  444. # github.com/issue9/identicon v1.0.1
  445. ## explicit
  446. github.com/issue9/identicon
  447. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  448. ## explicit
  449. github.com/jaytaylor/html2text
  450. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  451. github.com/jbenet/go-context/io
  452. # github.com/jessevdk/go-flags v1.4.0
  453. github.com/jessevdk/go-flags
  454. # github.com/jmhodges/levigo v1.0.0
  455. ## explicit
  456. # github.com/json-iterator/go v1.1.10
  457. github.com/json-iterator/go
  458. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  459. ## explicit
  460. github.com/kballard/go-shellquote
  461. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  462. github.com/kevinburke/ssh_config
  463. # github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4
  464. ## explicit
  465. github.com/keybase/go-crypto/brainpool
  466. github.com/keybase/go-crypto/cast5
  467. github.com/keybase/go-crypto/curve25519
  468. github.com/keybase/go-crypto/ed25519
  469. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  470. github.com/keybase/go-crypto/openpgp
  471. github.com/keybase/go-crypto/openpgp/armor
  472. github.com/keybase/go-crypto/openpgp/ecdh
  473. github.com/keybase/go-crypto/openpgp/elgamal
  474. github.com/keybase/go-crypto/openpgp/errors
  475. github.com/keybase/go-crypto/openpgp/packet
  476. github.com/keybase/go-crypto/openpgp/s2k
  477. github.com/keybase/go-crypto/rsa
  478. # github.com/klauspost/compress v1.10.11
  479. ## explicit
  480. github.com/klauspost/compress/flate
  481. github.com/klauspost/compress/fse
  482. github.com/klauspost/compress/gzip
  483. github.com/klauspost/compress/huff0
  484. github.com/klauspost/compress/snappy
  485. github.com/klauspost/compress/zstd
  486. github.com/klauspost/compress/zstd/internal/xxhash
  487. # github.com/klauspost/cpuid v1.3.1
  488. github.com/klauspost/cpuid
  489. # github.com/klauspost/pgzip v1.2.1
  490. github.com/klauspost/pgzip
  491. # github.com/kr/pretty v0.2.0
  492. github.com/kr/pretty
  493. # github.com/kr/text v0.2.0
  494. github.com/kr/text
  495. # github.com/lafriks/xormstore v1.3.2
  496. ## explicit
  497. github.com/lafriks/xormstore
  498. github.com/lafriks/xormstore/util
  499. # github.com/lib/pq v1.7.0
  500. ## explicit
  501. github.com/lib/pq
  502. github.com/lib/pq/oid
  503. github.com/lib/pq/scram
  504. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  505. ## explicit
  506. github.com/lunny/dingtalk_webhook
  507. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  508. github.com/lunny/log
  509. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  510. github.com/lunny/nodb
  511. github.com/lunny/nodb/config
  512. github.com/lunny/nodb/store
  513. github.com/lunny/nodb/store/driver
  514. github.com/lunny/nodb/store/goleveldb
  515. # github.com/magiconair/properties v1.8.1
  516. github.com/magiconair/properties
  517. # github.com/mailru/easyjson v0.7.1
  518. github.com/mailru/easyjson
  519. github.com/mailru/easyjson/buffer
  520. github.com/mailru/easyjson/jlexer
  521. github.com/mailru/easyjson/jwriter
  522. # github.com/markbates/goth v1.61.2
  523. ## explicit
  524. github.com/markbates/goth
  525. github.com/markbates/goth/gothic
  526. github.com/markbates/goth/providers/bitbucket
  527. github.com/markbates/goth/providers/discord
  528. github.com/markbates/goth/providers/dropbox
  529. github.com/markbates/goth/providers/facebook
  530. github.com/markbates/goth/providers/gitea
  531. github.com/markbates/goth/providers/github
  532. github.com/markbates/goth/providers/gitlab
  533. github.com/markbates/goth/providers/google
  534. github.com/markbates/goth/providers/nextcloud
  535. github.com/markbates/goth/providers/openidConnect
  536. github.com/markbates/goth/providers/twitter
  537. github.com/markbates/goth/providers/yandex
  538. # github.com/mattn/go-colorable v0.1.6
  539. github.com/mattn/go-colorable
  540. # github.com/mattn/go-isatty v0.0.12
  541. ## explicit
  542. github.com/mattn/go-isatty
  543. # github.com/mattn/go-runewidth v0.0.7
  544. github.com/mattn/go-runewidth
  545. # github.com/mattn/go-sqlite3 v1.14.0
  546. ## explicit
  547. github.com/mattn/go-sqlite3
  548. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  549. github.com/matttproud/golang_protobuf_extensions/pbutil
  550. # github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75
  551. ## explicit
  552. github.com/mcuadros/go-version
  553. # github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81
  554. ## explicit
  555. github.com/mgechev/dots
  556. # github.com/mgechev/revive v1.0.2
  557. ## explicit
  558. github.com/mgechev/revive/formatter
  559. github.com/mgechev/revive/lint
  560. github.com/mgechev/revive/rule
  561. # github.com/mholt/archiver/v3 v3.3.0
  562. ## explicit
  563. github.com/mholt/archiver/v3
  564. # github.com/microcosm-cc/bluemonday v1.0.3-0.20191119130333-0a75d7616912
  565. ## explicit
  566. github.com/microcosm-cc/bluemonday
  567. # github.com/minio/md5-simd v1.1.0
  568. github.com/minio/md5-simd
  569. # github.com/minio/minio-go/v7 v7.0.4
  570. ## explicit
  571. github.com/minio/minio-go/v7
  572. github.com/minio/minio-go/v7/pkg/credentials
  573. github.com/minio/minio-go/v7/pkg/encrypt
  574. github.com/minio/minio-go/v7/pkg/lifecycle
  575. github.com/minio/minio-go/v7/pkg/notification
  576. github.com/minio/minio-go/v7/pkg/replication
  577. github.com/minio/minio-go/v7/pkg/s3utils
  578. github.com/minio/minio-go/v7/pkg/set
  579. github.com/minio/minio-go/v7/pkg/signer
  580. github.com/minio/minio-go/v7/pkg/sse
  581. github.com/minio/minio-go/v7/pkg/tags
  582. # github.com/minio/sha256-simd v0.1.1
  583. github.com/minio/sha256-simd
  584. # github.com/mitchellh/go-homedir v1.1.0
  585. ## explicit
  586. github.com/mitchellh/go-homedir
  587. # github.com/mitchellh/mapstructure v1.3.2
  588. github.com/mitchellh/mapstructure
  589. # github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
  590. github.com/modern-go/concurrent
  591. # github.com/modern-go/reflect2 v1.0.1
  592. github.com/modern-go/reflect2
  593. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  594. github.com/mrjones/oauth
  595. # github.com/mschoch/smat v0.2.0
  596. github.com/mschoch/smat
  597. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  598. ## explicit
  599. github.com/msteinert/pam
  600. # github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
  601. ## explicit
  602. github.com/nfnt/resize
  603. # github.com/niklasfasching/go-org v1.3.2
  604. ## explicit
  605. github.com/niklasfasching/go-org/org
  606. # github.com/nwaples/rardecode v1.0.0
  607. github.com/nwaples/rardecode
  608. # github.com/olekukonko/tablewriter v0.0.4
  609. github.com/olekukonko/tablewriter
  610. # github.com/oliamb/cutter v0.2.2
  611. ## explicit
  612. github.com/oliamb/cutter
  613. # github.com/olivere/elastic/v7 v7.0.9
  614. ## explicit
  615. github.com/olivere/elastic/v7
  616. github.com/olivere/elastic/v7/config
  617. github.com/olivere/elastic/v7/uritemplates
  618. # github.com/pelletier/go-toml v1.8.0
  619. github.com/pelletier/go-toml
  620. # github.com/philhofer/fwd v1.0.0
  621. github.com/philhofer/fwd
  622. # github.com/pierrec/lz4 v2.0.5+incompatible
  623. github.com/pierrec/lz4
  624. github.com/pierrec/lz4/internal/xxh32
  625. # github.com/pkg/errors v0.9.1
  626. ## explicit
  627. github.com/pkg/errors
  628. # github.com/pmezard/go-difflib v1.0.0
  629. github.com/pmezard/go-difflib/difflib
  630. # github.com/pquerna/otp v1.2.0
  631. ## explicit
  632. github.com/pquerna/otp
  633. github.com/pquerna/otp/hotp
  634. github.com/pquerna/otp/totp
  635. # github.com/prometheus/client_golang v1.1.0
  636. ## explicit
  637. github.com/prometheus/client_golang/prometheus
  638. github.com/prometheus/client_golang/prometheus/internal
  639. github.com/prometheus/client_golang/prometheus/promhttp
  640. # github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  641. github.com/prometheus/client_model/go
  642. # github.com/prometheus/common v0.6.0
  643. github.com/prometheus/common/expfmt
  644. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  645. github.com/prometheus/common/model
  646. # github.com/prometheus/procfs v0.0.4
  647. ## explicit
  648. github.com/prometheus/procfs
  649. github.com/prometheus/procfs/internal/fs
  650. github.com/prometheus/procfs/internal/util
  651. # github.com/quasoft/websspi v1.0.0
  652. ## explicit
  653. github.com/quasoft/websspi
  654. github.com/quasoft/websspi/secctx
  655. # github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001
  656. ## explicit
  657. # github.com/rs/xid v1.2.1
  658. github.com/rs/xid
  659. # github.com/sergi/go-diff v1.1.0
  660. ## explicit
  661. github.com/sergi/go-diff/diffmatchpatch
  662. # github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b
  663. ## explicit
  664. github.com/shurcooL/httpfs/vfsutil
  665. # github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
  666. ## explicit
  667. github.com/shurcooL/vfsgen
  668. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  669. github.com/siddontang/go-snappy/snappy
  670. # github.com/spf13/afero v1.3.2
  671. github.com/spf13/afero
  672. github.com/spf13/afero/mem
  673. # github.com/spf13/cast v1.3.1
  674. github.com/spf13/cast
  675. # github.com/spf13/jwalterweatherman v1.1.0
  676. github.com/spf13/jwalterweatherman
  677. # github.com/spf13/pflag v1.0.5
  678. github.com/spf13/pflag
  679. # github.com/spf13/viper v1.7.0
  680. github.com/spf13/viper
  681. # github.com/steveyen/gtreap v0.1.0
  682. github.com/steveyen/gtreap
  683. # github.com/stretchr/testify v1.6.1
  684. ## explicit
  685. github.com/stretchr/testify/assert
  686. github.com/stretchr/testify/require
  687. # github.com/subosito/gotenv v1.2.0
  688. github.com/subosito/gotenv
  689. # github.com/syndtr/goleveldb v1.0.0
  690. github.com/syndtr/goleveldb/leveldb
  691. github.com/syndtr/goleveldb/leveldb/cache
  692. github.com/syndtr/goleveldb/leveldb/comparer
  693. github.com/syndtr/goleveldb/leveldb/errors
  694. github.com/syndtr/goleveldb/leveldb/filter
  695. github.com/syndtr/goleveldb/leveldb/iterator
  696. github.com/syndtr/goleveldb/leveldb/journal
  697. github.com/syndtr/goleveldb/leveldb/memdb
  698. github.com/syndtr/goleveldb/leveldb/opt
  699. github.com/syndtr/goleveldb/leveldb/storage
  700. github.com/syndtr/goleveldb/leveldb/table
  701. github.com/syndtr/goleveldb/leveldb/util
  702. # github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481
  703. ## explicit
  704. # github.com/tinylib/msgp v1.1.2
  705. ## explicit
  706. github.com/tinylib/msgp/msgp
  707. # github.com/toqueteos/webbrowser v1.2.0
  708. github.com/toqueteos/webbrowser
  709. # github.com/tstranex/u2f v1.0.0
  710. ## explicit
  711. github.com/tstranex/u2f
  712. # github.com/ulikunitz/xz v0.5.6
  713. github.com/ulikunitz/xz
  714. github.com/ulikunitz/xz/internal/hash
  715. github.com/ulikunitz/xz/internal/xlog
  716. github.com/ulikunitz/xz/lzma
  717. # github.com/unknwon/com v1.0.1
  718. ## explicit
  719. github.com/unknwon/com
  720. # github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6
  721. ## explicit
  722. github.com/unknwon/i18n
  723. # github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  724. ## explicit
  725. github.com/unknwon/paginater
  726. # github.com/urfave/cli v1.20.0
  727. ## explicit
  728. github.com/urfave/cli
  729. # github.com/willf/bitset v1.1.10
  730. github.com/willf/bitset
  731. # github.com/xanzy/go-gitlab v0.31.0
  732. ## explicit
  733. github.com/xanzy/go-gitlab
  734. # github.com/xanzy/ssh-agent v0.2.1
  735. github.com/xanzy/ssh-agent
  736. # github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
  737. github.com/xi2/xz
  738. # github.com/yohcop/openid-go v1.0.0
  739. ## explicit
  740. github.com/yohcop/openid-go
  741. # github.com/yuin/goldmark v1.2.1
  742. ## explicit
  743. github.com/yuin/goldmark
  744. github.com/yuin/goldmark/ast
  745. github.com/yuin/goldmark/extension
  746. github.com/yuin/goldmark/extension/ast
  747. github.com/yuin/goldmark/parser
  748. github.com/yuin/goldmark/renderer
  749. github.com/yuin/goldmark/renderer/html
  750. github.com/yuin/goldmark/text
  751. github.com/yuin/goldmark/util
  752. # github.com/yuin/goldmark-highlighting v0.0.0-20200307114337-60d527fdb691
  753. ## explicit
  754. github.com/yuin/goldmark-highlighting
  755. # github.com/yuin/goldmark-meta v0.0.0-20191126180153-f0638e958b60
  756. ## explicit
  757. github.com/yuin/goldmark-meta
  758. # go.etcd.io/bbolt v1.3.4
  759. go.etcd.io/bbolt
  760. # go.mongodb.org/mongo-driver v1.3.5
  761. go.mongodb.org/mongo-driver/bson
  762. go.mongodb.org/mongo-driver/bson/bsoncodec
  763. go.mongodb.org/mongo-driver/bson/bsonoptions
  764. go.mongodb.org/mongo-driver/bson/bsonrw
  765. go.mongodb.org/mongo-driver/bson/bsontype
  766. go.mongodb.org/mongo-driver/bson/primitive
  767. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  768. # golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
  769. ## explicit
  770. golang.org/x/crypto/acme
  771. golang.org/x/crypto/acme/autocert
  772. golang.org/x/crypto/argon2
  773. golang.org/x/crypto/bcrypt
  774. golang.org/x/crypto/blake2b
  775. golang.org/x/crypto/blowfish
  776. golang.org/x/crypto/cast5
  777. golang.org/x/crypto/chacha20
  778. golang.org/x/crypto/curve25519
  779. golang.org/x/crypto/ed25519
  780. golang.org/x/crypto/ed25519/internal/edwards25519
  781. golang.org/x/crypto/internal/subtle
  782. golang.org/x/crypto/md4
  783. golang.org/x/crypto/openpgp
  784. golang.org/x/crypto/openpgp/armor
  785. golang.org/x/crypto/openpgp/elgamal
  786. golang.org/x/crypto/openpgp/errors
  787. golang.org/x/crypto/openpgp/packet
  788. golang.org/x/crypto/openpgp/s2k
  789. golang.org/x/crypto/pbkdf2
  790. golang.org/x/crypto/poly1305
  791. golang.org/x/crypto/scrypt
  792. golang.org/x/crypto/ssh
  793. golang.org/x/crypto/ssh/agent
  794. golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
  795. golang.org/x/crypto/ssh/knownhosts
  796. # golang.org/x/mod v0.3.0
  797. golang.org/x/mod/module
  798. golang.org/x/mod/semver
  799. # golang.org/x/net v0.0.0-20200904194848-62affa334b73
  800. ## explicit
  801. golang.org/x/net/context
  802. golang.org/x/net/context/ctxhttp
  803. golang.org/x/net/html
  804. golang.org/x/net/html/atom
  805. golang.org/x/net/html/charset
  806. golang.org/x/net/http/httpguts
  807. golang.org/x/net/idna
  808. golang.org/x/net/internal/socks
  809. golang.org/x/net/proxy
  810. golang.org/x/net/publicsuffix
  811. # golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
  812. ## explicit
  813. golang.org/x/oauth2
  814. golang.org/x/oauth2/google
  815. golang.org/x/oauth2/internal
  816. golang.org/x/oauth2/jws
  817. golang.org/x/oauth2/jwt
  818. # golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae
  819. ## explicit
  820. golang.org/x/sys/cpu
  821. golang.org/x/sys/internal/unsafeheader
  822. golang.org/x/sys/unix
  823. golang.org/x/sys/windows
  824. golang.org/x/sys/windows/svc
  825. golang.org/x/sys/windows/svc/debug
  826. # golang.org/x/text v0.3.3
  827. ## explicit
  828. golang.org/x/text/encoding
  829. golang.org/x/text/encoding/charmap
  830. golang.org/x/text/encoding/htmlindex
  831. golang.org/x/text/encoding/internal
  832. golang.org/x/text/encoding/internal/identifier
  833. golang.org/x/text/encoding/japanese
  834. golang.org/x/text/encoding/korean
  835. golang.org/x/text/encoding/simplifiedchinese
  836. golang.org/x/text/encoding/traditionalchinese
  837. golang.org/x/text/encoding/unicode
  838. golang.org/x/text/internal/language
  839. golang.org/x/text/internal/language/compact
  840. golang.org/x/text/internal/tag
  841. golang.org/x/text/internal/utf8internal
  842. golang.org/x/text/language
  843. golang.org/x/text/runes
  844. golang.org/x/text/secure/bidirule
  845. golang.org/x/text/transform
  846. golang.org/x/text/unicode/bidi
  847. golang.org/x/text/unicode/norm
  848. golang.org/x/text/width
  849. # golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
  850. ## explicit
  851. golang.org/x/time/rate
  852. # golang.org/x/tools v0.0.0-20200814230902-9882f1d1823d
  853. ## explicit
  854. golang.org/x/tools/cover
  855. golang.org/x/tools/go/analysis
  856. golang.org/x/tools/go/analysis/internal/analysisflags
  857. golang.org/x/tools/go/analysis/internal/facts
  858. golang.org/x/tools/go/analysis/unitchecker
  859. golang.org/x/tools/go/ast/astutil
  860. golang.org/x/tools/go/buildutil
  861. golang.org/x/tools/go/gcexportdata
  862. golang.org/x/tools/go/internal/cgo
  863. golang.org/x/tools/go/internal/gcimporter
  864. golang.org/x/tools/go/internal/packagesdriver
  865. golang.org/x/tools/go/loader
  866. golang.org/x/tools/go/packages
  867. golang.org/x/tools/go/types/objectpath
  868. golang.org/x/tools/imports
  869. golang.org/x/tools/internal/analysisinternal
  870. golang.org/x/tools/internal/event
  871. golang.org/x/tools/internal/event/core
  872. golang.org/x/tools/internal/event/keys
  873. golang.org/x/tools/internal/event/label
  874. golang.org/x/tools/internal/fastwalk
  875. golang.org/x/tools/internal/gocommand
  876. golang.org/x/tools/internal/gopathwalk
  877. golang.org/x/tools/internal/imports
  878. golang.org/x/tools/internal/lsp/fuzzy
  879. golang.org/x/tools/internal/packagesinternal
  880. golang.org/x/tools/internal/typesinternal
  881. # golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
  882. golang.org/x/xerrors
  883. golang.org/x/xerrors/internal
  884. # google.golang.org/appengine v1.6.6
  885. google.golang.org/appengine
  886. google.golang.org/appengine/internal
  887. google.golang.org/appengine/internal/app_identity
  888. google.golang.org/appengine/internal/base
  889. google.golang.org/appengine/internal/datastore
  890. google.golang.org/appengine/internal/log
  891. google.golang.org/appengine/internal/modules
  892. google.golang.org/appengine/internal/remote_api
  893. google.golang.org/appengine/internal/urlfetch
  894. google.golang.org/appengine/urlfetch
  895. # google.golang.org/protobuf v1.25.0
  896. google.golang.org/protobuf/encoding/prototext
  897. google.golang.org/protobuf/encoding/protowire
  898. google.golang.org/protobuf/internal/descfmt
  899. google.golang.org/protobuf/internal/descopts
  900. google.golang.org/protobuf/internal/detrand
  901. google.golang.org/protobuf/internal/encoding/defval
  902. google.golang.org/protobuf/internal/encoding/messageset
  903. google.golang.org/protobuf/internal/encoding/tag
  904. google.golang.org/protobuf/internal/encoding/text
  905. google.golang.org/protobuf/internal/errors
  906. google.golang.org/protobuf/internal/fieldsort
  907. google.golang.org/protobuf/internal/filedesc
  908. google.golang.org/protobuf/internal/filetype
  909. google.golang.org/protobuf/internal/flags
  910. google.golang.org/protobuf/internal/genid
  911. google.golang.org/protobuf/internal/impl
  912. google.golang.org/protobuf/internal/mapsort
  913. google.golang.org/protobuf/internal/pragma
  914. google.golang.org/protobuf/internal/set
  915. google.golang.org/protobuf/internal/strs
  916. google.golang.org/protobuf/internal/version
  917. google.golang.org/protobuf/proto
  918. google.golang.org/protobuf/reflect/protoreflect
  919. google.golang.org/protobuf/reflect/protoregistry
  920. google.golang.org/protobuf/runtime/protoiface
  921. google.golang.org/protobuf/runtime/protoimpl
  922. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  923. ## explicit
  924. gopkg.in/alexcesaro/quotedprintable.v3
  925. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  926. ## explicit
  927. gopkg.in/asn1-ber.v1
  928. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  929. ## explicit
  930. gopkg.in/gomail.v2
  931. # gopkg.in/ini.v1 v1.60.2
  932. ## explicit
  933. gopkg.in/ini.v1
  934. # gopkg.in/ldap.v3 v3.0.2
  935. ## explicit
  936. gopkg.in/ldap.v3
  937. # gopkg.in/warnings.v0 v0.1.2
  938. gopkg.in/warnings.v0
  939. # gopkg.in/yaml.v2 v2.3.0
  940. ## explicit
  941. gopkg.in/yaml.v2
  942. # gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
  943. gopkg.in/yaml.v3
  944. # mvdan.cc/xurls/v2 v2.1.0
  945. ## explicit
  946. mvdan.cc/xurls/v2
  947. # strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
  948. ## explicit
  949. strk.kbt.io/projects/go/libravatar
  950. # xorm.io/builder v0.3.7
  951. ## explicit
  952. xorm.io/builder
  953. # xorm.io/xorm v1.0.4
  954. ## explicit
  955. xorm.io/xorm
  956. xorm.io/xorm/caches
  957. xorm.io/xorm/contexts
  958. xorm.io/xorm/convert
  959. xorm.io/xorm/core
  960. xorm.io/xorm/dialects
  961. xorm.io/xorm/internal/json
  962. xorm.io/xorm/internal/statements
  963. xorm.io/xorm/internal/utils
  964. xorm.io/xorm/log
  965. xorm.io/xorm/names
  966. xorm.io/xorm/schemas
  967. xorm.io/xorm/tags