Thanks to visit codestin.com
Credit goes to github.com

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/dotenv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.0.8
Choose a base ref
...
head repository: symfony/dotenv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.0.9
Choose a head ref
  • 14 commits
  • 3 files changed
  • 3 contributors

Commits on Apr 6, 2026

  1. Configuration menu
    Copy the full SHA
    51f3f7c View commit details
    Browse the repository at this point in the history
  2. Merge branch '7.4' into 8.0

    * 7.4:
      Add deprecationTrigger ignoreUndefinedTriggers="true" in phpunit.xml.dist files
    nicolas-grekas committed Apr 6, 2026
    Configuration menu
    Copy the full SHA
    cb3b9cf View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2026

  1. Configuration menu
    Copy the full SHA
    551a80e View commit details
    Browse the repository at this point in the history
  2. Merge branch '6.4' into 7.4

    * 6.4:
      [Dotenv] Fix self-referencing variable resolution with suffix/prefix
      [Serializer] Fix isAllowedAttribute() when groups contain wildcard '*'
      [DependencyInjection] Fix instanceof autoconfiguration for anonymous classes
      [Cache] fix test
    nicolas-grekas committed Apr 7, 2026
    Configuration menu
    Copy the full SHA
    1ff1857 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2026

  1. Merge branch '7.4' into 8.0

    * 7.4:
      [ObjectMapper] Auto-inject ObjectMapper into ObjectMapperAwareInterface transforms
      CS fix
      [Mailer] Fix handling of webhook.test verification event from MailerSend webhook
      [Filesystem] Fix Path dealing with schemes
      [Filesystem] Fix merge conflict resolution
      [Filesystem] Fix Path::normalize() replacing backslashes on UNIX
      [DependencyInjection] Fix excludeSelf not applied in ServiceLocatorTagPass
      [Dotenv] Fix self-referencing variable resolution with suffix/prefix
      [Serializer] Fix isAllowedAttribute() when groups contain wildcard '*'
      [DependencyInjection] Fix instanceof autoconfiguration for anonymous classes
      [Cache] fix test
    nicolas-grekas committed Apr 9, 2026
    Configuration menu
    Copy the full SHA
    3bd035b View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2026

  1. Configuration menu
    Copy the full SHA
    6e7b718 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2026

  1. [Dotenv] Fix variable corruption when loading env more than once

    `resolveLoadedVars()` iterated over every name in `SYMFONY_DOTENV_VARS`,
    including vars resolved by a previous `load()`/`loadEnv()` call. By then,
    the `\x00` markers protecting literal `$` (from single-quoted values) had
    already been converted back to `$`, so a value like `This$isokay` was
    re-interpreted as a `$isokay` variable reference and truncated to `This`.
    
    Track the names actually populated during `doLoad()` and limit
    `resolveLoadedVars()` to that set, leaving previously-resolved values
    untouched.
    nicolas-grekas committed Apr 14, 2026
    Configuration menu
    Copy the full SHA
    ac4ed3d View commit details
    Browse the repository at this point in the history
  2. Merge branch '6.4' into 7.4

    * 6.4:
      [VarExporter] Don't warn for __sleep()-listed uninitialized typed properties
      [Dotenv] Fix variable corruption when loading env more than once
    nicolas-grekas committed Apr 14, 2026
    Configuration menu
    Copy the full SHA
    dab514c View commit details
    Browse the repository at this point in the history
  3. Merge branch '7.4' into 8.0

    * 7.4:
      [VarExporter] Don't warn for __sleep()-listed uninitialized typed properties
      [TypeInfo] Fix collectUses() to support grouped use imports
      [Dotenv] Fix variable corruption when loading env more than once
      [Scheduler] Respect `console.command` DI tag `command` attribute
    nicolas-grekas committed Apr 14, 2026
    Configuration menu
    Copy the full SHA
    3892f82 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2026

  1. Configuration menu
    Copy the full SHA
    3630228 View commit details
    Browse the repository at this point in the history
  2. Merge branch '7.4' into 8.0

    * 7.4:
      [Security] Throw BadCredentialsException on empty JSON login username/password
      [Routing] Honor the Request's method in UrlMatcher::matchRequest()
      [DependencyInjection] Log every build parameter removed during compilation
      [Serializer] Remove @internal from ClassMetadataInterface and AttributeMetadataInterface
      Update XSD references in phpunit.xml.dist files
      [Serializer] Make `BackedEnumNormalizer` unconditionally return `null` on invalid value if `allow_invalid_values` is set
      [Cache] Ensure internal state is cleared in TagAwareAdapter::reset() even on commit failure
    nicolas-grekas committed Apr 18, 2026
    Configuration menu
    Copy the full SHA
    0a1f94f View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2026

  1. Configuration menu
    Copy the full SHA
    381ab08 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ba757a8 View commit details
    Browse the repository at this point in the history
  3. Merge branch '7.4' into 8.0

    * 7.4: (23 commits)
      [Form] Preserve collection children added by PRE_SET_DATA listeners
      [Messenger] Keep deduplication lock when handler throws
      [Mailer][Postmark] Handle alternate error payload shapes for Payload Too Large
      CS fix
      [Serializer] Catch TypeError when setting an attribute to collect denormalization errors
      [Config] Allow env placeholders in NumericNode min/max checks
      [Mime] Preserve inline part filename instead of overwriting it with the Content-ID
      [FrameworkBundle] Apply tagged MIME type guessers in File::getMimeType()
      [Notifier] [Ntfy] Fix Basic auth header by keeping base64 padding
      [MonologBridge] Guard against re-entrant calls in AbstractTokenProcessor
      [RateLimiter] Keep token bucket alive while reservation debt is unpaid
      [Lock] Avoid aborting outer PostgreSQL transaction on lock contention
      [HttpClient] Don't share CURL_LOCK_DATA_CONNECT to honor max_host_connections
      [Validator] fix mapping properties using property hooks
      [DoctrineBridge] Fail with a clear exception when symfony/form is missing
      [DoctrineBridge] Prevent install with incompatible symfony/property-info versions
      [AssetMapper] Allow spaces in version constraints
      [Dotenv] Strip NUL byte placeholder from values passed to `putenv()`
      [Cache] Normalize default_lifetime for pools wrapped by ChainAdapter
      [Config] Fix array-shape generator dropping alternative types on nested PrototypedArrayNode
      ...
    
    # Conflicts:
    #	src/Symfony/Bridge/Doctrine/Tests/Types/DatePointTypeTest.php
    #	src/Symfony/Bridge/Doctrine/Tests/Types/UlidTypeTest.php
    #	src/Symfony/Component/DependencyInjection/Tests/Compiler/RegisterServiceSubscribersPassTest.php
    #	src/Symfony/Component/Form/Extension/Core/EventListener/ResizeFormListener.php
    #	src/Symfony/Component/JsonStreamer/Tests/JsonStreamReaderTest.php
    #	src/Symfony/Component/PropertyAccess/Tests/PropertyAccessorTest.php
    #	src/Symfony/Component/PropertyInfo/Tests/Extractor/PhpStanExtractorTest.php
    #	src/Symfony/Component/Serializer/Tests/Normalizer/AbstractObjectNormalizerTest.php
    #	src/Symfony/Component/Serializer/Tests/Normalizer/PropertyNormalizerTest.php
    #	src/Symfony/Component/TypeInfo/Tests/TypeFactoryTest.php
    nicolas-grekas committed Apr 29, 2026
    Configuration menu
    Copy the full SHA
    f75c67b View commit details
    Browse the repository at this point in the history
Loading