-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
refactor(utils): use kong.utils.table_merge implementation to replace kong.table.merge #9857
Merged
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
vm-001
force-pushed
the
chore/convert-deprecated-function
branch
2 times, most recently
from
December 2, 2022 06:19
37d7da1
to
fddbe7a
Compare
vm-001
force-pushed
the
chore/convert-deprecated-function
branch
2 times, most recently
from
December 2, 2022 06:31
b8afcc4
to
351126b
Compare
vm-001
changed the title
chore(*): use kong.table.merge
chore(*): use kong.table.merge implementation to replace kong.utils.table_merge
Dec 2, 2022
mayocream
reviewed
Dec 6, 2022
samugi
approved these changes
Dec 6, 2022
mayocream
previously requested changes
Dec 7, 2022
flrgh
reviewed
Dec 9, 2022
vm-001
changed the title
chore(*): use kong.table.merge implementation to replace kong.utils.table_merge
chore(*): use kong.utils.table_merge implementation to replace kong.table.merge
Dec 16, 2022
mayocream
reviewed
Dec 16, 2022
The right commit type for this change is |
Ping @vm-001 |
dndx
added
the
pending author feedback
Waiting for the issue author to get back to a maintainer with findings, more details, etc...
label
Jan 9, 2023
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
vm-001
force-pushed
the
chore/convert-deprecated-function
branch
from
February 21, 2023 10:13
0318c35
to
54def3b
Compare
vm-001
force-pushed
the
chore/convert-deprecated-function
branch
from
February 21, 2023 10:16
54def3b
to
b08d4a3
Compare
github-actions
bot
added
build/bazel
chore
Not part of the core functionality of kong, but still needed
labels
Feb 21, 2023
vm-001
force-pushed
the
chore/convert-deprecated-function
branch
from
February 21, 2023 10:19
b08d4a3
to
4d70355
Compare
github-actions
bot
removed
build/bazel
chore
Not part of the core functionality of kong, but still needed
labels
Feb 21, 2023
vm-001
force-pushed
the
chore/convert-deprecated-function
branch
from
February 21, 2023 10:22
4d70355
to
4565120
Compare
vm-001
force-pushed
the
chore/convert-deprecated-function
branch
from
February 21, 2023 10:25
4565120
to
23e709c
Compare
vm-001
changed the title
chore(*): use kong.utils.table_merge implementation to replace kong.table.merge
refactor(*): use kong.utils.table_merge implementation to replace kong.table.merge
Feb 21, 2023
vm-001
changed the title
refactor(*): use kong.utils.table_merge implementation to replace kong.table.merge
refactor(utils): use kong.utils.table_merge implementation to replace kong.table.merge
Feb 21, 2023
dndx
removed
the
pending author feedback
Waiting for the issue author to get back to a maintainer with findings, more details, etc...
label
Mar 1, 2023
@vm-001 Can I bother you to rebase this again? I want to get this merged soon. |
@dndx Done |
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.
Summary
According to the PR #3844, using
kong.utils.table_merge
in plugin is not recommended anymore. And the table merge function ofkong.table
is more efficient than the deprecated one, as it does not create an empty table if it's nil.Checklist