Skip to content

Commit 545286f

Browse files
committed
specific specs lodash
2 parents 1835434 + 40ece0d commit 545286f

25 files changed

+421
-16445
lines changed

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "airbnb"
3+
}

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
<a name"2.2.2"></a>
2+
### 2.2.2 (2016-01-21)
3+
4+
5+
#### Bug Fixes
6+
7+
* **EventsHelper removeEvents:** hasOwnProperty check to protect againt those that override Array.prototype issue ([4aa49942](https://github.com/angular-ui/angular-google-maps/commit/4aa49942))
8+
* **angular-simple-logger:** point to browser version of the lib ([6136cb81](https://github.com/angular-ui/angular-google-maps/commit/6136cb81))
9+
* **loader:** replace remove() with removeChild() to delete an existing ([86aa0fe8](https://github.com/angular-ui/angular-google-maps/commit/86aa0fe8))
10+
* **lodash:** lodash version also fixed to 3.X on devDependencies for node #1682 ([065568aa](https://github.com/angular-ui/angular-google-maps/commit/065568aa))
11+
* **lodash extensions:** fixed indenting and other mistakes ([4f303c08](https://github.com/angular-ui/angular-google-maps/commit/4f303c08))
12+
* **mapType:** options watch deep, is now watchCollection as it avoids infinite digests ([222e68f3](https://github.com/angular-ui/angular-google-maps/commit/222e68f3))
13+
* **travis:** remove underscore spec for now ([84db4848](https://github.com/angular-ui/angular-google-maps/commit/84db4848))
14+
* **window memory scope leaks:** - WindowsParent model now correctly destroys its child model's scopes. - coffeel ([42cca071](https://github.com/angular-ui/angular-google-maps/commit/42cca071))
15+
16+
117
<a name"2.2.1"></a>
218
### 2.2.1 (2015-09-11)
319

Gruntfile.coffee

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
log = require('util').log
22
_ = require 'lodash'
33
karmaRunner = require './grunt/karma'
4+
argv = require('yargs').argv
45

56
module.exports = (grunt) ->
67
# Load the required plugins
@@ -131,4 +132,7 @@ module.exports = (grunt) ->
131132

132133
grunt.registerTask 'karma', 'karma runner', ->
133134
karmaRunner(grunt) @async()
135+
136+
grunt.registerTask 'karmaSpecific', 'karma runner', ->
137+
karmaRunner(grunt, files: argv.files) @async()
134138
#to see all tasks available don't forget "grunt --help" !!!

README.markdown

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Dependencies](https://david-dm.org/angular-ui/angular-google-maps/dev-status.svg)](https://david-dm.org/angular-ui/angular-google-maps)&nbsp;
66

77
Builds:
8-
- Master (2.2.X): [![Build Status](https://travis-ci.org/angular-ui/angular-google-maps.svg?branch=master)](https://travis-ci.org/angular-ui/angular-google-maps)
8+
- Master (2.3.X): [![Build Status](https://travis-ci.org/angular-ui/angular-google-maps.svg?branch=master)](https://travis-ci.org/angular-ui/angular-google-maps)
99

1010
- 2.2.X: [![Build Status](https://travis-ci.org/angular-ui/angular-google-maps.svg?branch=2.2.X)](https://travis-ci.org/angular-ui/angular-google-maps)
1111

@@ -96,14 +96,14 @@ PR's should follow [angular git commit conventions](https://github.com/angular/a
9696

9797
### Branching Scheme
9898

99-
PRS to master are for 2.2.X only.
99+
PRS to master are for 2.3.X only.
100100

101101
If you want it rolled into a older release then target your PR to that respective branching name like 2.1.X.
102102

103-
*Note: many fixes relevant to 2.0.X can be rolled up into 2.1.X, and 2.2.X*
103+
*Note: many fixes relevant to 2.0.X can be rolled up into 2.1.X, 2.2.X and 2.3.X*
104104

105-
- master: points to the active targeted next release branch (2.2.X)
106-
- 2.2.X: latest of 2.2.X *side note: 2.2.X is basically the same as 2.1.X except the logging dependency has been added*
107-
- 2.1.X: latest of 2.1.X
105+
- master: points to the active targeted next release branch (2.3.X)
106+
- 2.2.X: latest of 2.2.X
107+
- 2.1.X: ""
108108
- 2.0.X: ""
109109
... etc

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-google-maps",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"main": "./dist/angular-google-maps.js",
55
"dependencies": {
66
"angular": "1.2 - 1.4",

coffeelint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
},
7272
"no_empty_param_list": {
7373
"name": "no_empty_param_list",
74-
"level": "warn"
74+
"level": "ignore"
7575
},
7676
"no_stand_alone_at": {
7777
"name": "no_stand_alone_at",

dist/angular-google-maps-street-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angular-google-maps 2.2.1 2016-01-20
1+
/*! angular-google-maps 2.3.0 2016-01-23
22
* AngularJS directives for Google Maps
33
* git: https://github.com/angular-ui/angular-google-maps.git
44
*/

dist/angular-google-maps-street-view.min.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)