mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

Rails 7来たかしら :saba:

Change “About” and “Privacy policy” links to open in a new tab in advanced interface (#25973)
Change links in multi-column mode so tabs are open in single-column mode (#25893)
Fix embed dropdown menu item for unauthenticated users (#25964)
Refactor `Status.tagged_with_all` for brakeman SQL injection warning (#25941)
Remove some recently-updated packages from Renovabot ignore config (#25960)
Fix follow link style in embeds (#25965)
Update dependency postcss to v8.4.25 (#25961)
Update dependency react-textarea-autosize to v8.5.2 (#25962)
Upgrade to `typescript-eslint` v6 (#25904)
Update dependency rubocop-rails to v2.20.1 (#25493)
Convert Home timeline components to Typescript (#25583)
Upgrade to Prettier 3 (#25902)
Update dependency glob to v10.3.3 (#25959)
Update dependency core-js to v3.31.1 (#25958)
Fix trending publishers table not rendering correctly on narrow screens (#25945)
Update rubocop to v1.54.1 (#25627)
Update dependency chewy to v7.3.3 (#25940)
Rails 7.0 update (#25668)

remote: -----> Preparing app for Rails asset pipeline
remote: Running: rake assets:precompile
:
remote: error Command "webpack" not found.
remote:
remote:
remote: !
remote: ! Precompiling assets failed.
remote: !
remote: ! Push rejected, failed to compile Ruby app.

ぐえー

ローカルだと進む

$ git clean -dxf
$ export RAILS_ENV=test
$ export NODE_OPTIONS=--openssl-legacy-provider
$ bundle install --path=vendor/bundle --with pam_authentication --without development production
$ yarn install --pure-lockfile
$ bundle exec rails db:migrate
$ bundle exec rails assets:precompile
:
Compiling...
Compiled all packs in /home/zunda/c/src/github.com/zunda/mastodon/public/packs-test

webpackないけどw

$ bundle exec which webpack
$ which webpack

railsではなくrakeから起動してもローカルだとうまくいくぬ…

$ bundle exec rake assets:precompile
:
Compiling...
Compiled all packs in /home/zunda/c/src/github.com/zunda/mastodon/public/packs-test

あ、productionにするとどうじゃろ

$ export RAILS_ENV=production
$ bundle install --path=vendor/bundle --with production
$ export OTP_SECRET=abcd
$ export SECRET_KEY_BASE=1234
$ bundle exec rake assets:precompile
Compiling...
Compiled all packs in /home/zunda/c/src/github.com/zunda/mastodon/public/packs
`isModuleDeclaration` has been deprecated, please migrate to `isImportOrExportDeclaration`
at isModuleDeclaration (/home/zunda/c/src/github.com/zunda/mastodon/node_modules/@babel/types/lib/validators/generated/index.js:2740:35)
at PluginPass.Program (/home/zunda/c/src/github.com/zunda/mastodon/node_modules/babel-plugin-lodash/lib/index.js:102:44)

進むぬ

こっちは昨日のデプロイ

$ heroku run bash
~ $ which webpack
/app/bin/webpack
~ $ bundle exec which webpack
/app/bin/webpack
~ $ chmod -x bin/webpack
~ $ rake assets:precompile
:
yarn install v1.22.19
[1/6] Validating package.json...
[2/6] Resolving packages...
success Already up-to-date.
Done in 0.63s.
Everything's up-to-date. Nothing to do

すすむんだ…

zunda

ビルドキャッシュをパージしてもデプロイは同様に失敗する。yarn installが走ってない気がする。heorku/nodeビルドパックを足してみよう。

すすんだあ!!

remote: -----> Preparing app for Rails asset pipeline
remote: Running: rake assets:precompile
:
remote: Compiling...
remote: Compilation failed:

remote: node:internal/crypto/hash:69
remote: this[kHandle] = new _Hash(algorithm, xofLen);
remote: ^
remote:
remote: Error: error:0308010C:digital envelope routines::unsupported
remote: at new Hash (node:internal/crypto/hash:69:19)
:
remote: opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
remote: library: 'digital envelope routines',
remote: reason: 'unsupported',
remote: code: 'ERR_OSSL_EVP_UNSUPPORTED'
remote: }
remote:
remote: Node.js v20.4.0

とほほ

$ heroku config:set NODE_OPTIONS=--openssl-legacy-provider

で進んだようだ。関連するアプリ全部に設定しておかないとな。

\Master?/ :saba: \ますたー/

Merged mastodon/mastodon at 71db616fed817893d0efa363f0e7dbfcf23866a0.

たぶんRailsが7になったー!!

Rails 7になってwebpackがみつからなくてビルドキャッシュ消してnodejsビルドパックを追加した結果、

-----> jemalloc app detected
-----> jemalloc: Installing 5.3.0 from source

-----> Node.js app detected
-----> Installing binaries
engines.node (package.json): >=16
engines.npm (package.json): unspecified (use default)
engines.yarn (package.json): unspecified (use default)

Resolving node version >=16...
Downloading and installing node 20.4.0...
Using default npm version: 9.7.2
Resolving yarn version 1.22.x...
Downloading and installing yarn (1.22.19)
Installed yarn 1.22.19

-----> Ruby app detected
-----> Installing bundler 2.3.25
-----> Using Ruby version: ruby-3.2.2

となりました。