Skip to content
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
10 changes: 5 additions & 5 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
with:
domain: ${{github.repository_owner}}

- name: Install .NET 6
- name: Install .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
dotnet-version: "8.0.x"

- name: Install .NET 7
- name: Install .NET 9
uses: actions/setup-dotnet@v1
with:
dotnet-version: "7.0.x"
dotnet-version: "9.0.x"

- name: Build
run: ./build.sh --target build
Expand All @@ -52,4 +52,4 @@ jobs:
- name: Push result to Testspace server
run: |
testspace [macos]**/*.trx
if: always()
if: always()
10 changes: 5 additions & 5 deletions .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
with:
domain: ${{github.repository_owner}}

- name: Install .NET 6
- name: Install .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
dotnet-version: "8.0.x"

- name: Install .NET 8
- name: Install .NET 9
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.x"
dotnet-version: "9.0.x"

- name: Build
run: ./build.sh --target build
Expand All @@ -52,4 +52,4 @@ jobs:
- name: Push result to Testspace server
run: |
testspace [linux]**/*.trx
if: always()
if: always()
10 changes: 5 additions & 5 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
with:
domain: ${{github.repository_owner}}

- name: Install .NET 6
- name: Install .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
dotnet-version: "8.0.x"

- name: Install .NET 8
- name: Install .NET 9
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.x"
dotnet-version: "9.0.x"

- name: Build
run: .\build.ps1 --target build
Expand All @@ -46,4 +46,4 @@ jobs:
- name: Push result to Testspace server
run: |
testspace [windows]**/*.trx
if: always()
if: always()
10 changes: 5 additions & 5 deletions .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:
- name: Install NuGet
uses: NuGet/setup-nuget@v1.0.5

- name: Install .NET 6
- name: Install .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
dotnet-version: "8.0.x"

- name: Install .NET 8
- name: Install .NET 9
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.x"
dotnet-version: "9.0.x"

- name: Build & Test
run: ./build.sh
Expand All @@ -67,4 +67,4 @@ jobs:

- name: NuGet Push
if: ${{ github.event.inputs.package-source == 'nuget' }}
run: ./build.sh --target nuget-push --package-source ${{ github.event.inputs.package-source }} --package-id ${{ github.event.inputs.package-id }} --package-version ${{ github.event.inputs.package-version }} --package-secret ${{secrets.NUGET_API_KEY}}
run: ./build.sh --target nuget-push --package-source ${{ github.event.inputs.package-source }} --package-id ${{ github.event.inputs.package-id }} --package-version ${{ github.event.inputs.package-version }} --package-secret ${{secrets.NUGET_API_KEY}}
32 changes: 31 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# LocalStack .NET Client Change Log

### [v1.6.0](https://github.com/localstack-dotnet/localstack-dotnet-client/releases/tag/v1.6.0)

#### 1. General

- **Framework Support Updates:**
- **.NET 9** support added.
- **Deprecated** support for **.NET 6**.
- Continued support for **.NET Standard 2.0** to maintain compatibility with older .NET versions.

- **Functional Tests Enhancements:**
- **Removed** tests for legacy LocalStack versions and versions **v1.3.1** and **v2.3.2**.
- **Note:** LocalStack.NET no longer guarantees compatibility with v1 and v2 series.
- **Added** functional test support for LocalStack versions:
- **v3.7.1**
- **v4.3.0**

- **Package Updates:**
- **AWSSDK.Core** minimum version set to **3.7.402**.

- **Testing Compatibility:**
- Successfully tested against LocalStack versions:
- **v3.7.1**
- **v4.3.0**

#### 3. Warnings

- **Breaking Changes Postponed:**
- The planned breaking changes have been postponed to the next release.
- **Important:** Users should anticipate some breaking changes in the next release due to the removal of legacy support and configuration updates.

### [v1.5.0](https://github.com/localstack-dotnet/localstack-dotnet-client/releases/tag/v1.5.0)

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

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

- First release.
- First release.
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<Owners>LocalStack.NET</Owners>
<PackageProjectUrl>https://github.com/localstack-dotnet/localstack-dotnet-client</PackageProjectUrl>
<PackageIcon>localstack-dotnet-square.png</PackageIcon>
<PackageMainVersion>1.5.0</PackageMainVersion>
<PackageExtensionVersion>1.3.0</PackageExtensionVersion>
<PackageMainVersion>1.6.0</PackageMainVersion>
<PackageExtensionVersion>1.4.0</PackageExtensionVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<LangVersion>12.0</LangVersion>
<LangVersion>13.0</LangVersion>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<AnalysisLevel>latest</AnalysisLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Loading
Loading