Skip to content

Commit

Permalink
prepare 2.0.30 release (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyCI authored Feb 26, 2020
1 parent 623d904 commit 48e709c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ push:
$(GIT_COMMAND) clone git@github.com:launchdarkly/$(REPO).git; \
cd $(REPO); \
$(GIT_COMMAND) checkout gh-pages --; \
cp -r ../../$(TARGETS_PATH)/gh-pages .; \
cp -r ../../$(TARGETS_PATH)/gh-pages/. .; \
$(GIT_COMMAND) add .; \
$(GIT_COMMAND) commit --allow-empty -m "Version $(VERSION) automatically generated from $(REPO)@$(REVISION)."; \
$(GIT_PUSH_COMMAND) origin gh-pages; \
Expand Down
34 changes: 34 additions & 0 deletions spec/definitions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ Links:
$ref: "#/definitions/Link"
"next":
$ref: "#/definitions/Link"
Site:
type: object
properties:
"href":
type: string
example: "/features/sort.order"
"type":
type: string
example: "text/html"
Webhook:
type: object
properties:
Expand Down Expand Up @@ -220,6 +229,10 @@ FeatureFlagConfig:
type: boolean
example: false
description: Set to true to send detailed event information for this flag.
trackEventsFallthrough:
type: boolean
example: true
description: Set to true to send detailed event information when targeting is enabled but no individual targeting rule is matched.
Target:
type: object
properties:
Expand All @@ -237,6 +250,8 @@ Rule:
type: string
variation:
type: integer
trackEvents:
type: boolean
rollout:
$ref: "#/definitions/Rollout"
clauses:
Expand Down Expand Up @@ -417,6 +432,11 @@ UserSegment:
type: integer
_links:
$ref: "#/definitions/Links"
_flags:
type: array
readOnly: true
items:
$ref: "#/definitions/FlagListItem"
UserSegmentRule:
type: object
properties:
Expand Down Expand Up @@ -450,6 +470,9 @@ Project:
name:
type: string
example: Zentasks
includeInSnippetByDefault:
type: boolean
example: true
environments:
type: array
items:
Expand Down Expand Up @@ -1185,3 +1208,14 @@ CopyActions:
- updateRules
- updateFallthrough
- updateOffVariation
FlagListItem:
type: object
properties:
name:
type: string
key:
type: string
_links:
$ref: "#/definitions/Links"
_site:
$ref: "#/definitions/Site"

0 comments on commit 48e709c

Please sign in to comment.