Ember upgrade to 3.27 TypeError: Ember.computed.alias is not a function - ember.js

I'm upgrading a project from 3.26 to 3.27 using ember-cli-update, and then this error started happening, As I could see the error is raised when we try to access some method inside #ember/computed like alias. The first time the error occurred was here
I just commented the line to test and the same error occurred in another addon. So it's not related to the addon but something in the project

Related

Angular build error in core/src/render3/interfaces

While building an Angular 6 app i get a compile error in #angular/core/src/render3/interfaces on line 35. The line is:
[ACTIVE_INDEX]: number | null;
and the error is:
error TS1169: A computed property name in an interface must directly refer to a built-in symbol.
I an using #angular/core#6.1.6. Am I doing something wrong or is this an Angular bug?
Verify that Visual Studio is targeting the correct version of Typescript (as seen in your package.json), then try deleting your node_modules folder, and rerunning npm install.
I believe that this is caused by running Angular 6 with an earlier, incompatible version of typescript (<2.7), because it looks like the ability used by the container.d.ts file (referenced in your error) to use Constant-Named Properties was added in Typescript 2.7. Of course, if it were that simple then ng serve would tell you about the Typescript incompatibility, so I assume that I'm either wrong, or that your environment is playing tricks on you.
See here for a related question.

Ember's HTMLBars Compiler Error: Unexpected token export

I've inherited an Ember application at v1.8.1. I have successfully upgraded the application to v.1.9.1, and would like to continue to update it to at least v1.13.8.
In my v1.10.1 build, it appears that the ember-template-compiler is not quite meshing with Ember and am getting the following errors in the console:
Uncaught SyntaxError: Unexpected token export
Uncaught TypeError: Cannot read property 'name' of undefined
The line erroring for the 'name' error is:
set(appController, 'currentRouteName', infos[infos.length - 1].name);
infos is empty... so it doesn't have an object to call name on.
I'm looking for some direction in how to better track down the error, and what needs to be done to successfully upgrade.
The project is using broccoli (but not ember cli), so i'm trying to make the ember-cli-htmlbars plugin work.
Is there a better way to compile HTMLBars for Ember v1.10.1?
Should I transition the project over to Ember cli?
Please let me know what code you need would need to see.

Magento EcomDev PHPUnit - Admin Session Error on Install

After installing this package and running the initial phpunit command, I get failures for every method in the EcomDev_PHPUnitTest_Test_Helper_Session class, and one error.
There error is:
1) EcomDev_PHPUnitTest_Test_Helper_Session::testAdminSessionAllRights Exception: Warning: simplexml_load_string(): Entity: line 10: parser error : Start tag expected, '<' not found in /var/www/lib/Varien/Simplexml/Config.php on line 510
If I comment out the 3 tests in this class (testAdminSessionAllRights, testAdminSessionOnlyCatalog, testAdminSessionOnlyCatalogProduct) then everything passes correctly.
Any advice?
I have resolved this. One of my config XML files was commented out, however, was still registered and therefore was attempting to be parsed. It didn't have any opening XML tags (or any code / tags at all) so the parser threw an error.

DoctrineModule "reflection exception" in ZF2

Working with the Zend Framework 2 application skeleton, I have installed DoctrineModule and DoctrineORMModule according to the instructions. I am getting this error when trying to execute the doctrine.php command line tool. (FYI I do not get the error if I uninstall DoctrineORMModule)
Fatal error: Uncaught exception 'ReflectionException' with message 'Class Doctrine\DBAL\Connection does not exist'...
Any ideas?

ClojureBox initialization Warning

When I run Clojure Box it gives me the following error
"Warning (initialization): An error occurred while loading `~/.emacs':
File error: Searching for program, no such file or directory, java
To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file. Start Emacs with
the `--debug-init' option to view a complete error backtrace."
How to resolve this issue?
Okay Clojure Box is a Windows Clojure setup. It looks like you don't have Java installed yet. You'll need to install the Windows JDK from Oracle first:
http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u25-download-346242.html