Commit 59840ab1 authored by Craig Norris's avatar Craig Norris

Merge branch 'docs-api-doc-cleanup' into 'master'

General style cleanup og API docs top-level page

See merge request gitlab-org/gitlab!46896
parents 7a427ff4 ec6c8806
...@@ -9,7 +9,7 @@ module Packages ...@@ -9,7 +9,7 @@ module Packages
def execute def execute
if @tag_name.present? if @tag_name.present?
@tag_name.match(Gitlab::Regex.composer_package_version_regex).captures[0] @tag_name.delete_prefix('v')
elsif @branch_name.present? elsif @branch_name.present?
branch_sufix_or_prefix(@branch_name.match(Gitlab::Regex.composer_package_version_regex)) branch_sufix_or_prefix(@branch_name.match(Gitlab::Regex.composer_package_version_regex))
end end
......
---
title: Allow semver versions in composer packages
merge_request: 46301
author:
type: fixed
This diff is collapsed.
...@@ -81,11 +81,15 @@ module Gitlab ...@@ -81,11 +81,15 @@ module Gitlab
# We are ignoring connections and built in types for now, # We are ignoring connections and built in types for now,
# they should be added when queries are generated. # they should be added when queries are generated.
def objects def objects
graphql_object_types.select do |object_type| object_types = graphql_object_types.select do |object_type|
!object_type[:name]["Connection"] && !object_type[:name]["Connection"] &&
!object_type[:name]["Edge"] && !object_type[:name]["Edge"] &&
!object_type[:name]["__"] !object_type[:name]["__"]
end end
object_types.each do |type|
type[:fields] += type[:connections]
end
end end
# We ignore the built-in enum types. # We ignore the built-in enum types.
......
...@@ -19,9 +19,11 @@ RSpec.describe Packages::Composer::VersionParserService do ...@@ -19,9 +19,11 @@ RSpec.describe Packages::Composer::VersionParserService do
nil | '1.7.x' | '1.7.x-dev' nil | '1.7.x' | '1.7.x-dev'
'v1.0.0' | nil | '1.0.0' 'v1.0.0' | nil | '1.0.0'
'v1.0' | nil | '1.0' 'v1.0' | nil | '1.0'
'v1.0.1+meta' | nil | '1.0.1+meta'
'1.0' | nil | '1.0' '1.0' | nil | '1.0'
'1.0.2' | nil | '1.0.2' '1.0.2' | nil | '1.0.2'
'1.0.2-beta2' | nil | '1.0.2-beta2' '1.0.2-beta2' | nil | '1.0.2-beta2'
'1.0.1+meta' | nil | '1.0.1+meta'
end end
with_them do with_them do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment