| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| | |
# Conflicts:
# doc/api/v3_to_v4.md
|
| |\
| | |
| | |
| | |
| | | |
Allow setting of a custom connection pool host
See merge request !9445
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This allows you to set a custom host when calling
Gitlab::Database.create_connection_pool. This is necessary for load
balancing as in this case we want to inherit all settings except for the
hostname.
|
| |\ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Add housekeeping endpoint for Projects API
Closes #27032
See merge request !9421
|
| | | | |
|
| |\ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Chat slash commands show labels correctly
Closes #28358
See merge request !9408
|
| | |/ / |
|
| |\ \ \
| | |_|/
| |/| |
| | | |
| | | | |
Grapify the CI::Runners API
See merge request !9440
|
| | | | |
|
| |\ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
Grapfiy the CI::Triggers API
See merge request !9439
|
| | |/ / |
|
| |\ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Add AsciiDoc snippet for CI/CD Badges
Closes #26087
See merge request !9164
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This commit adds CI/CD Badges Snippets for AsciiDoc as requested in #26087.
I've however run into an issue in highlighting the snippet, it seems as if AsciiDoc is currently not being highlighted properly (displayed as plaintext)
Add testcase for to_asciidoc
Update test case for Badges list
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Standardize branch name params as `branch` on V4 API
Closes #22132
See merge request !8936
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
API: Make subscription API more RESTfuL
Closes #28327
See merge request !9325
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Spam check and reCAPTCHA improvements
Closes #28093
See merge request !9248
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
No more and/or
See merge request !9428
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Copy data before compression to prevent 'file changed as we read it'
Closes #26881
See merge request !8728
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
# This is the 1st commit message:
Add `copy` backup strategy to combat file changed errors
The backup Rake task used to stream data directly from the live
data directory into the backup. Under many circumstances this worked
OK. However, really active instances would experience a 'file changed
as we read it' error - especially with data like the registry. This
now copies the data first, then compresses it. It will take a bit
more disk space while the backup is in progress, but it's a
necessary thing.
# The commit message #2 will be skipped:
# Add env var
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | |
| | | | | |
Redo internals of Incoming Mail Support
See merge request !9385
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Rename retry failed button on pipeline page to just retry
See merge request !9369
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | |
| | | | | |
| | | | | | |
Hash concurrent foreign key names similar to Rails
See merge request !9415
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This was initially not implemented simply because I forgot about the
size limit of constraint names in PostgreSQL (63 bytes). Using the old
technique we can't add foreign keys for certain tables. For example,
adding a foreign key on
protected_branch_merge_access_levels.protected_branch_id would lead to
the following key name:
fk_protected_branch_merge_access_levels_protected_branches_protected_branch_id
This key is 78 bytes long, thus violating the PostgreSQL size
requirements.
The hashing strategy is copied from Rails' foreign_key_name() method,
which unfortunately is private and subject to change without notice.
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Unify issues search behavior by always filtering when ALL labels matches
Closes #26315
See merge request !8849
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The returned email by the GitHub API is the user's publicly visible
email address (or null if the user has not specified a public email
address in their profile)
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | | |
API: Moved `DELETE /projects/:id/star` to `POST /projects/:id/unstar`
Closes #28328
See merge request !9328
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
Fix some grammar in the API docs
See merge request !9379
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | | |
API: Use POST to (un)block a user
Closes #14596
See merge request !9371
|
| |/ / / |
|
|/ / / |
|
|/ / |
|
|\ \
| | |
| | |
| | |
| | | |
Small improvements for Cycle Analytics
See merge request !9153
|
| |/ |
|
|\ \
| | |
| | |
| | |
| | | |
Update documentation to include yarn in our dependencies
See merge request !9316
|
| |\ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* master: (73 commits)
fix typo in node section
move "Install node modules" step before "Migrate DB" within update process
Renders pagination again for pipelines table
update migration docs for 8.17 to include minimum node version
Add CHANGELOG file
Fix positioning of top scroll button
add space between ci text and commit sha in Merge Request widget
Do not use single quote in headings as it breaks docs.gitlab.com
Fix broken test
Update services templates docs
Simplify Pages admin source docs
Simplify Pages admin Omnibus docs
Fix error in MR widget after /merge slash command
Remove arrow icon from folders
Create util to handle pagination transformation
Wrap long Project and Group titles
Changes after review
Changes after review
Rename storePagination to setPagination
Transforms startTimeAgoLoops into a static method so we can reuse it instead of have 2
...
|