Skip to content

Commit 5f028f3

Browse files
authored
[Dependencies] Ignore devDependencies (#389)
* ignores devdeps and pulled deps to devdeps * lock and yml * depes * removed
1 parent a7ad74d commit 5f028f3

File tree

9 files changed

+6424
-3432
lines changed

9 files changed

+6424
-3432
lines changed

.github/dependabot.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ updates:
33
- package-ecosystem: npm
44
directory: "/"
55
schedule:
6-
interval: monthly
6+
interval: daily
77
open-pull-requests-limit: 10
88
reviewers:
99
- turtledreams
@@ -15,7 +15,7 @@ updates:
1515
- package-ecosystem: npm
1616
directory: "/examples/symbolication/"
1717
schedule:
18-
interval: monthly
18+
interval: daily
1919
open-pull-requests-limit: 10
2020
reviewers:
2121
- turtledreams
@@ -27,7 +27,7 @@ updates:
2727
- package-ecosystem: npm
2828
directory: "/examples/react/"
2929
schedule:
30-
interval: monthly
30+
interval: daily
3131
open-pull-requests-limit: 10
3232
reviewers:
3333
- turtledreams

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 23.02.1
2+
- Mitigated an issue that could have caused view IDs to be terminated prematurely when using manual sessions and end_session was called abruptly
3+
14
## 23.02.0
25
- Events are now recorded with an internal ID.
36
- Mitigated an issue where users could have truncate an internal event key

examples/Angular/package.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test": "ng test"
1010
},
1111
"private": true,
12-
"dependencies": {
12+
"devDependencies": {
1313
"@angular/animations": "~12.2.0",
1414
"@angular/common": "~12.2.0",
1515
"@angular/compiler": "~12.2.0",
@@ -20,9 +20,7 @@
2020
"@angular/router": "~12.2.0",
2121
"rxjs": "~6.6.0",
2222
"tslib": "^2.3.0",
23-
"zone.js": "~0.11.4"
24-
},
25-
"devDependencies": {
23+
"zone.js": "~0.11.4",
2624
"@angular-devkit/build-angular": "~12.2.4",
2725
"@angular/cli": "~12.2.4",
2826
"@angular/compiler-cli": "~12.2.0",
@@ -36,4 +34,4 @@
3634
"karma-jasmine-html-reporter": "~1.7.0",
3735
"typescript": "~4.3.5"
3836
}
39-
}
37+
}

examples/react/package-lock.json

+6,383-3,394
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/react/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6+
"countly-sdk-web": "^23.02.1"
7+
},
8+
"devDependencies": {
69
"@testing-library/jest-dom": "^5.16.4",
710
"@testing-library/react": "^13.3.0",
811
"@testing-library/user-event": "^14.2.1",
9-
"countly-sdk-web": "^22.06.1",
1012
"react": "^18.2.0",
1113
"react-dom": "^18.2.0",
1214
"react-router-dom": "^5.3.3",
@@ -34,4 +36,4 @@
3436
"last 1 safari version"
3537
]
3638
}
37-
}
39+
}

examples/symbolication/package-lock.json

+25-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/symbolication/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
"webpack": "^5.74.0",
2020
"webpack-cli": "^4.10.0"
2121
}
22-
}
22+
}

lib/countly.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
*/
177177
Countly.onload = Countly.onload || [];
178178

179-
var SDK_VERSION = "23.02.0";
179+
var SDK_VERSION = "23.02.1";
180180
var SDK_NAME = "javascript_native_web";
181181

182182
var urlParseRE = /^(((([^:\/#\?]+:)?(?:(\/\/)((?:(([^:@\/#\?]+)(?:\:([^:@\/#\?]+))?)@)?(([^:\/#\?\]\[]+|\[[^\/\]@#?]+\])(?:\:([0-9]+))?))?)?)?((\/?(?:[^\/\?#]+\/+)*)([^\?#]*)))?(\?[^#]+)?)(#.*)?/;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "countly-sdk-web",
3-
"version": "23.02.0",
3+
"version": "23.02.1",
44
"description": "Countly Web SDK",
55
"main": "lib/countly.js",
66
"directories": {

0 commit comments

Comments
 (0)