Compare commits

...

3 commits

Author SHA1 Message Date
Johannes Zellner 941292bf52 Bump version 2024-02-01 17:29:01 +01:00
Johannes Zellner b4f7038f79 Update test deps 2024-02-01 17:07:25 +01:00
Johannes Zellner b77a74978c Update to 4.2.5 2024-02-01 17:07:16 +01:00
5 changed files with 16 additions and 11 deletions

View file

@ -433,3 +433,8 @@
* Fix RecordNotUnique errors in LinkCrawlWorker (tribela) * Fix RecordNotUnique errors in LinkCrawlWorker (tribela)
* Fix Mastodon not correctly processing HTTP Signatures with query strings (ClearlyClaire, ClearlyClaire) * Fix Mastodon not correctly processing HTTP Signatures with query strings (ClearlyClaire, ClearlyClaire)
[1.12.5]
* Update Mastodon to 4.2.5
* [Full changelog](https://github.com/mastodon/mastodon/releases/tag/v4.2.5)
* Fix insufficient origin validation (CVE-2024-23832, GHSA-3fjr-858r-92rw)

View file

@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md", "description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG", "changelog": "file://CHANGELOG",
"tagline": "Federated social network", "tagline": "Federated social network",
"version": "1.12.4", "version": "1.12.5",
"upstreamVersion": "4.2.4", "upstreamVersion": "4.2.5",
"healthCheckPath": "/about", "healthCheckPath": "/about",
"httpPort": 8000, "httpPort": 8000,
"memoryLimit": 1610612736, "memoryLimit": 1610612736,

View file

@ -33,7 +33,7 @@ RUN gem install --no-document bundler
ENV RAILS_ENV production ENV RAILS_ENV production
ENV NODE_ENV production ENV NODE_ENV production
ARG VERSION=4.2.4 ARG VERSION=4.2.5
RUN curl -L https://github.com/tootsuite/mastodon/archive/v${VERSION}.tar.gz | tar -xz --strip-components 1 -f - && \ RUN curl -L https://github.com/tootsuite/mastodon/archive/v${VERSION}.tar.gz | tar -xz --strip-components 1 -f - && \
bundle config --local set deployment 'true' && \ bundle config --local set deployment 'true' && \

14
test/package-lock.json generated
View file

@ -9,7 +9,7 @@
"version": "1.0.0", "version": "1.0.0",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"chromedriver": "^120.0.2" "chromedriver": "^121.0.0"
}, },
"devDependencies": { "devDependencies": {
"expect.js": "^0.3.1", "expect.js": "^0.3.1",
@ -234,9 +234,9 @@
} }
}, },
"node_modules/chromedriver": { "node_modules/chromedriver": {
"version": "120.0.2", "version": "121.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-120.0.2.tgz", "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-121.0.0.tgz",
"integrity": "sha512-A6/feXNWoKzkoUISJs/JAi0iIa+t6vwUnQCgGGFK7L/1r7CrreaRynVgnIliQJRdwY/8F41r6Mt3WDD9QXdV8A==", "integrity": "sha512-ZIKEdZrQAfuzT/RRofjl8/EZR99ghbdBXNTOcgJMKGP6N/UL6lHUX4n6ONWBV18pDvDFfQJ0x58h5AdOaXIOMw==",
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {
"@testim/chrome-version": "^1.1.4", "@testim/chrome-version": "^1.1.4",
@ -1543,9 +1543,9 @@
} }
}, },
"chromedriver": { "chromedriver": {
"version": "120.0.2", "version": "121.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-120.0.2.tgz", "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-121.0.0.tgz",
"integrity": "sha512-A6/feXNWoKzkoUISJs/JAi0iIa+t6vwUnQCgGGFK7L/1r7CrreaRynVgnIliQJRdwY/8F41r6Mt3WDD9QXdV8A==", "integrity": "sha512-ZIKEdZrQAfuzT/RRofjl8/EZR99ghbdBXNTOcgJMKGP6N/UL6lHUX4n6ONWBV18pDvDFfQJ0x58h5AdOaXIOMw==",
"requires": { "requires": {
"@testim/chrome-version": "^1.1.4", "@testim/chrome-version": "^1.1.4",
"axios": "^1.6.5", "axios": "^1.6.5",

View file

@ -14,6 +14,6 @@
"selenium-webdriver": "^4.17.0" "selenium-webdriver": "^4.17.0"
}, },
"dependencies": { "dependencies": {
"chromedriver": "^120.0.2" "chromedriver": "^121.0.0"
} }
} }