stable

psysh-0.10.4-1.fc32

FEDORA-2020-760c76908d created by siwinski 4 years ago for Fedora 32

PsySH v0.10.4

New:

  • Print exception traces when running --verbose or higher.
  • Add an --all option to the doc command for showing inherited docs.
  • Include class signatures when using doc on class methods or properties. Add graceful handling for invalid return types. Add a notice when globally-installed PsySH defers to a local dependency.

Improved:

  • Fix doc rendering when docblock description is missing (Thanks @GrahamCampbell!)
  • More clear error messages when config files are invalid.
  • Fix STDIN input detection when running the cli-server SAPI.
  • Remove unhelpful deprecation warning in throw-up command.
  • Remove getenv and putenv calls in favor of direct $_SERVER superglobal access.

PsySH v0.10.3

This one's almost too big for a point release!

New:

  • New command line options:
    • --interactive and --no-interactive, to explicitly enable or disable interactive mode.
    • --verbose, --quiet and -v/-vv/-vvv for output verbosity. This one kind of worked before, but only sometimes, and only kind of :)
    • ... and a bunch of aliases, for those familiar with Symfony, Composer and other tools.
  • New and improved command line option handling, making it easier for libraries that wrap PsySH to support the same options as psysh does!
  • New configuration options:
    • verbosity, equivalent to the -v, -vv, -vvv and --silent command line options.
    • interactiveMode, equivalent to --interactive and --no-interactive command line options.
    • formatterStyles, for overriding command line colors.
  • Default to non-interactive mode when input is coming from a pipe.
  • Cleaner output when using --raw-output, or STDOUT is redirected.
  • Exceptions and errors are now written to STDERR not STDOUT, which makes it easier to split them off from desired output.
  • Brand new shiny code formatter. It's more consistent between different commands, the colors match class and method signatures in ls and elsewhere, the line numbers are the same style and colors as in history, etc.
  • Tab completion for interfaces, as well as classes (Thanks @GrahamCampbell!)
  • The ls command can now list namespaces! This means, for example, that ls --classes Psy will return all known classes inside the Psy namespace. This works for constants, functions, interfaces and traits as well.
  • The show command now shows files! Try show __DIR__ . '/vendor/autoload.php'. This is super handy when combined with the $__file magic variable set by ls and doc :)

Improved:

  • Support redisplay in HOA/Console readline (Thanks @zonuexe!)
  • The show command now includes doc comments for classes, interfaces, traits, functions and methods.
  • The whereami command now has a --file option for showing the entire file.
  • Set the PsySH process title without the proctitle extension.
  • Fix an issue with pre-packaged phar releases which added a couple of unnecessary functions to the global namespace.
  • Fix a bug parsing single-line docblocks for the doc command.
  • Fix a small bug parsing code in sudo, parse and throwup commands.
  • A bunch of housekeepking and general cleanup (Thanks @GrahamCampbell!)
  • Modernize some code.

PsySH v0.10.2

  • Work around bug with code isolation in pre-packaged phars.

(Skipping v0.10.1, which was supposed to fix this but didn't)

PsySH v0.10.0

This might just be our... BIGGEST. RELEASE. EVER.

Note that PsySH v0.10.0 drops support for PHP < 5.5, and non-LTS HHVM.

Uppppppggggggrraaaaddddeeeee.

New:

  • Isolate code in bundled PHAR releases. This means if you download a pre-packaged PsySH binary, it can't collide with code you have installed locally in your project (Thanks @theofidry!)
  • Allow conditional bindings in .inputrc and .editrc (Thanks @tgr!)
  • Add support for verbosity and interactivity flags ... try -q, -v and -n (Thanks @aksonnic!)
  • Several improvements for non-interactive UX:
    • Support executing stdin, make it play nice with the rest of non-interactive mode.
    • Add support for --raw-output (-r) for printing var_export-style return values with non-interactive input.
    • Suppress startup messages when running with --raw-output and --no-interaction
    • Only output bracketed paste control characters when interactive.
    • Stop paginating non-interactive and raw output.
  • Add support for namespace and use declarations in reflecting commands (ls, doc, etc).

Improved:

  • Better instanceof checks, catching more fatal errors before they fatal (Thanks @baukevdw!)
  • Add a check for empty $array[] expressions outside of the left-hand side of an assignment.
  • Add a check for goto with an invalid label (Thanks @zonuexe!)
  • Support passing unpacked arrays by reference.
  • Improve output of the ls command with constants:
    • Make category=internal and category=user equivalent to --user and --internal
    • Make category option case-insensitive
    • Fix "Interal Constants" typo that's been there basically forever
    • Add appropriate-case labels for constant categories (e.g. JSON instead of Json)
  • Suppress inherited private methods when listing methods on a class.
  • Prevent shadowing namespace names when they collide with other use statement prefixes.
  • Fix function signature formatting for optional array params.
  • Warn if libedit refuses to write history file. Because apparently it does that sometimes.
  • Clearer error message when mkdir fails while setting up PsySH (Thanks @GrahamCampbell!)
  • Test against PHP 7.3 and 7.4 on CI (Thanks @andreybolonin, @alexeyshockov, and @GrahamCampbell!)
  • Add support for Symfony 5 (Thanks @Taluu!)
  • Fix Symfony 4.1 table deprecation notices.
  • Fix some PHP 7.4 deprecations in the PsySH codebase (Thanks @ejunker, @Salmatron)
  • Fix some longstanding inconsistencies when running under HHVM.
  • Make commands --help option more lenient.
  • Use white text instead of black for error messages (Thanks @kristianklok!)
  • Don't throw error exceptions for warnings or notices. Log them and continue, just like you'd expect.
  • Clean up interactive vs non-interactive mode code.
  • More robust detection for pcntl and posix extension support.
  • Improve test coverage.
  • Code cleanup (Thanks @GrahamCampbell, @carusogabriel and PHPStan!)
  • Update docblock copyright years.
  • Move PHPUnit and Box to composer bin dependencies.
  • Exclude unnecessary files and folders from release archives (Thanks @ankurk91!)

Removed:

  • Drop support for PHP 5.4 and non-LTS HHVM. All y'all should join us in the future!
  • Remove the ls command list alias. Now that PsySH supports arbitrary expressions as arguments for ls, having a list alias is sometimes ambiguous, for example when using the list keyword with a space before its parenthesis.
  • The --version short flag has changed to -V, as -v is now used for verbosity (matching Symfony Console defaults).
  • Remove deprecated InterfaceEnumerator and TraitEnumerator (which have been unused for several releases).
  • Put HHVM on life support. Test against the LTS release of HHVM 3. Skip a bunch of known failing tests.

PsySH v0.9.12

  • Update XdgBaseDir dependency to v0.1.*

How to install

Updates may require up to 24 hours to propagate to mirrors. If the following command doesn't work, please retry later:

sudo dnf upgrade --refresh --advisory=FEDORA-2020-760c76908d

This update has been submitted for testing by siwinski.

4 years ago

This update's test gating status has been changed to 'ignored'.

4 years ago

This update's test gating status has been changed to 'waiting'.

4 years ago

siwinski edited this update.

4 years ago

This update's test gating status has been changed to 'ignored'.

4 years ago

siwinski edited this update.

4 years ago

This update has been pushed to testing.

4 years ago

This update can be pushed to stable now if the maintainer wishes

4 years ago

This update has been submitted for stable by bodhi.

4 years ago

This update has been pushed to stable.

4 years ago

Please login to add feedback.

Metadata
Type
enhancement
Karma
0
Signed
Content Type
RPM
Test Gating
Autopush Settings
Unstable by Karma
-3
Stable by Karma
3
Stable by Time
7 days
Dates
submitted
4 years ago
in testing
4 years ago
in stable
4 years ago
modified
4 years ago
BZ#1782258 psysh-0.10.4 is available
0
0

Automated Test Results