Results 34 comments of Artur Kyryliuk

v8 expired in November 1, 2022 according to https://developers.facebook.com/docs/graph-api/changelog/versions/ If correct version is not going to be maintained then at least setter should be added (or property should be not...

and here is fix for second rule of this repo (prefer-takeuntil): npm i @rxlint/eslint-plugin-angular --save-dev ```javascript import rxjsAngular from '@rxlint/eslint-plugin-angular'; ... plugins: { ... '@rxlint-angular': rxjsAngular }, ... rules: {...

@arturovt @NetanelBasal eslint 8 EOL passed 4 months ago and documentation https://github.com/ngneat/until-destroy?tab=readme-ov-file#eslint-rules didn't cover this fact. Rules are just incompatible with eslint9+ config format (without fixes above).

RUN export CFLAGS="$CFLAGS -DALPINE_LINUX=1 -fpermissive"; pecl -d php_suffix=${PHP_VERSION} install phalcon-${PHALCON_VERSION} | tee /tmp/phalcon.install.log didn't fixes the issue

Dockerfile with my fixes to silence most of repeating warnings and with required for Alpine dependencies and symlinks. It works: https://github.com/phalcon/docker/issues/4#issuecomment-2780032550

I see warnings related to APCU. Is it installed? sudo dnf install php-pecl-apcu Or git clone https://github.com/krakjoe/apcu.git cd apcu phpize ./configure make sudo make install And then enable it?

And is it only happens with PHP 8.4 or with 8.3 too?

I think this should not be implemented this way as local environment setup for testing the load balancer can also be plain HTTP and we should not confuse developers who...

Same with PHP 8.4 on Alpine with enough memory docker build --memory=5g --memory-swap=6g ``` FROM php:8.4-fpm-alpine USER root ARG PHALCON_VERSION=5.9.0 ARG PHP_VERSION=8.4 ARG PHPIZE_DEPS="autoconf gcc g++ make" RUN apk add...