You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2016/11/08 00:39:18 UTC

[1/2] git commit: [flex-sdk] [refs/heads/release4.16.0] - update release notes

Repository: flex-sdk
Updated Branches:
  refs/heads/release4.16.0 cd45ebd25 -> 249ed425a


update release notes


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/0e8e8b26
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/0e8e8b26
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/0e8e8b26

Branch: refs/heads/release4.16.0
Commit: 0e8e8b264b3f29bc1823337e7d1eff0f942a314a
Parents: cd45ebd
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Nov 8 11:01:21 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Nov 8 11:01:21 2016 +1100

----------------------------------------------------------------------
 RELEASE_NOTES | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0e8e8b26/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 1b7c475..14c310b 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -23,6 +23,7 @@ FLEX-35123  DOM XSS vulnerability in history.js
 FLEX-35109  falcon compiler's build.xml error
 FLEX-35106  Incorrect date in datefield popup for fr_FR locale
 FLEX-35100  TextFlowLine.recreateTextLine() throws a null object reference error
+FLEX-35099  BusyIndicator has the wrong wrong rotation centre for iOS
 FLEX-35097  How to compile AIR beta 22 with Flex SDK?
 FLEX-35082  moveIndexFindRow doesn't accept integer values
 FLEX-35078  Fatal when SelectionManager tries to reapply selection onto changed textFlow
@@ -41,6 +42,7 @@ FLEX-35028  Error in DataGrid getHeaderRendererAt(-1)
 FLEX-35025  Validator results cannot be intercepted if the value is null
 FLEX-34935  Copy From Word Document And Pasting Into TextRegion Not Working Properly
 FLEX-34926  Misplaced [PercentProxy] metatag in GridColumn
+FLEX-34738  Not delete BusyIndicator
 FLEX-34698  Flatspark ButtonIcon: Introduce 'iconFontPlacement' style
 FLEX-34391  ScrollableStageText with large y value crashes app
 FLEX-34088  CalloutButton closes when selecting an item in a spark Dropdown


[2/2] git commit: [flex-sdk] [refs/heads/release4.16.0] - FLEX-34811 allow apostrophe in user name part of email address

Posted by jm...@apache.org.
FLEX-34811 allow apostrophe in user name part of email address


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/249ed425
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/249ed425
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/249ed425

Branch: refs/heads/release4.16.0
Commit: 249ed425a0d4d6cc7b4dad09ade15749f707febc
Parents: 0e8e8b2
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Nov 8 11:39:07 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Nov 8 11:39:07 2016 +1100

----------------------------------------------------------------------
 frameworks/projects/framework/src/mx/validators/EmailValidator.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/249ed425/frameworks/projects/framework/src/mx/validators/EmailValidator.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/validators/EmailValidator.as b/frameworks/projects/framework/src/mx/validators/EmailValidator.as
index 9776db3..69fd688 100644
--- a/frameworks/projects/framework/src/mx/validators/EmailValidator.as
+++ b/frameworks/projects/framework/src/mx/validators/EmailValidator.as
@@ -74,7 +74,7 @@ public class EmailValidator extends Validator
 	 *  @private
 	 */
 	private static const DISALLOWED_LOCALNAME_CHARS:String =
-								"()<>,;:\\\"[] `~!#$%^&*={}|/?'\t\n\r";
+								"()<>,;:\\\"[] `~!#$%^&*={}|/?\t\n\r";
 	/**
 	 *  @private
 	 */