Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 1.20.0 #475

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .changelog/1.20.0/472.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
category: bug
title: Fix deployment API for updating deployment-alias.
description: |
Fixes the deployment API (`DeploymentCreateRequest`, `DeploymentUpdateRequest`) so it is possible to remove the deployment-alias. An explicit empty String can now be passed to remove the alias.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL := /bin/bash
export GO111MODULE ?= on
export VERSION ?= v1.19.0
export VERSION ?= v1.20.0
export ECE_VERSION ?= $(shell cat ECE_VERSION)
export ECE_BRANCH ?= ms-105
ECE_DEF_FILE ?= api/version/$(ECE_VERSION).md
Expand Down
8 changes: 4 additions & 4 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -1892,10 +1892,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--------------------------------------------------------------------------------

Dependency : github.com/spf13/cobra
Version: v1.8.0
Version: v1.8.1
Licence type (autodetected): Apache-2.0

Contents of probable licence file $GOMODCACHE/github.com/spf13/[email protected].0/LICENSE.txt:
Contents of probable licence file $GOMODCACHE/github.com/spf13/[email protected].1/LICENSE.txt:

Apache License
Version 2.0, January 2004
Expand Down Expand Up @@ -2145,10 +2145,10 @@ SOFTWARE.
--------------------------------------------------------------------------------

Dependency : golang.org/x/text
Version: v0.15.0
Version: v0.16.0
Licence type (autodetected): BSD-3-Clause

Contents of probable licence file $GOMODCACHE/golang.org/x/text@v0.15.0/LICENSE:
Contents of probable licence file $GOMODCACHE/golang.org/x/text@v0.16.0/LICENSE:

Copyright (c) 2009 The Go Authors. All rights reserved.

Expand Down
9 changes: 9 additions & 0 deletions notes/v1.20.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

This release of the Elastic Cloud SDK Go should be used for ECE Version `3.7.0`.

## Bug fixes

### Fix deployment API for updating deployment-alias. ([#472](https://github.com/elastic/cloud-sdk-go/issues/472))

Fixes the deployment API (`DeploymentCreateRequest`, `DeploymentUpdateRequest`) so it is possible to remove the deployment-alias. An explicit empty String can now be passed to remove the alias.
Loading