Compare commits
5 Commits
4de52e6330
...
custom-cha
| Author | SHA1 | Date | |
|---|---|---|---|
|
71ed1d7c1d
|
|||
|
ad1e4b5e6a
|
|||
|
a8c168ae87
|
|||
|
|
221d35d8cd | ||
|
|
9c8b00428b |
10
CHANGELOG
10
CHANGELOG
@@ -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))
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
14
Dockerfile
14
Dockerfile
@@ -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
|
||||
@@ -90,8 +90,14 @@ RUN ldconfig && \
|
||||
ffmpeg -version && \
|
||||
ffprobe -version
|
||||
|
||||
RUN curl -L https://github.com/tootsuite/mastodon/archive/v${MASTODON_VERSION}.tar.gz | tar -xz --strip-components 1 -f - && \
|
||||
bundle config --local set deployment 'true' && \
|
||||
# Download Mastodon source
|
||||
RUN curl -L https://github.com/tootsuite/mastodon/archive/v${MASTODON_VERSION}.tar.gz | tar -xz --strip-components 1 -f -
|
||||
|
||||
RUN sed -i 's/MAX_CHARS = 500/MAX_CHARS = 2500/g' app/validators/status_length_validator.rb && \
|
||||
sed -i "s/max_characters'], 500)/max_characters'], 2500)/g" app/javascript/mastodon/features/compose/containers/compose_form_container.js
|
||||
|
||||
# Install Ruby dependencies
|
||||
RUN bundle config --local set deployment 'true' && \
|
||||
bundle config --local set without 'development test' && \
|
||||
bundle config --local set silence_root_warning true && \
|
||||
bundle install && \
|
||||
@@ -100,7 +106,6 @@ RUN curl -L https://github.com/tootsuite/mastodon/archive/v${MASTODON_VERSION}.t
|
||||
|
||||
RUN corepack enable && \
|
||||
corepack prepare --activate
|
||||
|
||||
RUN yarn workspaces focus --production @mastodon/mastodon
|
||||
RUN yarn install
|
||||
|
||||
@@ -134,3 +139,4 @@ RUN ln -fs /app/data/system /app/code/public/system
|
||||
COPY start.sh cleanup.sh config.sh env.template cache-env.sh.template /app/pkg/
|
||||
|
||||
CMD [ "/app/pkg/start.sh" ]
|
||||
|
||||
|
||||
14
test/package-lock.json
generated
14
test/package-lock.json
generated
@@ -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",
|
||||
|
||||
@@ -14,6 +14,6 @@
|
||||
"selenium-webdriver": "^4.40.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"chromedriver": "^143.0.4"
|
||||
"chromedriver": "^145.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user