- 20 Jun, 2019 37 commits
-
-
Stan Hu authored
Add Gitaly data to the usage ping See merge request gitlab-org/gitlab-ce!29893
-
Achilleas Pipinellis authored
Add documentation on epic add/remove child relations quick actions See merge request gitlab-org/gitlab-ce!29860
-
Mayra Cabrera authored
Use next_instance_of instead of any_instance_of See merge request gitlab-org/gitlab-ce!29905
-
Robert Speicher authored
Backport changes made by EE to various YAML configuration files See merge request gitlab-org/gitlab-ce!29606
-
Bob Van Landuyt authored
For prepended classes, we need to use `expect_next_instance_of` instead of RSpecs `any_instance_of` variants.
-
Sean McGivern authored
Errors in application settings panel shows wrong panel See merge request gitlab-org/gitlab-ce!25434
-
Sean McGivern authored
Fixed failing GraphQL file import Closes #63527 See merge request gitlab-org/gitlab-ce!29900
-
Mek Stittri authored
Improve bug severity definitions and consolidate guidance for clarity See merge request gitlab-org/gitlab-ce!29694
-
Mek Stittri authored
-
Sean McGivern authored
Add embedding support to metrics_dashboard See merge request gitlab-org/gitlab-ce!29696
-
Sarah Yasonik authored
This commits adds support for metrics dashboards for embedding. If the flag 'embedded' is provided to the environments/id/metrics_dashboard endpoint, the response will be suitable for embedding in issues or other content. This is a precursor for support for embedding metrics in GFM.
-
Phil Hughes authored
-
Zeger-Jan van de Weg authored
Gitaly data wasn't available to the team, an this change is a first iteration towards understanding what data we need and how to interpret it. Later more values will be added. For now the most important thing is the filesystem String Array, as that includes data on ext4 exposure and NFS. Part of: https://gitlab.com/gitlab-org/gitlab-ce/issues/60602
-
Filipa Lacerda authored
Render last commit widget with Vue Closes #62766 See merge request gitlab-org/gitlab-ce!29419
-
Yorick Peterse authored
To make this happen, we need to conditionally add the group_saml strategy when running tests, but only on EE. This requires some changes to Gitlab.ee? so that it can be used before/without loading the Rails environment. We also have to change how we require a few files, so this can run outside of Rails.
-
Yorick Peterse authored
-
Yorick Peterse authored
-
Ash McKenzie authored
Gitlab::JsonCache#parse_value ensure string Closes #63510 See merge request gitlab-org/gitlab-ce!29885
-
Bob Van Landuyt authored
Master i18n See merge request gitlab-org/gitlab-ce!29801
-
Luke Bennett authored
[skip ci]
-
Achilleas Pipinellis authored
Docs: Link issue statistics api endpoint in the docs See merge request gitlab-org/gitlab-ce!29855
-
Achilleas Pipinellis authored
Update Docs for Container Registry API Delete Endpoints See merge request gitlab-org/gitlab-ce!29709
-
Jason Goodman authored
-
Alexandru Croitor authored
-
Achilleas Pipinellis authored
Add version text and edit section See merge request gitlab-org/gitlab-ce!29875
-
Evan Read authored
-
Achilleas Pipinellis authored
Edit new Zoom call link content See merge request gitlab-org/gitlab-ce!29878
-
Evan Read authored
-
Kushal Pandya authored
Rename graphql files to match frontend docs See merge request gitlab-org/gitlab-ce!29856
-
Alexandru Croitor authored
Adds the missing link to issues_statistics api endpoint
-
Achilleas Pipinellis authored
Documentation update for registry restore troubleshooting Closes #63163 See merge request gitlab-org/gitlab-ce!29819
-
DJ Mountney authored
Restoring the registry ends up using the wrong file permissions, breaking the registry. Document the workaround while we look at improvements.
-
Douwe Maan authored
Remove import columns from projects table See merge request gitlab-org/gitlab-ce!29863
-
Douwe Maan authored
Render markdown in GraphQL See merge request gitlab-org/gitlab-ce!29700
-
Bob Van Landuyt authored
This adds a `markdown_field` to our types. Using this helper will render a model's markdown field using the existing `MarkupHelper` with the context of the GraphQL query available to the helper. Having the context available to the helper is needed for redacting links to resources that the current user is not allowed to see. Because rendering the HTML can cause queries, the complexity of a these fields is raised by 5 above the default. The markdown field helper can be used as follows: ``` markdown_field :note_html, null: false ``` This would generate a field that will render the markdown field `note` of the model. This could be overridden by adding the `method:` argument. Passing a symbol for the method name: ``` markdown_field :body_html, null: false, method: :note ``` It will have this description by default: > The GitLab Flavored Markdown rendering of `note` This could be overridden by passing a `description:` argument. The type of a `markdown_field` is always `GraphQL::STRING_TYPE`.
-
Ash McKenzie authored
-
Stan Hu authored
fix(favicon): get favicon_path, so it works also with uploads object store See merge request gitlab-org/gitlab-ce!29482
-
- 19 Jun, 2019 3 commits
-
-
Stan Hu authored
In https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/21497, we migrated all project import data into a separate table, `project_import_data`. In addition, we also added: ``` ignore_column :import_status, :import_jid, :import_error ``` In https://gitlab.com/gitlab-com/gl-infra/production/issues/908, we observed some of these `import_error` columns consumed megabytes of error backtraces and caused slow loading of projects whenever a `SELECT * from projects` query loaded the row into memory. Since we have long migrated away from these columns, we can now drop these columns entirely.
-
Stan Hu authored
Updating CE repo to include new EE users API changes See merge request gitlab-org/gitlab-ce!29581
-
Michael Leopard authored
Updated users API documentation Moved API level changes to the service level
-