Skip to content

Commit 3c8b96b

Browse files
committed
update CHANGELOG and LICENSE
1 parent d2b4014 commit 3c8b96b

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

CHANGELOG.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# LocalStack .NET Client Change Log
22

3+
### [v1.6.0](https://github.com/localstack-dotnet/localstack-dotnet-client/releases/tag/v1.6.0)
4+
5+
#### 1. General
6+
7+
- **Framework Support Updates:**
8+
- **.NET 9** support added.
9+
- **Deprecated** support for **.NET 6**.
10+
- Continued support for **.NET Standard 2.0** to maintain compatibility with older .NET versions.
11+
12+
- **Functional Tests Enhancements:**
13+
- **Removed** tests for legacy LocalStack versions and versions **v1.3.1** and **v2.3.2**.
14+
- **Note:** LocalStack.NET no longer guarantees compatibility with v1 and v2 series.
15+
- **Added** functional test support for LocalStack versions:
16+
- **v3.7.1**
17+
- **v4.3.0**
18+
19+
- **Package Updates:**
20+
- **AWSSDK.Core** minimum version set to **3.7.402**.
21+
22+
- **Testing Compatibility:**
23+
- Successfully tested against LocalStack versions:
24+
- **v3.7.1**
25+
- **v4.3.0**
26+
27+
#### 3. Warnings
28+
29+
- **Breaking Changes Postponed:**
30+
- The planned breaking changes have been postponed to the next release.
31+
- **Important:** Users should anticipate some breaking changes in the next release due to the removal of legacy support and configuration updates.
32+
333
### [v1.5.0](https://github.com/localstack-dotnet/localstack-dotnet-client/releases/tag/v1.5.0)
434

535
#### 1. New Features
@@ -195,4 +225,4 @@ Thanks to [petertownsend](https://github.com/petertownsend) for his contribution
195225

196226
### [v0.8.0.163](https://github.com/localstack-dotnet/localstack-dotnet-client/releases/tag/v0.8.0.163)
197227

198-
- First release.
228+
- First release.

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 LocalStack.NET
3+
Copyright (c) 2019-2025 LocalStack.NET
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

tests/LocalStack.Client.Functional.Tests/TestContainers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public static LocalStackBuilder LocalStackBuilder(string version)
1111
.WithEnvironment("DOCKER_HOST", "unix:///var/run/docker.sock")
1212
.WithEnvironment("DEBUG", "1")
1313
.WithEnvironment("LS_LOG", "trace-internal")
14-
.WithPortBinding(4566, true)
14+
.WithPortBinding(4566, assignRandomHostPort: true)
1515
.WithCleanUp(true);
1616
}
1717
}

0 commit comments

Comments
 (0)