Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Feb 8, 2025
1 parent 39ae7bd commit 1884dd2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* [Python] - Print root module and module function comments (by @alfonsogarciacaro)
* [Rust] Add support for module comments (by @ncave)
* [Rust] Add support for null strings (by @ncave)
* [TS/JS] `PojoDefinedByConsArgs` attribute support (by @alfonsogarciacaro)

## 5.0.0-alpha.9 - 2025-01-28

Expand Down
1 change: 1 addition & 0 deletions src/Fable.Compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* [Python] - Print root module and module function comments (by @alfonsogarciacaro)
* [Rust] Add support for module comments (by @ncave)
* [Rust] Add support for null strings (by @ncave)
* [TS/JS] `PojoDefinedByConsArgs` attribute support (by @alfonsogarciacaro)

## 5.0.0-alpha.9 - 2025-01-28

Expand Down
4 changes: 4 additions & 0 deletions src/Fable.Core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added

* [TS/JS] `PojoDefinedByConsArgs` attribute (by @alfonsogarciacaro)

## 4.3.0 - 2024-01-25

### Added
Expand Down
3 changes: 2 additions & 1 deletion tests/Js/Main/JsInteropTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ module TaggedUnion =

#if FABLE_COMPILER
module PojoDefinedByConsArgs =
open Fable.Core.JS

[<AllowNullLiteral>]
[<PojoDefinedByConsArgs>]
Expand Down Expand Up @@ -384,7 +385,7 @@ module PojoDefinedByConsArgs =
let user = User(1, "John")
user.age |> equal None
user.age <- Some 42
user.age |> equal (Some 4)
user.age |> equal (Some 42)
]
#endif

Expand Down

0 comments on commit 1884dd2

Please sign in to comment.