Compare commits

...

3 commits

Author SHA1 Message Date
Johannes Zellner 77f9fa9a63 Bump version 2024-02-16 13:33:45 +01:00
Johannes Zellner 56bcb395dc Update test deps 2024-02-16 13:19:30 +01:00
Johannes Zellner a24ad995de Update to 4.2.7 2024-02-16 13:19:22 +01:00
5 changed files with 20 additions and 11 deletions

View file

@ -448,3 +448,12 @@
* Fix ongoing streaming sessions not being invalidated when applications get deleted in some cases (GHSA-7w3c-p9j8-mq3x)
* Update the sidekiq-unique-jobs dependency (see GHSA-cmh9-rx85-xj38)
[1.13.0]
* Update Mastodon to 4.2.7
* This release is an important security release fixing several security issue.
* With this package release, the app moves from LDAP authentication to OpenID Connect
* [Full changelog](https://github.com/mastodon/mastodon/releases/tag/v4.2.7)
* Fix OmniAuth tests and edge cases in error handling (ClearlyClaire, ClearlyClaire)
* Fix new installs by upgrading to the latest release of the nsa gem, instead of a no longer existing commit (mjankowski)
* Fix insufficient checking of remote posts (GHSA-jhrq-qvrm-qr36)

View file

@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Federated social network",
"version": "1.12.6",
"upstreamVersion": "4.2.6",
"version": "1.13.0",
"upstreamVersion": "4.2.7",
"healthCheckPath": "/about",
"httpPort": 8000,
"memoryLimit": 1610612736,

View file

@ -33,7 +33,7 @@ RUN gem install --no-document bundler
ENV RAILS_ENV production
ENV NODE_ENV production
ARG VERSION=4.2.6
ARG VERSION=4.2.7
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' && \

14
test/package-lock.json generated
View file

@ -9,7 +9,7 @@
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"chromedriver": "^121.0.0"
"chromedriver": "^121.0.1"
},
"devDependencies": {
"expect.js": "^0.3.1",
@ -234,9 +234,9 @@
}
},
"node_modules/chromedriver": {
"version": "121.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-121.0.0.tgz",
"integrity": "sha512-ZIKEdZrQAfuzT/RRofjl8/EZR99ghbdBXNTOcgJMKGP6N/UL6lHUX4n6ONWBV18pDvDFfQJ0x58h5AdOaXIOMw==",
"version": "121.0.1",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-121.0.1.tgz",
"integrity": "sha512-7y/RLV3tKNpNf/Ye74eOF7gyrCA78qq3i6JjrMJ4xovc2XZaw4a3cZA6+2PflGX/0HttYiKJV2WO611JROGNaw==",
"hasInstallScript": true,
"dependencies": {
"@testim/chrome-version": "^1.1.4",
@ -1545,9 +1545,9 @@
}
},
"chromedriver": {
"version": "121.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-121.0.0.tgz",
"integrity": "sha512-ZIKEdZrQAfuzT/RRofjl8/EZR99ghbdBXNTOcgJMKGP6N/UL6lHUX4n6ONWBV18pDvDFfQJ0x58h5AdOaXIOMw==",
"version": "121.0.1",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-121.0.1.tgz",
"integrity": "sha512-7y/RLV3tKNpNf/Ye74eOF7gyrCA78qq3i6JjrMJ4xovc2XZaw4a3cZA6+2PflGX/0HttYiKJV2WO611JROGNaw==",
"requires": {
"@testim/chrome-version": "^1.1.4",
"axios": "^1.6.5",

View file

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