chore(deps): update devdeps non-major #46
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:
11.0.6
->11.3.1
11.0.6
->11.3.1
11.0.6
->11.3.1
11.0.6
->11.3.1
22.10.5
->22.13.14
9.17.0
->9.23.0
3.4.2
->3.5.3
5.7.3
->5.8.2
6.0.12
->6.2.3
2.2.0
->2.2.8
Release Notes
owncloud/web (@ownclouders/eslint-config)
v11.3.1
Compare Source
=======================================
The following sections list the changes in ownCloud web 11.3.1 relevant to
ownCloud admins and users.
Summary
Details
Bugfix - Broken title for public files link: #12225
We've fixed the issue of showing an incorrect/broken window title when user
opens a public files link
https://github.com/owncloud/web/issues/12220
https://github.com/owncloud/web/pull/122252225
Bugfix - Disable password protected folders creation inside public links: #12226
We've disabled the option to create password protected folders creation inside
of folders that are shared via a public link.
https://github.com/owncloud/web/issues/12190
https://github.com/owncloud/web/pull/122262226
Bugfix - Add password policies to password protected folders: #12240
We've added password policies to the password protected folders so that the
creation of the folder does not fail with a generic error message and to prevent
the user from even continuing with the creation of the folder if the password
does not meet the policy.
https://github.com/owncloud/web/issues/12223
https://github.com/owncloud/web/pull/122402240
Bugfix - Revert password protected folder creation on error: #12241
We've fixed an issue where the hidden folder with password protected files was
not being deleted in case of an error with link or file creation.
https://github.com/owncloud/web/issues/12223
https://github.com/owncloud/web/pull/122412241
Bugfix - Add password generator into password protected folders: #12270
We've added a password generator into the password protected folders modal. This
allows users to generate a new password if they want to.
https://github.com/owncloud/web/pull/12270
Bugfix - Two spaces are created at the same time when user tries to create a space: #12297
This bugfix addresses an issue where pressing the Enter key in a modal to create
a space or folder results in the creation of two spaces or folders instead of
just one. The fix ensures that only a single space or folder is created when the
Enter key is pressed.
https://github.com/owncloud/web/issues/12276
https://github.com/owncloud/web/pull/122972297
v11.3.0
Compare Source
=======================================
The following sections list the changes in ownCloud web 11.3.0 relevant to
ownCloud admins and users.
Summary
Details
Enhancement - Add psec file icon: #12104
We've added a new icon which will be used for psec files. These files are
representing our password protected folders.
https://github.com/owncloud/web/pull/12104
Enhancement - Handle extensions without editor: #12105
We've added a new property to extensions that asserts whether is has an editor
or not. This property is computed by checking whether the extension exposes any
routes.
https://github.com/owncloud/web/pull/12105
Enhancement - Add custom handler to file extensions: #12109
We've added a new property into application file extensions called
customHandler
. This property allows app developers to use completely customflows when creating new files.
https://github.com/owncloud/web/pull/12109
v11.2.0
Compare Source
=======================================
The following sections list the changes in ownCloud web 11.2.0 relevant to
ownCloud admins and users.
Summary
lang
URL query parameter: #12206Details
Bugfix - Create password protected folder in personal space: #12146
We've fixed an issue where the password protected folder was created in current
space instead of users personal space.
https://github.com/owncloud/web/issues/12039
https://github.com/owncloud/web/pull/121462146
Bugfix - Do not render default actions in context menu: #12175
We've fixed an issue where the default action was rendered in the context menu
leading into duplicate actions being shown. The default action was originally
introduced into the context menu to show "Open folder" action of password
protected folders extension but we fixed this to use the correct category in the
extension which renders the action as expected.
https://github.com/owncloud/web/issues/12154
https://github.com/owncloud/web/pull/121752175
Bugfix - Open password protected folder when clicking on its name: #12177
We've fixed an issue where clicking on the password protected folder name in the
list did not do anything. Clicking on the name name will open the folder.
https://github.com/owncloud/web/issues/12176
https://github.com/owncloud/web/pull/121772177
Bugfix - Skip upload dropzone init when files view is missing: #12178
We've fixed an issue where the drag & drop upload zone was being initialized
even though the target files view element was missing. The initialization will
be skipped now in such case.
https://github.com/owncloud/web/issues/12150
https://github.com/owncloud/web/pull/121782178
Bugfix - Display shared file versions: #12194
We've fixed an issue where versions were not displayed in the sidebar for a
shared file even when shared with necessary permissions. If a resource is an
incoming share, we are now checking permission directly on the resource object
instead of space.
https://github.com/owncloud/web/issues/12168
https://github.com/owncloud/web/pull/121942194
Bugfix - Sanitize content from md-editor-v3: #12195
We've fixed an issue where the user can inject XSS attack by sanitizing the
user's content
https://github.com/owncloud/enterprise/issues/7092
https://github.com/owncloud/web/pull/121952195
Bugfix - Enable external shares editing: #12204
We've reenabled external shares editing. It was previously disabled due to
missing implementation of OCM shares editing in the backend. That has been
implemented in the meantime.
https://github.com/owncloud/web/issues/12201
https://github.com/owncloud/web/pull/122042204
Bugfix - Prevent password protected folder move: #12205
We've fixed permissions on password protected folders so that the name of the
resource is checked and if it ends with
.psec
, it cannot be moved.https://github.com/owncloud/web/issues/12198
https://github.com/owncloud/web/pull/122052205
Bugfix - Preserve current language in password protected folder view: #12206
We've added the new
lang
URL query param to the URL of password protectedfolder iframe to preserve the language settings. The value is set to the
currently used language.
https://github.com/owncloud/web/issues/12186
https://github.com/owncloud/web/pull/122062206
Enhancement - Disable resources in delete queue: #12046
We've added a new delete queue which is used to disable resources that are being
currently deleted. When the resource is in delete queue, it also replaces select
checkbox with a spinner to better hint that there is an action in progress.
https://github.com/owncloud/web/issues/11956
https://github.com/owncloud/web/pull/120462046
Enhancement - Add password protected folders app: #12137
We've added a new application called "Password protected folders". This
application allows users to create new folders that are accessible only by
entering a password.
https://github.com/owncloud/web/issues/12039
https://github.com/owncloud/web/pull/121372137
Enhancement - Password protected folder permissions: #12141
We've added the permissions dropdown into the create password protected folder
dialog. Users can now decide what permissions they would like to add to the
folder. Permissions are matching folder public link permissions.
https://github.com/owncloud/web/issues/12039
https://github.com/owncloud/web/pull/121412141
Enhancement - Add password protected folders handler: #12142
We've added a new file action used to handle password protected folders. When a
password protected folder is opened, a popup is opened prompting the user to
enter the password. After successfully entering the password, content of the
folder is displayed inside of the popup.
https://github.com/owncloud/web/issues/12039
https://github.com/owncloud/web/pull/121422142
Enhancement - Control more elements visibility via URL query: #12142
We've added new params into the URL query that allows configuring elements
visibility. The following params can be used:
hide-app-switcher
: hides the application switcher in the top bar -hide-account-menu
: hides the feedback action, notifications bell, and usermenu -
hide-navigation
: hides the navigation sidebar and mobile navigationhttps://github.com/owncloud/web/pull/12142
Enhancement - Display default actions in context menu: #12145
We've added default actions into the context menu so that the user can use that
action when accessing the resource through it.
https://github.com/owncloud/web/issues/12039
https://github.com/owncloud/web/pull/121452145
Enhancement - Hide password protected folders action: #12145
We've hidden all actions on password protected folders except delete.
https://github.com/owncloud/web/issues/12039
https://github.com/owncloud/web/pull/121452145
Enhancement - Hide password protected folders extension: #12145
We've hidden the password protected folder ".psec" extension.
https://github.com/owncloud/web/issues/12039
https://github.com/owncloud/web/pull/121452145
Enhancement - Recursive folder creation: #12146
We've extended the
CreateFolderFactory
in web-client to allow creating foldersrecursively. Simply pass
recursive: true
into options and all parent folderswill be created.
https://github.com/owncloud/web/pull/12146
Enhancement - Delete password protected folders: #12152
We've extended the delete resources handler to also delete the hidden folder
acting as the password protected folder when deleting a
.psec
files.https://github.com/owncloud/web/issues/12039
https://github.com/owncloud/web/pull/121522152
Enhancement - Allow camera in external app iframe: #12188
We've added the
allow
attribute with valuecamera
to iframe in external appso that we allow using camera in external apps. We are not specifying any
allowed origins and allow it everywhere as we are already allowing only certain
origins to be loaded inside of the iframe.
https://github.com/owncloud/web/issues/12121
https://github.com/owncloud/web/pull/121882188
Enhancement - Add
lang
URL query parameter: #12206We've added a new
lang
URL query parameter that allows specifying the defaultlanguage in which the UI should get displayed when opened. This value is ignored
when it does not match supported language codes or when a user is logged in.
https://github.com/owncloud/web/issues/12186
https://github.com/owncloud/web/pull/122062206
v11.1.3
Compare Source
=======================================
The following sections list the changes in ownCloud web 11.1.3 relevant to
ownCloud admins and users.
Summary
Details
Bugfix - Replace text editor: #12156
We've added a new text editor because of security issues with the previous
editor and lack of support.
https://github.com/owncloud/enterprise/issues/7077
https://github.com/owncloud/web/pull/121562156
v11.1.2
Compare Source
=======================================
The following sections list the changes in ownCloud web 11.1.2 relevant to
ownCloud admins and users.
Summary
Details
Bugfix - Rename ScienceMesh: #10891
We've renamed ScienceMesh in German locale to prevent confusion among
non-science community.
https://github.com/owncloud/ocis/issues/10891
v11.1.1
Compare Source
=======================================
The following sections list the changes in ownCloud web 11.1.1 relevant to
ownCloud admins and users.
Summary
Details
Bugfix - Optionally access preview app route query: #12112
We've fixed an issue where loading of preview app would fail due to missing
route query. The route query is now accessed optionally meaning even when it
undefined, the app still loads as expected.
https://github.com/owncloud/web/issues/12108
https://github.com/owncloud/web/issues/121062https://github.com/owncloud/web/pull/12112ll/12112
Bugfix - Change federated share icon: #12118
We've changed the icon we are using for federated shares in the Shared with
others list from "cloud" into "earth".
https://github.com/owncloud/web/issues/12117
https://github.com/owncloud/web/pull/121182118
Bugfix - Improve federated share icon contrast: #12118
We've made the color of the federated share icon slightly lighter in order to
have a sufficient contrast compared to the icon background.
https://github.com/owncloud/web/issues/12117
https://github.com/owncloud/web/pull/121182118
Bugfix - Show external share indicator: #12119
We've fixed the condition that was preventing the external share indicator from
showing up when a permissions indicator was visible.
https://github.com/owncloud/web/issues/12117
https://github.com/owncloud/web/pull/121192119
v11.1.0
Compare Source
=======================================
The following sections list the changes in ownCloud web 11.1.0 relevant to
ownCloud admins and users.
Summary
Details
Bugfix - Preview app files visibility: #12040
We've fixed the issue with displaying hidden files when user open a file in
preview app in "Shared with me" list. The
q_share-visibility
query param isnow passed to the app so that if a user opens a file while listing "visible
shares", the preview app will allow moving only to another visible files. When
the
q_share-visibility
query param is set tohidden
(i.e. user is listing"hidden shares"), the preview app will allow moving only to another hidden
files.
https://github.com/owncloud/web/issues/11883
https://github.com/owncloud/web/pull/120402040
Bugfix - Disable paste action in same folder: #12044
We've fixed the state of the "paste files" action when copied resources are from
the same folder. The button will be disabled in such case and a tooltip with
explanation message displayed.
https://github.com/owncloud/web/issues/12021
https://github.com/owncloud/web/pull/120442044
Bugfix - Do not push sidebar close action away: #12045
We've fixed an issue with the sidebar close action which was pushed away when
zooming. The layout of the screen was not adjusting the size and shifted the
whole sidebar off the screen. We set a fixed width of 100% - sidebar width to
prevent this.
https://github.com/owncloud/web/issues/11536
https://github.com/owncloud/web/pull/120452045
Bugfix - Update sidebar width on resize: #12045
We've fixed an issue where the width of the sidebar was updated only when
opening it. We added a resize event handler to the window object so that we can
react to it and update the width accordingly.
https://github.com/owncloud/web/pull/12045
Bugfix - Use correct breakpoints in sidebar: #12045
We've set the correct breakpoint used for setting width of the sidebar so that
it matches the breakpoint in app wrapper.
https://github.com/owncloud/web/pull/12045
Bugfix - Show indirect shares on search page: #12050
We've fixed an issue where the indirect shares of resources were not displayed
in the sidebar when user is on search page.
https://github.com/owncloud/web/issues/10939
https://github.com/owncloud/web/pull/120502050
Bugfix - Add more padding to input when clear action is visible: #12055
We've fixed the issue where the clear action of the text input would overlap the
text entered into the input. When the clear action becomes visible, the right
padding of the input will be increased by the size of the clear action.
https://github.com/owncloud/web/issues/11543
https://github.com/owncloud/web/pull/120552055
Bugfix - Use local state in sidebar in embed mode: #12058
We've fixed an issue where the sidebar would be overlapping the content of embed
mode iframe when opened due to shared local storage. We now use own local state
for the sidebar in embed mode instead of relying on the local storage.
https://github.com/owncloud/web/issues/11875
https://github.com/owncloud/web/pull/120582058
Bugfix - Change opacity of disabled checkboxes: #12063
We've fixed an issue where disabled checkbox was not clearly distinguishable
from enabled ones by lowering it's opacity.
https://github.com/owncloud/web/issues/12060
https://github.com/owncloud/web/pull/120632063
Bugfix - Refetch notifications settings on locale change: #12074
We've fixed an issue where the notification settings section did not update any
strings when users changed their locale. The settings bundle is now fetched
again when locale changes to make sure that the oCIS server can return strings
in the correct locale.
https://github.com/owncloud/web/issues/12064
https://github.com/owncloud/web/pull/120742074
Enhancement - Add notifications settings: #12010
We've added a new notifications settings section into the account screen. This
section allows users to configure what notifications they wish to receive either
in-app or via email, when to receive email notifications, and drops the previous
notifications toggle.
https://github.com/owncloud/web/issues/9248
https://github.com/owncloud/web/pull/120102010
Enhancement - Use generic private link error: #12054
We've added a more generic error message to the unavailable private links as the
previous message was confusing.
https://github.com/owncloud/web/issues/12009
https://github.com/owncloud/web/pull/120542054
v11.0.7
: 11.0.7Compare Source
Changelog for ownCloud Web 11.0.7 (2025-02-07)
Summary
Details
Bugfix - Replace text editor: #12156
We've added a new text editor because of security issues with the previous
editor and lack of support.
https://github.com/owncloud/enterprise/issues/7077
https://github.com/owncloud/web/pull/121562156
eslint/eslint (eslint)
v9.23.0
Compare Source
v9.22.0
Compare Source
v9.21.0
Compare Source
Features
418717f
feat: introduce new deprecated types for rules (#19238) (fnx)5c5b802
feat: Add--ext
CLI option (#19405) (Milos Djermanovic)Bug Fixes
db5340d
fix: update missing plugin message template (#19445) (Milos Djermanovic)d8ffdd4
fix: do not exit process on rule crash (#19436) (Francesco Trotta)Documentation
c5561ea
docs: Update README (GitHub Actions Bot)80b0485
docs: replacevar
withlet
andconst
in rule example (#19434) (Tanuj Kanti)f67d5e8
docs: Update README (GitHub Actions Bot)75afc61
docs: Update README (GitHub Actions Bot)0636cab
docs: Update Eleventy from v2 to v3 (#19415) (Amaresh S M)dd7d930
docs: Update README (GitHub Actions Bot)Chores
a8c9a9f
chore: update@eslint/eslintrc
and@eslint/js
(#19453) (Francesco Trotta)265e0cf
chore: package.json update for @eslint/js release (Jenkins)3401b85
test: add test forRule.ReportDescriptor
type (#19449) (Francesco Trotta)e497aa7
chore: update rewrite dependencies (#19448) (Francesco Trotta)dab5478
chore: better error message for missing plugin in config (#19402) (Tanuj Kanti)ebfe2eb
chore: set js language for bug report issue config block (#19439) (Josh Goldberg ✨)5fd211d
test: processors can return subpaths (#19425) (Milos Djermanovic)v9.20.1
Compare Source
Bug Fixes
274f054
fix: fixRuleContext
type (#19417) (Francesco Trotta)Documentation
fe3ccb2
docs: allow typing in search box while dropdown is open (#19424) (Amaresh S M)93c78a5
docs: Add instructions for pnpm compat (#19422) (Nicholas C. Zakas)b476a93
docs: Fix Keyboard Navigation for Search Results (#19416) (Amaresh S M)ccb60c0
docs: Update README (GitHub Actions Bot)v9.20.0
Compare Source
Features
e89a54a
feat: change behavior of inactive flags (#19386) (Milos Djermanovic)Bug Fixes
91d4d9f
fix: Bring types in sync with @eslint/core (#19157) (Nicholas C. Zakas)fa25c7a
fix: Emit warning when empty config file is used (#19399) (Nicholas C. Zakas)31a9fd0
fix: Clearer error message for wrong plugin format (#19380) (Nicholas C. Zakas)61d99e3
fix: Better error message for unserializable parser (#19384) (Nicholas C. Zakas)db1b9a6
fix: Ensure module scope is checked for references inconsistent-this
(#19383) (Nicholas C. Zakas)8bcd820
fix:arrow-body-style
crash with single-token body (#19379) (Milos Djermanovic)Documentation
b7012c8
docs: rewrite examples with var using let and const (#19407) (Mueez Javaid Hashmi)6406376
docs: Update README (GitHub Actions Bot)350f2b9
docs: rewrite some examples with var using let and const (#19404) (Mueez Javaid Hashmi)93c325a
docs: rewrite examples with var using let and const (#19398) (Mueez Javaid Hashmi)56ff404
docs: replace var with let or const in rules docs (#19396) (Daniel Harbrueger)4053226
docs: changesourceType
inno-eval
examples (#19393) (Milos Djermanovic)1324af0
docs: replace var with let and const in rules docs (#19392) (Daniel Harbrueger)8b87e00
docs: replacevar
withconst
andlet
in rules (#19389) (Tanuj Kanti)758c66b
docs: Explain what frozen rules mean (#19382) (Nicholas C. Zakas)0ef8bb8
docs: additional checks for rule examples (#19358) (Milos Djermanovic)58ab2f6
docs: fix order of installation steps in getting started (#19326) (Tanuj Kanti)Chores
979097a
chore: upgrade @eslint/js@9.20.0 (#19412) (Francesco Trotta)031734e
chore: package.json update for @eslint/js release (Jenkins)d4c47c3
test: avoid empty config warning in test output (#19408) (Milos Djermanovic)67dd82a
chore: update dependency @eslint/json to ^0.10.0 (#19387) (renovate[bot])15ac0e1
chore: add permissions: read-all to stale.yml workflow (#19374) (Josh Goldberg ✨)v9.19.0
Compare Source
Features
1637b8e
feat: add--report-unused-inline-configs
(#19201) (Josh Goldberg ✨)Bug Fixes
aae6717
fix: sync rule type header comments automatically (#19276) (Francesco Trotta)Documentation
cfea9ab
docs: Clarify overrideConfig option (#19370) (Nicholas C. Zakas)2b84f66
docs: Update README (#19362) (Nicholas C. Zakas)044f93c
docs: clarify frozen rule description (#19351) (Pavel)797ee7c
docs: fix Bluesky links (#19368) (Milos Djermanovic)81a9c0e
docs: Update README (GitHub Actions Bot)093fb3d
docs: replacevar
withlet
andconst
in rule examples (#19365) (Tanuj Kanti)417de32
docs: replace var with const in rule examples (#19352) (jj)17f2aae
docs: update getting-started config to match default generated config (#19308) (0xDev)8a0a5a8
docs: betterglobal ignores
instruction (#19297) (Jacopo Marrone)6671a2c
docs: Update README (GitHub Actions Bot)e39d3f2
docs: fix divider for rule category (#19264) (Tanuj Kanti)e0cf53f
docs: fix search result box position for small screens (#19328) (Tanuj Kanti)f92a680
docs: replace var with let or const in rule examples (#19331) (Ravi Teja Kolla)b04b84b
docs: revert accidental changes in TS config files docs (#19336) (Francesco Trotta)Chores
9b9cb05
](https://redirect.github.com/eslint/eslint/commit/9b9cb0584867916Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.