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

modules.txt 36 kB

Move macaron to chi (#14293) Use [chi](https://github.com/go-chi/chi) instead of the forked [macaron](https://gitea.com/macaron/macaron). Since macaron and chi have conflicts with session share, this big PR becomes a have-to thing. According my previous idea, we can replace macaron step by step but I'm wrong. :( Below is a list of big changes on this PR. - [x] Define `context.ResponseWriter` interface with an implementation `context.Response`. - [x] Use chi instead of macaron, and also a customize `Route` to wrap chi so that the router usage is similar as before. - [x] Create different routers for `web`, `api`, `internal` and `install` so that the codes will be more clear and no magic . - [x] Use https://github.com/unrolled/render instead of macaron's internal render - [x] Use https://github.com/NYTimes/gziphandler instead of https://gitea.com/macaron/gzip - [x] Use https://gitea.com/go-chi/session which is a modified version of https://gitea.com/macaron/session and removed `nodb` support since it will not be maintained. **BREAK** - [x] Use https://gitea.com/go-chi/captcha which is a modified version of https://gitea.com/macaron/captcha - [x] Use https://gitea.com/go-chi/cache which is a modified version of https://gitea.com/macaron/cache - [x] Use https://gitea.com/go-chi/binding which is a modified version of https://gitea.com/macaron/binding - [x] Use https://github.com/go-chi/cors instead of https://gitea.com/macaron/cors - [x] Dropped https://gitea.com/macaron/i18n and make a new one in `code.gitea.io/gitea/modules/translation` - [x] Move validation form structs from `code.gitea.io/gitea/modules/auth` to `code.gitea.io/gitea/modules/forms` to avoid dependency cycle. - [x] Removed macaron log service because it's not need any more. **BREAK** - [x] All form structs have to be get by `web.GetForm(ctx)` in the route function but not as a function parameter on routes definition. - [x] Move Git HTTP protocol implementation to use routers directly. - [x] Fix the problem that chi routes don't support trailing slash but macaron did. - [x] `/api/v1/swagger` now will be redirect to `/api/swagger` but not render directly so that `APIContext` will not create a html render. Notices: - Chi router don't support request with trailing slash - Integration test `TestUserHeatmap` maybe mysql version related. It's failed on my macOS(mysql 5.7.29 installed via brew) but succeed on CI. Co-authored-by: 6543 <6543@obermui.de>
4 years ago
Move macaron to chi (#14293) Use [chi](https://github.com/go-chi/chi) instead of the forked [macaron](https://gitea.com/macaron/macaron). Since macaron and chi have conflicts with session share, this big PR becomes a have-to thing. According my previous idea, we can replace macaron step by step but I'm wrong. :( Below is a list of big changes on this PR. - [x] Define `context.ResponseWriter` interface with an implementation `context.Response`. - [x] Use chi instead of macaron, and also a customize `Route` to wrap chi so that the router usage is similar as before. - [x] Create different routers for `web`, `api`, `internal` and `install` so that the codes will be more clear and no magic . - [x] Use https://github.com/unrolled/render instead of macaron's internal render - [x] Use https://github.com/NYTimes/gziphandler instead of https://gitea.com/macaron/gzip - [x] Use https://gitea.com/go-chi/session which is a modified version of https://gitea.com/macaron/session and removed `nodb` support since it will not be maintained. **BREAK** - [x] Use https://gitea.com/go-chi/captcha which is a modified version of https://gitea.com/macaron/captcha - [x] Use https://gitea.com/go-chi/cache which is a modified version of https://gitea.com/macaron/cache - [x] Use https://gitea.com/go-chi/binding which is a modified version of https://gitea.com/macaron/binding - [x] Use https://github.com/go-chi/cors instead of https://gitea.com/macaron/cors - [x] Dropped https://gitea.com/macaron/i18n and make a new one in `code.gitea.io/gitea/modules/translation` - [x] Move validation form structs from `code.gitea.io/gitea/modules/auth` to `code.gitea.io/gitea/modules/forms` to avoid dependency cycle. - [x] Removed macaron log service because it's not need any more. **BREAK** - [x] All form structs have to be get by `web.GetForm(ctx)` in the route function but not as a function parameter on routes definition. - [x] Move Git HTTP protocol implementation to use routers directly. - [x] Fix the problem that chi routes don't support trailing slash but macaron did. - [x] `/api/v1/swagger` now will be redirect to `/api/swagger` but not render directly so that `APIContext` will not create a html render. Notices: - Chi router don't support request with trailing slash - Integration test `TestUserHeatmap` maybe mysql version related. It's failed on my macOS(mysql 5.7.29 installed via brew) but succeed on CI. Co-authored-by: 6543 <6543@obermui.de>
4 years ago
Move macaron to chi (#14293) Use [chi](https://github.com/go-chi/chi) instead of the forked [macaron](https://gitea.com/macaron/macaron). Since macaron and chi have conflicts with session share, this big PR becomes a have-to thing. According my previous idea, we can replace macaron step by step but I'm wrong. :( Below is a list of big changes on this PR. - [x] Define `context.ResponseWriter` interface with an implementation `context.Response`. - [x] Use chi instead of macaron, and also a customize `Route` to wrap chi so that the router usage is similar as before. - [x] Create different routers for `web`, `api`, `internal` and `install` so that the codes will be more clear and no magic . - [x] Use https://github.com/unrolled/render instead of macaron's internal render - [x] Use https://github.com/NYTimes/gziphandler instead of https://gitea.com/macaron/gzip - [x] Use https://gitea.com/go-chi/session which is a modified version of https://gitea.com/macaron/session and removed `nodb` support since it will not be maintained. **BREAK** - [x] Use https://gitea.com/go-chi/captcha which is a modified version of https://gitea.com/macaron/captcha - [x] Use https://gitea.com/go-chi/cache which is a modified version of https://gitea.com/macaron/cache - [x] Use https://gitea.com/go-chi/binding which is a modified version of https://gitea.com/macaron/binding - [x] Use https://github.com/go-chi/cors instead of https://gitea.com/macaron/cors - [x] Dropped https://gitea.com/macaron/i18n and make a new one in `code.gitea.io/gitea/modules/translation` - [x] Move validation form structs from `code.gitea.io/gitea/modules/auth` to `code.gitea.io/gitea/modules/forms` to avoid dependency cycle. - [x] Removed macaron log service because it's not need any more. **BREAK** - [x] All form structs have to be get by `web.GetForm(ctx)` in the route function but not as a function parameter on routes definition. - [x] Move Git HTTP protocol implementation to use routers directly. - [x] Fix the problem that chi routes don't support trailing slash but macaron did. - [x] `/api/v1/swagger` now will be redirect to `/api/swagger` but not render directly so that `APIContext` will not create a html render. Notices: - Chi router don't support request with trailing slash - Integration test `TestUserHeatmap` maybe mysql version related. It's failed on my macOS(mysql 5.7.29 installed via brew) but succeed on CI. Co-authored-by: 6543 <6543@obermui.de>
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>
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>
5 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
6 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>
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>
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>
5 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
5 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
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>
5 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>
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>
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>
5 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013
  1. # cloud.google.com/go v0.67.0
  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. # code.gitea.io/sdk/gitea v0.13.2
  8. ## explicit
  9. code.gitea.io/sdk/gitea
  10. # gitea.com/go-chi/binding v0.0.0-20210113025129-03f1d313373c
  11. ## explicit
  12. gitea.com/go-chi/binding
  13. # gitea.com/go-chi/cache v0.0.0-20210110083709-82c4c9ce2d5e
  14. ## explicit
  15. gitea.com/go-chi/cache
  16. gitea.com/go-chi/cache/memcache
  17. # gitea.com/go-chi/captcha v0.0.0-20210110083842-e7696c336a1e
  18. ## explicit
  19. gitea.com/go-chi/captcha
  20. # gitea.com/go-chi/session v0.0.0-20210108030337-0cb48c5ba8ee
  21. ## explicit
  22. gitea.com/go-chi/session
  23. gitea.com/go-chi/session/couchbase
  24. gitea.com/go-chi/session/memcache
  25. gitea.com/go-chi/session/mysql
  26. gitea.com/go-chi/session/postgres
  27. # gitea.com/lunny/levelqueue v0.3.0
  28. ## explicit
  29. gitea.com/lunny/levelqueue
  30. # github.com/Azure/go-ntlmssp v0.0.0-20200615164410-66371956d46c
  31. github.com/Azure/go-ntlmssp
  32. # github.com/NYTimes/gziphandler v1.1.1
  33. ## explicit
  34. github.com/NYTimes/gziphandler
  35. # github.com/PuerkitoBio/goquery v1.5.1
  36. ## explicit
  37. github.com/PuerkitoBio/goquery
  38. # github.com/PuerkitoBio/purell v1.1.1
  39. github.com/PuerkitoBio/purell
  40. # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578
  41. github.com/PuerkitoBio/urlesc
  42. # github.com/RoaringBitmap/roaring v0.5.5
  43. ## explicit
  44. github.com/RoaringBitmap/roaring
  45. # github.com/alecthomas/chroma v0.8.2
  46. ## explicit
  47. github.com/alecthomas/chroma
  48. github.com/alecthomas/chroma/formatters/html
  49. github.com/alecthomas/chroma/lexers
  50. github.com/alecthomas/chroma/lexers/a
  51. github.com/alecthomas/chroma/lexers/b
  52. github.com/alecthomas/chroma/lexers/c
  53. github.com/alecthomas/chroma/lexers/circular
  54. github.com/alecthomas/chroma/lexers/d
  55. github.com/alecthomas/chroma/lexers/e
  56. github.com/alecthomas/chroma/lexers/f
  57. github.com/alecthomas/chroma/lexers/g
  58. github.com/alecthomas/chroma/lexers/h
  59. github.com/alecthomas/chroma/lexers/i
  60. github.com/alecthomas/chroma/lexers/internal
  61. github.com/alecthomas/chroma/lexers/j
  62. github.com/alecthomas/chroma/lexers/k
  63. github.com/alecthomas/chroma/lexers/l
  64. github.com/alecthomas/chroma/lexers/m
  65. github.com/alecthomas/chroma/lexers/n
  66. github.com/alecthomas/chroma/lexers/o
  67. github.com/alecthomas/chroma/lexers/p
  68. github.com/alecthomas/chroma/lexers/q
  69. github.com/alecthomas/chroma/lexers/r
  70. github.com/alecthomas/chroma/lexers/s
  71. github.com/alecthomas/chroma/lexers/t
  72. github.com/alecthomas/chroma/lexers/v
  73. github.com/alecthomas/chroma/lexers/w
  74. github.com/alecthomas/chroma/lexers/x
  75. github.com/alecthomas/chroma/lexers/y
  76. github.com/alecthomas/chroma/lexers/z
  77. github.com/alecthomas/chroma/styles
  78. # github.com/andybalholm/brotli v1.0.1
  79. ## explicit
  80. github.com/andybalholm/brotli
  81. # github.com/andybalholm/cascadia v1.1.0
  82. github.com/andybalholm/cascadia
  83. # github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be
  84. ## explicit
  85. github.com/anmitsu/go-shlex
  86. # github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef
  87. github.com/asaskevich/govalidator
  88. # github.com/aymerick/douceur v0.2.0
  89. github.com/aymerick/douceur/css
  90. # github.com/beorn7/perks v1.0.1
  91. github.com/beorn7/perks/quantile
  92. # github.com/blevesearch/bleve/v2 v2.0.1
  93. ## explicit
  94. github.com/blevesearch/bleve/v2
  95. github.com/blevesearch/bleve/v2/analysis
  96. github.com/blevesearch/bleve/v2/analysis/analyzer/custom
  97. github.com/blevesearch/bleve/v2/analysis/analyzer/keyword
  98. github.com/blevesearch/bleve/v2/analysis/analyzer/standard
  99. github.com/blevesearch/bleve/v2/analysis/datetime/flexible
  100. github.com/blevesearch/bleve/v2/analysis/datetime/optional
  101. github.com/blevesearch/bleve/v2/analysis/lang/en
  102. github.com/blevesearch/bleve/v2/analysis/token/lowercase
  103. github.com/blevesearch/bleve/v2/analysis/token/porter
  104. github.com/blevesearch/bleve/v2/analysis/token/stop
  105. github.com/blevesearch/bleve/v2/analysis/token/unicodenorm
  106. github.com/blevesearch/bleve/v2/analysis/tokenizer/single
  107. github.com/blevesearch/bleve/v2/analysis/tokenizer/unicode
  108. github.com/blevesearch/bleve/v2/document
  109. github.com/blevesearch/bleve/v2/geo
  110. github.com/blevesearch/bleve/v2/index/scorch
  111. github.com/blevesearch/bleve/v2/index/scorch/mergeplan
  112. github.com/blevesearch/bleve/v2/index/upsidedown
  113. github.com/blevesearch/bleve/v2/index/upsidedown/store/boltdb
  114. github.com/blevesearch/bleve/v2/index/upsidedown/store/gtreap
  115. github.com/blevesearch/bleve/v2/mapping
  116. github.com/blevesearch/bleve/v2/numeric
  117. github.com/blevesearch/bleve/v2/registry
  118. github.com/blevesearch/bleve/v2/search
  119. github.com/blevesearch/bleve/v2/search/collector
  120. github.com/blevesearch/bleve/v2/search/facet
  121. github.com/blevesearch/bleve/v2/search/highlight
  122. github.com/blevesearch/bleve/v2/search/highlight/format/html
  123. github.com/blevesearch/bleve/v2/search/highlight/fragmenter/simple
  124. github.com/blevesearch/bleve/v2/search/highlight/highlighter/html
  125. github.com/blevesearch/bleve/v2/search/highlight/highlighter/simple
  126. github.com/blevesearch/bleve/v2/search/query
  127. github.com/blevesearch/bleve/v2/search/scorer
  128. github.com/blevesearch/bleve/v2/search/searcher
  129. github.com/blevesearch/bleve/v2/size
  130. # github.com/blevesearch/bleve_index_api v1.0.0
  131. github.com/blevesearch/bleve_index_api
  132. # github.com/blevesearch/go-porterstemmer v1.0.3
  133. github.com/blevesearch/go-porterstemmer
  134. # github.com/blevesearch/mmap-go v1.0.2
  135. github.com/blevesearch/mmap-go
  136. # github.com/blevesearch/scorch_segment_api v1.0.0
  137. github.com/blevesearch/scorch_segment_api
  138. # github.com/blevesearch/segment v0.9.0
  139. github.com/blevesearch/segment
  140. # github.com/blevesearch/snowballstem v0.9.0
  141. github.com/blevesearch/snowballstem
  142. github.com/blevesearch/snowballstem/english
  143. # github.com/blevesearch/upsidedown_store_api v1.0.1
  144. github.com/blevesearch/upsidedown_store_api
  145. # github.com/blevesearch/zapx/v11 v11.1.10
  146. github.com/blevesearch/zapx/v11
  147. # github.com/blevesearch/zapx/v12 v12.1.10
  148. github.com/blevesearch/zapx/v12
  149. # github.com/blevesearch/zapx/v13 v13.1.10
  150. github.com/blevesearch/zapx/v13
  151. # github.com/blevesearch/zapx/v14 v14.1.10
  152. github.com/blevesearch/zapx/v14
  153. # github.com/blevesearch/zapx/v15 v15.1.10
  154. github.com/blevesearch/zapx/v15
  155. # github.com/boombuler/barcode v1.0.1
  156. ## explicit
  157. github.com/boombuler/barcode
  158. github.com/boombuler/barcode/qr
  159. github.com/boombuler/barcode/utils
  160. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  161. github.com/bradfitz/gomemcache/memcache
  162. # github.com/caddyserver/certmagic v0.12.0
  163. ## explicit
  164. github.com/caddyserver/certmagic
  165. # github.com/cespare/xxhash/v2 v2.1.1
  166. github.com/cespare/xxhash/v2
  167. # github.com/chris-ramon/douceur v0.2.0
  168. github.com/chris-ramon/douceur/parser
  169. # github.com/couchbase/go-couchbase v0.0.0-20201026062457-7b3be89bbd89
  170. github.com/couchbase/go-couchbase
  171. # github.com/couchbase/gomemcached v0.1.1
  172. github.com/couchbase/gomemcached
  173. github.com/couchbase/gomemcached/client
  174. # github.com/couchbase/goutils v0.0.0-20201030094643-5e82bb967e67
  175. github.com/couchbase/goutils/logging
  176. github.com/couchbase/goutils/scramsha
  177. # github.com/couchbase/vellum v1.0.2
  178. github.com/couchbase/vellum
  179. github.com/couchbase/vellum/levenshtein
  180. github.com/couchbase/vellum/regexp
  181. github.com/couchbase/vellum/utf8
  182. # github.com/cpuguy83/go-md2man/v2 v2.0.0
  183. ## explicit
  184. github.com/cpuguy83/go-md2man/v2/md2man
  185. # github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964
  186. github.com/danwakefield/fnmatch
  187. # github.com/davecgh/go-spew v1.1.1
  188. github.com/davecgh/go-spew/spew
  189. # github.com/denisenkom/go-mssqldb v0.9.0
  190. ## explicit
  191. github.com/denisenkom/go-mssqldb
  192. github.com/denisenkom/go-mssqldb/internal/cp
  193. github.com/denisenkom/go-mssqldb/internal/decimal
  194. github.com/denisenkom/go-mssqldb/internal/querytext
  195. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  196. ## explicit
  197. github.com/dgrijalva/jwt-go
  198. # github.com/dlclark/regexp2 v1.4.0
  199. ## explicit
  200. github.com/dlclark/regexp2
  201. github.com/dlclark/regexp2/syntax
  202. # github.com/dsnet/compress v0.0.1
  203. github.com/dsnet/compress
  204. github.com/dsnet/compress/bzip2
  205. github.com/dsnet/compress/bzip2/internal/sais
  206. github.com/dsnet/compress/internal
  207. github.com/dsnet/compress/internal/errors
  208. github.com/dsnet/compress/internal/prefix
  209. # github.com/dustin/go-humanize v1.0.0
  210. ## explicit
  211. github.com/dustin/go-humanize
  212. # github.com/editorconfig/editorconfig-core-go/v2 v2.3.9
  213. ## explicit
  214. github.com/editorconfig/editorconfig-core-go/v2
  215. # github.com/emirpasic/gods v1.12.0
  216. ## explicit
  217. github.com/emirpasic/gods/containers
  218. github.com/emirpasic/gods/lists
  219. github.com/emirpasic/gods/lists/arraylist
  220. github.com/emirpasic/gods/trees
  221. github.com/emirpasic/gods/trees/binaryheap
  222. github.com/emirpasic/gods/utils
  223. # github.com/ethantkoenig/rupture v1.0.0
  224. ## explicit
  225. github.com/ethantkoenig/rupture
  226. # github.com/fatih/color v1.10.0
  227. github.com/fatih/color
  228. # github.com/fatih/structtag v1.2.0
  229. github.com/fatih/structtag
  230. # github.com/felixge/httpsnoop v1.0.1
  231. github.com/felixge/httpsnoop
  232. # github.com/fsnotify/fsnotify v1.4.9
  233. github.com/fsnotify/fsnotify
  234. # github.com/gliderlabs/ssh v0.3.1
  235. ## explicit
  236. github.com/gliderlabs/ssh
  237. # github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a
  238. ## explicit
  239. github.com/glycerine/go-unsnap-stream
  240. # github.com/go-asn1-ber/asn1-ber v1.5.1
  241. github.com/go-asn1-ber/asn1-ber
  242. # github.com/go-chi/chi v1.5.1
  243. ## explicit
  244. github.com/go-chi/chi
  245. github.com/go-chi/chi/middleware
  246. # github.com/go-chi/cors v1.1.1
  247. ## explicit
  248. github.com/go-chi/cors
  249. # github.com/go-enry/go-enry/v2 v2.6.0
  250. ## explicit
  251. github.com/go-enry/go-enry/v2
  252. github.com/go-enry/go-enry/v2/data
  253. github.com/go-enry/go-enry/v2/data/rule
  254. github.com/go-enry/go-enry/v2/internal/tokenizer
  255. github.com/go-enry/go-enry/v2/internal/tokenizer/flex
  256. github.com/go-enry/go-enry/v2/regex
  257. # github.com/go-enry/go-oniguruma v1.2.1
  258. github.com/go-enry/go-oniguruma
  259. # github.com/go-git/gcfg v1.5.0
  260. github.com/go-git/gcfg
  261. github.com/go-git/gcfg/scanner
  262. github.com/go-git/gcfg/token
  263. github.com/go-git/gcfg/types
  264. # github.com/go-git/go-billy/v5 v5.0.0
  265. ## explicit
  266. github.com/go-git/go-billy/v5
  267. github.com/go-git/go-billy/v5/helper/chroot
  268. github.com/go-git/go-billy/v5/helper/polyfill
  269. github.com/go-git/go-billy/v5/osfs
  270. github.com/go-git/go-billy/v5/util
  271. # github.com/go-git/go-git/v5 v5.2.0
  272. ## explicit
  273. github.com/go-git/go-git/v5
  274. github.com/go-git/go-git/v5/config
  275. github.com/go-git/go-git/v5/internal/revision
  276. github.com/go-git/go-git/v5/internal/url
  277. github.com/go-git/go-git/v5/plumbing
  278. github.com/go-git/go-git/v5/plumbing/cache
  279. github.com/go-git/go-git/v5/plumbing/color
  280. github.com/go-git/go-git/v5/plumbing/filemode
  281. github.com/go-git/go-git/v5/plumbing/format/commitgraph
  282. github.com/go-git/go-git/v5/plumbing/format/config
  283. github.com/go-git/go-git/v5/plumbing/format/diff
  284. github.com/go-git/go-git/v5/plumbing/format/gitignore
  285. github.com/go-git/go-git/v5/plumbing/format/idxfile
  286. github.com/go-git/go-git/v5/plumbing/format/index
  287. github.com/go-git/go-git/v5/plumbing/format/objfile
  288. github.com/go-git/go-git/v5/plumbing/format/packfile
  289. github.com/go-git/go-git/v5/plumbing/format/pktline
  290. github.com/go-git/go-git/v5/plumbing/object
  291. github.com/go-git/go-git/v5/plumbing/object/commitgraph
  292. github.com/go-git/go-git/v5/plumbing/protocol/packp
  293. github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
  294. github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
  295. github.com/go-git/go-git/v5/plumbing/revlist
  296. github.com/go-git/go-git/v5/plumbing/storer
  297. github.com/go-git/go-git/v5/plumbing/transport
  298. github.com/go-git/go-git/v5/plumbing/transport/client
  299. github.com/go-git/go-git/v5/plumbing/transport/file
  300. github.com/go-git/go-git/v5/plumbing/transport/git
  301. github.com/go-git/go-git/v5/plumbing/transport/http
  302. github.com/go-git/go-git/v5/plumbing/transport/internal/common
  303. github.com/go-git/go-git/v5/plumbing/transport/server
  304. github.com/go-git/go-git/v5/plumbing/transport/ssh
  305. github.com/go-git/go-git/v5/storage
  306. github.com/go-git/go-git/v5/storage/filesystem
  307. github.com/go-git/go-git/v5/storage/filesystem/dotgit
  308. github.com/go-git/go-git/v5/storage/memory
  309. github.com/go-git/go-git/v5/utils/binary
  310. github.com/go-git/go-git/v5/utils/diff
  311. github.com/go-git/go-git/v5/utils/ioutil
  312. github.com/go-git/go-git/v5/utils/merkletrie
  313. github.com/go-git/go-git/v5/utils/merkletrie/filesystem
  314. github.com/go-git/go-git/v5/utils/merkletrie/index
  315. github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
  316. github.com/go-git/go-git/v5/utils/merkletrie/noder
  317. # github.com/go-ldap/ldap/v3 v3.2.4
  318. ## explicit
  319. github.com/go-ldap/ldap/v3
  320. # github.com/go-openapi/analysis v0.19.16
  321. github.com/go-openapi/analysis
  322. github.com/go-openapi/analysis/internal
  323. # github.com/go-openapi/errors v0.19.9
  324. github.com/go-openapi/errors
  325. # github.com/go-openapi/inflect v0.19.0
  326. github.com/go-openapi/inflect
  327. # github.com/go-openapi/jsonpointer v0.19.5
  328. github.com/go-openapi/jsonpointer
  329. # github.com/go-openapi/jsonreference v0.19.5
  330. github.com/go-openapi/jsonreference
  331. # github.com/go-openapi/loads v0.20.0
  332. github.com/go-openapi/loads
  333. github.com/go-openapi/loads/fmts
  334. # github.com/go-openapi/runtime v0.19.26
  335. github.com/go-openapi/runtime
  336. github.com/go-openapi/runtime/logger
  337. github.com/go-openapi/runtime/middleware
  338. github.com/go-openapi/runtime/middleware/denco
  339. github.com/go-openapi/runtime/middleware/header
  340. github.com/go-openapi/runtime/middleware/untyped
  341. github.com/go-openapi/runtime/security
  342. # github.com/go-openapi/spec v0.20.1
  343. github.com/go-openapi/spec
  344. # github.com/go-openapi/strfmt v0.20.0
  345. github.com/go-openapi/strfmt
  346. # github.com/go-openapi/swag v0.19.13
  347. github.com/go-openapi/swag
  348. # github.com/go-openapi/validate v0.20.1
  349. github.com/go-openapi/validate
  350. # github.com/go-redis/redis/v7 v7.4.0
  351. ## explicit
  352. github.com/go-redis/redis/v7
  353. github.com/go-redis/redis/v7/internal
  354. github.com/go-redis/redis/v7/internal/consistenthash
  355. github.com/go-redis/redis/v7/internal/hashtag
  356. github.com/go-redis/redis/v7/internal/pool
  357. github.com/go-redis/redis/v7/internal/proto
  358. github.com/go-redis/redis/v7/internal/util
  359. # github.com/go-sql-driver/mysql v1.5.0
  360. ## explicit
  361. github.com/go-sql-driver/mysql
  362. # github.com/go-stack/stack v1.8.0
  363. github.com/go-stack/stack
  364. # github.com/go-swagger/go-swagger v0.26.0
  365. ## explicit
  366. github.com/go-swagger/go-swagger/cmd/swagger
  367. github.com/go-swagger/go-swagger/cmd/swagger/commands
  368. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  369. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  370. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  371. github.com/go-swagger/go-swagger/codescan
  372. github.com/go-swagger/go-swagger/generator
  373. github.com/go-swagger/go-swagger/scan
  374. # github.com/go-testfixtures/testfixtures/v3 v3.4.1
  375. ## explicit
  376. github.com/go-testfixtures/testfixtures/v3
  377. # github.com/gobwas/glob v0.2.3
  378. ## explicit
  379. github.com/gobwas/glob
  380. github.com/gobwas/glob/compiler
  381. github.com/gobwas/glob/match
  382. github.com/gobwas/glob/syntax
  383. github.com/gobwas/glob/syntax/ast
  384. github.com/gobwas/glob/syntax/lexer
  385. github.com/gobwas/glob/util/runes
  386. github.com/gobwas/glob/util/strings
  387. # github.com/gogs/chardet v0.0.0-20191104214054-4b6791f73a28
  388. ## explicit
  389. github.com/gogs/chardet
  390. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  391. ## explicit
  392. github.com/gogs/cron
  393. # github.com/gogs/go-gogs-client v0.0.0-20210131175652-1d7215cd8d85
  394. ## explicit
  395. github.com/gogs/go-gogs-client
  396. # github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe
  397. github.com/golang-sql/civil
  398. # github.com/golang/protobuf v1.4.3
  399. github.com/golang/protobuf/proto
  400. github.com/golang/protobuf/ptypes
  401. github.com/golang/protobuf/ptypes/any
  402. github.com/golang/protobuf/ptypes/duration
  403. github.com/golang/protobuf/ptypes/timestamp
  404. # github.com/golang/snappy v0.0.2
  405. github.com/golang/snappy
  406. # github.com/google/go-github/v32 v32.1.0
  407. ## explicit
  408. github.com/google/go-github/v32/github
  409. # github.com/google/go-querystring v1.0.0
  410. github.com/google/go-querystring/query
  411. # github.com/google/uuid v1.2.0
  412. ## explicit
  413. github.com/google/uuid
  414. # github.com/gorilla/context v1.1.1
  415. ## explicit
  416. github.com/gorilla/context
  417. # github.com/gorilla/css v1.0.0
  418. github.com/gorilla/css/scanner
  419. # github.com/gorilla/handlers v1.5.1
  420. github.com/gorilla/handlers
  421. # github.com/gorilla/mux v1.7.3
  422. github.com/gorilla/mux
  423. # github.com/gorilla/securecookie v1.1.1
  424. github.com/gorilla/securecookie
  425. # github.com/gorilla/sessions v1.2.0
  426. github.com/gorilla/sessions
  427. # github.com/hashicorp/go-cleanhttp v0.5.1
  428. github.com/hashicorp/go-cleanhttp
  429. # github.com/hashicorp/go-retryablehttp v0.6.8
  430. ## explicit
  431. github.com/hashicorp/go-retryablehttp
  432. # github.com/hashicorp/go-version v1.2.1 => github.com/6543/go-version v1.2.4
  433. ## explicit
  434. github.com/hashicorp/go-version
  435. # github.com/hashicorp/hcl v1.0.0
  436. github.com/hashicorp/hcl
  437. github.com/hashicorp/hcl/hcl/ast
  438. github.com/hashicorp/hcl/hcl/parser
  439. github.com/hashicorp/hcl/hcl/printer
  440. github.com/hashicorp/hcl/hcl/scanner
  441. github.com/hashicorp/hcl/hcl/strconv
  442. github.com/hashicorp/hcl/hcl/token
  443. github.com/hashicorp/hcl/json/parser
  444. github.com/hashicorp/hcl/json/scanner
  445. github.com/hashicorp/hcl/json/token
  446. # github.com/huandu/xstrings v1.3.2
  447. ## explicit
  448. github.com/huandu/xstrings
  449. # github.com/imdario/mergo v0.3.11
  450. ## explicit
  451. github.com/imdario/mergo
  452. # github.com/issue9/assert v1.3.2
  453. ## explicit
  454. # github.com/issue9/identicon v1.0.1
  455. ## explicit
  456. github.com/issue9/identicon
  457. # github.com/jaytaylor/html2text v0.0.0-20200412013138-3577fbdbcff7
  458. ## explicit
  459. github.com/jaytaylor/html2text
  460. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  461. github.com/jbenet/go-context/io
  462. # github.com/jessevdk/go-flags v1.4.0
  463. github.com/jessevdk/go-flags
  464. # github.com/josharian/intern v1.0.0
  465. github.com/josharian/intern
  466. # github.com/json-iterator/go v1.1.10
  467. github.com/json-iterator/go
  468. # github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
  469. ## explicit
  470. github.com/kballard/go-shellquote
  471. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  472. github.com/kevinburke/ssh_config
  473. # github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4
  474. ## explicit
  475. github.com/keybase/go-crypto/brainpool
  476. github.com/keybase/go-crypto/cast5
  477. github.com/keybase/go-crypto/curve25519
  478. github.com/keybase/go-crypto/ed25519
  479. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  480. github.com/keybase/go-crypto/openpgp
  481. github.com/keybase/go-crypto/openpgp/armor
  482. github.com/keybase/go-crypto/openpgp/ecdh
  483. github.com/keybase/go-crypto/openpgp/elgamal
  484. github.com/keybase/go-crypto/openpgp/errors
  485. github.com/keybase/go-crypto/openpgp/packet
  486. github.com/keybase/go-crypto/openpgp/s2k
  487. github.com/keybase/go-crypto/rsa
  488. # github.com/klauspost/compress v1.11.7
  489. ## explicit
  490. github.com/klauspost/compress/flate
  491. github.com/klauspost/compress/fse
  492. github.com/klauspost/compress/gzip
  493. github.com/klauspost/compress/huff0
  494. github.com/klauspost/compress/snappy
  495. github.com/klauspost/compress/zstd
  496. github.com/klauspost/compress/zstd/internal/xxhash
  497. # github.com/klauspost/cpuid v1.3.1
  498. github.com/klauspost/cpuid
  499. # github.com/klauspost/pgzip v1.2.5
  500. ## explicit
  501. github.com/klauspost/pgzip
  502. # github.com/kr/pretty v0.2.1
  503. github.com/kr/pretty
  504. # github.com/kr/text v0.2.0
  505. github.com/kr/text
  506. # github.com/lafriks/xormstore v1.3.2
  507. ## explicit
  508. github.com/lafriks/xormstore
  509. github.com/lafriks/xormstore/util
  510. # github.com/lib/pq v1.9.0
  511. ## explicit
  512. github.com/lib/pq
  513. github.com/lib/pq/oid
  514. github.com/lib/pq/scram
  515. # github.com/libdns/libdns v0.1.0
  516. github.com/libdns/libdns
  517. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  518. ## explicit
  519. github.com/lunny/dingtalk_webhook
  520. # github.com/magiconair/properties v1.8.4
  521. github.com/magiconair/properties
  522. # github.com/mailru/easyjson v0.7.6
  523. github.com/mailru/easyjson
  524. github.com/mailru/easyjson/buffer
  525. github.com/mailru/easyjson/jlexer
  526. github.com/mailru/easyjson/jwriter
  527. # github.com/markbates/goth v1.66.1
  528. ## explicit
  529. github.com/markbates/goth
  530. github.com/markbates/goth/gothic
  531. github.com/markbates/goth/providers/bitbucket
  532. github.com/markbates/goth/providers/discord
  533. github.com/markbates/goth/providers/dropbox
  534. github.com/markbates/goth/providers/facebook
  535. github.com/markbates/goth/providers/gitea
  536. github.com/markbates/goth/providers/github
  537. github.com/markbates/goth/providers/gitlab
  538. github.com/markbates/goth/providers/google
  539. github.com/markbates/goth/providers/mastodon
  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.8
  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.10
  550. ## explicit
  551. github.com/mattn/go-runewidth
  552. # github.com/mattn/go-sqlite3 v1.14.6
  553. ## explicit
  554. github.com/mattn/go-sqlite3
  555. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  556. github.com/matttproud/golang_protobuf_extensions/pbutil
  557. # github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81
  558. ## explicit
  559. github.com/mgechev/dots
  560. # github.com/mgechev/revive v1.0.3
  561. ## explicit
  562. github.com/mgechev/revive/formatter
  563. github.com/mgechev/revive/lint
  564. github.com/mgechev/revive/rule
  565. # github.com/mholt/acmez v0.1.1
  566. github.com/mholt/acmez
  567. github.com/mholt/acmez/acme
  568. # github.com/mholt/archiver/v3 v3.5.0
  569. ## explicit
  570. github.com/mholt/archiver/v3
  571. # github.com/microcosm-cc/bluemonday v1.0.4 => github.com/lunny/bluemonday v1.0.5-0.20201227154428-ca34796141e8
  572. ## explicit
  573. github.com/microcosm-cc/bluemonday
  574. # github.com/miekg/dns v1.1.30
  575. github.com/miekg/dns
  576. # github.com/minio/md5-simd v1.1.1
  577. ## explicit
  578. github.com/minio/md5-simd
  579. # github.com/minio/minio-go/v7 v7.0.7
  580. ## explicit
  581. github.com/minio/minio-go/v7
  582. github.com/minio/minio-go/v7/pkg/credentials
  583. github.com/minio/minio-go/v7/pkg/encrypt
  584. github.com/minio/minio-go/v7/pkg/lifecycle
  585. github.com/minio/minio-go/v7/pkg/notification
  586. github.com/minio/minio-go/v7/pkg/replication
  587. github.com/minio/minio-go/v7/pkg/s3utils
  588. github.com/minio/minio-go/v7/pkg/set
  589. github.com/minio/minio-go/v7/pkg/signer
  590. github.com/minio/minio-go/v7/pkg/sse
  591. github.com/minio/minio-go/v7/pkg/tags
  592. # github.com/minio/sha256-simd v0.1.1
  593. github.com/minio/sha256-simd
  594. # github.com/mitchellh/go-homedir v1.1.0
  595. ## explicit
  596. github.com/mitchellh/go-homedir
  597. # github.com/mitchellh/mapstructure v1.4.1
  598. github.com/mitchellh/mapstructure
  599. # github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
  600. github.com/modern-go/concurrent
  601. # github.com/modern-go/reflect2 v1.0.1
  602. github.com/modern-go/reflect2
  603. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  604. github.com/mrjones/oauth
  605. # github.com/mschoch/smat v0.2.0
  606. github.com/mschoch/smat
  607. # github.com/msteinert/pam v0.0.0-20200810204841-913b8f8cdf8b
  608. ## explicit
  609. github.com/msteinert/pam
  610. # github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
  611. ## explicit
  612. github.com/nfnt/resize
  613. # github.com/niklasfasching/go-org v1.4.0
  614. ## explicit
  615. github.com/niklasfasching/go-org/org
  616. # github.com/nwaples/rardecode v1.1.0
  617. github.com/nwaples/rardecode
  618. # github.com/olekukonko/tablewriter v0.0.4
  619. github.com/olekukonko/tablewriter
  620. # github.com/oliamb/cutter v0.2.2
  621. ## explicit
  622. github.com/oliamb/cutter
  623. # github.com/olivere/elastic/v7 v7.0.22
  624. ## explicit
  625. github.com/olivere/elastic/v7
  626. github.com/olivere/elastic/v7/config
  627. github.com/olivere/elastic/v7/uritemplates
  628. # github.com/pelletier/go-toml v1.8.1
  629. ## explicit
  630. github.com/pelletier/go-toml
  631. # github.com/philhofer/fwd v1.1.1
  632. github.com/philhofer/fwd
  633. # github.com/pierrec/lz4/v4 v4.1.1
  634. ## explicit
  635. github.com/pierrec/lz4/v4
  636. github.com/pierrec/lz4/v4/internal/lz4block
  637. github.com/pierrec/lz4/v4/internal/lz4errors
  638. github.com/pierrec/lz4/v4/internal/lz4stream
  639. github.com/pierrec/lz4/v4/internal/xxh32
  640. # github.com/pkg/errors v0.9.1
  641. ## explicit
  642. github.com/pkg/errors
  643. # github.com/pmezard/go-difflib v1.0.0
  644. github.com/pmezard/go-difflib/difflib
  645. # github.com/pquerna/otp v1.3.0
  646. ## explicit
  647. github.com/pquerna/otp
  648. github.com/pquerna/otp/hotp
  649. github.com/pquerna/otp/totp
  650. # github.com/prometheus/client_golang v1.8.0
  651. ## explicit
  652. github.com/prometheus/client_golang/prometheus
  653. github.com/prometheus/client_golang/prometheus/internal
  654. github.com/prometheus/client_golang/prometheus/promhttp
  655. # github.com/prometheus/client_model v0.2.0
  656. github.com/prometheus/client_model/go
  657. # github.com/prometheus/common v0.14.0
  658. github.com/prometheus/common/expfmt
  659. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  660. github.com/prometheus/common/model
  661. # github.com/prometheus/procfs v0.2.0
  662. github.com/prometheus/procfs
  663. github.com/prometheus/procfs/internal/fs
  664. github.com/prometheus/procfs/internal/util
  665. # github.com/quasoft/websspi v1.0.0
  666. ## explicit
  667. github.com/quasoft/websspi
  668. github.com/quasoft/websspi/secctx
  669. # github.com/rivo/uniseg v0.2.0
  670. ## explicit
  671. github.com/rivo/uniseg
  672. # github.com/rs/xid v1.2.1
  673. github.com/rs/xid
  674. # github.com/russross/blackfriday/v2 v2.0.1
  675. github.com/russross/blackfriday/v2
  676. # github.com/sergi/go-diff v1.1.0
  677. ## explicit
  678. github.com/sergi/go-diff/diffmatchpatch
  679. # github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749
  680. ## explicit
  681. github.com/shurcooL/httpfs/vfsutil
  682. # github.com/shurcooL/sanitized_anchor_name v1.0.0
  683. github.com/shurcooL/sanitized_anchor_name
  684. # github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546
  685. ## explicit
  686. github.com/shurcooL/vfsgen
  687. # github.com/spf13/afero v1.4.1
  688. github.com/spf13/afero
  689. github.com/spf13/afero/mem
  690. # github.com/spf13/cast v1.3.1
  691. github.com/spf13/cast
  692. # github.com/spf13/jwalterweatherman v1.1.0
  693. github.com/spf13/jwalterweatherman
  694. # github.com/spf13/pflag v1.0.5
  695. github.com/spf13/pflag
  696. # github.com/spf13/viper v1.7.1
  697. github.com/spf13/viper
  698. # github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf
  699. ## explicit
  700. github.com/ssor/bom
  701. # github.com/steveyen/gtreap v0.1.0
  702. github.com/steveyen/gtreap
  703. # github.com/stretchr/testify v1.7.0
  704. ## explicit
  705. github.com/stretchr/testify/assert
  706. github.com/stretchr/testify/require
  707. # github.com/subosito/gotenv v1.2.0
  708. github.com/subosito/gotenv
  709. # github.com/syndtr/goleveldb v1.0.0
  710. ## explicit
  711. github.com/syndtr/goleveldb/leveldb
  712. github.com/syndtr/goleveldb/leveldb/cache
  713. github.com/syndtr/goleveldb/leveldb/comparer
  714. github.com/syndtr/goleveldb/leveldb/errors
  715. github.com/syndtr/goleveldb/leveldb/filter
  716. github.com/syndtr/goleveldb/leveldb/iterator
  717. github.com/syndtr/goleveldb/leveldb/journal
  718. github.com/syndtr/goleveldb/leveldb/memdb
  719. github.com/syndtr/goleveldb/leveldb/opt
  720. github.com/syndtr/goleveldb/leveldb/storage
  721. github.com/syndtr/goleveldb/leveldb/table
  722. github.com/syndtr/goleveldb/leveldb/util
  723. # github.com/tinylib/msgp v1.1.5
  724. ## explicit
  725. github.com/tinylib/msgp/msgp
  726. # github.com/toqueteos/webbrowser v1.2.0
  727. github.com/toqueteos/webbrowser
  728. # github.com/tstranex/u2f v1.0.0
  729. ## explicit
  730. github.com/tstranex/u2f
  731. # github.com/ulikunitz/xz v0.5.8
  732. ## explicit
  733. github.com/ulikunitz/xz
  734. github.com/ulikunitz/xz/internal/hash
  735. github.com/ulikunitz/xz/internal/xlog
  736. github.com/ulikunitz/xz/lzma
  737. # github.com/unknwon/com v1.0.1
  738. ## explicit
  739. github.com/unknwon/com
  740. # github.com/unknwon/i18n v0.0.0-20200823051745-09abd91c7f2c
  741. ## explicit
  742. github.com/unknwon/i18n
  743. # github.com/unknwon/paginater v0.0.0-20200328080006-042474bd0eae
  744. ## explicit
  745. github.com/unknwon/paginater
  746. # github.com/unrolled/render v1.0.3
  747. ## explicit
  748. github.com/unrolled/render
  749. # github.com/urfave/cli v1.22.5
  750. ## explicit
  751. github.com/urfave/cli
  752. # github.com/willf/bitset v1.1.11
  753. ## explicit
  754. github.com/willf/bitset
  755. # github.com/xanzy/go-gitlab v0.42.0
  756. ## explicit
  757. github.com/xanzy/go-gitlab
  758. # github.com/xanzy/ssh-agent v0.2.1
  759. github.com/xanzy/ssh-agent
  760. # github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
  761. github.com/xi2/xz
  762. # github.com/yohcop/openid-go v1.0.0
  763. ## explicit
  764. github.com/yohcop/openid-go
  765. # github.com/yuin/goldmark v1.3.1
  766. ## explicit
  767. github.com/yuin/goldmark
  768. github.com/yuin/goldmark/ast
  769. github.com/yuin/goldmark/extension
  770. github.com/yuin/goldmark/extension/ast
  771. github.com/yuin/goldmark/parser
  772. github.com/yuin/goldmark/renderer
  773. github.com/yuin/goldmark/renderer/html
  774. github.com/yuin/goldmark/text
  775. github.com/yuin/goldmark/util
  776. # github.com/yuin/goldmark-highlighting v0.0.0-20200307114337-60d527fdb691
  777. ## explicit
  778. github.com/yuin/goldmark-highlighting
  779. # github.com/yuin/goldmark-meta v1.0.0
  780. ## explicit
  781. github.com/yuin/goldmark-meta
  782. # go.etcd.io/bbolt v1.3.5
  783. go.etcd.io/bbolt
  784. # go.jolheiser.com/hcaptcha v0.0.4
  785. ## explicit
  786. go.jolheiser.com/hcaptcha
  787. # go.jolheiser.com/pwn v0.0.3
  788. ## explicit
  789. go.jolheiser.com/pwn
  790. # go.mongodb.org/mongo-driver v1.4.4
  791. go.mongodb.org/mongo-driver/bson
  792. go.mongodb.org/mongo-driver/bson/bsoncodec
  793. go.mongodb.org/mongo-driver/bson/bsonoptions
  794. go.mongodb.org/mongo-driver/bson/bsonrw
  795. go.mongodb.org/mongo-driver/bson/bsontype
  796. go.mongodb.org/mongo-driver/bson/primitive
  797. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  798. # go.uber.org/atomic v1.6.0
  799. go.uber.org/atomic
  800. # go.uber.org/multierr v1.5.0
  801. go.uber.org/multierr
  802. # go.uber.org/zap v1.15.0
  803. go.uber.org/zap
  804. go.uber.org/zap/buffer
  805. go.uber.org/zap/internal/bufferpool
  806. go.uber.org/zap/internal/color
  807. go.uber.org/zap/internal/exit
  808. go.uber.org/zap/zapcore
  809. # golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
  810. ## explicit
  811. golang.org/x/crypto/argon2
  812. golang.org/x/crypto/bcrypt
  813. golang.org/x/crypto/blake2b
  814. golang.org/x/crypto/blowfish
  815. golang.org/x/crypto/cast5
  816. golang.org/x/crypto/chacha20
  817. golang.org/x/crypto/curve25519
  818. golang.org/x/crypto/ed25519
  819. golang.org/x/crypto/ed25519/internal/edwards25519
  820. golang.org/x/crypto/internal/subtle
  821. golang.org/x/crypto/md4
  822. golang.org/x/crypto/ocsp
  823. golang.org/x/crypto/openpgp
  824. golang.org/x/crypto/openpgp/armor
  825. golang.org/x/crypto/openpgp/elgamal
  826. golang.org/x/crypto/openpgp/errors
  827. golang.org/x/crypto/openpgp/packet
  828. golang.org/x/crypto/openpgp/s2k
  829. golang.org/x/crypto/pbkdf2
  830. golang.org/x/crypto/poly1305
  831. golang.org/x/crypto/scrypt
  832. golang.org/x/crypto/ssh
  833. golang.org/x/crypto/ssh/agent
  834. golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
  835. golang.org/x/crypto/ssh/knownhosts
  836. # golang.org/x/mod v0.3.0
  837. golang.org/x/mod/module
  838. golang.org/x/mod/semver
  839. # golang.org/x/net v0.0.0-20210119194325-5f4716e94777
  840. ## explicit
  841. golang.org/x/net/bpf
  842. golang.org/x/net/context
  843. golang.org/x/net/context/ctxhttp
  844. golang.org/x/net/html
  845. golang.org/x/net/html/atom
  846. golang.org/x/net/html/charset
  847. golang.org/x/net/http/httpguts
  848. golang.org/x/net/idna
  849. golang.org/x/net/internal/iana
  850. golang.org/x/net/internal/socket
  851. golang.org/x/net/internal/socks
  852. golang.org/x/net/ipv4
  853. golang.org/x/net/ipv6
  854. golang.org/x/net/proxy
  855. golang.org/x/net/publicsuffix
  856. # golang.org/x/oauth2 v0.0.0-20210126194326-f9ce19ea3013
  857. ## explicit
  858. golang.org/x/oauth2
  859. golang.org/x/oauth2/google
  860. golang.org/x/oauth2/google/internal/externalaccount
  861. golang.org/x/oauth2/internal
  862. golang.org/x/oauth2/jws
  863. golang.org/x/oauth2/jwt
  864. # golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
  865. ## explicit
  866. golang.org/x/sys/cpu
  867. golang.org/x/sys/execabs
  868. golang.org/x/sys/internal/unsafeheader
  869. golang.org/x/sys/unix
  870. golang.org/x/sys/windows
  871. golang.org/x/sys/windows/svc
  872. golang.org/x/sys/windows/svc/debug
  873. # golang.org/x/text v0.3.5
  874. ## explicit
  875. golang.org/x/text/encoding
  876. golang.org/x/text/encoding/charmap
  877. golang.org/x/text/encoding/htmlindex
  878. golang.org/x/text/encoding/internal
  879. golang.org/x/text/encoding/internal/identifier
  880. golang.org/x/text/encoding/japanese
  881. golang.org/x/text/encoding/korean
  882. golang.org/x/text/encoding/simplifiedchinese
  883. golang.org/x/text/encoding/traditionalchinese
  884. golang.org/x/text/encoding/unicode
  885. golang.org/x/text/internal/language
  886. golang.org/x/text/internal/language/compact
  887. golang.org/x/text/internal/tag
  888. golang.org/x/text/internal/utf8internal
  889. golang.org/x/text/language
  890. golang.org/x/text/runes
  891. golang.org/x/text/secure/bidirule
  892. golang.org/x/text/transform
  893. golang.org/x/text/unicode/bidi
  894. golang.org/x/text/unicode/norm
  895. golang.org/x/text/width
  896. # golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
  897. ## explicit
  898. golang.org/x/time/rate
  899. # golang.org/x/tools v0.1.0
  900. ## explicit
  901. golang.org/x/tools/cover
  902. golang.org/x/tools/go/analysis
  903. golang.org/x/tools/go/analysis/internal/analysisflags
  904. golang.org/x/tools/go/analysis/internal/facts
  905. golang.org/x/tools/go/analysis/unitchecker
  906. golang.org/x/tools/go/ast/astutil
  907. golang.org/x/tools/go/buildutil
  908. golang.org/x/tools/go/gcexportdata
  909. golang.org/x/tools/go/internal/cgo
  910. golang.org/x/tools/go/internal/gcimporter
  911. golang.org/x/tools/go/internal/packagesdriver
  912. golang.org/x/tools/go/loader
  913. golang.org/x/tools/go/packages
  914. golang.org/x/tools/go/types/objectpath
  915. golang.org/x/tools/imports
  916. golang.org/x/tools/internal/analysisinternal
  917. golang.org/x/tools/internal/event
  918. golang.org/x/tools/internal/event/core
  919. golang.org/x/tools/internal/event/keys
  920. golang.org/x/tools/internal/event/label
  921. golang.org/x/tools/internal/fastwalk
  922. golang.org/x/tools/internal/gocommand
  923. golang.org/x/tools/internal/gopathwalk
  924. golang.org/x/tools/internal/imports
  925. golang.org/x/tools/internal/lsp/fuzzy
  926. golang.org/x/tools/internal/packagesinternal
  927. golang.org/x/tools/internal/typesinternal
  928. # golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
  929. golang.org/x/xerrors
  930. golang.org/x/xerrors/internal
  931. # google.golang.org/appengine v1.6.7
  932. google.golang.org/appengine
  933. google.golang.org/appengine/internal
  934. google.golang.org/appengine/internal/app_identity
  935. google.golang.org/appengine/internal/base
  936. google.golang.org/appengine/internal/datastore
  937. google.golang.org/appengine/internal/log
  938. google.golang.org/appengine/internal/modules
  939. google.golang.org/appengine/internal/remote_api
  940. google.golang.org/appengine/internal/urlfetch
  941. google.golang.org/appengine/urlfetch
  942. # google.golang.org/protobuf v1.25.0
  943. google.golang.org/protobuf/encoding/prototext
  944. google.golang.org/protobuf/encoding/protowire
  945. google.golang.org/protobuf/internal/descfmt
  946. google.golang.org/protobuf/internal/descopts
  947. google.golang.org/protobuf/internal/detrand
  948. google.golang.org/protobuf/internal/encoding/defval
  949. google.golang.org/protobuf/internal/encoding/messageset
  950. google.golang.org/protobuf/internal/encoding/tag
  951. google.golang.org/protobuf/internal/encoding/text
  952. google.golang.org/protobuf/internal/errors
  953. google.golang.org/protobuf/internal/fieldsort
  954. google.golang.org/protobuf/internal/filedesc
  955. google.golang.org/protobuf/internal/filetype
  956. google.golang.org/protobuf/internal/flags
  957. google.golang.org/protobuf/internal/genid
  958. google.golang.org/protobuf/internal/impl
  959. google.golang.org/protobuf/internal/mapsort
  960. google.golang.org/protobuf/internal/pragma
  961. google.golang.org/protobuf/internal/set
  962. google.golang.org/protobuf/internal/strs
  963. google.golang.org/protobuf/internal/version
  964. google.golang.org/protobuf/proto
  965. google.golang.org/protobuf/reflect/protoreflect
  966. google.golang.org/protobuf/reflect/protoregistry
  967. google.golang.org/protobuf/runtime/protoiface
  968. google.golang.org/protobuf/runtime/protoimpl
  969. google.golang.org/protobuf/types/known/anypb
  970. google.golang.org/protobuf/types/known/durationpb
  971. google.golang.org/protobuf/types/known/timestamppb
  972. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  973. ## explicit
  974. gopkg.in/alexcesaro/quotedprintable.v3
  975. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  976. ## explicit
  977. gopkg.in/gomail.v2
  978. # gopkg.in/ini.v1 v1.62.0
  979. ## explicit
  980. gopkg.in/ini.v1
  981. # gopkg.in/warnings.v0 v0.1.2
  982. gopkg.in/warnings.v0
  983. # gopkg.in/yaml.v2 v2.4.0
  984. ## explicit
  985. gopkg.in/yaml.v2
  986. # gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
  987. gopkg.in/yaml.v3
  988. # mvdan.cc/xurls/v2 v2.2.0
  989. ## explicit
  990. mvdan.cc/xurls/v2
  991. # strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
  992. ## explicit
  993. strk.kbt.io/projects/go/libravatar
  994. # xorm.io/builder v0.3.7
  995. ## explicit
  996. xorm.io/builder
  997. # xorm.io/xorm v1.0.6
  998. ## explicit
  999. xorm.io/xorm
  1000. xorm.io/xorm/caches
  1001. xorm.io/xorm/contexts
  1002. xorm.io/xorm/convert
  1003. xorm.io/xorm/core
  1004. xorm.io/xorm/dialects
  1005. xorm.io/xorm/internal/json
  1006. xorm.io/xorm/internal/statements
  1007. xorm.io/xorm/internal/utils
  1008. xorm.io/xorm/log
  1009. xorm.io/xorm/names
  1010. xorm.io/xorm/schemas
  1011. xorm.io/xorm/tags
  1012. # github.com/hashicorp/go-version => github.com/6543/go-version v1.2.4
  1013. # github.com/microcosm-cc/bluemonday => github.com/lunny/bluemonday v1.0.5-0.20201227154428-ca34796141e8