Skip to content

Commit

Permalink
update CHANGELOG and README
Browse files Browse the repository at this point in the history
  • Loading branch information
magiconair committed Aug 14, 2023
1 parent 3425f7b commit a992ba7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Changelog

## Unreleased
## v0.5.0 (14 Aug 2023)

* Drop WithContext methods and require all methods to have a context (#554)

## v0.4.1 (14 Aug 2023)

* Update the schema to v1.05.02-2022-11-01 and regenerate code (#589)
* fix: handle extra padding if key length > 2048 (#648)
* uasc: return an error for invalid uri/mode combinations with None (#664)
* go1.21 and python3.11 (for testing)

## v0.4.0 (13 Jun 2023)

Expand Down
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,24 @@ See below for a list of [Tested Platforms](#tested-platforms) and [Supported Fea
[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/gopcua/opcua/blob/master/LICENSE)
[![Version](https://img.shields.io/github/tag/gopcua/opcua.svg?color=blue&label=version)](https://github.com/gopcua/opcua/releases)

## NOTE: v0.5.0 BREAKING CHANGE: All cleint methods now require a context

With the release of `v0.5.0` on 14 Aug 2023 we now require all client
methods to have a context.

In `v0.3.0` on 21 Jan 2022 release we added `WithContext` variants for all methods
to avoid a breaking change. All existing methods without a context had a disclaimer
that with `v0.5.0` their signature would change to include the context
and that the `WithContext` method would be removed.

This time has now come and `v0.5.0` has been released on 14 Aug 2023.

Please update your code and let us know if there are any issue!

Thank you!

Your GOPCUA Team

## Quickstart

```sh
Expand Down

0 comments on commit a992ba7

Please sign in to comment.