Skip to content

Commit 72ee764

Browse files
committed
chore(release): 2.5.0
# [2.5.0](v2.4.2...v2.5.0) (2022-07-22) ### Bug Fixes * **tracker:** prevent initializing Matomo more than once ([8b1e773](8b1e773)) ### Code Refactoring * **tracker:** replace init() method with initialized() for naming consistency ([30c415d](30c415d)) ### Features * **tracker:** allow deferred trackers configuration ([77a377f](77a377f)), closes [#31](#31) [#54](#54) ### Deprecations * **tracker:** Method `MatomoInitializerService.init()` has been deprecated. Use `MatomoInitializerService.initialize()` instead.
1 parent 097be2b commit 72ee764

File tree

6 files changed

+30
-7
lines changed

6 files changed

+30
-7
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# [2.5.0](https://github.com/EmmanuelRoux/ngx-matomo/compare/v2.4.2...v2.5.0) (2022-07-22)
2+
3+
4+
### Bug Fixes
5+
6+
* **tracker:** prevent initializing Matomo more than once ([8b1e773](https://github.com/EmmanuelRoux/ngx-matomo/commit/8b1e7733dc751c46e9336abbc129311d2618d7cd))
7+
8+
9+
### Code Refactoring
10+
11+
* **tracker:** replace init() method with initialized() for naming consistency ([30c415d](https://github.com/EmmanuelRoux/ngx-matomo/commit/30c415d5e6b5d950f4212b597066bf75120c5392))
12+
13+
14+
### Features
15+
16+
* **tracker:** allow deferred trackers configuration ([77a377f](https://github.com/EmmanuelRoux/ngx-matomo/commit/77a377f91407ee314aa3897400c6d261ed2e5571)), closes [#31](https://github.com/EmmanuelRoux/ngx-matomo/issues/31) [#54](https://github.com/EmmanuelRoux/ngx-matomo/issues/54)
17+
18+
19+
### Deprecations
20+
21+
* **tracker:** Method `MatomoInitializerService.init()` has been deprecated.
22+
Use `MatomoInitializerService.initialize()` instead.
23+
124
## [2.4.2](https://github.com/EmmanuelRoux/ngx-matomo/compare/v2.4.1...v2.4.2) (2022-05-03)
225

326

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-matomo",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"author": "Emmanuel Roux (https://github.com/EmmanuelRoux)",
55
"description": "Matomo (fka. Piwik) client for Angular applications",
66
"keywords": [

projects/router/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-matomo/router",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"author": "Emmanuel Roux (https://github.com/EmmanuelRoux)",
55
"description": "Plugin or @ngx-matomo/tracker, a Matomo (fka. Piwik) client for Angular applications",
66
"keywords": [
@@ -13,7 +13,7 @@
1313
"@angular/common": "^13.0.0",
1414
"@angular/core": "^13.0.0",
1515
"@angular/router": "^13.0.0",
16-
"@ngx-matomo/tracker": "2.4.2"
16+
"@ngx-matomo/tracker": "2.5.0"
1717
},
1818
"dependencies": {
1919
"tslib": "^2.0.0"

projects/tracker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-matomo/tracker",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"author": "Emmanuel Roux (https://github.com/EmmanuelRoux)",
55
"description": "Matomo (fka. Piwik) client for Angular applications",
66
"keywords": [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '^2.4.2';
1+
export const version = '^2.5.0';

0 commit comments

Comments
 (0)