@@ -10,12 +10,12 @@ omitted for 0.12.0 are included below as well.
1010
1111- Create a proper space for docs, add info on architecture, and deploy docs
1212 to a docsite automatically.
13- ([ #224 ] ( https://github.com/mcmire /super_diff/pull/224 ) ,
14- [ #225 ] ( https://github.com/mcmire /super_diff/pull/225 ) ,
15- [ #226 ] ( https://github.com/mcmire /super_diff/pull/226 ) ,
16- [ #232 ] ( https://github.com/mcmire /super_diff/pull/232 ) ,
17- [ #233 ] ( https://github.com/mcmire /super_diff/pull/233 ) ,
18- [ #245 ] ( https://github.com/mcmire /super_diff/pull/245 ) )
13+ ([ #224 ] ( https://github.com/splitwise /super_diff/pull/224 ) ,
14+ [ #225 ] ( https://github.com/splitwise /super_diff/pull/225 ) ,
15+ [ #226 ] ( https://github.com/splitwise /super_diff/pull/226 ) ,
16+ [ #232 ] ( https://github.com/splitwise /super_diff/pull/232 ) ,
17+ [ #233 ] ( https://github.com/splitwise /super_diff/pull/233 ) ,
18+ [ #245 ] ( https://github.com/splitwise /super_diff/pull/245 ) )
1919 - The ` docs/ ` directory now holds information on contributing, which was
2020 previously located at ` CONTRIBUTING.md ` , as well as information on using the
2121 gem, which was previously located in ` README.md ` .
@@ -24,27 +24,27 @@ omitted for 0.12.0 are included below as well.
2424 helpful to people who want to submit changes to this project.
2525 - Additionally, starting with this release, the Markdown files in ` docs/ ` will
2626 published to a docsite, which can be viewed at
27- < https://mcmire .github.io/super_diff > .
27+ < https://splitwise .github.io/super_diff > .
2828 - Publishing of the docsite is automated: when a new release is issued, a new
2929 version of the docsite will be published for that release under
30- < https://mcmire .github.io/super_diff/releases/RELEASE_VERSION > .
31- (< https://mcmire .github.io/super_diff > will always redirect to the latest
30+ < https://splitwise .github.io/super_diff/releases/RELEASE_VERSION > .
31+ (< https://splitwise .github.io/super_diff > will always redirect to the latest
3232 release.)
3333 - If any file in ` docs/ ` is modified in a pull request, a new version of the
3434 docsite will also be automatically deployed just for that pull request,
3535 located under
36- < https://mcmire .github.io/super_diff/branches/BRANCH_NAME/COMMIT_ID > .
36+ < https://splitwise .github.io/super_diff/branches/BRANCH_NAME/COMMIT_ID > .
3737- Support the use of primary keys other than ` id ` when diffing ActiveRecord
38- models. ([ #237 ] ( https://github.com/mcmire /super_diff/pull/237 ) )
38+ models. ([ #237 ] ( https://github.com/splitwise /super_diff/pull/237 ) )
3939
4040### Bug fixes
4141
4242- Remove rogue ` pp ` statement
43- ([ #242 ] ( https://github.com/mcmire /super_diff/pull/242 ) )
43+ ([ #242 ] ( https://github.com/splitwise /super_diff/pull/242 ) )
4444
4545### Other notable changes
4646
47- - Reorganize codebase ([ #230 ] ( https://github.com/mcmire /super_diff/pull/230 ) )
47+ - Reorganize codebase ([ #230 ] ( https://github.com/splitwise /super_diff/pull/230 ) )
4848 - To be able to explain the architecture of this project more easily,
4949 differs, inspection tree builders, operation tree builders, operation tree
5050 flatteners, and operation trees for Ruby have now been relocated under a
@@ -118,7 +118,7 @@ Thank you!
118118### Features
119119
120120- Support the use of primary keys other than ` id ` when diffing ActiveRecord
121- models. ([ #237 ] ( https://github.com/mcmire /super_diff/pull/237 ) )
121+ models. ([ #237 ] ( https://github.com/splitwise /super_diff/pull/237 ) )
122122
123123### Contributors
124124
@@ -133,7 +133,7 @@ Thank you!
133133### BREAKING CHANGES
134134
135135- Change InspectionTree so that it no longer ` instance_eval ` s the block it
136- takes. ([ #210 ] ( https://github.com/mcmire /super_diff/issues/210 ) )
136+ takes. ([ #210 ] ( https://github.com/splitwise /super_diff/issues/210 ) )
137137 - If you have a custom InspectionTreeBuilder, you will need to change your
138138 ` call ` method so that instead of looking like this:
139139 ``` ruby
@@ -172,28 +172,28 @@ Thank you!
172172# ## Features
173173
174174- Add inspector for RSpec describable matchers not otherwise handled by an
175- explicit inspector. ([# 203](https://github.com/mcmire /super_diff/issues/203),
176- [# 219](https://github.com/mcmire /super_diff/issues/219))
175+ explicit inspector. ([# 203](https://github.com/splitwise /super_diff/issues/203),
176+ [# 219](https://github.com/splitwise /super_diff/issues/219))
177177- Support diffing date- like objects, e.g. ` Date` vs. ` Date` or ` Date` vs.
178- ` DateTime` . ([# 198](https://github.com/mcmire /super_diff/issues/198))
178+ ` DateTime` . ([# 198](https://github.com/splitwise /super_diff/issues/198))
179179
180180# ## Fixes
181181
182182- Add inspector for ActiveSupport ::OrderedOptions .
183- ([# 199](https://github.com/mcmire /super_diff/issues/199))
183+ ([# 199](https://github.com/splitwise /super_diff/issues/199))
184184 - This prevents the gem from raising an error when the expected value is a
185185 Rails response object, e.g. ` expect(response).to be_forbidden` .
186186- Include ` extra_failure_lines` from RSpec metadata in failure output.
187- ([# 208](https://github.com/mcmire /super_diff/issues/208))
187+ ([# 208](https://github.com/splitwise /super_diff/issues/208))
188188- Fix ` match_array` so that it truly accepts a non- array argument, to match
189- RSpec behavior. ([# 213](https://github.com/mcmire /super_diff/issues/213))
189+ RSpec behavior. ([# 213](https://github.com/splitwise /super_diff/issues/213))
190190- Fix ` raise_error` so that it accepts an RSpec matcher argument.
191- ([# 214](https://github.com/mcmire /super_diff/issues/214))
191+ ([# 214](https://github.com/splitwise /super_diff/issues/214))
192192
193193# ## Improvements
194194
195195- Improve wording in ` raise_error` failure messages.
196- ([# 218](https://github.com/mcmire /super_diff/issues/218))
196+ ([# 218](https://github.com/splitwise /super_diff/issues/218))
197197
198198# ## Contributors
199199
@@ -226,12 +226,12 @@ Thank you!
226226 that the ActiveRecord-specific integration isn' t loaded if ActiveRecord isn' t
227227 available. ([#188])
228228
229- [#187]: https://github.com/mcmire /super_diff/pull/187
230- [#190]: https://github.com/mcmire /super_diff/pull/190
231- [#156]: https://github.com/mcmire /super_diff/pull/156
232- [#166]: https://github.com/mcmire /super_diff/pull/166
233- [#138]: https://github.com/mcmire /super_diff/pull/138
234- [#188]: https://github.com/mcmire /super_diff/pull/188
229+ [#187]: https://github.com/splitwise /super_diff/pull/187
230+ [#190]: https://github.com/splitwise /super_diff/pull/190
231+ [#156]: https://github.com/splitwise /super_diff/pull/156
232+ [#166]: https://github.com/splitwise /super_diff/pull/166
233+ [#138]: https://github.com/splitwise /super_diff/pull/138
234+ [#188]: https://github.com/splitwise /super_diff/pull/188
235235
236236## 0.9.0 - 2022-04-25
237237
@@ -245,8 +245,8 @@ Thank you!
245245- Make `SuperDiff::VERSION` accessible without requiring `super_diff/version`
246246 ([#147])
247247
248- [#146]: https://github.com/mcmire /super_diff/pull/146
249- [#147]: https://github.com/mcmire /super_diff/pull/147
248+ [#146]: https://github.com/splitwise /super_diff/pull/146
249+ [#147]: https://github.com/splitwise /super_diff/pull/147
250250
251251## 0.8.0 - 2021-05-14
252252
@@ -298,7 +298,7 @@ Thank you!
298298 has a mixture of symbols and strings will be presented as though all keys are
299299 strings (i.e. hashrocket syntax). ([#91])
300300
301- [#91]: https://github.com/mcmire /super_diff/pull/91
301+ [#91]: https://github.com/splitwise /super_diff/pull/91
302302
303303## 0.7.0 - 2021-05-07
304304
@@ -311,16 +311,16 @@ Thank you!
311311 so that it is easy to tell the difference between two times that are extremely
312312 close to each other. ([#130])
313313
314- [#128]: https://github.com/mcmire /super_diff/pull/128
315- [#130]: https://github.com/mcmire /super_diff/pull/130
314+ [#128]: https://github.com/splitwise /super_diff/pull/128
315+ [#130]: https://github.com/splitwise /super_diff/pull/130
316316
317317### Fixes
318318
319319- Fix comparison involving hashes to prevent a case where the same key would
320320 show up twice in the diff (one as a "deleted" version and another as an
321321 "unchanged" version). ([#129])
322322
323- [#129]: https://github.com/mcmire /super_diff/pull/129
323+ [#129]: https://github.com/splitwise /super_diff/pull/129
324324
325325## 0.6.2 - 2021-04-16
326326
@@ -331,8 +331,8 @@ Thank you!
331331
332332- Silence warnings. ([#124])
333333
334- [#123]: https://github.com/mcmire /super_diff/pull/123
335- [#124]: https://github.com/mcmire /super_diff/pull/124
334+ [#123]: https://github.com/splitwise /super_diff/pull/123
335+ [#124]: https://github.com/splitwise /super_diff/pull/124
336336
337337## 0.6.1 - 2021-02-10
338338
@@ -341,7 +341,7 @@ Thank you!
341341- Fix compatibility issues with newer versions of `rspec-rails` which prevented
342342 the gem from being loaded. ([#121])
343343
344- [#121]: https://github.com/mcmire /super_diff/pull/121
344+ [#121]: https://github.com/splitwise /super_diff/pull/121
345345
346346## 0.6.0 - 2021-02-07
347347
@@ -363,9 +363,9 @@ Thank you!
363363
364364- Ruby 3.0 is now supported. ([#118])
365365
366- [#107]: https://github.com/mcmire /super_diff/pull/107
367- [042e8ec]: https://github.com/mcmire /super_diff/commit/042e8ecda282cd8a3d436b3bf2c0aded76187db2
368- [#118]: https://github.com/mcmire /super_diff/pull/118
366+ [#107]: https://github.com/splitwise /super_diff/pull/107
367+ [042e8ec]: https://github.com/splitwise /super_diff/commit/042e8ecda282cd8a3d436b3bf2c0aded76187db2
368+ [#118]: https://github.com/splitwise /super_diff/pull/118
369369
370370### Fixes
371371
@@ -374,8 +374,8 @@ Thank you!
374374 so that if there are extra items in the actual value, they are shown with
375375 `+`s. ([#106])
376376
377- [#114]: https://github.com/mcmire /super_diff/pull/114
378- [#106]: https://github.com/mcmire /super_diff/pull/106
377+ [#114]: https://github.com/splitwise /super_diff/pull/114
378+ [#106]: https://github.com/splitwise /super_diff/pull/106
379379
380380### Other notable changes
381381
@@ -388,22 +388,22 @@ Thank you!
388388
389389- Fix `match_array` so that it works when given a string. ([#110])
390390
391- [#110]: https://github.com/mcmire /super_diff/pull/110
391+ [#110]: https://github.com/splitwise /super_diff/pull/110
392392
393393### Improvements
394394
395395- Include the license in the gemspec so that it is visible via tools such as
396396 `license_finder`. ([#111])
397397
398- [#111]: https://github.com/mcmire /super_diff/pull/111
398+ [#111]: https://github.com/splitwise /super_diff/pull/111
399399
400400## 0.5.2 - 2020-09-04
401401
402402### Fixes
403403
404404- Add missing standard library requires. ([#98])
405405
406- [#98]: https://github.com/mcmire /super_diff/pull/98
406+ [#98]: https://github.com/splitwise /super_diff/pull/98
407407
408408### Other notable changes
409409
@@ -416,7 +416,7 @@ Thank you!
416416- Add dependency on `attr_extras` back as it was mistakenly removed in the
417417 previous release. ([#92])
418418
419- [#92]: https://github.com/mcmire /super_diff/pull/92
419+ [#92]: https://github.com/splitwise /super_diff/pull/92
420420
421421## 0.5.0 - 2020-06-18
422422
@@ -451,24 +451,24 @@ Thank you!
451451
452452 ([#84], [#85])
453453
454- [#84]: https://github.com/mcmire /super_diff/pull/84
455- [#85]: https://github.com/mcmire /super_diff/pull/85
454+ [#84]: https://github.com/splitwise /super_diff/pull/84
455+ [#85]: https://github.com/splitwise /super_diff/pull/85
456456
457457### Features
458458
459459- Add inspectors for `an_instance_of`, `a_kind_of`, and `a_value_within`.
460460 ([#74])
461461
462- [#74]: https://github.com/mcmire /super_diff/pull/74
462+ [#74]: https://github.com/splitwise /super_diff/pull/74
463463
464464### Fixes
465465
466466- Get rid of warnings produced on Ruby 2.7.1. ([#71])
467467- Fix diff produced by (incorrect) usage of `have_attributes` with a hash as the
468468 actual value. ([#76])
469469
470- [#71]: https://github.com/mcmire /super_diff/pull/71
471- [#76]: https://github.com/mcmire /super_diff/pull/76
470+ [#71]: https://github.com/splitwise /super_diff/pull/71
471+ [#76]: https://github.com/splitwise /super_diff/pull/76
472472
473473### Improvements
474474
@@ -493,24 +493,24 @@ Thank you!
493493- Update diff between two hashes so that original ordering of keys is preserved.
494494 ([#81])
495495
496- [#80]: https://github.com/mcmire /super_diff/pull/81
497- [#81]: https://github.com/mcmire /super_diff/pull/81
496+ [#80]: https://github.com/splitwise /super_diff/pull/81
497+ [#81]: https://github.com/splitwise /super_diff/pull/81
498498
499499## 0.4.2 - 2020-02-11
500500
501501### Fixes
502502
503503- Fix `raise_error` when used with a regex. ([#72])
504504
505- [#72]: https://github.com/mcmire /super_diff/pull/72
505+ [#72]: https://github.com/splitwise /super_diff/pull/72
506506
507507## 0.4.1 - 2020-01-30
508508
509509### Fixes
510510
511511- Fix multiple exception failures so that they work again. ([#66])
512512
513- [#66]: https://github.com/mcmire /super_diff/pull/66
513+ [#66]: https://github.com/splitwise /super_diff/pull/66
514514
515515## 0.4.0 - 2020-01-16
516516
@@ -525,7 +525,7 @@ Thank you!
525525
526526- Remove explicit dependency on ActiveRecord. ([#64])
527527
528- [#64]: https://github.com/mcmire /super_diff/pull/64
528+ [#64]: https://github.com/splitwise /super_diff/pull/64
529529
530530## 0.3.0 - 2019-12-17
531531
@@ -534,8 +534,8 @@ Thank you!
534534- Add useful diff representation of Time-like values. ([#61])
535535- Fix tests so they run even with a global `--color` setting. ([#62])
536536
537- [#61]: https://github.com/mcmire /super_diff/pull/61
538- [#62]: https://github.com/mcmire /super_diff/pull/62
537+ [#61]: https://github.com/splitwise /super_diff/pull/61
538+ [#62]: https://github.com/splitwise /super_diff/pull/62
539539
540540## 0.2.0 - 2019-10-04
541541
0 commit comments