Compare commits

..

5 Commits

Author SHA1 Message Date
71ed1d7c1d Use sed instead of patch for char limit 2026-02-08 11:47:04 +01:00
ad1e4b5e6a Fix patch format 2026-02-08 11:47:03 +01:00
a8c168ae87 Add character limit patch (2500 chars) 2026-02-08 11:46:56 +01:00
Package Updates
221d35d8cd Update package version to 1.17.6 2026-02-04 07:30:37 +00:00
Renovate Bot
9c8b00428b chore(deps): update dependency tootsuite/mastodon to v4.5.6
| datasource      | package            | from  | to    |
| --------------- | ------------------ | ----- | ----- |
| github-releases | tootsuite/mastodon | 4.5.5 | 4.5.6 |
2026-02-04 00:20:59 +00:00
5 changed files with 21 additions and 11 deletions

View File

@@ -820,3 +820,13 @@
* Fix URI generation for reblogs by accounts with numerical ActivityPub identifiers ([#37415](https://github.com/tootsuite/mastodon/issues/37415) by [@oneiros](https://github.com/oneiros))
* Fix SignatureParser accepting duplicate parameters in HTTP Signature header ([#37375](https://github.com/tootsuite/mastodon/issues/37375) by [@shleeable](https://github.com/shleeable))
[1.17.6]
* Update mastodon to 4.5.6
* [Full Changelog](https://github.com/mastodon/mastodon/releases/tag/v4.5.6)
* Fix relationship cache not being cleared when handling account migrations ([#​37664](https://github.com/tootsuite/mastodon/issues/37664) by [@​ClearlyClaire](https://github.com/ClearlyClaire))
* Fix quote cancel button not appearing after edit then delete-and-redraft ([#​37066](https://github.com/tootsuite/mastodon/issues/37066) by [@​PGrayCS](https://github.com/PGrayCS))
* Fix followers with profile subscription (bell icon) being notified of post edits ([#​37646](https://github.com/tootsuite/mastodon/issues/37646) by [@​ClearlyClaire](https://github.com/ClearlyClaire))
* Fix error when encountering invalid tag in updated object ([#​37635](https://github.com/tootsuite/mastodon/issues/37635) by [@​ClearlyClaire](https://github.com/ClearlyClaire))
* Fix cross-server conversation tracking ([#​37559](https://github.com/tootsuite/mastodon/issues/37559) by [@​ClearlyClaire](https://github.com/ClearlyClaire))
* Fix recycled connections not being immediately closed ([#​37335](https://github.com/tootsuite/mastodon/issues/37335) and [#​37674](https://github.com/tootsuite/mastodon/issues/37674) by [@​ClearlyClaire](https://github.com/ClearlyClaire) and [@​shleeable](https://github.com/shleeable))

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Federated social network",
"version": "1.17.5",
"upstreamVersion": "4.5.5",
"version": "1.17.6",
"upstreamVersion": "4.5.6",
"healthCheckPath": "/about",
"httpPort": 8000,
"memoryLimit": 1610612736,

View File

@@ -68,7 +68,7 @@ RUN mkdir -p /app/code /app/pkg
WORKDIR /app/code
# renovate: datasource=github-releases depName=tootsuite/mastodon versioning=semver extractVersion=^v(?<version>.+)$
ARG MASTODON_VERSION=4.5.5
ARG MASTODON_VERSION=4.5.6
ENV RAILS_ENV production
ENV NODE_ENV production

14
test/package-lock.json generated
View File

@@ -9,7 +9,7 @@
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"chromedriver": "^143.0.4"
"chromedriver": "^145.0.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
@@ -341,9 +341,9 @@
}
},
"node_modules/chromedriver": {
"version": "143.0.4",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-143.0.4.tgz",
"integrity": "sha512-mE++40DprY2n4d3OPxzW7ujIFRY9eLYwJf4uBgQtMaJQkapSVXRzUrLzSMcRaybrt47Y1t8xW5AKoaUIL3aYZw==",
"version": "145.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-145.0.0.tgz",
"integrity": "sha512-rnqHS3u+OEdhaS3PmV7V8KYHBLiIOrIKMkRZSEaQcQXnpqHQTPBrS/1x7r0MJvuywtv2qFQYNbd5yXUmuxFvmg==",
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
@@ -2224,9 +2224,9 @@
}
},
"chromedriver": {
"version": "143.0.4",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-143.0.4.tgz",
"integrity": "sha512-mE++40DprY2n4d3OPxzW7ujIFRY9eLYwJf4uBgQtMaJQkapSVXRzUrLzSMcRaybrt47Y1t8xW5AKoaUIL3aYZw==",
"version": "145.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-145.0.0.tgz",
"integrity": "sha512-rnqHS3u+OEdhaS3PmV7V8KYHBLiIOrIKMkRZSEaQcQXnpqHQTPBrS/1x7r0MJvuywtv2qFQYNbd5yXUmuxFvmg==",
"requires": {
"@testim/chrome-version": "^1.1.4",
"axios": "^1.12.0",

View File

@@ -14,6 +14,6 @@
"selenium-webdriver": "^4.40.0"
},
"dependencies": {
"chromedriver": "^143.0.4"
"chromedriver": "^145.0.0"
}
}