101.md (4782B)
1 # PR #101 Update dependency jasmine-spec-reporter to v7 2 3 - **Status:** open 4 - **Author:** @renovate[bot] 5 - **Created:** 2021-04-26T17:44:50Z 6 - **Branch:** renovate/jasmine-spec-reporter-7.x → master 7 - **Diff:** [101.diff](./101.diff) 8 9 --- 10 11 [](https://renovatebot.com) 12 13 This PR contains the following updates: 14 15 | Package | Change | Age | Adoption | Passing | Confidence | 16 |---|---|---|---|---|---| 17 | [jasmine-spec-reporter](https://togithub.com/bcaudan/jasmine-spec-reporter) | [`^4.1.0` -> `^7.0.0`](https://renovatebot.com/diffs/npm/jasmine-spec-reporter/4.2.1/7.0.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | 18 19 --- 20 21 ### Release Notes 22 23 <details> 24 <summary>bcaudan/jasmine-spec-reporter</summary> 25 26 ### [`v7.0.0`](https://togithub.com/bcaudan/jasmine-spec-reporter/blob/master/CHANGELOG.md#​700) 27 28 [Compare Source](https://togithub.com/bcaudan/jasmine-spec-reporter/compare/v6.0.0...v7.0.0) 29 30 #### Bugfix 31 32 - 'SpecReporter' is not assignable to type 'Reporter | CustomReporter' [#​588](https://togithub.com/bcaudan/jasmine-spec-reporter/pull/588) 33 34 #### Breaking change 35 36 Update signature of `CustomReporterResult` to fix collision with new jasmine properties 37 38 **Before:** 39 40 ```ts 41 export interface CustomReporterResult extends jasmine.CustomReporterResult { 42 duration?: string 43 } 44 ``` 45 46 **Now:** 47 48 ```ts 49 export interface CustomReporterResult extends jasmine.CustomReporterResult { 50 _jsr?: { 51 formattedDuration?: string 52 } 53 } 54 ``` 55 56 ### [`v6.0.0`](https://togithub.com/bcaudan/jasmine-spec-reporter/blob/master/CHANGELOG.md#​600) 57 58 [Compare Source](https://togithub.com/bcaudan/jasmine-spec-reporter/compare/v5.0.2...v6.0.0) 59 60 #### Feature 61 62 - Use colors/safe [#​538](https://togithub.com/bcaudan/jasmine-spec-reporter/pull/538) 63 64 #### Breaking change 65 66 String prototype does not contain color properties anymore, colors must now be applied with the new `theme` component available as a field in [custom display processors](docs/customize-output.md). 67 68 **Before:** 69 70 ```ts 71 class MyProcessor extends DisplayProcessor { 72 public displaySuccessfulSpec(spec: CustomReporterResult, log: string): string { 73 return 'OK '.successful + log 74 } 75 } 76 ``` 77 78 **Now:** 79 80 ```ts 81 class MyProcessor extends DisplayProcessor { 82 public displaySuccessfulSpec(spec: CustomReporterResult, log: string): string { 83 return this.theme.successful('OK ') + log 84 } 85 } 86 ``` 87 88 ### [`v5.0.2`](https://togithub.com/bcaudan/jasmine-spec-reporter/blob/master/CHANGELOG.md#​502) 89 90 [Compare Source](https://togithub.com/bcaudan/jasmine-spec-reporter/compare/v5.0.1...v5.0.2) 91 92 #### Bugfix 93 94 - pretty stacktrace: catch uncaught exception on node internal files [#​479](https://togithub.com/bcaudan/jasmine-spec-reporter/pull/479) 95 96 ### [`v5.0.1`](https://togithub.com/bcaudan/jasmine-spec-reporter/blob/master/CHANGELOG.md#​501) 97 98 [Compare Source](https://togithub.com/bcaudan/jasmine-spec-reporter/compare/v5.0.0...v5.0.1) 99 100 #### Bugfix 101 102 - Promote colors as a dependency [#​472](https://togithub.com/bcaudan/jasmine-spec-reporter/pull/472) 103 104 ### [`v5.0.0`](https://togithub.com/bcaudan/jasmine-spec-reporter/blob/master/CHANGELOG.md#​500) 105 106 [Compare Source](https://togithub.com/bcaudan/jasmine-spec-reporter/compare/v4.2.1...v5.0.0) 107 108 #### Feature 109 110 - New option to display pretty stacktraces [#​467](https://togithub.com/bcaudan/jasmine-spec-reporter/pull/467) 111 112 #### Breaking change 113 114 `displayStacktrace` options now take a value among `none`, `raw` and `pretty`. 115 116 </details> 117 118 --- 119 120 ### Configuration 121 122 📅 **Schedule**: At any time (no schedule defined). 123 124 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. 125 126 ♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 127 128 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. 129 130 --- 131 132 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. 133 134 --- 135 136 This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/SocialNetworkNews/SocialNetworkNews-Web). 137