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
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,35 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

#### NoaaClient Package
- **RTSW Client** - NOAA real-time solar wind integration
- `IRtswClient` with 1-minute magnetometer and plasma feeds
- Object-array JSON parsers for `rtsw_mag_1m.json` and `rtsw_wind_1m.json`
- Response records map the full NOAA RTSW schema (`BxGsm`, `ProtonDensity`, quality flags, etc.), not legacy DSCOVR field names

### Removed

#### NoaaClient Package
- **DSCOVR Client Surface** (breaking change)
- Removed `IDscovrClient`, related implementations, models, tests, and benchmarks
- Removed DSCOVR sample app menu entries

### Changed

#### NoaaClient Package
- **ACE client deprecated** — `IAceClient` and ACE response models marked `[Obsolete]` in favor of `IRtswClient`; removal tracked in [#3](https://github.com/Aurora-Science-Hub/Integrations/issues/3)
- **RTSW response models** (breaking change within unreleased RTSW surface)
- Magnetometer and wind records now use live NOAA RTSW property names
- Removed misleading aliases (`Latitude`/`Longitude`, `BulkSpeed`/`IonTemperature`)
- Optional JSON fields are parsed as nullable; only `time_tag`, `active`, and `source` are required

#### Dependency Injection
- `AddNoaaClients()` now registers `IRtswClient` instead of `IDscovrClient`

## [1.0.0] - 2026-02-05

### Added
Expand Down Expand Up @@ -48,4 +77,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- GitHub Actions CI/CD pipeline for build and test

[1.0.0]: https://github.com/Aurora-Science-Hub/Integrations/releases/tag/1.0.0
[Unreleased]: https://github.com/Aurora-Science-Hub/Integrations/compare/1.0.0...HEAD

2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</PropertyGroup>

<PropertyGroup>
<PackageBaseVersion>1.0.0</PackageBaseVersion>
<PackageBaseVersion>1.1.0</PackageBaseVersion>
<MinVerTagPrefix></MinVerTagPrefix>
</PropertyGroup>

Expand Down
12 changes: 6 additions & 6 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<EnablePackageVersionOverride>true</EnablePackageVersionOverride>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="AuroraScienceHub.Framework.Http" Version="10.0.0" />
<PackageVersion Include="AuroraScienceHub.Framework.Utilities" Version="10.0.0" />
<PackageVersion Include="AuroraScienceHub.Framework.Http" Version="10.0.5" />
<PackageVersion Include="AuroraScienceHub.Framework.Utilities" Version="10.0.5" />
<PackageVersion Include="BenchmarkDotNet" Version="0.15.8" />
<PackageVersion Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
Expand All @@ -16,9 +16,9 @@
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.14.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.14.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.7" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="10.0.7" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.7" />
<PackageVersion Include="MinVer" Version="6.0.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageVersion Include="Moq" Version="4.20.72" />
Expand All @@ -31,4 +31,4 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageVersion>
</ItemGroup>
</Project>
</Project>
9 changes: 6 additions & 3 deletions NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,19 @@
<configuration>
<packageSources>
<clear />
<!-- Do not add any additional feeds. If new packages are needed they need to come from nuget.org or AuroraScienceHub feed -->
<!-- Primary source -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<!-- Fallback source for packages unavailable on nuget.org -->
<add key="AuroraScienceHub" value="https://nuget.pkg.github.com/Aurora-Science-Hub/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*"/>
<!-- Current repository packages resolve from nuget.org -->
<package pattern="*" />
</packageSource>
<packageSource key="AuroraScienceHub">
<package pattern="AuroraScienceHub.*"/>
<!-- Explicit opt-in for future GitHub-only packages -->
<package pattern="AuroraScienceHub.*" />
</packageSource>
</packageSourceMapping>
<disabledPackageSources>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Each package provides HTTP clients for accessing external data sources with stro
| Component | Description |
|---------------------|-----------------------------------------------------------------------------------------------------------------------------|
| **ACE Client** | Advanced Composition Explorer satellite data - magnetometer and SWEPAM measurements |
| **DSCOVR Client** | Deep Space Climate Observatory data - solar wind and magnetic field measurements with multiple time ranges (2H, 1D, 3D, 7D) |
| **RTSW Client** | NOAA real-time solar wind feeds - 1-minute magnetometer and plasma data with `active` and `source` metadata |
| **KP-Index Client** | Geomagnetic activity indices - nowcast and forecast data (3-day and 27-day) |

See [detailed documentation](src/NoaaClient/README.md) for usage examples and API reference.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

<ItemGroup>
<EmbeddedResource Include="NoaaClient\Ace\Samples\**" />
<EmbeddedResource Include="NoaaClient\Dscovr\Samples\**" />
<EmbeddedResource Include="NoaaClient\KpIndex\Samples\**" />
</ItemGroup>

Expand Down

This file was deleted.

This file was deleted.

Loading
Loading