Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: angular-ui/ui-router
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.25
Choose a base ref
...
head repository: angular-ui/ui-router
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.26
Choose a head ref
  • 5 commits
  • 5 files changed
  • 2 contributors

Commits on Feb 4, 2020

  1. Copy the full SHA
    d74d6f3 View commit details

Commits on Apr 29, 2020

  1. chore(package): update to @types/jasmine@3.5.10, @uirouter/publish-sc…

    …ripts@2.3.45, fork-ts-checker-webpack-plugin@4.1.3, husky@4.2.5, prettier@2.0.5, rollup-plugin-sourcemaps@0.5.0, ts-loader@7.0.1, tslint@6.1.2, webpack@4.43.0
    christopherthielen committed Apr 29, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8fded0e View commit details
  2. Copy the full SHA
    386e5a6 View commit details
  3. Copy the full SHA
    e2b8530 View commit details
  4. 1.0.26

    christopherthielen committed Apr 29, 2020
    Copy the full SHA
    2540e82 View commit details
Showing with 495 additions and 407 deletions.
  1. +24 −0 CHANGELOG.md
  2. +1 −1 bower.json
  3. +11 −11 package.json
  4. +1 −1 typedoc.json → tsconfig.typedoc.json
  5. +458 −394 yarn.lock
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## 1.0.26 (2020-04-29)
[Compare `@uirouter/angularjs` versions 1.0.25 and 1.0.26](https://github.com/angular-ui/ui-router/compare/1.0.25...1.0.26)


---


### Updated `@uirouter/core` from 6.0.4 to 6.0.5


Changelog for `@uirouter/core`:


[Compare `@uirouter/core` versions 6.0.4 and 6.0.5](https://github.com/ui-router/core/compare/6.0.4...6.0.5)

### Bug Fixes

* **TargetState:** make isDef check more thorough ([e657cfe](https://github.com/ui-router/core/commit/e657cfe))


### Features

* **urlRuleFactory:** Add support for StateDeclarations in UrlRuleFactory.fromState() ([539d33a](https://github.com/ui-router/core/commit/539d33a))

## 1.0.25 (2020-02-04)
[Compare `@uirouter/angularjs` versions 1.0.24 and 1.0.25](https://github.com/angular-ui/ui-router/compare/1.0.24...1.0.25)

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -17,5 +17,5 @@
"test",
"src"
],
"version": "1.0.24"
"version": "1.0.25"
}
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uirouter/angularjs",
"description": "State-based routing for AngularJS 1.x",
"version": "1.0.25",
"version": "1.0.26",
"scripts": {
"clean": "shx rm -rf lib lib-esm _doc build release *.log",
"compile": "tsc && tsc -m es6 --outDir lib-esm && npm run fixdts",
@@ -72,7 +72,7 @@
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"@uirouter/core": "6.0.4"
"@uirouter/core": "6.0.5"
},
"peerDependencies": {
"angular": ">=1.2.0"
@@ -81,11 +81,11 @@
"@types/angular": "1.6.57",
"@types/angular-animate": "^1.5.10",
"@types/angular-mocks": "^1.7.0",
"@types/jasmine": "^3.5.0",
"@uirouter/publish-scripts": "^2.3.44",
"@types/jasmine": "^3.5.10",
"@uirouter/publish-scripts": "^2.3.45",
"dts-downlevel": "^0.3.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"husky": "^3.1.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"husky": "^4.2.5",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
@@ -95,17 +95,17 @@
"karma-super-dots-reporter": "^0.2.0",
"karma-webpack": "^4.0.2",
"lodash": "^4.17.15",
"prettier": "^1.19.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^1.27.14",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"ts-loader": "^7.0.1",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.6.4",
"webpack": "^4.41.5"
"webpack": "^4.43.0"
},
"husky": {
"hooks": {
2 changes: 1 addition & 1 deletion typedoc.json → tsconfig.typedoc.json
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
}
],
"generateOptions": {
"tsconfig": "typedoc.json",
"tsconfig": "tsconfig.typedoc.json",
"readme": "DOCS.md",
"name": "@uirouter/angularjs",
"theme": "node_modules/ui-router-typedoc-themes/bin/default",
Loading