Melroy van den Berg activity https://gitlab.com/melroy89 2026-02-28T15:31:58Z tag:gitlab.com,2026-02-28:5153439338 Melroy van den Berg commented on issue #112 at flipstarter / flipstarter backend 2026-02-28T15:31:58Z melroy89 Melroy van den Berg

Next follow up: !95 (merged)

tag:gitlab.com,2026-02-28:5153431333 Melroy van den Berg opened merge request !95: Update packages + readme + more at flipstarter / flipstarter backend 2026-02-28T15:26:26Z melroy89 Melroy van den Berg
  • Update all minor package versions
  • Update major versions of only better-sqlite3, dompurify and webpack-cli
  • Extend README with nvm, node version manager. Plus format markdown file correctly.
  • Update default docker image in CI/CD to Node LTS version (alpine)
  • Version bump to v0.1.0 package version after 6 years ;)

Follow-up from: !94

tag:gitlab.com,2026-02-28:5153429734 Melroy van den Berg pushed new project branch update_packages at Melroy van den Berg / flipstarter backend 2026-02-28T15:24:57Z melroy89 Melroy van den Berg

Melroy van den Berg (21b9d119) at 28 Feb 15:24

Update minor packages and some major versions

... and 2 more commits

tag:gitlab.com,2026-02-28:5153411822 Melroy van den Berg pushed to project branch master at Melroy van den Berg / flipstarter backend 2026-02-28T15:10:22Z melroy89 Melroy van den Berg

Melroy van den Berg (1be5272c) at 28 Feb 15:10

Merge branch 'start_with_running_prettier' into 'master'

... and 1 more commit

tag:gitlab.com,2026-02-27:5151229882 Melroy van den Berg commented on issue #584850 at GitLab.org / GitLab 2026-02-27T15:57:09Z melroy89 Melroy van den Berg

Does this might be related to: #590905 ?

tag:gitlab.com,2026-02-27:5151216457 Melroy van den Berg commented on issue #590905 at GitLab.org / GitLab 2026-02-27T15:55:10Z melroy89 Melroy van den Berg

I can confirm this issue! It used to be fine before the upgrade.. But now I get unverified commits:

unverified

It's complaining about unsupported signature? But I use the same GPG signature as well, its still a valid sig. And NOT expired.

unsupported

Signature is added in my GitLab profile settings as my trusted GPG signature.

tag:gitlab.com,2026-02-26:5147255666 Melroy van den Berg commented on issue #39177 at GitLab.org / gitlab-runner 2026-02-26T17:03:30Z melroy89 Melroy van den Berg

@ajwalker Thanks for your heads up!

That makes sense, I will try to keep icc to false ideally. I disabled that for security reasons. And instead try to set FF_NETWORK_PER_BUILD.

I do use custom docker networks for my other deployments in Docker as well. I notice Gitlab runner has an option for network_mode, but that doesn't seems to be the right one (you might want to update that documentation page, since its misleading saying that network_mode can be used to set a custom network, which might imply custom docker network).

Anyhow, I will try to follow the new documentation about this:

    [runners.feature_flags]
      FF_NETWORK_PER_BUILD = true

And will let you know!

EDIT: Feature flag worked here.

tag:gitlab.com,2026-02-26:5147203394 Melroy van den Berg opened merge request !12: Fix broken hidden wiki onion link at nolim1t - f6287b82CC84bcbd / onions-module 2026-02-26T16:49:18Z melroy89 Melroy van den Berg
tag:gitlab.com,2026-02-26:5147182457 Melroy van den Berg pushed new project branch patch-1 at Melroy van den Berg / onions-module 2026-02-26T16:44:00Z melroy89 Melroy van den Berg

Melroy van den Berg (95330230) at 26 Feb 16:44

Fix broken hidden wiki onion link

tag:gitlab.com,2026-02-26:5147176690 Melroy van den Berg created project Melroy van den Berg / onions-module 2026-02-26T16:42:35Z melroy89 Melroy van den Berg tag:gitlab.com,2026-02-22:5129624136 Melroy van den Berg joined project flipstarter / flipstarter backend 2026-02-22T15:21:12Z melroy89 Melroy van den Berg tag:gitlab.com,2026-02-22:5129596226 Melroy van den Berg commented on merge request !94 at flipstarter / flipstarter backend 2026-02-22T14:54:30Z melroy89 Melroy van den Berg

we could also rename the stage, to like test instead of lint. which is more common name, and a default in GitLab. If you wish.

tag:gitlab.com,2026-02-22:5129593749 Melroy van den Berg commented on issue #112 at flipstarter / flipstarter backend 2026-02-22T14:52:16Z melroy89 Melroy van den Berg

so I started with fix fixing the linting / prettier.. before I do anything else, see MR: !94 (merged)

tag:gitlab.com,2026-02-22:5129592625 Melroy van den Berg opened merge request !94: Update prettier + run prettier. Extend gitlab ci at flipstarter / flipstarter backend 2026-02-22T14:51:01Z melroy89 Melroy van den Berg
  • Before we upgrading anything else, lets start with formatting using prettier first (and make it mandatory in our GitLab CI job)
    • Updated prettier version
    • Add -y (yes) flag
    • Extended .gitlab-ci.yml file
    • Add .prettierignore file and exclude the static directory, which contains js/cdn directory we do not care about. Do we want to format maybe static/js/create.js?
    • Add dedicated "check" scripts in package.json for both eslint as well as prettier (which is only checking, not fixing)
      • This is a best practice, rather than trying to run scripts from node_modules directory
    • Finally, I ran prettier fix of course + format gitlab yaml file

No production changes, only formatting.

Rationale: Enforcing formatting tool like prettier helps to write the same kind of code style. Making it easier to work together with a large team, especially in case of merge conflicts or working with diffs. Which might help now. especially since we would like to bump up all npm deps packages, npm major releases, Node.js version, etc.

First step in: #112

tag:gitlab.com,2026-02-22:5129590123 Melroy van den Berg pushed new project branch start_with_running_prettier at Melroy van den Berg / flipstarter backend 2026-02-22T14:48:15Z melroy89 Melroy van den Berg

Melroy van den Berg (c499f575) at 22 Feb 14:48

Update prettier + run prettier. Extend gitlab ci

tag:gitlab.com,2026-02-22:5129563717 Melroy van den Berg commented on issue #112 at flipstarter / flipstarter backend 2026-02-22T14:26:20Z melroy89 Melroy van den Berg

Yea upgrading from node v20 with so many out dated packages for so long won't be easy..

It might a good idea to break down the work in smaller MRs to avoid regression and easier for reviewing as well.

EDIT: I also already see that prettier wasn't run for quite a while as well.

EDIT EDIT: I also notice many deprecated warnings as well:

npm warn deprecated [email protected]: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
npm warn deprecated @humanwhocodes/[email protected]: Use @eslint/config-array instead
npm warn deprecated [email protected]: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting [email protected]
npm warn deprecated @humanwhocodes/[email protected]: Use @eslint/object-schema instead
npm warn deprecated [email protected]: Multer 1.x is impacted by a number of vulnerabilities, which have been patched in 2.x. You should upgrade to the latest 2.x version.
npm warn deprecated [email protected]: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
npm warn deprecated [email protected]: electrum cash packages have been moved to the @electrum-cash/* namespace.
npm warn deprecated [email protected]: This version is no longer supported. Please see https://eslint.org/version-support for other options.
tag:gitlab.com,2026-02-22:5129561754 Melroy van den Berg created project Melroy van den Berg / flipstarter backend 2026-02-22T14:24:12Z melroy89 Melroy van den Berg tag:gitlab.com,2026-02-20:5127160189 Melroy van den Berg opened issue #112: Outdated package dependencies at flipstarter / flipstarter backend 2026-02-20T22:11:40Z melroy89 Melroy van den Berg tag:gitlab.com,2026-01-25:5030959602 Melroy van den Berg opened issue #554: Extend testmempoolaccept RPC response data at Bitcoin Cash Node / Bitcoin Cash Node 2026-01-25T17:43:13Z melroy89 Melroy van den Berg tag:gitlab.com,2026-01-24:5028621523 Melroy van den Berg commented on merge request !1958 at Bitcoin Cash Node / Bitcoin Cash Node 2026-01-24T02:06:30Z melroy89 Melroy van den Berg

ok, thank you for your fast confirmation, issue created: #553