Skip to content

Commit

Permalink
Release v0.15.0 (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto authored and shoota committed Mar 16, 2018
1 parent 590ee11 commit 6bf1db6
Show file tree
Hide file tree
Showing 12 changed files with 48 additions and 31 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## v0.15.0 (2018-03-16)

#### :rocket: Enhancement
* [#365](https://github.com/userdive/agent.js/pull/365) refactor(website) Added simple spec. ([@9renpoto](https://github.com/9renpoto))

#### :bug: Bug Fix
* `linker`
* [#368](https://github.com/userdive/agent.js/pull/368) refactor(packages/linker) Skip same origin. ([@9renpoto](https://github.com/9renpoto))
* Other
* [#366](https://github.com/userdive/agent.js/pull/366) Fix e2e test. ([@taka-sho](https://github.com/taka-sho))

#### Committers: 4
- Go.YAMADA ([usaturn](https://github.com/usaturn))
- Keisuke Kan ([9renpoto](https://github.com/9renpoto))
- Shotaro Takahara ([taka-sho](https://github.com/taka-sho))
- [renovate[bot]](https://github.com/apps/renovate)

## v0.14.0 (2018-03-13)

#### :rocket: Enhancement
Expand Down
18 changes: 9 additions & 9 deletions examples/package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "@userdive/examples",
"version": "0.0.0",
"main": "n/a",
"license": "MIT",
"private": true,
"version": "0.15.0",
"devDependencies": {
"@types/nightwatch": "0.9.7",
"pug": "2.0.1",
"pug-cli": "1.0.0-alpha6",
"chromedriver": "2.36.0",
"nightwatch": "0.9.20",
"pug": "2.0.1",
"pug-cli": "1.0.0-alpha6",
"selenium-server-standalone-jar": "3.9.1"
},
"license": "MIT",
"main": "n/a",
"private": true,
"scripts": {
"build": "run-p build:*",
"build:test": "tsc -m commonjs",
"build:js": "webpack",
"build:html": "pug . -o build -P -s",
"e2e": "nightwatch",
"build:js": "webpack",
"build:test": "tsc -m commonjs",
"clean": "rimraf tests build",
"e2e": "nightwatch",
"prebuild": "npm run clean"
}
}
2 changes: 1 addition & 1 deletion examples/simple/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple",
"version": "0.12.0",
"version": "0.15.0",
"main": "n/a",
"private": true
}
4 changes: 2 additions & 2 deletions examples/with-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "with-angular",
"version": "0.14.0",
"version": "0.15.0",
"dependencies": {
"@angular/common": "5.2.9",
"@angular/compiler": "5.2.9",
Expand All @@ -15,7 +15,7 @@
"reflect-metadata": "0.1.12",
"rxjs": "5.5.7",
"systemjs": "0.21.0",
"userdive": "^0.14.0",
"userdive": "^0.15.0",
"zone.js": "0.8.20"
},
"private": true
Expand Down
4 changes: 2 additions & 2 deletions examples/with-angular1/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "with-angular1",
"version": "0.14.0",
"version": "0.15.0",
"dependencies": {
"@types/angular": "1.6.43",
"@uirouter/angularjs": "1.0.15",
"angular": "1.6.9",
"userdive": "^0.14.0"
"userdive": "^0.15.0"
},
"private": true
}
4 changes: 2 additions & 2 deletions examples/with-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "with-react",
"version": "0.14.0",
"version": "0.15.0",
"dependencies": {
"@types/react": "16.0.40",
"@types/react-dom": "16.0.4",
Expand All @@ -9,7 +9,7 @@
"react": "16.2.0",
"react-dom": "16.2.0",
"react-router-dom": "4.2.2",
"userdive": "^0.14.0"
"userdive": "^0.15.0"
},
"private": true
}
4 changes: 2 additions & 2 deletions examples/with-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "with-vue",
"version": "0.14.0",
"version": "0.15.0",
"dependencies": {
"userdive": "^0.14.0",
"userdive": "^0.15.0",
"vue": "2.5.16",
"vue-router": "3.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
},
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.14.0"
"version": "0.15.0"
}
4 changes: 2 additions & 2 deletions packages/agent/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@userdive/agent",
"description": "webpage tracking agent",
"version": "0.14.0",
"version": "0.15.0",
"author": "UNCOVER TRUTH Inc.",
"bugs": {
"url": "https://github.com/userdive/agent.js/issues"
Expand All @@ -17,7 +17,7 @@
"devDependencies": {
"@types/js-cookie": "2.1.0",
"@types/uuid": "3.4.3",
"userdive": "^0.14.0"
"userdive": "^0.15.0"
},
"engine": {
"node": "> 5"
Expand Down
14 changes: 7 additions & 7 deletions packages/linker/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@userdive/linker",
"description": "webpage tracking agent linker plugin",
"version": "0.14.0",
"version": "0.15.0",
"author": "UNCOVER TRUTH Inc.",
"bugs": {
"url": "https://github.com/userdive/agent.js/issues"
},
"dependencies": {
"@userdive/agent": "^0.14.0",
"userdive": "^0.14.0"
"@userdive/agent": "^0.15.0",
"userdive": "^0.15.0"
},
"engine": {
"node": "> 5"
Expand All @@ -22,17 +22,17 @@
],
"license": "GPL-3.0",
"main": "lib/linker.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/userdive/agent.js.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"clean": "rimraf coverage lib docs",
"pretest": "npm run build",
"test": "karma start --single-run"
},
"types": "lib/linker.d.ts"
Expand Down
4 changes: 2 additions & 2 deletions packages/userdive/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "userdive",
"description": "load @userdve/agent from cdn",
"version": "0.14.0",
"version": "0.15.0",
"author": "UNCOVER TRUTH Inc",
"bugs": {
"url": "https://github.com/userdive/agent.js/issues"
Expand All @@ -21,8 +21,8 @@
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"clean": "rimraf lib coverage build",
"prepublish": "npm run build",
"test": "karma start"
},
"types": "lib/index.d.ts"
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@userdive/developers",
"version": "0.14.0",
"version": "0.15.0",
"dependencies": {
"docusaurus": "1.0.9"
},
Expand Down

0 comments on commit 6bf1db6

Please sign in to comment.