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
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
erlang 28.1
elixir 1.18.4-otp-28
erlang 28.3.1
elixir 1.19.5-otp-28
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
SPDX-FileCopyrightText: 2025 ash_outstanding contributors <https://github.com/diffo-dev/ash_outstanding/graphs.contributors>
SPDX-FileCopyrightText: 2025-2026 ash_outstanding contributors <https://github.com/diffo-dev/ash_outstanding/graphs.contributors>

SPDX-License-Identifier: MIT
-->
Expand Down Expand Up @@ -45,3 +45,10 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
### Fixes:
* updated ash dependency for CVE-2025-48043 fix

## [v0.2.4](https://github.com/diffo-dev/ash_outstanding/compare/v0.2.3...v0.2.4) (2026-02-20)

### Fixes
* documentation changes for compliance



4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add to the deps:
```elixir
def deps do
[
{:ash_outstanding, "~> 0.2.3"},
{:ash_outstanding, "~> 0.2.4"},
]
end
```
Expand Down Expand Up @@ -201,8 +201,6 @@ end

## Acknowledgements

Thanks to [Telstra](https://www.telstra.com.au/) for supporting innovation in orchestration and inventory shared-tech which resulted in the award winning difference engine [2024 TMF Excellence Award in Autonomous Networks](https://www.tmforum.org/about/awards-and-recognition/excellence-awards/winners-2024/) powering three network service entities enabling outstanding product experience [2025 TMF Excellence Award in Customer Experience](https://www.tmforum.org/about/awards-and-recognition/excellence-awards/winners-2025/) and inspiring both this open source and internal shared-tech.

Thanks to [Dmitry Maganov](https://github.com/vonagam) for [ash_jason](https://github.com/vonagam/ash_jason) which was an exemplar.

Kudos to the [Ash Core](https://github.com/ash-project) for [ash](https://github.com/ash-project/ash) 🚀
Expand Down
6 changes: 3 additions & 3 deletions ash_outstanding_extension.livemd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--
<!--
SPDX-FileCopyrightText: 2025 ash_outstanding contributors <https://github.com/diffo-dev/ash_outstanding/graphs.contributors>

SPDX-License-Identifier: MIT
Expand Down Expand Up @@ -81,8 +81,8 @@ defmodule Service do
attribute :which, :atom do
public? true
allow_nil? false
default :actual
constraints one_of: [:expected, :actual]
default :outstanding
constraints one_of: [:expected, :actual, :outstanding]
end
attribute :name, :string, public?: true
attribute :state, :atom, public?: true
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule AshOutstanding.MixProject do
use Mix.Project

@name :ash_outstanding
@version "0.2.3"
@version "0.2.4"
@description "Ash Extension for implementing Outstanding Protocol"
@github_url "https://github.com/diffo-dev/ash_outstanding"

Expand Down
Loading