-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
[stable27] fix(Users/Quota setting): Prevent floating point value from getting truncated in locales other than english #42172
Conversation
/compile |
b16eb6c
to
fced4c9
Compare
/compile |
/backport fced4c9 to stable26 |
@@ -30,11 +30,11 @@ | |||
<NcLoadingIcon v-if="loading" | |||
class="menu-entry__loading-icon" | |||
:size="18" /> | |||
<img v-else :src="cachedIcon" alt="" /> | |||
<img v-else :src="cachedIcon" alt=""> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In future let's not add unrelated changes in backports @marcelklehr ;)
new conflicts |
fced4c9
to
f0d8dbd
Compare
/compile |
/backport f0d8dbd to stable26 |
/compile |
1 similar comment
/compile |
I have questions 😅 |
f0d8dbd
to
6cfcded
Compare
CI is not satisfied |
…runcated in locales other than english fixes #18468 Signed-off-by: Marcel Klehr <[email protected]>
6cfcded
to
fa2cf8d
Compare
/compile |
Signed-off-by: nextcloud-command <[email protected]>
Cypress failure seems to be unrelated |
The backport to stable26 failed. Please do this backport manually. # Switch to the target branch and update it
git checkout stable26
git pull origin stable26
# Create the new backport branch
git checkout -b fix/foo-stable26
# Cherry pick the change from the commit sha1 of the change against the default branch
# This might cause conflicts. Resolve them.
git cherry-pick abc123
# Push the cherry pick commit to the remote repository and open a pull request
git push origin fix/foo-stable26 Error: Unknown error More info at https://docs.nextcloud.com/server/latest/developer_manual/getting_started/development_process.html#manual-backport |
/skjnldsv-backport fa2cf8d to stable26 |
@@ -44,7 +44,7 @@ | |||
"@nextcloud/capabilities": "^1.0.4", | |||
"@nextcloud/dialogs": "^4.2.2", | |||
"@nextcloud/event-bus": "^3.0.2", | |||
"@nextcloud/files": "^3.0.0-beta.8", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@marcelklehr there are HUGE breaking changes between 3.0 beta and final. This is why we never upgrade for old versions. This change broke 27.1.6.
I would have been asked for review, this PR would have been blocked imho.
The great amount of changes in the dist folder is not a proof of a stable fix for an old stable branch. Please avoid this in the future 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry for breaking v27.1.6. I only do what I think is reasonable, obviously, so I cannot promise to avoid something like this in the future. As you say, this should have been caught in the review process. Since it hasn't been, maybe the process is flawed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not promising to not create bugs is perfectly fine, I did a good one for 28 last week too 😁
I was mostly referring to breaking-change upgrades for old stable branches 😉
Can we revert just the package.json change? I'm afraid I will mess up the package-lock.json |
We need to discuss this with @susnux, because other areas might be broken 🤔 |
There are some behavior changes in |
I think we should revert to nextcloud/files beta if that's how it was supposed to be in 27. I was mostly concerned about the other changes in this PR, as they are fixing a bug. |
Checklist