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

[azeventgrid(old)] Officially deprecating this module #22643

Merged
merged 3 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions sdk/messaging/azeventgrid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Release History

## 0.4.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 0.5.0 (2024-03-27)

### Other Changes

- This module has been split into two separate modules, one for each of the two different Event Grid products.
- The **Event Grid Basic** package in *`azeventgrid/publisher`* has been **replaced**
with `github.com/Azure/azure-sdk-for-go/sdk/messaging/eventgrid/azeventgrid`
- The **Event Grid Namespaces** package in *`azeventgrid`* has been **replaced**
with `github.com/Azure/azure-sdk-for-go/sdk/messaging/eventgrid/aznamespaces`

## 0.4.0 (2023-11-27)

### Features Added
Expand Down
2 changes: 2 additions & 0 deletions sdk/messaging/azeventgrid/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Azure Event Grid Client Module for Go

**Please note this package has been moved to: [aznamespaces](https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/messaging/eventgrid/aznamespaces).**

[Azure Event Grid](https://learn.microsoft.com/azure/event-grid/overview) is a highly scalable, fully managed Pub Sub message distribution service that offers flexible message consumption patterns. For more information about Event Grid see: [link](https://learn.microsoft.com/azure/event-grid/overview).

This client module allows you to publish events and receive events using the [Pull delivery](https://learn.microsoft.com/azure/event-grid/pull-delivery-overview) API.
Expand Down
2 changes: 2 additions & 0 deletions sdk/messaging/azeventgrid/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Deprecated: Event Grid Basic client has moved to github.com/Azure/azure-sdk-for-go/sdk/messaging/eventgrid/azeventgrid
// Deprecated: Event Grid Namespaces client has moved to github.com/Azure/azure-sdk-for-go/sdk/messaging/eventgrid/aznamespaces
richardpark-msft marked this conversation as resolved.
Show resolved Hide resolved
module github.com/Azure/azure-sdk-for-go/sdk/messaging/azeventgrid

go 1.18
Expand Down
2 changes: 1 addition & 1 deletion sdk/messaging/azeventgrid/internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ const (
ModuleName = "azeventgrid"

// ModuleVersion is the semantic version (see http://semver.org) of this module.
ModuleVersion = "v0.4.1"
ModuleVersion = "v0.5.0"
)
2 changes: 2 additions & 0 deletions sdk/messaging/azeventgrid/publisher/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Azure Event Grid Publisher Client Module for Go

**Please note this package has been moved to: [azeventgrid](https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/messaging/eventgrid/azeventgrid).**

[Azure Event Grid](https://learn.microsoft.com/azure/event-grid/overview) is a highly scalable, fully managed Pub Sub message distribution service that offers flexible message consumption patterns. For more information about Event Grid see: [link](https://learn.microsoft.com/azure/event-grid/overview).

The client in this package can publish events to [Event Grid topics](https://learn.microsoft.com/azure/event-grid/concepts).
Expand Down