From 9c0bcd43c79f0b260bb4c1cb81a4c9ef263319b4 Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Wed, 1 Feb 2023 11:24:35 -0800 Subject: [PATCH] prepare for v1.0.3 --- CHANGELOG.md | 7 +++++++ haxelib.json | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df81406..c924a84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # feathersui-rpc-services Change Log +## 1.0.3 (2023-02-01) + +- Fixed registering of aliases for `feathers.messaging.Producer` and `feathers.messaging.Consumer`. +- Fixed failure to catch thrown `String` because try/catch blocks were targeting `haxe.Exception` only. +- Fixed a couple of public getter and setter functions that should have been private. +- The `headers` property of the `IMessage` interface is typed as `Dynamic` instead of `Any` to be closer to the original AS3 version. + ## 1.0.2 (2022-10-17) - Fixed failure to catch thrown `haxe.Exception` because try/catch blocks were targeting `openfl.errors.Error` instead. diff --git a/haxelib.json b/haxelib.json index c0d062a..2f16ea8 100644 --- a/haxelib.json +++ b/haxelib.json @@ -4,7 +4,7 @@ "license": "Apache", "tags": ["openfl", "feathersui", "rpc", "remoteobject", "amf"], "description": "RPC services for Feathers UI", - "version": "1.0.2", + "version": "1.0.3", "classPath": "src", "dependencies": { "openfl": "", @@ -12,5 +12,5 @@ "amfio": "" }, "contributors": ["bowlerhat"], - "releasenote": "Catch haxe.Exception instead of openfl.errors.Error fix" + "releasenote": "Producer and Consumer fixes" }