From 5a794fac33db7d7c9bfb8c6014865c73c2c82f21 Mon Sep 17 00:00:00 2001 From: Dmitry Nehaychik <4dmitr@gmail.com> Date: Mon, 31 Dec 2018 21:51:56 +0300 Subject: [PATCH] release: 3.1.0 :christmas_tree: (#1119) --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- src/framework/auth/package.json | 4 ++-- src/framework/bootstrap/package.json | 4 ++-- src/framework/date-fns/package.json | 4 ++-- src/framework/moment/package.json | 4 ++-- src/framework/security/package.json | 2 +- src/framework/theme/package.json | 2 +- 9 files changed, 38 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cae5ccda83..1fb3c094cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ + +# [3.1.0](https://github.com/akveo/nebular/compare/v3.0.1...v3.1.0) (2018-12-31) :christmas_tree: + +Happy New Year! + +### Bug Fixes + +* **datepicker:** fix datepicker format not available error ([#1117](https://github.com/akveo/nebular/issues/1117)) ([83cda23](https://github.com/akveo/nebular/commit/83cda23)), closes [#1088](https://github.com/akveo/nebular/issues/1088) +* **docs:** add missed backtick ([#1069](https://github.com/akveo/nebular/issues/1069)) ([3324fd5](https://github.com/akveo/nebular/commit/3324fd5)) +* **docs:** remove rc version mention ([#1068](https://github.com/akveo/nebular/issues/1068)) ([ba1983c](https://github.com/akveo/nebular/commit/ba1983c)) +* **layout:** prevent dom api calls on server ([#1107](https://github.com/akveo/nebular/issues/1107)) ([7511bb0](https://github.com/akveo/nebular/commit/7511bb0)), closes [#1060](https://github.com/akveo/nebular/issues/1060) +* **oauth2:** body requests in x-www-form-urlencoded ([#1066](https://github.com/akveo/nebular/issues/1066)) ([3ee11f2](https://github.com/akveo/nebular/commit/3ee11f2)) +* **popover:** null check the ref before disposing ([#1086](https://github.com/akveo/nebular/issues/1086)) ([b3f7d39](https://github.com/akveo/nebular/commit/b3f7d39)) +* **select:** options text selection disabled ([#1033](https://github.com/akveo/nebular/issues/1033)) ([fef2a9a](https://github.com/akveo/nebular/commit/fef2a9a)) +* **theme:** check ref before detaching ([#1116](https://github.com/akveo/nebular/issues/1116)) ([af58d3f](https://github.com/akveo/nebular/commit/af58d3f)) +* **theme:** fix normalize import to not include file type extension ([#1114](https://github.com/akveo/nebular/issues/1114)) ([40fa356](https://github.com/akveo/nebular/commit/40fa356)) + + +### Features + +* **menu:** add an option to set skipLocationChange ([#1043](https://github.com/akveo/nebular/issues/1043)) ([3d3ee03](https://github.com/akveo/nebular/commit/3d3ee03)), closes [#1028](https://github.com/akveo/nebular/issues/1028) +* **playground:** components list ([#1106](https://github.com/akveo/nebular/issues/1106)) ([4ab7508](https://github.com/akveo/nebular/commit/4ab7508)), closes [#1077](https://github.com/akveo/nebular/issues/1077) +* **toastr:** show method now returns toast reference ([#1058](https://github.com/akveo/nebular/issues/1058)) ([aeeedf1](https://github.com/akveo/nebular/commit/aeeedf1)) + + + ## [3.0.1](https://github.com/akveo/nebular/compare/v3.0.0...v3.0.1) (2018-12-13) diff --git a/package-lock.json b/package-lock.json index b61e85f6e3..e8a1594766 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nebular", - "version": "3.0.0", + "version": "3.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 8e26f4ea2e..04ef403aae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nebular", - "version": "3.0.1", + "version": "3.1.0", "license": "MIT", "author": "akveo ", "browserslist": [ diff --git a/src/framework/auth/package.json b/src/framework/auth/package.json index 958923200a..f449e4598a 100644 --- a/src/framework/auth/package.json +++ b/src/framework/auth/package.json @@ -1,6 +1,6 @@ { "name": "@nebular/auth", - "version": "3.0.1", + "version": "3.1.0", "description": "@nebular/auth", "main": "./bundles/auth.umd.js", "module": "./index.js", @@ -32,7 +32,7 @@ "@angular/router": "^7.0.0", "@angular/forms": "^7.0.0", "@angular/http": "^7.0.0", - "@nebular/theme": "3.0.1", + "@nebular/theme": "3.1.0", "rxjs": "^6.3.0" } } \ No newline at end of file diff --git a/src/framework/bootstrap/package.json b/src/framework/bootstrap/package.json index 92336ef2a0..5a36a56853 100644 --- a/src/framework/bootstrap/package.json +++ b/src/framework/bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "@nebular/bootstrap", - "version": "3.0.1", + "version": "3.1.0", "description": "@nebular/bootstrap", "author": "akveo", "license": "MIT", @@ -22,6 +22,6 @@ ], "peerDependencies": { "bootstrap": "^4.0.0", - "@nebular/theme": "3.0.1" + "@nebular/theme": "3.1.0" } } \ No newline at end of file diff --git a/src/framework/date-fns/package.json b/src/framework/date-fns/package.json index 22469af79e..8c5261ba2a 100644 --- a/src/framework/date-fns/package.json +++ b/src/framework/date-fns/package.json @@ -1,6 +1,6 @@ { "name": "@nebular/date-fns", - "version": "3.0.1", + "version": "3.1.0", "description": "@nebular/date-fns", "main": "./bundles/theme.umd.js", "module": "./index.js", @@ -24,7 +24,7 @@ "nebular" ], "peerDependencies": { - "@nebular/theme": "3.0.1", + "@nebular/theme": "3.1.0", "date-fns": "^2.0.0-alpha.16" } } \ No newline at end of file diff --git a/src/framework/moment/package.json b/src/framework/moment/package.json index 5b2b27f082..abb594c003 100644 --- a/src/framework/moment/package.json +++ b/src/framework/moment/package.json @@ -1,6 +1,6 @@ { "name": "@nebular/moment", - "version": "3.0.1", + "version": "3.1.0", "description": "@nebular/moment", "main": "./bundles/theme.umd.js", "module": "./index.js", @@ -24,7 +24,7 @@ "nebular" ], "peerDependencies": { - "@nebular/theme": "3.0.1", + "@nebular/theme": "3.1.0", "moment": "^2.22.2" } } \ No newline at end of file diff --git a/src/framework/security/package.json b/src/framework/security/package.json index b202111d77..bcaf0bc53d 100644 --- a/src/framework/security/package.json +++ b/src/framework/security/package.json @@ -1,6 +1,6 @@ { "name": "@nebular/security", - "version": "3.0.1", + "version": "3.1.0", "description": "@nebular/security", "main": "./bundles/security.umd.js", "module": "./index.js", diff --git a/src/framework/theme/package.json b/src/framework/theme/package.json index 0e109dd60e..74543628d8 100644 --- a/src/framework/theme/package.json +++ b/src/framework/theme/package.json @@ -1,6 +1,6 @@ { "name": "@nebular/theme", - "version": "3.0.1", + "version": "3.1.0", "description": "@nebular/theme", "main": "./bundles/theme.umd.js", "module": "./index.js",