summaryrefslogtreecommitdiffstats
path: root/Gopkg.lock
Commit message (Collapse)AuthorAgeFilesLines
* Request for public keys only if LDAP attribute is set (#5816)Lauris BH2019-01-241-3/+4
| | | | | | * Update go-ldap dependency * Request for public keys only if attribute is set
* upgrade go-sql-driver/mysql to fix invalid connection error (#5748)Lunny Xiao2019-01-171-2/+2
| | | should fix #5736
* api: Add missing GET teams endpoints (#5382)Harshit Bansal2019-01-161-2/+2
| | | | | | | | | | | | | | | | | | | | * api: Add an endpoint to list a particular member of team. * models: Rename `GetUserTeams()` to `GetUserOrgTeams()` in `org_team` model. `GetUserTeams()` sounds a bit misnomer since it actually returns the teams that user belongs to in a given organization rather than all the teams across all the organization that the user has joined. * models: Add `GetUserTeams()`. Returns all the teams that a user belongs to. * api: Add an endpoint for GET '/user/teams'. A GET request to this endpoint lists all the teams that a user belongs to.
* Fixing #5728: (#5747)Zsombor2019-01-161-2/+2
| | | | * Format boolean values to true/false even when it is returned as byte-slice, * Fix the sequence generation, the proper sequence name is used (instead of 'table_id_seq'), and fix the next value be max+1 always
* Discord Oauth2 support (#4476)techknowlogick2019-01-131-3/+5
| | | | | | | | | | | | | | * add discord auth * add vendor for discord * fix syntax error * make fmt * update version of goth in use * update markbates/goth
* Update xorm to fix issue #5659 and #5651 (#5680)Zsombor2019-01-091-2/+2
|
* fix forgot removed records when deleting user (#5429)Lunny Xiao2018-12-181-3/+3
| | | | | | | | | | * fix forgot removed records when deleting user * fix migration * fix rewritekey lock on sqlite * remove unused codes
* Added test environment for mssql (#4282)kolaente2018-12-121-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added test environment for m$sql * Added template for test environment for m$sql * Fix password * Fix password (again) * Fix password (again again) * Fix db * Ci trigger (Looking at you drone....) * Ci trigger (Looking at you drone....) * Ci trigger (Looking at you drone....) * Ci trigger (Looking at you drone....) * Create master database for mssql integration tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * Create database only if master do not exist Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix mssql integration tests by using custom database "gitea" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved defer * bump xorm * updated xorm * Fixed build
* Git-Trees API (#5403)Kasi Reddy2018-11-281-2/+2
| | | | | | | | | | | | * Git-Trees API * update vendor'd libs * added comments to exported function and formatted. * make fmt * update per @lafirks feedback
* Explicitly disable Git credential helper (#5367)Michael Kuhn2018-11-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | * Explicitly disable Git credential helper If the user running Gitea has configured a credential helper, Git credentials might leak out of Gitea. There are two problems with credential helpers when combined with Gitea: 1. Credentials entered by a user when doing a migration or setting up a mirror will end up in the credential store. In the worst case, this is the plain text file ~/.git-credentials. 2. Credentials in the credential store will be used for migrations and mirrors by all users. For example, if user A sets up a mirror, their credentials will be stored. If user B later sets up a mirror from the same host and does not enter any credentials, user A's credentials will be used. This PR prepends -c credential.helper= to all Git commands to clear the list of helpers. This requires at least Git version 2.9, as previous versions will try to load an empty helper instead. For more details, see https://github.com/git/git/commit/24321375cda79f141be72d1a842e930df6f41725 * Update git module
* Implement git refs API for listing references (branches, tags and other) (#5354)Lauris BH2018-11-271-5/+153
| | | | | | | | | | | | | | | | * Inital routes to git refs api * Git refs API implementation * Update swagger * Fix copyright * Make swagger happy add basic test * Fix test * Fix test again :)
* Add raw blob endpoint to get objects by SHA ID (#5334)Peter Hoffmann2018-11-181-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Add raw blob endpoint This should make it possible to download raw blobs directly from /:repo/:username/raw/blob/:sha1 URLs. * fix: Make it work * As an SHA-ID is no path getRefNameFromPath can't be used to verify file specifying parameter * added relevant change in go-gitea/git #132 Signed-off-by: Berengar W. Lehr <Berengar.Lehr@kompetenztest.de> * Update Gopkg.lock Can't update all vendors due to errors Signed-off-by: Berengar W. Lehr <Berengar.Lehr@kompetenztest.de> * style: Add Gitea copyright header * feat: Added integration test for /repo/u/r/raw/blob * fix: correct year in copyright header
* Remove x/net/context vendor by using std package (#5202)Antoine GIRARD2018-11-101-8/+10
| | | | | | | | | | | | * Update dep github.com/markbates/goth * Update dep github.com/blevesearch/bleve * Update dep golang.org/x/oauth2 * Fix github.com/blevesearch/bleve to c74e08f039e56cef576e4336382b2a2d12d9e026 * Update dep golang.org/x/oauth2
* Fix create team, update team missing units (#5188)Lunny Xiao2018-11-101-2/+2
|
* Prometheus endpoint (#5256)Stanislav2018-11-041-2/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | * Add prometheus collector and route * dep ensure -add github.com/prometheus/client_golang/prometheus * dep ensure -update github.com/golang/protobuf * add metrics to reserved usernames * add comment head in metrics package * fix style imports * add metrics settings * add bearer token check * mapping metrics configs * fix lint * update config cheat sheet * update conf sample, typo fix
* fix: Add secret to all webhook's payload where it has been missing (#5199)Peter Hoffmann2018-10-281-2/+2
| | | | | | | | | | * fix: Add secret to all webhook's payload where it has been missing affects webhooks for: * Delete * Fork * IssueComment * Release
* Update vendor/golang.org/x/sys (#5059)Antonio Huete Jimenez2018-10-261-2/+3
|
* Update x/net (#5169)Antoine GIRARD2018-10-261-2/+3
|
* Update go-macaron/session to latest mast to fix RCE-bug (#5177)Kim "BKC" Carlbäcker2018-10-251-2/+3
|
* Update vendor/github.com/mattn/go-sqlite3 (#5162)Mura Li2018-10-241-2/+2
| | | To fix build failure on Windows/386
* Update vendor/go-sqlite3 (#5133)Mura Li2018-10-231-2/+2
|
* Upgrade gopkg.in/testfixtures.v2 (#4999)Mura Li2018-10-021-3/+3
|
* Disable debug routes unless PPROF is enabled in configuration (#4995)Lauris BH2018-09-291-2/+2
|
* Fix #4877 to follow the OpenID Connect Audiences spec (#4878)OvermindDL12018-09-201-3/+3
| | | | | Signed-off-by: Gabriel Robertson <overminddl1@gmail.com>
* Add push webhook support for mirrored repositories (#4127)Lauris BH2018-09-061-2/+2
|
* API /admin/users/{username} missing parameter (#4775)EnricoFerro2018-08-231-20/+314
|
* add letsencrypt to Gitea (#4189)Fluf2018-08-211-1/+5
|
* Update xorm to latest version and fix correct `user` table referencing in ↵Lauris BH2018-07-201-4/+6
| | | | sql (#4473)
* Add ability to delete a token (#4235)techknowlogick2018-07-061-1/+1
| | | Fix #4234
* Simply remove tidb and deps (#3993)Antoine GIRARD2018-07-041-173/+1
|
* Dep upgrade mysql lib (#4161)techknowlogick2018-07-031-2/+2
| | | | * update gopkg file to add sql dep
* update git vendor (#4059)David Schneiderbauer2018-05-271-1/+1
|
* LDAP Public SSH Keys synchronization (#1844)Magnus Lindvall2018-05-241-2/+4
| | | | | | | | | | | | | | | | | | | * Add LDAP Key Synchronization feature Signed-off-by: Magnus Lindvall <magnus@dnmgns.com> * Add migration: add login source id column for public_key table * Only update keys if needed * Add function to only list pubkey synchronized from ldap * Only list pub ssh keys synchronized from ldap. Do not sort strings as ExistsInSlice does it. * Only get keys belonging to current login source id * Set default login source id to 0 * Some minor cleanup. Add integration tests (updete dep testify)
* Support secure cookie for csrf-token (#3839)Aleksandr Bulyshchenko2018-05-221-1/+2
| | | | | | | | | | | | | | | | | * dep: Update github.com/go-macaron/csrf Update github.com/go-macaron/csrf with dep to revision 503617c6b372 to fix issue of csrf-token security. This update includes following commits: - Add support for the Cookie HttpOnly flag - Support secure mode for csrf cookie Signed-off-by: Aleksandr Bulyshchenko <A.Bulyshchenko@globallogic.com> * routers: set csrf-token security depending on COOKIE_SECURE Signed-off-by: Aleksandr Bulyshchenko <A.Bulyshchenko@globallogic.com>
* Migrate to dep (#3972)Antoine GIRARD2018-05-211-0/+875
* Update makefile to use dep * Migrate to dep * Fix some deps * Try to find a better version for golang.org/x/net * Try to find a better version for golang.org/x/oauth2