-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependency nikic/php-parser to v5 #102
Open
renovate
wants to merge
1
commit into
1.12.x
Choose a base branch
from
renovate/nikic-php-parser-5.x
base: 1.12.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: composer.lock
|
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
6 times, most recently
from
January 14, 2024 16:23
51e7f12
to
dcb546e
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
3 times, most recently
from
January 20, 2024 04:36
29f0525
to
d8a49f4
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
2 times, most recently
from
January 25, 2024 03:08
bae2e95
to
76053d4
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
4 times, most recently
from
February 8, 2024 04:37
98ba2c3
to
401485a
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
2 times, most recently
from
February 17, 2024 05:05
99dc963
to
a40a005
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
5 times, most recently
from
February 26, 2024 04:24
cfced29
to
4bbcb78
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
3 times, most recently
from
March 5, 2024 22:27
4f2bf8e
to
6a80a50
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
2 times, most recently
from
March 10, 2024 04:16
26dfa8f
to
be64d72
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
5 times, most recently
from
September 8, 2024 04:41
b11b486
to
04cd803
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
4 times, most recently
from
September 15, 2024 18:19
50aa6ee
to
5e757ab
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
6 times, most recently
from
September 23, 2024 04:47
d31575c
to
7abb1e6
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
4 times, most recently
from
October 3, 2024 03:44
3dae49f
to
1377474
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
3 times, most recently
from
October 9, 2024 04:15
ae53cd7
to
7571dc0
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
3 times, most recently
from
October 20, 2024 03:30
8c3c27d
to
457ed46
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
2 times, most recently
from
October 29, 2024 03:10
8f4ea31
to
4a55d47
Compare
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
from
November 7, 2024 04:53
4a55d47
to
b304146
Compare
| datasource | package | from | to | | ---------- | ---------------- | ------ | ----- | | packagist | nikic/php-parser | 4.19.4 | 5.3.1 |
renovate
bot
force-pushed
the
renovate/nikic-php-parser-5.x
branch
from
November 9, 2024 04:20
b304146
to
c325cc2
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^4.17.1
->^5.3.1
Release Notes
nikic/PHP-Parser (nikic/php-parser)
v5.3.1
Compare Source
Added
exit
ordie
, to allow their use in stubs.v5.3.0
Compare Source
Added
indent
option to pretty printer, which can be used to specify the indentation to use(defaulting to four spaces). This also allows using tab indentation.
Fixed
PropertyHook
s in theNameResolver
.Stmt\GroupUse
nodes, making them consistent withStmt\Use_
nodes.in
ValueError
s.v5.2.0
Compare Source
Added
__PROPERTY__
magic constant, represented using aNode\Scalar\MagicConst\Property
node.hooks
subnode onNode\Stmt\Property
andNode\Param
, which contains an array ofNode\PropertyHook
.flags
can now hold theadditional bits
Modifiers::PUBLIC_SET
,Modifiers::PROTECTED_SET
andModifiers::PRIVATE_SET
.argument or a single plain argument continues to use a
Node\Expr\Exit_
node. Otherwise (e.g.if a named argument is used) it will be represented as a plain
Node\Expr\FuncCall
.BuilderFactory::val()
.Removed
$array{0}
from the PHP 8 parser. It is stillsupported by the PHP 7 parser. This is necessary in order to support property hooks.
v5.1.0
Compare Source
Added
new
expressions without parentheses.Fixed
Changed
v5.0.2
Compare Source
Fixed
printer.
Changed
Parser
objects. This means that no longer used parser objects areimmediately destroyed now, instead of requiring cycle GC.
PhpVersion::getNewestSupported()
to report PHP 8.3 instead of PHP 8.2.v5.0.1
Compare Source
Changed
T_*
compatibility tokenswith incorrect type (such as string instead of int). This would lead to
TypeError
s down theline. Now an
Error
will be thrown early to indicate the problem.v5.0.0
Compare Source
See UPGRADE-5.0 for detailed migration instructions.
Fixed
PropertyItem
andUseItem
.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
Read more about the use of Renovate Bot within
ocramius/*
projects.