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: symfony/var-dumper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.1.9
Choose a base ref
...
head repository: symfony/var-dumper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.1.11
Choose a head ref
  • 6 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 1, 2023

  1. Bump license year to 2023

    fabpot committed Jan 1, 2023
    Copy the full SHA
    cdfa643 View commit details
  2. Merge branch '5.4' into 6.0

    * 5.4:
      Fix LICENSE year
      Bump license year to 2023
    fabpot committed Jan 1, 2023
    Copy the full SHA
    9912072 View commit details
  3. Merge branch '6.0' into 6.1

    * 6.0:
      Fix LICENSE year
      Bump license year to 2023
    fabpot committed Jan 1, 2023
    Copy the full SHA
    8ad474c View commit details

Commits on Jan 16, 2023

  1. Copy the full SHA
    2944bbc View commit details

Commits on Jan 20, 2023

  1. Merge branch '5.4' into 6.0

    * 5.4:
      Update ComposerPlugin.php
      [Notifier] [OvhCloud] handle invalid receiver
      [Cache] fix collecting cache stats when nesting computations
      [VarDumper] Fix JS to expand / collapse
      [Tests] Remove `$this` occurrences in future static data providers
    nicolas-grekas committed Jan 20, 2023
    Copy the full SHA
    eb98045 View commit details
  2. Merge branch '6.0' into 6.1

    * 6.0:
      Update ComposerPlugin.php
      [Notifier] [OvhCloud] handle invalid receiver
      [Cache] fix collecting cache stats when nesting computations
      [VarDumper] Fix JS to expand / collapse
      [Validator] Fix Email validator logic
      Fix user_identifier support after username has been deprecated in favor of it.
      [Tests] Remove `$this` occurrences in future static data providers
      [PropertyInfo] Fixes constructor extractor for mixed type
      use method_exists() instead of catching reflection exceptions
    nicolas-grekas committed Jan 20, 2023
    Copy the full SHA
    e0aafa7 View commit details
Showing with 3 additions and 3 deletions.
  1. +2 −2 Dumper/HtmlDumper.php
  2. +1 −1 LICENSE
4 changes: 2 additions & 2 deletions Dumper/HtmlDumper.php
Original file line number Diff line number Diff line change
@@ -167,9 +167,9 @@ protected function getDumpHeader()
};
refStyle.innerHTML = 'pre.sf-dump .sf-dump-compact, .sf-dump-str-collapse .sf-dump-str-collapse, .sf-dump-str-expand .sf-dump-str-expand { display: none; }';
(doc.documentElement.firstElementChild || doc.documentElement.children[0]).appendChild(refStyle);
doc.head.appendChild(refStyle);
refStyle = doc.createElement('style');
(doc.documentElement.firstElementChild || doc.documentElement.children[0]).appendChild(refStyle);
doc.head.appendChild(refStyle);
if (!doc.addEventListener) {
addEventListener = function (element, eventName, callback) {
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014-2022 Fabien Potencier
Copyright (c) 2014-2023 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal