Skip to content

Latest commit

 

History

History
578 lines (419 loc) · 23.8 KB

CHANGELOG.md

File metadata and controls

578 lines (419 loc) · 23.8 KB

Changes for PHP Mode by Version

All notable changes of the PHP Mode 1.19.1 release series are documented in this file using the Keep a CHANGELOG principles.

Unreleased

Added

  • Add php-base-mode which is the base of php related modes (#772)
    • php-base-mode is designed as a common parent mode for php-mode and php-ts-mode.

Changed

  • Make php-mode inherit from php-base-mode instead of c-mode (#772)
  • Modify indentation of PEAR Coding Standards (#774, #777)
    • No longer overindent it by default, since we don't see any mention in the coding style that it should hang .. (refs #227 and #229)
    • If you have any feedback on PEAR style, please let us know in the discussion #776.

Removed

  • Remove php-mode-disable-c-mode-hook custom variable and php-mode-neutralize-cc-mode-effect function (#775)
    • php-mode no longer inherits c-mode, so this variable won't work.

[1.25.1] - 2023-11-24

Added

  • Add php-topsy-beginning-of-defun-with-class to display classname with function signature. (#766)
  • Add missing __DIR__ to php-magical-constants (#756, thanks @piotrkwiecinski)

Changed

  • Make developer build task in Makefile now depends on Eask. (#762, thanks @jcs090218)
    • This change does not affect package installation users
    • Read CONTRIBUTING.md if you prefer to build it yourself from zip or tar ball

Fixed

Removed

  • Removed Phan-specific features from php-project (#754)
  • Removed Cask and Keg metadata files for building (#770)

[1.25.0] - 2023-07-24

Added

Fixed

  • Fixed many byte compilation errors on Emacs 29 and 30 by multiple patches contributed by Stefan Monnier (#737, #739 and #740, thanks Stefan!)
  • Fixed PEAR method chaining wrong indentation (#745 and #746, thanks @cweiske!)
  • Fixed php-mode-debug-reinstall command (#747, #748)

Removed

  • Drop Emacs 25 support (#729, [736])

[1.24.3] - 2023-03-19

Added

  • Net feature: php-format (#731)
    • Add php-format-project and php-format-this-buffer-file commands
    • Add php-format-auto-mode minor mode
  • Experimental feature: php-ide (#709)
    • Add php-ide-phpactor as simple IDE feature without LSP clients
    • Add php-ide-mode minor mode for binding IDE-like features

Fixed

  • Fix array indentation broken by commenting out (#726, #732)

Removed

  • No longer highlights 'link in PHPDoc (#724)
    • Please use goto-address-prog-mode minor mode

[1.24.2] - 2022-11-13

Added

  • New feature: php-complete
    • Add php-complete-complete-function to autocomplete function names (#708)
  • New feature: php-flymake
    • Add php-flymake as a flymake backend compatible with Emacs 26 and above (#718)
  • Supports PHPDoc tags and types for static analysis tools (#710, #715, #716, #717, thanks to @takeokunn)
  • Add php-mode-replace-flymake-diag-function custom variable and default activated it (#718)
  • Add php-mode-debug-reinstall command to help users who update Emacs themselves (#721)

Changed

  • Make continued expressions inside lists (arguments and arrays, etc.) have the same indent width as outside the list (#703)
  • (internal) Improved readability of test failures about indentation (#707)
  • php-doc-annotation-tag inherits font-lock-doc-markup-face if defined in Emacs 28 (#711)
  • Make php-mode-version function include a Git tag and revision (#713)
    • Like "1.23.4-56-xxxxxx" for example.
  • Change php-phpdoc-type-keywords to php-phpdoc-type-names to avoid confusion (#717)
  • Make php-flymake-php-init append to flymake-allowed-file-name-masks only in legacy Flymake (#718)

Deprecated

  • Make obsolete php-mode-version-number contstant variable ([#712])
    • (php-mode-version :as-number t) is provided for use cases comparing as versions, but generally SHOULD NOT be dependent on the PHP Mode version.
  • Make obsolete php-mode-disable-c-mode-hook customize variable (#718)

Removed

  • Remove php-mode-disable-c-auto-align-backslashes as it doesn't make sense and is always disabled

Fixed

  • Removed invalid definitions that caused errors in some expressions (#704)

[1.24.1] - 2022-10-08

Added

  • Support new PHP 8.0 and 8.1 syntax highlighting and indentation
    • [8.0] #[Attributes]
    • [8.1] readonly property (#680)
  • Add php-imenu-generic-expression-default for default value or php-imenu-generic-expression
    • Add php-imenu-generic-expression-legacy for compatibility
    • Add php-imenu-generic-expression-simple for simple display
  • Add php-project-project-find-function compatible with project-find-functions (#693)

Changed

  • Optimized propertize process (#669)
    • Reimoplement php-syntax-propertize-function using syntax-propertize-rules
    • Make propertize PHP 8 #[Attribute] always enabled
    • Changed grouping of php-heredoc-start-re
  • Re-organized php-imenu-generic-expression
    • Added Import, Constants and Properties
    • Removed Anonymous Functions
    • Renamed Named Functions to Functions
    • Renamed All Methods to Methods
    • Removed Public Methods, Protected Methods and Provate Methods
    • Unified Classes, Traits, Interfaces into Classes
  • Modified regexp patterns (#681)
  • Suppress compile-time warnings (#683, #690, #697)

Fixed

  • Fix php-run-builtin-web-server to expand root path (#699)

[1.24.0] - 2021-03-07

Added

  • Support new PHP 8.0 and 8.1 syntax hilighting and indentation
    • [8.0] match expression (#632)
    • [8.0] mixed pseudo type declaration (#633)
    • [8.1] enum statement (#653)

Changed

  • Drop support for Emacs 24 and 25.1 (#654)
  • Raises an error when the byte-compiled Cc Mode version does not match that version at runtime.
    • You will need to recompile php-mode after the GNU Emacs version changes.

Removed

  • Remove (require 'add-log)

Fixed

  • Fix font-lock highlighting
  • Fix Heredoc and Nowdoc highlighting (#651 thanks @antoineB)
  • Fix documentation mistake
    • php-mode-lineup-cascaded-calls in README.md (#644 thanks @cweiske!)

[1.23.0] - 2020-05-06

Initial support for PHP 8 has been added. PHP Mode has some issues for compatibility with Emacs 27.0.

The list of all past contributors has been moved to AUTHORS.md.

This release is positioned as the last minor version of the PHP Mode 1.x series.

Added

  • Add php-project-use-projectile-to-detect-root (#608)
  • Add PHP file extensions to auto-mode-alist (#609)
    • .php.inc is file extension for Rector's test code.
    • .stub is file extension for PHPStan's stub file.
  • Add php-mode-disable-c-auto-align-backslashes (#621)
  • Add PHP 8.0 Attribute syntax as vsemi ([#626])
  • Add feature php-align from tetsujin/emacs-php-align (#615, melpa/melpa#6759)

Changed

  • Disable c-auto-align-backslashes by default. (#621)
  • Add new faces and font locking (#611, #614)

Removed

  • Remove php-mode-extra-constants variable and function. (#605)
    • This mechanism is for synchronizing the added user-defined constants with WebMode, but it hasn't worked since 2014.

Fixed

  • Fix indentation of object operator (->) at the beginning of line (#623, #624)

[1.22.2] - 2019-12-23

A face has been added for coloring PHP syntax. Thank you @minikN!

This release is a minor modified version of the 1.22.x series. PHP Mode 2.0 is planned to be released in January 2020.

Added

  • Add php-project-etags-file and php-project-apply-local-variables (#591)
  • Add php-find-system-php-ini-file and php-ini command (#593)

Changed

  • Improve PHP syntax highlighting (by @minikN)
    • Add support for multiple operators (#594)
    • Add => to assignment operators (#602, #603)
  • Plain faces no longer inherit default (#597)

Removed

  • Remove php-mode-modified variable (#590)

Fixed

  • Fix anonymous class indentation (#598)

[1.22.1] - 2019-11-10

This release is a minor modified version of the 1.22.x series. PHP Mode 2.0 is planned to be released in January 2020.

Fixed

  • Fix usas of rx-form (#580, thank you @cmack)
  • Fix php-mode-coding-style custom variable (#581)
  • Fix unexpected indentation of (return typed) closures written in arguments (#585)

[1.22.0] - 2019-09-27

This release is positioned as the last minor version of the PHP Mode 1.x series. PHP Mode 2.0 is planned to be released in January 2020.

Added

  • Improve PHP 7 and PHPDoc support
    • Highlighting typed property (#545)
    • Highlighting {@inheritdoc} tag (#566)
    • Highlighting multiple catch (#567)
  • Add new php-class face (#545)
  • Add new php-run-builtin-web-server command for invoke php -S buitin server (#548)
  • Add new php-copyit-fqsen command for kill current method FQSEN (#561)
  • Apply lineup cascaded call (method chain separated by new line) for all styles (#563, #572)

Changed

  • Loose HTML template detection algorithm (#558)
  • Move php-mode-test.el into tests directory (#559)
    • php-mode-autoloads.el no longer includes php-mode-test
  • Modify syntax-entry $ to "_" from "'" (#565)
  • Make php-set-style display only styles that inherited "php" (#573)

Fixed

  • Fix default major mode for *.phpt file as php-default-major-mode (#542)
  • prevent recursion in php-syntax-propertize-extend-region ([$556], thanks Herbert Jones)
  • Fix call run-hooks in set-style (#571)

[1.21.4] - 2019-05-29

This version contains unobtrusive changes for future compatibility. Also, forward-page / backward-page may improve your operation. Thank you @takeokunn.

Added

  • A new command php-mode-maybe has been added to improve the compatibility of Blade templates and HTML templates with Web Mode. (#532)
  • A new custom variable php-mode-page-delimiter is added, which is assigned to page-delimiter in PHP-Mode. It allows you to move smoothly to the previous and subsequent definition statements with forward-page (C-x C-[) and backward-page (C-x C-]). (#540 by @takeokunn)

Changed

  • php-maybe-mode and .php files are associated with auto-mode-alist instead of php-mode (#532)
  • Compatibility with poly-php has been improved. This has not yet been officially released.

Deprecated

  • PHP Mode does not support phpt files . Consider installing the phpt-mode package. This mode is a wrapper around Polymode based PHP-Mode.

[1.21.3] - 2019-05-25

This version includes both PHP syntax support enhancements and performance improvements. See https://github.com/emacs-php/php-mode/projects/1 for all issues for this release. Also, @mallt has helped me improve it with a number of issues. thank you very much.

Added

  • Added new Faces to display PHP syntax
    • php-constant-assign
    • php-magical-constant
    • php-errorcontrol-op
  • Some funtions have been split into features such as php.el, php-face.el and php-mode-debug.el.

Fixed

  • Improved performance when opening large files (#491, #531)

Changed

  • Syntax highlighting has been adjusted

Removed

[1.21.2] - 2019-05-11

It officially supports PHP 7.3 and Emacs 26.2. Many improvements have been received from @sergeyklay, thank you!

Added

Fixed

  • Function php-beginning-of-defun should return non-nil on success (#503)
  • Fixed an error that occurred in some heredoc/nowdoc (#496)

Changed

  • Support PHP 7.3 heredoc/nowdoc (#496)
  • Minor optimization of font-lock regular expression (#510)

[1.21.1] - 2019-04-01

Changed

  • Fixed an error that occurred in Emacs 27
  • Modify URL of PHP web site
  • Fix highlighting of static method calls

[1.21.0] - 2019-01-09

A minor change from the previous version, but this version has BC brake about c-mode-hook.

Added

  • Add php customize group.
    • This group is positioned above php-mode.
    • This group was originally planned to be included in v1.20.0.
  • Add php-mode-disable-c-mode-hook custom variable.
    • Setting this variable to nil will restore the behavior of c-mode-hook up to the previous version.

Changed

  • php-mode initialization no longer executes hooks for c-mode.
    • If you want to return to the same behavior as the conventional PHP-Mode, set nil to php-mode-disable-c-mode-hook.

[1.20.0] - 2018-12-07

Start preparing for major refactoring in major mode.

Added

  • Add php-project variables for workflow (#488)
    • The following variables are reserved as file/directory local variables.
      • php-project-repl
      • php-project-unit-test
      • php-project-deploy
      • php-project-build
      • php-project-server-start

Changed

  • Improve code highlight
    • Fix highlighting of callable keyword (#471 by @fabacino)
    • Highlight the ? character for nullable type hints and return types (#482 by @fabacino)
  • Modify "customize group" and variable names
    • Add php-mode group and some variables belong to new group (#486)
      • php-default-facephp-mode-default-face
      • php-speedbar-config'php-mode-speedbar-config
      • php-template-compatibilityphp-mode-template-compatibility
      • php-lineup-cascaded-callsphp-mode-lineup-cascaded-calls
      • php-extra-constantsphp-mode-extra-constants
      • php-do-not-use-semantic-imenuphp-mode-do-not-use-semantic-imenu
  • Modify documents and copyright
  • Some refactors
    • Fix style and suppress warning in compile #485

[1.19.1] - 2018-05-12

Added

  • Add some functions/variables in php-project package
    • php-project-get-php-executable (#436)
    • php-project-get-phan-executable (#436)
  • Add php-debug command for reporting a bug

Changed

  • Add highlighting of return types for abstract functions (#461 by @fabacino)

Fixed

  • Fix c-anchored-cpp-prefix in Emacs 26 (#453)
  • Fix (re-implemteed) php-complete-function (#454)
  • Fix some problem of php-set-style (disabled on default)
    • Fix lazy evaluation of php-set-style (#444)
    • Do not use php-mode-enable-backup-style-variables in initialize (#452)
    • Temporarily disable php-mode-enable-project-coding-style (#450)
  • Fix heredoc/nowdoc syntax problem (#440)
  • Delete duplicate font locks with keywords not related to PHP language (#432)
  • Make php-project-root variable accept a string (#458)

Before 1.19.0

See Changelog · emacs-php/php-mode Wiki.