You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jo...@apache.org on 2023/03/08 22:52:09 UTC

svn commit: r60493 - in /dev/flex/BlazeDS: ./ 4.8.0/ 4.8.0/rc1/ 4.8.0/rc1/binaries/

Author: joshtynjala
Date: Wed Mar  8 22:52:09 2023
New Revision: 60493

Log:
blazeds-4.8.0-rc1

Added:
    dev/flex/BlazeDS/
    dev/flex/BlazeDS/4.8.0/
    dev/flex/BlazeDS/4.8.0/rc1/
    dev/flex/BlazeDS/4.8.0/rc1/README
    dev/flex/BlazeDS/4.8.0/rc1/RELEASE_NOTES
    dev/flex/BlazeDS/4.8.0/rc1/binaries/
    dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz   (with props)
    dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz.asc
    dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz.sha512
    dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip   (with props)
    dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip.asc
    dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip.sha512
    dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz   (with props)
    dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz.asc
    dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz.sha512
    dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip   (with props)
    dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip.asc
    dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip.sha512

Added: dev/flex/BlazeDS/4.8.0/rc1/README
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/README (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/README Wed Mar  8 22:52:09 2023
@@ -0,0 +1,145 @@
+Apache Flex BlazeDS
+===================
+
+    Apache Flex SDK is an application development framework for easily building
+    Flash-based applications for mobile devices, web browsers, and desktops.
+
+    Apache Flex BlazeDS is the server-based Java remoting and web messaging
+    technology that enables developers to easily connect to back-end distributed
+    data and push data in real-time to Adobe® Flex® and Adobe AIR™ applications
+    for more responsive rich Internet application (RIA) experiences.
+
+    Apache Flex BlazeDS 4.8.0 is an update to the initial release of BlazeDS
+    from the Apache Software Foundation.  Prior to this, releases were provided 
+    by Adobe Systems Inc. It is compatible with most code written to target Adobe
+    Flex 4.6.
+
+    For detailed information about Apache Flex please visit
+    http://flex.apache.org/
+
+
+Getting the latest sources via Git
+==================================
+
+    Getting the source code is the recommended way to get Apache Flex BlazeDS.
+
+    You can always checkout the latest source via git using the following
+    command:
+
+	 git clone https://git-wip-us.apache.org/repos/asf/flex-blazeds.git blazeds
+	 cd blazeds
+	 git checkout develop
+
+    For further information visit http://flex.apache.org/download-source.html
+
+
+Building Apache Flex BlazeDS 4.8.0
+==================================
+
+    Apache Flex BlazeDS is a large project. It requires some build tools which must be
+    installed prior to building BlazeDS and it depends on some external software
+    which are downloaded as part of the build process.  Some of these have
+    different licenses.  See the Software Dependencies section for more
+    information on the external software dependencies.
+
+    From Apache's perspective, the Adobe Flash Player and Adobe AIR have
+    excluded licenses so they can not be bundled with the Apache Flex binaries.
+    They must be installed prior to building Apache Flex.
+
+    Linux support is currently experimental and while it is possible to compile
+    BlazeDS it has not been fully tested so you may run into issues.
+
+
+Install Prerequisites
+---------------------
+
+    Before building the Apache Flex BlazeDS you must install the following software
+    and set the corresponding environment variables using absolute file paths.  
+    Relative file paths will result in build errors.
+
+    ==================================================================================
+    SOFTWARE                                    ENVIRONMENT VARIABLE (absolute paths)
+    ==================================================================================
+
+    Java SDK 1.8 or greater (*1)                JAVA_HOME
+
+    Maven 2.2.0 or greater (*1)                 MAVEN_HOME
+
+    ==================================================================================
+
+    *1) The bin directories for MAVEN_HOME and JAVA_HOME should be added to your
+        PATH.
+
+        On Windows, set PATH to
+
+            PATH=%PATH%;%MAVEN_HOME%\bin;%JAVA_HOME%\bin
+
+        On the Mac (bash), set PATH to
+
+            export PATH="$PATH:$MAVEN_HOME/bin:$JAVA_HOME/bin"
+
+         On Linux make sure you path include MAVEN_HOME and JAVA_HOME.
+
+
+Software Dependencies
+---------------------
+
+    Apache BlazeDS uses a variety of third party libraries. A detailed summary
+    of all of these dependencies is listed in the releases DEPENDENCIES file.
+
+
+Using the Binary Distribution
+-----------------------------
+
+    Binary artifacts of Apache BlazeDS are available on Apache's public Maven 
+	repositories.
+
+    By adding a Dependency to the following Maven artifact the binary 
+	version of Apache BlazeDS will automatically be downloaded.
+
+    <dependency>
+        <groupId>org.apache.flex.blazeds</groupId>
+        <artifactId>flex-messaging-common</artifactId>
+        <version>4.8.0</version>
+    </dependency>
+    <dependency>
+        <groupId>org.apache.flex.blazeds</groupId>
+        <artifactId>flex-messaging-core</artifactId>
+        <version>4.8.0</version>
+    </dependency>
+    <dependency>
+        <groupId>org.apache.flex.blazeds</groupId>
+        <artifactId>flex-messaging-proxy</artifactId>
+        <version>4.8.0</version>
+    </dependency>
+    <dependency>
+        <groupId>org.apache.flex.blazeds</groupId>
+        <artifactId>flex-messaging-remoting</artifactId>
+        <version>4.8.0</version>
+    </dependency>
+
+
+Building the Source
+----------------------------------------------
+
+    When you have all the prerequisites in place and the environment variables
+    set (see Install Prerequisites above), use
+
+        cd <flex-blazeds.dir>
+        mvn install
+
+    To build a binary distribution, use the with-distribution profile.
+    
+        mvn install -P with-distribution
+
+
+Running Tests
+-------------
+
+    The testsuite is automatically executed during a normal maven build.
+
+
+Thanks for using Apache Flex BlazeDS.  Enjoy!
+
+                                          The Apache Flex Project
+                                          <http://flex.apache.org>

Added: dev/flex/BlazeDS/4.8.0/rc1/RELEASE_NOTES
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/RELEASE_NOTES (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/RELEASE_NOTES Wed Mar  8 22:52:09 2023
@@ -0,0 +1,144 @@
+Apache Flex BlazeDS 4.8.0
+=======================
+
+Apache Flex BlazeDS 4.8.0 is an update to 4.7.3 to upgrade dependencies and make
+general improvements.
+
+- Version 4.8.0 is the first release of BlazeDS from Apache that includes a
+  binary distribution
+- BlazeDS now requires Java 8 or newer
+- Disabled the flex-messaging-proxy module because it required a third-party
+  dependency that is no longer maintained
+   - If flex.messaging.services.HTTPProxyService is referenced in
+     services-config.xml or proxy-config.xml, BlazeDS now logs an error
+     that this type of service is no longer supported
+- Removed the blazeds-spring-boot-starter and blazeds-spring-boot-archetype
+  modules because they required a third-party dependency that is no longer
+  maintained
+- Upgraded dependencies to make BlazeDS more secure
+
+Known Issues
+_____________
+FLEX-34648 Memory Leak occurred in AsyncMessage when sending a lot of messages
+
+Apache Flex BlazeDS 4.7.3
+=======================
+
+Apache Flex BlazeDS 4.7.3 is an update to 4.7.2 which adds a new
+blazeds-spring-boot-starter module for easily setting up a BlazeDS server with
+Spring Boot. It also provides Maven archetypes for easily creating new spring-boot
+project that make use of BlazeDS. We also did quite a lot of fine-tuning of the
+security default settings to make BlazeDS more secure.
+
+Starting with 4.7.3 BlazeDS Deserialization of XML is disabled completely per default
+but can easily be enabled in your services-config.xml:
+
+    <channels>
+        <channel-definition id="amf" class="mx.messaging.channels.AMFChannel">
+            <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amf"
+                      class="flex.messaging.endpoints.AMFEndpoint"/>
+            <properties>
+                <serialization>
+                    <allow-xml>true</allow-xml>
+                </serialization>
+            </properties>
+        </channel-definition>
+    </channels>
+
+Also we now enable the ClassDeserializationValidator per default to only allow
+deserialization of whitelisted classes. BlazeDS internally comes with the following
+whitelist:
+
+    flex.messaging.io.amf.ASObject
+    flex.messaging.io.amf.SerializedObject
+    flex.messaging.io.ArrayCollection
+    flex.messaging.io.ArrayList
+    flex.messaging.messages.AcknowledgeMessage
+    flex.messaging.messages.AcknowledgeMessageExt
+    flex.messaging.messages.AsyncMessage
+    flex.messaging.messages.AsyncMessageExt
+    flex.messaging.messages.CommandMessage
+    flex.messaging.messages.CommandMessageExt
+    flex.messaging.messages.ErrorMessage
+    flex.messaging.messages.HTTPMessage
+    flex.messaging.messages.RemotingMessage
+    flex.messaging.messages.SOAPMessage
+    java.lang.Boolean
+    java.lang.Byte
+    java.lang.Character
+    java.lang.Double
+    java.lang.Float
+    java.lang.Integer
+    java.lang.Long
+    java.lang.Object
+    java.lang.Short
+    java.lang.String
+    java.util.ArrayList
+    java.util.Date
+    java.util.HashMap
+    org.w3c.dom.Document
+
+If you need to deserialize any other classes, be sure to register them in your
+services-config.xml:
+
+    <validators>
+        <validator class="flex.messaging.validators.ClassDeserializationValidator">
+            <properties>
+                <allow-classes>
+                    <class name="org.mycoolproject.*"/>
+                    <class name="flex.messaging.messages.*"/>
+                    <class name="flex.messaging.io.amf.ASObject"/>
+                </allow-classes>
+            </properties>
+        </validator>
+    </validators>
+
+(Beware, by manually providing a whitelist the default whitelist is disabled)
+
+Known Issues
+_____________
+FLEX-34648 Memory Leak occurred in AsyncMessage when sending a lot of messages
+
+Apache Flex BlazeDS 4.7.2
+=======================
+
+Apache Flex BlazeDS 4.7.2 is an update to 4.7.1 to allow configuration control
+over allowing document type declarations inside an AMF XML payload.
+
+Known Issues
+_____________
+FLEX-34648 Memory Leak occurred in AsyncMessage when sending a lot of messages
+
+Apache Flex BlazeDS 4.7.1
+=======================
+
+Apache Flex BlazeDS 4.7.1 is an update to 4.7.0 to allow configuration control
+over XML Entity processing. 
+
+Known Issues
+_____________
+FLEX-34648 Memory Leak occurred in AsyncMessage when sending a lot of messages
+
+Apache Flex BlazeDS 4.7
+=======================
+
+Apache Flex BlazeDS 4.7 is the first release of BlazeDS from Apache. Earlier
+releases were provided by Adobe Systems Inc. 
+
+Known Issues
+_____________
+
+
+Differences from Adobe BlazeDS 4.6 include:
+
+- No functional differences the only changes that were made were adding code to make the
+  test-suite run against a server instance brought up by the test-suite itself making it
+  self sufficient. The Adobe version relied on the availability of a running BlazeDS server
+  instance.
+
+Please report new issues to our bug tracker at:
+
+    https://issues.apache.org/jira/browse/FLEX
+
+                                          The Apache Flex Project
+                                          <http://flex.apache.org/>

Added: dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz.asc
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz.asc (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz.asc Wed Mar  8 22:52:09 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQJLBAABCgA1FiEEUIiMVgu2hVY9sz5N63ovhoDfT0gFAmQJCmcXHGpvc2h0eW5q
+YWxhQGFwYWNoZS5vcmcACgkQ63ovhoDfT0jPEw/+JZ26FbiP8HLcab35AWN8TLzp
+vWiydiP5yqdlUDmaRmfXjkJZEhjOgoC18AFHCwXaPNrpTjro+Si8VVjazh6l6kan
+oevo01qnB48W06lErS8FdUDO67seTkvdUo11wqS8wQpEwK0dtTD2qJMhiR7WJPzu
+izKRilgYps8PaeXGW7f5u1jcU3ZoUpCZtrbTzrLZd1GCYEwvswwEQnj+Immda2Aa
+BCMrwlIyZT8/5+t6270aTM5hyPrpIb3zt7pW7o+N+dcJps0GWKPL0Bxv+WlAXicf
+XuLhxMdCAfnhUuF0BGChKuymrq+z08DY50SddClkCNOEkTKtBidsfBNcC0QD798Q
+I9rgnKX65dZ313E/qzC9kfTBPCTc5ptE10OhMoVnf+o+FhoPff7vYrhpYPG9QgZB
+Bqic6WGfmvHwgNpjhrv6w0+8NqF6CMBhTrEScpeb8w74uP8YQKC99CeAnYuFGgWN
+HdFFEKRRcOizhPkijOyjJMSxywVull5fUtIuax4WdOmcN31ct1ANqIKljYVLrldP
+gjvahe/7EFYr5kYeeqgkL6xUsKgnPt/j6yF5KbJtckflgXUcbmfXzbd8cdPhFswE
+XtJswAAdxyYRX26xK64QQtnbhr/m5MCMjdjc2fwJeR57Z8wlWjcfuenlwQCqGdRl
+PyxBk9XOVDtjfEat82k=
+=Wfcb
+-----END PGP SIGNATURE-----

Added: dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz.sha512
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz.sha512 (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.tar.gz.sha512 Wed Mar  8 22:52:09 2023
@@ -0,0 +1 @@
+1c7ca25ba09a25ce7c50b989ad09f9faf7033b60c573525f39e8c8d897ea921a37560f85e3c6f78bd6b0c796cd958f5f6988be20a85f8273dcb9697335e423c6
\ No newline at end of file

Added: dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip.asc
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip.asc (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip.asc Wed Mar  8 22:52:09 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQJLBAABCgA1FiEEUIiMVgu2hVY9sz5N63ovhoDfT0gFAmQJCmcXHGpvc2h0eW5q
+YWxhQGFwYWNoZS5vcmcACgkQ63ovhoDfT0gNyA//Ym+pq4FUekKPOpOnupdIWpfT
+f7RLSw5jAPsuty+FtdKX2Dz7rWIKOhZ/IVIYpJrO7eguG2wZhL/75YqsVqIQHB0+
+z58esmkCgEYB8WBKwBW97OeQzxLX0FcChW6fmrz8OSBAAG9Poq0jyuiR1w13MTAx
+ddIW7u67+HGPhI9EOgo3lLIyR3SRALJrEjlcJkGY8d5/I9+Th3TIlBfEx96owGTp
+a2zRTV2yTgnFH0y/OWxJCkYSTOg2NGBhIhXB4A3UBbrZy7R031w0R6HV/kL/a1ti
+JVmP4GWk+iO5RxJ6LJcMeK5/Z/Uu/FoRRBRskhuxutxr7gUiE3Mw/WcLdVtl3FYe
+YOla3rCqlc7QbkQuQuxWojUAJhoq4u40mItfI0jD+MJC8MR3AR3MGRKNlpcUkSRs
+7s5yMyck0PDvVr7vskPFXknNZNSgb/mzoxdhY4nNDytD6PmKZQHqwAWXU6Xwpnkv
+KtXgTB/ek6nGVVogwihZcSZRXtPRg3IVzt8QnKBb0zNzHBrnMVS3f7SyBRYy+uCg
+171vAe1nKtQ3LIou+jD1R+9ryXjqOQz82pDm0ydhR4ZjLGjedQpui7THvIuG1kP1
+FMX7zFzG/bneGMuZymZXo2kkzVLoTs+vHbVaVv3mbYPZT+06ipViQ9+8M5YTq5kq
+rLPsQZ2iK70Cn8QlCSs=
+=H16z
+-----END PGP SIGNATURE-----

Added: dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip.sha512
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip.sha512 (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/binaries/blazeds-4.8.0-binary-release.zip.sha512 Wed Mar  8 22:52:09 2023
@@ -0,0 +1 @@
+f8ade78f2e6dd8e88c1b868267d69d77f8fa5173386f384678e69ea3ef2c672634310740dea10fef34380611ff4bedfbd1f88e354ed2be8fc971a5699d6b0aab
\ No newline at end of file

Added: dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz.asc
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz.asc (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz.asc Wed Mar  8 22:52:09 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQJLBAABCgA1FiEEUIiMVgu2hVY9sz5N63ovhoDfT0gFAmQJCmYXHGpvc2h0eW5q
+YWxhQGFwYWNoZS5vcmcACgkQ63ovhoDfT0hxRxAAtjfIm28mJ3xBhDdrFwIqYK2l
+qVQUfesgLe9RT3Slkur9cOxvfhm7oeZKUSArai0HJx1kZGH7jmoe9qN0YnBBxfla
+zCOUEcdY77UBmNhYw/IZhz9RVxOg0CzrPsAdRRitL+jiYN9TAoxAW3jQXTzB1PhX
+CU7muHto9AmaSj6DzPMNuhrVXjEN7W8lLDs2YFM+faorki2iwwb0qutgSukxxeIj
+FbFpGcjhXQI+Bb6zMsylDuU0sHU4g2QylY+rs7tI8euJV75bi/irYoSuiJXNu0PR
+kZQ1/Zy7blEmuzTgTeW3/N9GjBkaO6Ysk/V30gfO6SCCva/MDDwUSjE4MWQt2ybe
+fvMxDSMimHt9NAQwIl3r7+b3fEYqOAi8J+nZJ56Np2d4KyGTFydpNeoq+IFdz4zZ
+F4DhUNTSrdxceVAW2XNV/q1Qi3EbIAUhWV6N8qtbsMO19sygwY1KWuXJs2The5I9
+gke6DSYALsdfNpQlOrA4NUqp1DxEilfYys6IOYraoGxpWHCf5REiYbJ6zmbhwOX0
+gE/qjujwyhLbfLqxHzLnAwQtczlIOwm9wz/c+Z8CksHaiPz0NnuCUm3jPqbxrAu5
+dA0OsebDr9LzYjevNQvPV9y6fw8Cho3zixhbx7zCJY/bna9wD9/OGaEuRL499QZq
+BVwBG3VVIFZppKUOe9c=
+=QcJQ
+-----END PGP SIGNATURE-----

Added: dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz.sha512
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz.sha512 (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.tar.gz.sha512 Wed Mar  8 22:52:09 2023
@@ -0,0 +1 @@
+e4acbe7d0ebda45f060a087a76eb79e84b683f1348eefc61f42c6f2590a55be1df83ee91bed56b18e22ae9beb3588326db872b7953b3a7efdff79ce38bb00efa
\ No newline at end of file

Added: dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip.asc
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip.asc (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip.asc Wed Mar  8 22:52:09 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQJLBAABCgA1FiEEUIiMVgu2hVY9sz5N63ovhoDfT0gFAmQJCmYXHGpvc2h0eW5q
+YWxhQGFwYWNoZS5vcmcACgkQ63ovhoDfT0iGpg/7B38k5DPdajazHkKNQYKZTQL3
+Htx7NXV0Q7XU6eNbOzsDJwhKrH+bmEYFoyDwVp34VnDto+uA4ALKNGOCcJ7wO8yb
+hFNNtmT/LkzhztdD4eghI0aSUTssPP0suKikTwqxdxQiZpcPmIqNY0gMv3/AXEdg
+DLMcKA5h4S4du76tt7yn9AM9TtqWGYfgraYTQCLpANo/auh3OpO5r9MPbdx3dkvg
+ERQFezAzahtmxg85tPUjlnXF3FAwXI3ga4mVAh5BKlM8Hf3aHE66N7bWf2kp+0Y1
+S5z62oeEpMe7Ak8rgXHGdpDqHX6qw7YLtNCb6DVOczIY8mQPHthLkaUJME92/ElN
+GP9QA8zvGMxft+9UwCUsoKOWpAjeyTkvXIoHggxmLc6FMh1hiraCCBbGum94kqrN
+59PryNQkIjuxKSXyVcY16buUFpEyy6udchU9z2So4QXvbpXW0FdFRGCvDObrv3MN
+MqrZFAB/7aziH6QRY87zHIbq87nnBBu8ShR/YFjEi0gkloPg0SjPtqCuQyIPWAFQ
+Ycm69ZXJnPHU/00fLFwkPbiByYz5ahgkC5w7SaqT6gbYPC0+7fuFWefkSU3Ilap+
+q//5meoXJDLjxwerkOY0UIU38kGfjObxdEN/xWkEUWDJbYHci39QWKQ0UH/vFrNM
+k8Sd5Ap5tfxTZRY60x4=
+=xl5H
+-----END PGP SIGNATURE-----

Added: dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip.sha512
==============================================================================
--- dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip.sha512 (added)
+++ dev/flex/BlazeDS/4.8.0/rc1/blazeds-4.8.0-source-release.zip.sha512 Wed Mar  8 22:52:09 2023
@@ -0,0 +1 @@
+0629578912720ae59a49a44de740586f1b4acc7a13b6773bb2e3498bff6fc06e0e805fc771cad1a49886154c4db0eb3ed29f41c6a6f9e7dc14c26038a645dc84
\ No newline at end of file