Angular 6 Support
See original GitHub issueIssue description
Currently this package requires @angular/common@^4.0.0 || ^5.0.0
and @angular/core@^4.0.0 || ^5.0.0
. I think that the changes are not so relevant, so probably the migration to support angular 6 is easy.
The main issue that I’ve found is about the RxJS change to v6.0.0, where some modules changes the path, so we need to update it.
It also might need the release of a 2.0.0 version, since there are many breaking changes on package dependencies
Issue Analytics
- State:
- Created 5 years ago
- Reactions:31
- Comments:24 (4 by maintainers)
Top Results From Across the Web
Angular versioning and releases
All major releases are typically supported for 18 months. Support stage, Support Timing, Details. Active, 6 months, Regularly-scheduled updates and patches are ...
Read more >Angular - endoflife.date
Release Released Active Support
15 1 month and 1 week ago. (16 Nov 2022) Ends in 4 months and 3 weeks. (18 M...
14 (...
Read more >Angular (web framework) - Wikipedia
Angular is a TypeScript-based, free and open-source web application framework led by the Angular Team at Google and by a community of individuals...
Read more >Angular 6 - Overview
Angular 6 - Overview, There are five major releases of Angular. ... Lambda support − lambda expressions with proper names can be used...
Read more >Angular Version List & History – Angular 2,4,5,6,7,8 - Guru99
History of Angular Versions · Angular version 1.0, which is known as AngularJS, was released in 2010 by Google · Angular version 2.0...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I solved my issues via installing
npm install rxjs@6 rxjs-compat@6 --save
as described https://github.com/ReactiveX/rxjs/blob/master/MIGRATION.md
The agm maps breaks with RXJS 6 and it needs the compat module for backwards compatability
@ukon1990 the angular 6 switched to use webpack 4, which changed behavior while dynamic importing commonjs modules. I don’t know why but snazzy-info-window directive is using dynamic import snazzy-info-window library, that’s why there are one warning and broken snazzy-info-window directive. To fix it https://github.com/SebastianM/angular-google-maps/blob/1a74b3a9670cf4dbf442033a17dea290dfadc408/packages/snazzy-info-window/directives/snazzy-info-window.ts#L228 should be changed to
this._nativeSnazzyInfoWindow = new elems[0].default(options);
but it is not backward compatibility solution (it won’t work in angular5/webpack3). I don’t know how fix it right.