Renovate Bot
067ddca6d3
Update dependency postcss to v8.5.2 (forgejo) ( #6890 )
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6890
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-02-11 14:51:59 +00:00
Renovate Bot
5b26596c5c
Update vitest monorepo to v3 (forgejo) (major) ( #6777 )
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6777
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-02-04 11:26:08 +00:00
Renovate Bot
a89b5b5333
Update dependency @vitest/eslint-plugin to v1.1.25
2025-02-04 08:04:59 +00:00
Renovate Bot
6bd9867c3e
Update dependency markdownlint-cli to v0.44.0 (forgejo) ( #6758 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli ) | devDependencies | minor | [`0.43.0` -> `0.44.0`](https://renovatebot.com/diffs/npm/markdownlint-cli/0.43.0/0.44.0 ) |
---
### Release Notes
<details>
<summary>igorshubovych/markdownlint-cli (markdownlint-cli)</summary>
### [`v0.44.0`](https://github.com/igorshubovych/markdownlint-cli/releases/tag/v0.44.0 )
[Compare Source](https://github.com/igorshubovych/markdownlint-cli/compare/v0.43.0...v0.44.0 )
- Update `markdownlint` dependency to `0.37.4`
- Convert module to ECMAScript (breaking change)
- Stop using `require`, convert to `import`
- Improve `MD032`
- Update all dependencies via `Dependabot`
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 1 * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Enabled.
♻ **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.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMzYuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEzNi4xIiwidGFyZ2V0QnJhbmNoIjoiZm9yZ2VqbyIsImxhYmVscyI6WyJkZXBlbmRlbmN5LXVwZ3JhZGUiLCJ0ZXN0L25vdC1uZWVkZWQiXX0=-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6758
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-02-01 09:53:42 +00:00
Renovate Bot
41dceec63d
Update dependency @playwright/test to v1.50.1 (forgejo) ( #6756 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [@playwright/test](https://playwright.dev ) ([source](https://github.com/microsoft/playwright )) | devDependencies | minor | [`1.49.1` -> `1.50.1`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.49.1/1.50.1 ) |
---
### Release Notes
<details>
<summary>microsoft/playwright (@​playwright/test)</summary>
### [`v1.50.1`](https://github.com/microsoft/playwright/releases/tag/v1.50.1 )
[Compare Source](https://github.com/microsoft/playwright/compare/v1.50.0...v1.50.1 )
##### Highlights
https://github.com/microsoft/playwright/issues/34483 - \[Feature]: single aria snapshot for different engines/browsers
https://github.com/microsoft/playwright/issues/34497 - \[Bug]: Firefox not handling keepalive: true fetch requests
https://github.com/microsoft/playwright/issues/34504 - \[Bug]: update snapshots not creating good diffs
https://github.com/microsoft/playwright/issues/34507 - \[Bug]: snapshotPathTemplate doesnt work when multiple projects
https://github.com/microsoft/playwright/issues/34462 - \[Bug]: updateSnapshots "changed" throws an error
#### Browser Versions
- Chromium 133.0.6943.16
- Mozilla Firefox 134.0
- WebKit 18.2
This version was also tested against the following stable channels:
- Google Chrome 132
- Microsoft Edge 132
### [`v1.50.0`](https://github.com/microsoft/playwright/releases/tag/v1.50.0 )
[Compare Source](https://github.com/microsoft/playwright/compare/v1.49.1...v1.50.0 )
#### Test runner
- New option [`timeout`](https://playwright.dev/docs/api/class-test#test-step-option-timeout ) allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.
```js
test('some test', async ({ page }) => {
await test.step('a step', async () => {
// This step can time out separately from the test
}, { timeout: 1000 });
});
```
- New method [test.step.skip()](https://playwright.dev/docs/api/class-test#test-step-skip ) to disable execution of a test step.
```js
test('some test', async ({ page }) => {
await test.step('before running step', async () => {
// Normal step
});
await test.step.skip('not yet ready', async () => {
// This step is skipped
});
await test.step('after running step', async () => {
// This step still runs even though the previous one was skipped
});
});
```
- Expanded [expect(locator).toMatchAriaSnapshot()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-match-aria-snapshot-2 ) to allow storing of aria snapshots in separate YAML files.
- Added method [expect(locator).toHaveAccessibleErrorMessage()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-error-message ) to assert the Locator points to an element with a given [aria errormessage](https://w3c.github.io/aria/#aria-errormessage ).
- Option [testConfig.updateSnapshots](https://playwright.dev/docs/api/class-testconfig#test-config-update-snapshots ) added the configuration enum `changed`. `changed` updates only the snapshots that have changed, whereas `all` now updates all snapshots, regardless of whether there are any differences.
- New option [testConfig.updateSourceMethod](https://playwright.dev/docs/api/class-testconfig#test-config-update-source-method ) defines the way source code is updated when [testConfig.updateSnapshots](https://playwright.dev/docs/api/class-testconfig#test-config-update-snapshots ) is configured. Added `overwrite` and `3-way` modes that write the changes into source code, on top of existing `patch` mode that creates a patch file.
```bash
npx playwright test --update-snapshots=changed --update-source-method=3way
```
- Option [testConfig.webServer](https://playwright.dev/docs/api/class-testconfig#test-config-web-server ) added a `gracefulShutdown` field for specifying a process kill signal other than the default `SIGKILL`.
- Exposed [testStep.attachments](https://playwright.dev/docs/api/class-teststep#test-step-attachments ) from the reporter API to allow retrieval of all attachments created by that step.
- New option `pathTemplate` for `toHaveScreenshot` and `toMatchAriaSnapshot` assertions in the [testConfig.expect](https://playwright.dev/docs/api/class-testconfig#test-config-expect ) configuration.
#### UI updates
- Updated default HTML reporter to improve display of attachments.
- New button for picking elements to produce aria snapshots.
- Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
- Display of `canvas` content in traces is error-prone. Display is now disabled by default, and can be enabled via the `Display canvas content` UI setting.
- `Call` and `Network` panels now display additional time information.
#### Breaking
- [expect(locator).toBeEditable()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-be-editable ) and [locator.isEditable()](https://playwright.dev/docs/api/class-locator#locator-is-editable ) now throw if the target element is not `<input>`, `<select>`, or a number of other editable elements.
- Option [testConfig.updateSnapshots](https://playwright.dev/docs/api/class-testconfig#test-config-update-snapshots ) now updates all snapshots when set to `all`, rather than only the failed/changed snapshots. Use the new enum `changed` to keep the old functionality of only updating the changed snapshots.
#### Browser Versions
- Chromium 133.0.6943.16
- Mozilla Firefox 134.0
- WebKit 18.2
This version was also tested against the following stable channels:
- Google Chrome 132
- Microsoft Edge 132
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 1 * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Enabled.
♻ **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.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMzYuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEzNi4xIiwidGFyZ2V0QnJhbmNoIjoiZm9yZ2VqbyIsImxhYmVscyI6WyJkZXBlbmRlbmN5LXVwZ3JhZGUiLCJ0ZXN0L25vdC1uZWVkZWQiXX0=-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6756
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-02-01 09:49:46 +00:00
Renovate Bot
a5f151602b
Update dependency happy-dom to v16.8.1 (forgejo) ( #6757 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [happy-dom](https://github.com/capricorn86/happy-dom ) | devDependencies | minor | [`16.3.0` -> `16.8.1`](https://renovatebot.com/diffs/npm/happy-dom/16.3.0/16.8.1 ) |
---
### Release Notes
<details>
<summary>capricorn86/happy-dom (happy-dom)</summary>
### [`v16.8.1`](https://github.com/capricorn86/happy-dom/releases/tag/v16.8.1 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.8.0...v16.8.1 )
##### 👷♂️ Patch fixes
- Handle non-string values gracefully when removing an attribute - By **[@​OlaviSau](https://github.com/OlaviSau )** in task [#​1706](https://github.com/capricorn86/happy-dom/issues/1706 )
### [`v16.8.0`](https://github.com/capricorn86/happy-dom/releases/tag/v16.8.0 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.7.3...v16.8.0 )
##### 🎨 Features
- Add support for `insertRow()` and `deleteRow()` to `HTMLTableSectionElement` - By **[@​christiango](https://github.com/christiango )** in task [#​1708](https://github.com/capricorn86/happy-dom/issues/1708 )
### [`v16.7.3`](https://github.com/capricorn86/happy-dom/releases/tag/v16.7.3 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.7.2...v16.7.3 )
##### 👷♂️ Patch fixes
- Removes space from directory name that prevents the repo to be cloned on MS Windows - By **[@​kleinfreund](https://github.com/kleinfreund )** in task [#​1703](https://github.com/capricorn86/happy-dom/issues/1703 )
### [`v16.7.2`](https://github.com/capricorn86/happy-dom/releases/tag/v16.7.2 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.7.1...v16.7.2 )
##### 👷♂️ Patch fixes
- Ignore invalid cookies in CookieContainer - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1693](https://github.com/capricorn86/happy-dom/issues/1693 )
### [`v16.7.1`](https://github.com/capricorn86/happy-dom/releases/tag/v16.7.1 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.7.0...v16.7.1 )
##### 👷♂️ Patch fixes
- Adds `ICookie`, `IOptionalCookie`, `CookieSameSiteEnum` and `IVirtualServer` as exports to the index file - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1693](https://github.com/capricorn86/happy-dom/issues/1693 )
- Makes non-mandatory cookie properties optional in `CookieContainer.addCookies()` - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1693](https://github.com/capricorn86/happy-dom/issues/1693 )
### [`v16.7.0`](https://github.com/capricorn86/happy-dom/releases/tag/v16.7.0 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.6.0...v16.7.0 )
##### 🎨 Features
- Adds support for simulating local HTTP servers that serves files from the local file system - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1688](https://github.com/capricorn86/happy-dom/issues/1688 )
- Read more about virtual servers in the [Wiki](https://github.com/capricorn86/happy-dom/wiki/IVirtualServer )
### [`v16.6.0`](https://github.com/capricorn86/happy-dom/releases/tag/v16.6.0 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.5.3...v16.6.0 )
##### 🎨 Features
- Adds support for subsequent sibling combinator to `querySelector()`, `querySelectorAll()` and `matches()` (e.g. ".a ~ .b") - By **[@​karpiuMG](https://github.com/karpiuMG )** in task [#​1683](https://github.com/capricorn86/happy-dom/issues/1683 )
### [`v16.5.3`](https://github.com/capricorn86/happy-dom/releases/tag/v16.5.3 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.5.2...v16.5.3 )
##### 👷♂️ Patch fixes
- Fixes problem with encoding and decoding attribute values in HTML - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1678](https://github.com/capricorn86/happy-dom/issues/1678 )
- Fixes issue where it was not possible to query selector by class when the attribute value had line breaks in it - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1678](https://github.com/capricorn86/happy-dom/issues/1678 )
### [`v16.5.2`](https://github.com/capricorn86/happy-dom/releases/tag/v16.5.2 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.5.1...v16.5.2 )
##### 👷♂️ Patch fixes
- `Event.target` should be the target element after an event has been dispatched - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1529](https://github.com/capricorn86/happy-dom/issues/1529 )
### [`v16.5.1`](https://github.com/capricorn86/happy-dom/releases/tag/v16.5.1 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.5.0...v16.5.1 )
##### 👷♂️ Patch fixes
- Fixes issue where `Comment`, `Text` and `DocumentFragment` are not instances of their corresponding property on `Window` - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1577](https://github.com/capricorn86/happy-dom/issues/1577 )
### [`v16.5.0`](https://github.com/capricorn86/happy-dom/releases/tag/v16.5.0 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.4.3...v16.5.0 )
##### 🎨 Features
- Adds property `GlobalRegistrator.isRegistered` - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1670](https://github.com/capricorn86/happy-dom/issues/1670 )
### [`v16.4.3`](https://github.com/capricorn86/happy-dom/releases/tag/v16.4.3 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.4.2...v16.4.3 )
##### 👷♂️ Patch fixes
- Adds null check for if browser frame is available in `Response` during tear down of the `Window` - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1669](https://github.com/capricorn86/happy-dom/issues/1669 )
### [`v16.4.2`](https://github.com/capricorn86/happy-dom/releases/tag/v16.4.2 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.4.1...v16.4.2 )
##### 👷♂️ Patch fixes
- Support using URL as an object for URL:s when using the Browser API - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1664](https://github.com/capricorn86/happy-dom/issues/1664 )
### [`v16.4.1`](https://github.com/capricorn86/happy-dom/releases/tag/v16.4.1 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.4.0...v16.4.1 )
##### 👷♂️ Patch fixes
- Fixes issue where HTML assigned to `document.documentElement.innerHTML` isnt parsed correctly since v16 - By **[@​capricorn86](https://github.com/capricorn86 )** in task [#​1663](https://github.com/capricorn86/happy-dom/issues/1663 )
### [`v16.4.0`](https://github.com/capricorn86/happy-dom/releases/tag/v16.4.0 )
[Compare Source](https://github.com/capricorn86/happy-dom/compare/v16.3.0...v16.4.0 )
##### 🎨 Features
- Allow fetch to be intercepted and modified by sending in an interceptor as a setting - By **[@​OlaviSau](https://github.com/OlaviSau )** in task [#​1502](https://github.com/capricorn86/happy-dom/issues/1502 )
- Read more about this in the Wiki at [IFetchInterceptor](https://github.com/capricorn86/happy-dom/wiki/IFetchInterceptor )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 1 * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Enabled.
♻ **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.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMzYuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEzNi4xIiwidGFyZ2V0QnJhbmNoIjoiZm9yZ2VqbyIsImxhYmVscyI6WyJkZXBlbmRlbmN5LXVwZ3JhZGUiLCJ0ZXN0L25vdC1uZWVkZWQiXX0=-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6757
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-02-01 09:47:59 +00:00
Renovate Bot
f1a92de4e6
Update postcss (forgejo) ( #6562 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [postcss](https://postcss.org/ ) ([source](https://github.com/postcss/postcss )) | dependencies | minor | [`8.4.49` -> `8.5.1`](https://renovatebot.com/diffs/npm/postcss/8.4.49/8.5.1 ) |
| [postcss-html](https://github.com/ota-meshi/postcss-html ) | devDependencies | minor | [`1.7.0` -> `1.8.0`](https://renovatebot.com/diffs/npm/postcss-html/1.7.0/1.8.0 ) |
---
### Release Notes
<details>
<summary>postcss/postcss (postcss)</summary>
### [`v8.5.1`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#851 )
[Compare Source](https://github.com/postcss/postcss/compare/8.5.0...8.5.1 )
- Fixed backwards compatibility for complex cases (by [@​romainmenke](https://github.com/romainmenke )).
### [`v8.5.0`](https://github.com/postcss/postcss/releases/tag/8.5.0 ): 8.5 “Duke Alloces”
[Compare Source](https://github.com/postcss/postcss/compare/8.4.49...8.5.0 )
<img src="https://github.com/user-attachments/assets/6ef654a0-d675-4ba0-a670-e28ef27062f5 " align="right" width="200" height="200" alt="President Alloces seal">
PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.
[@​romainmenke](https://github.com/romainmenke ) during [his work](https://github.com/postcss/postcss/issues/1995 ) on [Stylelint](https://stylelint.io ) added `Input#document` in additional to `Input#css`.
```js
root.source.input.document //=> "<p>Hello</p>
// <style>
// p {
// color: green;
// }
// </style>"
root.source.input.css //=> "p {
// color: green;
// }"
```
#### Thanks to Sponsors
This release was possible thanks to our community.
If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:
- [**Tidelift**](https://tidelift.com/ ) with a Spotify-like subscription model supporting all projects from your lock file.
- Direct donations at [**GitHub Sponsors**](https://github.com/sponsors/ai ) or [**Open Collective**](https://opencollective.com/postcss#section-contributors ).
</details>
<details>
<summary>ota-meshi/postcss-html (postcss-html)</summary>
### [`v1.8.0`](https://github.com/ota-meshi/postcss-html/releases/tag/v1.8.0 )
[Compare Source](https://github.com/ota-meshi/postcss-html/compare/v1.7.0...v1.8.0 )
#### What's Changed
- update to latest PostCSS by [@​romainmenke](https://github.com/romainmenke ) in https://github.com/ota-meshi/postcss-html/pull/134
**Full Changelog**: https://github.com/ota-meshi/postcss-html/compare/v1.7.0...v1.8.0
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions ) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMDYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjEwNi4wIiwidGFyZ2V0QnJhbmNoIjoiZm9yZ2VqbyIsImxhYmVscyI6WyJkZXBlbmRlbmN5LXVwZ3JhZGUiLCJ0ZXN0L25vdC1uZWVkZWQiXX0=-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6562
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-18 06:39:17 +00:00
Renovate Bot
5c8db43447
Update dependency katex to v0.16.21 (forgejo) ( #6603 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [katex](https://katex.org ) ([source](https://github.com/KaTeX/KaTeX )) | dependencies | patch | [`0.16.20` -> `0.16.21`](https://renovatebot.com/diffs/npm/katex/0.16.20/0.16.21 ) |
---
### Release Notes
<details>
<summary>KaTeX/KaTeX (katex)</summary>
### [`v0.16.21`](https://github.com/KaTeX/KaTeX/blob/HEAD/CHANGELOG.md#01621-2025-01-17 )
[Compare Source](https://github.com/KaTeX/KaTeX/compare/v0.16.20...v0.16.21 )
##### Bug Fixes
- escape \htmlData attribute name ([57914ad](57914ad91e
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMDYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjEwNi4wIiwidGFyZ2V0QnJhbmNoIjoiZm9yZ2VqbyIsImxhYmVscyI6WyJkZXBlbmRlbmN5LXVwZ3JhZGUiLCJ0ZXN0L25vdC1uZWVkZWQiXX0=-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6603
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-18 05:30:16 +00:00
Renovate Bot
907ab8bdef
Update dependency @github/relative-time-element to v4.4.5 (forgejo) ( #6559 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [@github/relative-time-element](https://github.com/github/relative-time-element ) | dependencies | patch | [`4.4.4` -> `4.4.5`](https://renovatebot.com/diffs/npm/@github%2frelative-time-element/4.4.4/4.4.5 ) |
---
### Release Notes
<details>
<summary>github/relative-time-element (@​github/relative-time-element)</summary>
### [`v4.4.5`](https://github.com/github/relative-time-element/releases/tag/v4.4.5 )
[Compare Source](https://github.com/github/relative-time-element/compare/v4.4.4...v4.4.5 )
#### What's Changed
- fix: wrap Intl.<>() calls in try/catch by [@​francinelucca](https://github.com/francinelucca ) in https://github.com/github/relative-time-element/pull/297
- get main branch green by [@​keithamus](https://github.com/keithamus ) in https://github.com/github/relative-time-element/pull/302
- Make `applyDuration` reversible by [@​leduyquang753](https://github.com/leduyquang753 ) in https://github.com/github/relative-time-element/pull/298
- Use node v22 by [@​camertron](https://github.com/camertron ) in https://github.com/github/relative-time-element/pull/303
#### New Contributors
- [@​francinelucca](https://github.com/francinelucca ) made their first contribution in https://github.com/github/relative-time-element/pull/297
- [@​leduyquang753](https://github.com/leduyquang753 ) made their first contribution in https://github.com/github/relative-time-element/pull/298
- [@​camertron](https://github.com/camertron ) made their first contribution in https://github.com/github/relative-time-element/pull/303
**Full Changelog**: https://github.com/github/relative-time-element/compare/v4.4.4...v4.4.5
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMDYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjEwNi4wIiwidGFyZ2V0QnJhbmNoIjoiZm9yZ2VqbyIsImxhYmVscyI6WyJkZXBlbmRlbmN5LXVwZ3JhZGUiLCJ0ZXN0L25vdC1uZWVkZWQiXX0=-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6559
Reviewed-by: Otto <otto@codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-16 22:51:49 +00:00
Renovate Bot
a87d07f4d2
Update dependency katex to v0.16.20 (forgejo) ( #6548 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [katex](https://katex.org ) ([source](https://github.com/KaTeX/KaTeX )) | dependencies | patch | [`0.16.18` -> `0.16.20`](https://renovatebot.com/diffs/npm/katex/0.16.18/0.16.20 ) |
---
### Release Notes
<details>
<summary>KaTeX/KaTeX (katex)</summary>
### [`v0.16.20`](https://github.com/KaTeX/KaTeX/blob/HEAD/CHANGELOG.md#01620-2025-01-12 )
[Compare Source](https://github.com/KaTeX/KaTeX/compare/v0.16.19...v0.16.20 )
##### Bug Fixes
- \providecommand does not overwrite existing macro ([#​4000](https://github.com/KaTeX/KaTeX/issues/4000 )) ([6d30fe4](6d30fe47b0
)), closes [#​3928](https://github.com/KaTeX/KaTeX/issues/3928 )
### [`v0.16.19`](https://github.com/KaTeX/KaTeX/blob/HEAD/CHANGELOG.md#01619-2024-12-29 )
[Compare Source](https://github.com/KaTeX/KaTeX/compare/v0.16.18...v0.16.19 )
##### Bug Fixes
- **types:** improve `strict` function type ([#​4009](https://github.com/KaTeX/KaTeX/issues/4009 )) ([4228b4e](4228b4eb52
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS45My4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTMuMCIsInRhcmdldEJyYW5jaCI6ImZvcmdlam8iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeS11cGdyYWRlIiwidGVzdC9ub3QtbmVlZGVkIl19-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6548
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-13 22:10:43 +00:00
Renovate Bot
b3626f0208
Update dependency asciinema-player to v3.8.2 (forgejo) ( #6518 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [asciinema-player](https://github.com/asciinema/asciinema-player ) | dependencies | patch | [`3.8.0` -> `3.8.2`](https://renovatebot.com/diffs/npm/asciinema-player/3.8.0/3.8.2 ) |
---
### Release Notes
<details>
<summary>asciinema/asciinema-player (asciinema-player)</summary>
### [`v3.8.2`](https://github.com/asciinema/asciinema-player/releases/tag/v3.8.2 ): 3.8.2
[Compare Source](https://github.com/asciinema/asciinema-player/compare/v3.8.1...v3.8.2 )
Notable changes:
- fixed blinking of ascii drawing chars ([#​273](https://github.com/asciinema/asciinema-player/issues/273 ))
- background color is no longer brightened (value + 8) when blink attribute is set - this caused ugly rendering in some scenarios, and no terminals I tested do this either
### [`v3.8.1`](https://github.com/asciinema/asciinema-player/releases/tag/v3.8.1 ): 3.8.1
[Compare Source](https://github.com/asciinema/asciinema-player/compare/v3.8.0...v3.8.1 )
Notable changes:
- upgraded avt to the latest version
- added `dist/bundle/asciinema-player.min.js` to package exports to allow pre-3.8.0 usage ([#​263](https://github.com/asciinema/asciinema-player/issues/263 ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS45My4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTMuMCIsInRhcmdldEJyYW5jaCI6ImZvcmdlam8iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeS11cGdyYWRlIiwidGVzdC9ub3QtbmVlZGVkIl19-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6518
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-11 10:18:53 +00:00
Renovate Bot
d2d14ce4bb
Update dependency monaco-editor to v0.52.2 (forgejo) ( #6511 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [monaco-editor](https://github.com/microsoft/monaco-editor ) | dependencies | minor | [`0.51.0` -> `0.52.2`](https://renovatebot.com/diffs/npm/monaco-editor/0.51.0/0.52.2 ) |
---
### Release Notes
<details>
<summary>microsoft/monaco-editor (monaco-editor)</summary>
### [`v0.52.2`](https://github.com/microsoft/monaco-editor/releases/tag/v0.52.2 )
[Compare Source](https://github.com/microsoft/monaco-editor/compare/v0.52.0...v0.52.2 )
#### Changes:
- [#​4777](https://github.com/microsoft/monaco-editor/issues/4777 ): 0.52.2
- [#​4774](https://github.com/microsoft/monaco-editor/issues/4774 ): Updates changelog
This list of changes was [auto generated](https://dev.azure.com/monacotools/Monaco/\_build/results?buildId=309119\&view=logs ).
### [`v0.52.0`](https://github.com/microsoft/monaco-editor/blob/HEAD/CHANGELOG.md#0520 )
[Compare Source](https://github.com/microsoft/monaco-editor/compare/v0.51.0...v0.52.0 )
- Comment added inside of `IModelContentChangedEvent`
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS45My4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTMuMCIsInRhcmdldEJyYW5jaCI6ImZvcmdlam8iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeS11cGdyYWRlIiwidGVzdC9ub3QtbmVlZGVkIl19-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6511
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-09 06:26:12 +00:00
Renovate Bot
a99cd47081
Update dependency typescript to v5.7.3 (forgejo) ( #6509 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [typescript](https://www.typescriptlang.org/ ) ([source](https://github.com/microsoft/TypeScript )) | devDependencies | patch | [`5.7.2` -> `5.7.3`](https://renovatebot.com/diffs/npm/typescript/5.7.2/5.7.3 ) |
---
### Release Notes
<details>
<summary>microsoft/TypeScript (typescript)</summary>
### [`v5.7.3`](https://github.com/microsoft/TypeScript/releases/tag/v5.7.3 ): TypeScript 5.7.3
[Compare Source](https://github.com/microsoft/TypeScript/compare/v5.7.2...v5.7.3 )
For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/ ).
- [fixed issues query for Typescript 5.7.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.7.0%22+is%3Aclosed+ ).
- [fixed issues query for Typescript 5.7.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.7.1%22+is%3Aclosed+ ).
- [fixed issues query for Typescript 5.7.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.7.2%22+is%3Aclosed+ ).
- [fixed issues query for Typescript 5.7.3 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.7.2%22+is%3Aclosed+ ).
Downloads are available on [npm](https://www.npmjs.com/package/typescript )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS45My4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTMuMCIsInRhcmdldEJyYW5jaCI6ImZvcmdlam8iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeS11cGdyYWRlIiwidGVzdC9ub3QtbmVlZGVkIl19-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6509
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-09 06:24:29 +00:00
Renovate Bot
6169090c13
Update dependency happy-dom to v16 (forgejo) ( #6454 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-07 11:38:58 +00:00
Renovate Bot
07d7c54d91
Update dependency fast-glob to v3.3.3 (forgejo) ( #6476 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [fast-glob](https://github.com/mrmlnc/fast-glob ) | dependencies | patch | [`3.3.2` -> `3.3.3`](https://renovatebot.com/diffs/npm/fast-glob/3.3.2/3.3.3 ) |
---
### Release Notes
<details>
<summary>mrmlnc/fast-glob (fast-glob)</summary>
### [`v3.3.3`](https://github.com/mrmlnc/fast-glob/releases/tag/3.3.3 )
[Compare Source](https://github.com/mrmlnc/fast-glob/compare/3.3.2...3.3.3 )
> **Full Changelog**: https://github.com/mrmlnc/fast-glob/compare/3.3.2...3.3.3
#### 💬 Common
- Refer to micromatch@4.0.8 to avoid annoying npm audit spam ([#​443](https://github.com/mrmlnc/fast-glob/issues/443 ), [#​444](https://github.com/mrmlnc/fast-glob/issues/444 ), [#​454](https://github.com/mrmlnc/fast-glob/issues/454 ), [#​456](https://github.com/mrmlnc/fast-glob/issues/456 ), [#​457](https://github.com/mrmlnc/fast-glob/issues/457 ), [#​461](https://github.com/mrmlnc/fast-glob/issues/461 ))
#### 🐛 Bug fixes
- Apply absolute negative patterns to full path instead of file path ([#​441](https://github.com/mrmlnc/fast-glob/issues/441 ), thanks [@​webpro](https://github.com/webpro ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - "* 0-3 * * *" (UTC).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS45MC4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTAuMCIsInRhcmdldEJyYW5jaCI6ImZvcmdlam8iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeS11cGdyYWRlIiwidGVzdC9ub3QtbmVlZGVkIl19-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6476
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-06 06:43:52 +00:00
Renovate Bot
d5bd212d00
Update dependency @vitest/eslint-plugin to v1.1.22 (forgejo) ( #6436 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2025-01-01 08:51:37 +00:00
Gusted
64deec434a
Revert "Update dependency idiomorph to v0.4.0"
...
This reverts commit f9aaefd107
.
I've not not yet been able to determine what commit caused it, but 0.4.0
is broken for Forgejo's usecase it's not morphing and instead
replacing (it seems) elements when there's no need to.
2024-12-25 23:08:03 +01:00
Renovate Bot
6bbc9001e9
Update dependency @vitest/eslint-plugin to v1.1.20 (forgejo) ( #6364 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-24 23:02:35 +00:00
Renovate Bot
f5d868e2d3
Update linters (forgejo) ( #6366 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-24 23:01:52 +00:00
Renovate Bot
85717dcdd8
Update dependency webpack-cli to v6
2024-12-24 20:05:17 +00:00
Renovate Bot
f9aaefd107
Update dependency idiomorph to v0.4.0
2024-12-24 00:04:32 +00:00
Renovate Bot
456d059982
Update dependency @playwright/test to v1.49.1 (forgejo) ( #6308 )
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6308
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-19 11:20:42 +00:00
Renovate Bot
a941b878ea
Update dependency katex to v0.16.18 (forgejo) ( #6319 )
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6319
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-19 10:32:24 +00:00
Renovate Bot
9ebef52038
Update dependency globals to v15.14.0 (forgejo) ( #6321 )
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6321
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-19 06:42:06 +00:00
Gusted
4d335c25bf
Merge pull request 'Update dependency katex to v0.16.17 (forgejo)' ( #6304 ) from renovate/forgejo-katex-0.x into forgejo
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6304
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
2024-12-18 04:57:37 +00:00
Gusted
3991d76013
Merge pull request 'Update dependency markdownlint-cli to v0.43.0 (forgejo)' ( #6309 ) from renovate/forgejo-markdownlint-cli-0.x into forgejo
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6309
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
2024-12-18 04:57:23 +00:00
Gusted
8bf0001441
Merge pull request 'Update dependency tailwindcss to v3.4.17 (forgejo)' ( #6305 ) from renovate/forgejo-tailwindcss-3.x into forgejo
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6305
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
2024-12-18 04:49:05 +00:00
Renovate Bot
3b16651ae1
Update dependency markdownlint-cli to v0.43.0
2024-12-18 02:03:37 +00:00
Renovate Bot
0e01b79506
Update vitest monorepo to v2.1.8 (forgejo) ( #6307 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-18 01:30:42 +00:00
Renovate Bot
b7dc6f0bba
Update dependency eslint-plugin-import-x to v4.5.1 (forgejo) ( #6303 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-18 01:29:21 +00:00
Gusted
a0d824e344
Merge pull request 'Update dependency @primer/octicons to v19.14.0 (forgejo)' ( #6259 ) from renovate/forgejo-primer-octicons-19.x into forgejo
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6259
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
2024-12-18 00:22:32 +00:00
Renovate Bot
3fd562368c
Update dependency tailwindcss to v3.4.17
2024-12-18 00:04:26 +00:00
Renovate Bot
9096a14801
Update dependency katex to v0.16.17
2024-12-18 00:04:06 +00:00
Renovate Bot
8dd4a6b69e
Update dependency eslint-plugin-sonarjs to v3 (forgejo) ( #6293 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-17 11:15:27 +00:00
Renovate Bot
987fdca9db
Update linters (forgejo) ( #6292 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-16 21:12:59 +00:00
Renovate Bot
3d5dfea734
Update dependency @vitest/eslint-plugin to v1.1.16 (forgejo) ( #6290 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-16 20:33:06 +00:00
Renovate Bot
48f471ef7c
Update dependency @primer/octicons to v19.14.0
2024-12-13 00:03:57 +00:00
Renovate Bot
28a23c1f13
Update dependency katex to v0.16.15
2024-12-10 02:02:51 +00:00
Renovate Bot
855850f2a5
Update dependency katex to v0.16.14
2024-12-09 00:03:55 +00:00
Gusted
0fad31a5c6
Merge pull request 'Update dependency webpack to v5.97.1 (forgejo)' ( #6172 ) from renovate/forgejo-webpack-5.x into forgejo
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6172
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
2024-12-06 02:04:48 +00:00
Renovate Bot
cb4df1ee4d
Update dependency webpack to v5.97.1
2024-12-06 00:03:23 +00:00
Renovate Bot
0e250469d4
Update dependency @github/relative-time-element to v4.4.4
2024-12-06 00:03:05 +00:00
Renovate Bot
b56b70c312
Update dependency @primer/octicons to v19.13.0
2024-12-05 00:04:08 +00:00
Renovate Bot
6d0640211a
Update dependency webpack to v5.97.0
2024-12-04 10:49:22 +00:00
Renovate Bot
8b1cbb470d
Update dependency typescript to v5.7.2 (forgejo) ( #6049 )
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6049
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-04 07:41:45 +00:00
Renovate Bot
3e0b76d430
Update dependency tailwindcss to v3.4.16 (forgejo) ( #6139 )
...
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6139
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-04 07:13:48 +00:00
Renovate Bot
fc0510fc6f
chore(deps): update dependency globals to v15.13.0 (forgejo)
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [globals](https://github.com/sindresorhus/globals ) | devDependencies | minor | [`15.12.0` -> `15.13.0`](https://renovatebot.com/diffs/npm/globals/15.12.0/15.13.0 ) |
---
### Release Notes
<details>
<summary>sindresorhus/globals (globals)</summary>
### [`v15.13.0`](https://github.com/sindresorhus/globals/releases/tag/v15.13.0 )
[Compare Source](https://github.com/sindresorhus/globals/compare/v15.12.0...v15.13.0 )
- Update globals
***
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge - "before 4am" (UTC).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yOC4wIiwidXBkYXRlZEluVmVyIjoiMzkuMjguMCIsInRhcmdldEJyYW5jaCI6ImZvcmdlam8iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeS11cGdyYWRlIiwidGVzdC9ub3QtbmVlZGVkIl19-->
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6118
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-02 05:44:16 +00:00
Renovate Bot
5472cec885
Update dependency @vitest/eslint-plugin to v1.1.12 (forgejo) ( #6107 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-01 08:33:15 +00:00
Renovate Bot
a068209f64
Update dependency happy-dom to v15.11.7 (forgejo) ( #6109 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-01 07:26:10 +00:00
Renovate Bot
57fd321f85
Update dependency @stoplight/spectral-cli to v6.14.2 (forgejo) ( #6106 )
...
Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
2024-12-01 07:05:04 +00:00