Your visual bookmark manager

Overview

Colllect

Continuous Integration SymfonyInsight MIT Licence

Introduction

Colllect is your new bookmark manager!

With it, you can manage your inspiration and resources into colllections.

Go to Colllect website and subscribe to get notified of the launch.

Project status

The project is in progress.

  • API is ready with Swagger 2 support :)
  • Front still WIP

Install

git clone [email protected]:Colllect/Colllect.git
make init

Run

make up

Go to https://dev.colllect.io

Comments
  • build fails

    build fails

    Hello,

    when running make init I encountered this error

    make: /bin/sh: Operation not permitted
    make: *** [Makefile:209: php_intl.lo] Error 127
    /bin/sh /usr/src/php/ext/intl/libtool --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/src/php/ext/intl/include -I/usr/src/php/ext/intl/main -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H  -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64    -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -c /usr/src/php/ext/intl/php_intl.c -o php_intl.lo 
    The command '/bin/sh -c apk add --no-cache --virtual .build-deps         $PHPIZE_DEPS         icu-dev     &&     docker-php-ext-configure         intl     &&     docker-php-ext-install         intl         pdo_mysql     &&     pecl install         apcu-${APCU_VERSION}     &&     docker-php-ext-enable         apcu         opcache     && 	runDeps="$( 		scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions 			| tr ',' '\n' 			| sort -u 			| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' 	)" && 	apk add --no-cache --virtual .api-phpexts-rundeps $runDeps     &&     apk del .build-deps' returned a non-zero code: 2
    
    ERROR: for back-php  (<Service: back-php>, 'Build failed')
    ERROR: Service 'back-php' failed to build : Build failed
    Makefile:31: receptet för målet ”build” misslyckades
    make: *** [build] Fel 1
    

    After reading docker-library/php#1177 and alpinelinux/docker-alpine#182 the solution is to either update docker or use alpine version 3.13.

    I didn't want to upgrade my docker version so I chose to use alpine version 3.13 instead. make init runs just fine but after make up i get 502 when accessing https://localhost.

    Here's the output of make up

    Creating colllect_ingress_1        ... done
    Creating colllect_back-database_1  ... done
    Creating colllect_back-blackfire_1 ... done
    Creating colllect_back-php_1       ... done
    Creating colllect_back-nginx_1     ... done
    Creating colllect_front_1          ... done
    Attaching to colllect_back-blackfire_1, colllect_ingress_1, colllect_back-database_1, colllect_back-php_1, colllect_back-nginx_1, colllect_front_1
    back-blackfire_1  |                                                                                 
    back-blackfire_1  |   The server ID parameter is not set; please run 'blackfire agent:config' to c  
    back-blackfire_1  |   onfigure it.                                                                  
    back-blackfire_1  |                                                                                 
    back-nginx_1      | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
    back-nginx_1      | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
    back-nginx_1      | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
    back-nginx_1      | 10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf is not a file or does not exist
    back-nginx_1      | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
    back-nginx_1      | /docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
    back-nginx_1      | /docker-entrypoint.sh: Launching /docker-entrypoint.d/99-wait-for-php.sh
    back-nginx_1      | + wait-for back-php:9000
    colllect_back-blackfire_1 exited with code 1
    back-database_1   | 2021-11-25 22:06:09+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.6.4+maria~focal started.
    back-database_1   | 2021-11-25 22:06:09+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
    back-database_1   | 2021-11-25 22:06:09+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.6.4+maria~focal started.
    back-database_1   | 2021-11-25 22:06:09+00:00 [Note] [Entrypoint]: Initializing database files
    back-database_1   | 2021-11-25 22:06:10 0 [Warning] You need to use --log-bin to make --expire-logs-days or --binlog-expire-logs-seconds work.
    back-database_1   | 
    back-database_1   | 
    back-database_1   | PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
    back-database_1   | To do so, start the server, then issue the following command:
    back-database_1   | 
    back-database_1   | '/usr/bin/mysql_secure_installation'
    back-database_1   | 
    back-database_1   | which will also give you the option of removing the test
    back-database_1   | databases and anonymous user created by default.  This is
    back-database_1   | strongly recommended for production servers.
    back-database_1   | 
    back-database_1   | See the MariaDB Knowledgebase at https://mariadb.com/kb or the
    back-database_1   | MySQL manual for more instructions.
    back-database_1   | 
    back-database_1   | Please report any problems at https://mariadb.org/jira
    back-database_1   | 
    back-database_1   | The latest information about MariaDB is available at https://mariadb.org/.
    back-database_1   | You can find additional information about the MySQL part at:
    back-database_1   | https://dev.mysql.com
    back-database_1   | Consider joining MariaDB's strong and vibrant community:
    back-database_1   | https://mariadb.org/get-involved/
    back-database_1   | 
    front_1           | + wait-for back-nginx:443 -t 60
    back-database_1   | 2021-11-25 22:06:11+00:00 [Note] [Entrypoint]: Database files initialized
    back-database_1   | 2021-11-25 22:06:11+00:00 [Note] [Entrypoint]: Starting temporary server
    back-database_1   | 2021-11-25 22:06:11+00:00 [Note] [Entrypoint]: Waiting for server startup
    back-database_1   | 2021-11-25 22:06:11 0 [Note] mysqld (server 10.6.4-MariaDB-1:10.6.4+maria~focal) starting as process 102 ...
    ingress_1         | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
    ingress_1         | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Number of pools: 1
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
    back-database_1   | 2021-11-25 22:06:11 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Using Linux native AIO
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
    back-php_1        | + make install
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Completed initialization of buffer pool
    ingress_1         | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
    ingress_1         | 10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf is not a file or does not exist
    back-php_1        | bin/console assets:install
    ingress_1         | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: 128 rollback segments are active.
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Creating shared tablespace for temporary tables
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: 10.6.4 started; log sequence number 42161; transaction id 14
    back-database_1   | 2021-11-25 22:06:11 0 [Note] Plugin 'FEEDBACK' is disabled.
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
    back-database_1   | 2021-11-25 22:06:11 0 [Warning] You need to use --log-bin to make --expire-logs-days or --binlog-expire-logs-seconds work.
    back-database_1   | 2021-11-25 22:06:11 0 [Warning] 'user' entry 'root@ce417e5d9cb5' ignored in --skip-name-resolve mode.
    back-database_1   | 2021-11-25 22:06:11 0 [Warning] 'proxies_priv' entry '@% root@ce417e5d9cb5' ignored in --skip-name-resolve mode.
    back-database_1   | 2021-11-25 22:06:11 0 [Note] mysqld: ready for connections.
    back-database_1   | Version: '10.6.4-MariaDB-1:10.6.4+maria~focal'  socket: '/run/mysqld/mysqld.sock'  port: 0  mariadb.org binary distribution
    back-database_1   | 2021-11-25 22:06:11 0 [Note] InnoDB: Buffer pool(s) load completed at 211125 22:06:11
    ingress_1         | /docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
    ingress_1         | /docker-entrypoint.sh: Configuration complete; ready for start up
    ingress_1         | 2021/11/25 22:06:09 [warn] 1#1: "ssl_stapling" ignored, no OCSP responder URL in the certificate "/etc/nginx/ssl/dev-colllect-io.cert.pem"
    ingress_1         | nginx: [warn] "ssl_stapling" ignored, no OCSP responder URL in the certificate "/etc/nginx/ssl/dev-colllect-io.cert.pem"
    back-php_1        | 
    back-php_1        |  Installing assets as hard copies.
    back-php_1        | 
    back-php_1        |  --- -------------------- ---------------- 
    back-php_1        |       Bundle               Method / Error  
    back-php_1        |  --- -------------------- ---------------- 
    back-php_1        |   ✔   NelmioApiDocBundle   copy            
    back-php_1        |  --- -------------------- ---------------- 
    back-php_1        | 
    back-php_1        |  ! [NOTE] Some assets were installed via copy. If you make changes to these     
    back-php_1        |  !        assets you have to run this command again.                            
    back-php_1        | 
    back-php_1        |  [OK] All assets were successfully installed.                                   
    back-php_1        | 
    back-php_1        | + wait-for back-database:3306
    back-database_1   | 2021-11-25 22:06:12+00:00 [Note] [Entrypoint]: Temporary server started.
    back-database_1   | Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it.
    back-database_1   | Warning: Unable to load '/usr/share/zoneinfo/leapseconds' as time zone. Skipping it.
    back-database_1   | Warning: Unable to load '/usr/share/zoneinfo/tzdata.zi' as time zone. Skipping it.
    back-database_1   | 2021-11-25 22:06:14 5 [Warning] 'proxies_priv' entry '@% root@ce417e5d9cb5' ignored in --skip-name-resolve mode.
    back-database_1   | 2021-11-25 22:06:14+00:00 [Note] [Entrypoint]: Creating database colllect
    back-database_1   | 2021-11-25 22:06:14+00:00 [Note] [Entrypoint]: Creating user colllect
    back-database_1   | 2021-11-25 22:06:14+00:00 [Note] [Entrypoint]: Giving user colllect access to schema colllect
    back-database_1   | 
    back-database_1   | 2021-11-25 22:06:14+00:00 [Note] [Entrypoint]: Stopping temporary server
    back-database_1   | 2021-11-25 22:06:14 0 [Note] mysqld (initiated by: root[root] @ localhost []): Normal shutdown
    back-database_1   | 2021-11-25 22:06:14 0 [Note] InnoDB: FTS optimize thread exiting.
    back-database_1   | 2021-11-25 22:06:14 0 [Note] InnoDB: Starting shutdown...
    back-database_1   | 2021-11-25 22:06:14 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
    back-database_1   | 2021-11-25 22:06:14 0 [Note] InnoDB: Buffer pool(s) dump completed at 211125 22:06:14
    back-database_1   | 2021-11-25 22:06:14 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
    back-database_1   | 2021-11-25 22:06:14 0 [Note] InnoDB: Shutdown completed; log sequence number 42173; transaction id 15
    back-database_1   | 2021-11-25 22:06:14 0 [Note] mysqld: Shutdown complete
    back-database_1   | 
    back-database_1   | 2021-11-25 22:06:15+00:00 [Note] [Entrypoint]: Temporary server stopped
    back-database_1   | 
    back-database_1   | 2021-11-25 22:06:15+00:00 [Note] [Entrypoint]: MariaDB init process done. Ready for start up.
    back-database_1   | 
    back-database_1   | 2021-11-25 22:06:15 0 [Note] mysqld (server 10.6.4-MariaDB-1:10.6.4+maria~focal) starting as process 1 ...
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Number of pools: 1
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
    back-database_1   | 2021-11-25 22:06:15 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Using Linux native AIO
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Completed initialization of buffer pool
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: 128 rollback segments are active.
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Creating shared tablespace for temporary tables
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: 10.6.4 started; log sequence number 42173; transaction id 14
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
    back-database_1   | 2021-11-25 22:06:15 0 [Note] Plugin 'FEEDBACK' is disabled.
    back-database_1   | 2021-11-25 22:06:15 0 [Warning] You need to use --log-bin to make --expire-logs-days or --binlog-expire-logs-seconds work.
    back-database_1   | 2021-11-25 22:06:15 0 [Note] InnoDB: Buffer pool(s) load completed at 211125 22:06:15
    back-database_1   | 2021-11-25 22:06:15 0 [Note] Server socket created on IP: '0.0.0.0'.
    back-database_1   | 2021-11-25 22:06:15 0 [Note] Server socket created on IP: '::'.
    back-database_1   | 2021-11-25 22:06:15 0 [Warning] 'proxies_priv' entry '@% root@ce417e5d9cb5' ignored in --skip-name-resolve mode.
    back-database_1   | 2021-11-25 22:06:15 0 [Note] mysqld: ready for connections.
    back-database_1   | Version: '10.6.4-MariaDB-1:10.6.4+maria~focal'  socket: '/run/mysqld/mysqld.sock'  port: 3306  mariadb.org binary distribution
    back-php_1        | + make init-db
    back-database_1   | 2021-11-25 22:06:16 3 [Warning] Aborted connection 3 to db: 'unconnected' user: 'unauthenticated' host: '192.168.112.3' (This connection closed normally without authentication)
    back-php_1        | bin/console doctrine:database:create --if-not-exists
    back-php_1        | Database `colllect` for connection named default already exists. Skipped.
    back-php_1        | bin/console doctrine:migrations:migrate --no-interaction
    back-php_1        | [notice] Migrating up to DoctrineMigrations\Version20210919143518
    back-php_1        | [notice] finished in 154.1ms, used 20M memory, 1 migrations executed, 10 sql queries
    back-php_1        | 
    back-php_1        | # Create default OAuth client if not exists
    back-php_1        | bin/console trikoder:oauth2:list-clients | grep -q default || bin/console trikoder:oauth2:create-client default "" --scope superadmin --grant-type client_credentials
    back-php_1        | 
    back-php_1        |  [OK] New oAuth2 client created successfully.                                   
    back-php_1        | 
    back-php_1        |  ------------ -------- 
    back-php_1        |   Identifier   Secret  
    back-php_1        |  ------------ -------- 
    back-php_1        |   default              
    back-php_1        |  ------------ -------- 
    back-php_1        | 
    back-php_1        | + exec docker-php-entrypoint php-fpm
    back-nginx_1      | /docker-entrypoint.sh: Configuration complete; ready for start up
    front_1           | + make install
    front_1           | npm install
    front_1           | 
    front_1           | added 404 packages, and audited 405 packages in 15s
    front_1           | 
    front_1           | 72 packages are looking for funding
    front_1           |   run `npm fund` for details
    front_1           | 
    front_1           | 1 moderate severity vulnerability
    front_1           | 
    front_1           | To address all issues, run:
    front_1           |   npm audit fix
    front_1           | 
    front_1           | Run `npm audit` for details.
    front_1           | # Create a file to force update the folder date
    front_1           | + exec /usr/local/bin/docker-entrypoint.sh npm run dev
    front_1           | 
    front_1           | > [email protected] dev
    front_1           | > npm-run-all dump-api-types vite-dev
    front_1           | 
    front_1           | 
    front_1           | > [email protected] dump-api-types
    front_1           | > cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node scripts/dumpApiTypes.js
    front_1           | 
    front_1           | Fetching OpenAPI definition file from https://dev.colllect.io/api/doc.json
    front_1           | (node:110) Warning: Setting the NODE_TLS_REJECT_UNAUTHORIZED environment variable to '0' makes TLS connections and HTTPS requests insecure by disabling certificate verification.
    front_1           | (Use `node --trace-warnings ...` to show where the warning was created)
    back-nginx_1      | 2021/11/25 22:06:35 [error] 42#42: *2 FastCGI sent in stderr: "PHP message: [info] Matched route "api_swagger".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.request" to listener "App\EventSubscriber\OAuth2CookieSubscriber::onKernelRequest".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListe
    back-nginx_1      | 2021/11/25 22:06:35 [error] 42#42: *2 FastCGI sent in stderr: "able_name = 'doctrine_migration_versions' AND k.table_schema = 'colllect' /*!50116 AND c.constraint_schema = 'colllect' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL
    back-nginx_1      | PHP message: [debug] SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'doctrine_migration_versions' AND TABLE_SCHEMA = 'colllect' ORDER BY SEQ_IN_INDEX ASC
    back-nginx_1      | PHP message: [debug] SELECT ENGINE, AUTO_INCREMENT, TABLE_COLLATION, TABLE_COMMENT, CREATE_OPTIONS
    back-nginx_1      | FROM information_schema.TABLES
    back-nginx_1      | WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'doctrine_migration_versions'
    back-nginx_1      | PHP message: [debug] SELECT * FROM doctrine_migration_versions
    back-nginx_1      | PHP message: [debug] SHOW FULL TABLES WHERE Table_type = 'BASE TABLE'
    back-nginx_1      | PHP message: [debug] SHOW FULL TABLES WHERE Table_type = 'BASE TABLE'
    back-nginx_1      | PHP message: [debug] SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'colllect' AND TABLE_NAME = 'doctrine_migration_versions' ORDER BY ORDINAL_POSITION ASC
    back-nginx_1      | PHP message: [debug] SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON   c.constraint_name = k.constraint_name AND   c.table_name = 'doctrine_migration_versions' */ WHERE k.table_name = 'doctrine_migration_versions' AND k.table_schema = 'colllect' /*!50116 AND c.constraint_schema = 'colllect' */ AND k.`REFERENCED_COLUMN_NAME` is not NULL
    back-nginx_1      | PHP message: [debug] SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE 
    back-nginx_1      | 2021/11/25 22:06:35 [error] 42#42: *2 FastCGI sent in stderr: "ine_migration_versions
    back-nginx_1      | PHP message: [debug] Notified event "kernel.response" to listener "App\EventSubscriber\OAuth2CookieSubscriber::onKernelResponse".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
    back-nginx_1      | PHP message: [debug] Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"" while reading response header from upstream, client: 192.168.112.2, server: , request: "GET /api/doc.json HTTP/1.0", upstream: "fastcgi://192.168
    front_1           | Unable to fetch OpenAPI definition file. Did you run the `make up` command?
    front_1           | Error: ENOENT: no such file or directory, open '/var/www/front/src/generated/apiTypes.ts'
    front_1           |     at Object.openSync (node:fs:585:3)
    front_1           |     at Object.writeFileSync (node:fs:2153:35)
    front_1           |     at /var/www/front/scripts/dumpApiTypes.js:17:13
    front_1           |     at processTicksAndRejections (node:internal/process/task_queues:96:5) {
    front_1           |   errno: -2,
    front_1           |   syscall: 'open',
    front_1           |   code: 'ENOENT',
    front_1           |   path: '/var/www/front/src/generated/apiTypes.ts'
    front_1           | }
    front_1           | ERROR: "dump-api-types" exited with 1.
    colllect_front_1 exited with code 1
    ingress_1         | 2021/11/25 22:06:46 [error] 21#21: *4 front could not be resolved (3: Host not found), client: 192.168.112.1, server: , request: "GET / HTTP/2.0", host: "127.0.0.1"
    ingress_1         | 2021/11/25 22:06:47 [error] 21#21: *4 front could not be resolved (3: Host not found), client: 192.168.112.1, server: , request: "GET /favicon.ico HTTP/2.0", host: "127.0.0.1", referrer: "https://127.0.0.1/"
    

    I know this is still heavily under development, and I just wanted to test it out. If there's no immediate solution or possible clues that comes to mind then don't bother with it, but I figure this might be relevant to you as a FYI.

    opened by iwconfig 4
  • chore(deps): bump twig/twig from 3.3.7 to 3.4.3 in /back

    chore(deps): bump twig/twig from 3.3.7 to 3.4.3 in /back

    Bumps twig/twig from 3.3.7 to 3.4.3.

    Changelog

    Sourced from twig/twig's changelog.

    3.4.3 (2022-09-28)

    • Fix a security issue on filesystem loader (possibility to load a template outside a configured directory)

    3.4.2 (2022-08-12)

    • Allow inherited magic method to still run with calling class
    • Fix CallExpression::reflectCallable() throwing TypeError
    • Fix typo in naming (currency_code)

    3.4.1 (2022-05-17)

    • Fix optimizing non-public named closures

    3.4.0 (2022-05-22)

    • Add support for named closures

    3.3.10 (2022-04-06)

    • Enable bytecode invalidation when auto_reload is enabled

    3.3.9 (2022-03-25)

    • Fix custom escapers when using multiple Twig environments
    • Add support for "constant('class', object)"
    • Do not reuse internally generated variable names during parsing

    3.3.8 (2022-02-04)

    • Fix a security issue when in a sandbox: the sort filter must require a Closure for the arrow parameter
    • Fix deprecation notice on round
    • Fix call to deprecated convertToHtml method
    Commits
    • c38fd6b Prepare the 3.4.3 release
    • 5a858ac Merge branch '2.x' into 3.x
    • ab40267 Prepare the 2.15.3 release
    • fc18c2e Update CHANGELOG
    • 2e8acd9 Merge branch '2.x' into 3.x
    • d6ea14a Merge branch '1.x' into 2.x
    • 35f3035 security #cve- Fix a security issue on filesystem loader (possibility to load...
    • be33323 Merge branch '2.x' into 3.x
    • 9170edf Fix doc CS
    • fab3e0f minor #3744 Adding installation instructions for Symfony (ThomasLandauer)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies php 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump vite from 2.6.14 to 2.9.13 in /front

    chore(deps-dev): bump vite from 2.6.14 to 2.9.13 in /front

    Bumps vite from 2.6.14 to 2.9.13.

    Release notes

    Sourced from vite's releases.

    [email protected]

    Please refer to CHANGELOG.md for details.

    [email protected]

    Please refer to CHANGELOG.md for details.

    [email protected]

    Please refer to CHANGELOG.md for details.

    [email protected]

    Please refer to CHANGELOG.md for details.

    [email protected]

    Please refer to CHANGELOG.md for details.

    Changelog

    Sourced from vite's changelog.

    2.9.13 (2022-06-27)

    2.9.12 (2022-06-10)

    • fix: outdated optimized dep removed from module graph (#8534) (c0d6c60), closes #8534

    2.9.11 (2022-06-10)

    2.9.10 (2022-06-06)

    2.9.9 (2022-05-11)

    2.9.8 (2022-05-04)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by vitebot, a new releaser for vite since your current version.


    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps): bump node-fetch from 2.6.5 to 2.6.7 in /front

    chore(deps): bump node-fetch from 2.6.5 to 2.6.7 in /front

    Bumps node-fetch from 2.6.5 to 2.6.7.

    Release notes

    Sourced from node-fetch's releases.

    v2.6.7

    Security patch release

    Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th party host while a redirect occurred

    What's Changed

    Full Changelog: https://github.com/node-fetch/node-fetch/compare/v2.6.6...v2.6.7

    v2.6.6

    What's Changed

    Full Changelog: https://github.com/node-fetch/node-fetch/compare/v2.6.5...v2.6.6

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps): bump shell-quote from 1.7.2 to 1.7.3 in /front

    chore(deps): bump shell-quote from 1.7.2 to 1.7.3 in /front

    Bumps shell-quote from 1.7.2 to 1.7.3.

    Changelog

    Sourced from shell-quote's changelog.

    1.7.3

    • Fix a security issue where the regex for windows drive letters allowed some shell meta-characters to escape the quoting rules. (CVE-2021-42740)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps): bump guzzlehttp/guzzle from 7.4.1 to 7.4.5 in /back

    chore(deps): bump guzzlehttp/guzzle from 7.4.1 to 7.4.5 in /back

    Bumps guzzlehttp/guzzle from 7.4.1 to 7.4.5.

    Release notes

    Sourced from guzzlehttp/guzzle's releases.

    Release 7.4.5

    See change log for changes.

    Release 7.4.4

    See change log for changes.

    Release 7.4.3

    See change log for changes.

    Release 7.4.2

    See change log for changes.

    Changelog

    Sourced from guzzlehttp/guzzle's changelog.

    7.4.5 - 2022-06-20

    • Fix change in port should be considered a change in origin
    • Fix CURLOPT_HTTPAUTH option not cleared on change of origin

    7.4.4 - 2022-06-09

    • Fix failure to strip Authorization header on HTTP downgrade
    • Fix failure to strip the Cookie header on change in host or HTTP downgrade

    7.4.3 - 2022-05-25

    • Fix cross-domain cookie leakage

    7.4.2 - 2022-03-20

    Fixed

    • Remove curl auth on cross-domain redirects to align with the Authorization HTTP header
    • Reject non-HTTP schemes in StreamHandler
    • Set a default ssl.peer_name context in StreamHandler to allow force_ip_resolve
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies php 
    opened by dependabot[bot] 1
  • chore(deps): bump guzzlehttp/guzzle from 7.4.1 to 7.4.4 in /back

    chore(deps): bump guzzlehttp/guzzle from 7.4.1 to 7.4.4 in /back

    Bumps guzzlehttp/guzzle from 7.4.1 to 7.4.4.

    Release notes

    Sourced from guzzlehttp/guzzle's releases.

    Release 7.4.4

    See change log for changes.

    Release 7.4.3

    See change log for changes.

    Release 7.4.2

    See change log for changes.

    Changelog

    Sourced from guzzlehttp/guzzle's changelog.

    7.4.4 - 2022-06-09

    • Fix failure to strip Authorization header on HTTP downgrade
    • Fix failure to strip the Cookie header on change in host or HTTP downgrade

    7.4.3 - 2022-05-25

    • Fix cross-domain cookie leakage

    7.4.2 - 2022-03-20

    Fixed

    • Remove curl auth on cross-domain redirects to align with the Authorization HTTP header
    • Reject non-HTTP schemes in StreamHandler
    • Set a default ssl.peer_name context in StreamHandler to allow force_ip_resolve
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies php 
    opened by dependabot[bot] 1
  • chore(deps): bump guzzlehttp/guzzle from 7.4.1 to 7.4.3 in /back

    chore(deps): bump guzzlehttp/guzzle from 7.4.1 to 7.4.3 in /back

    Bumps guzzlehttp/guzzle from 7.4.1 to 7.4.3.

    Release notes

    Sourced from guzzlehttp/guzzle's releases.

    Release 7.4.3

    See change log for changes.

    Release 7.4.2

    See change log for changes.

    Changelog

    Sourced from guzzlehttp/guzzle's changelog.

    7.4.3 - 2022-05-25

    • Fix cross-domain cookie leakage

    7.4.2 - 2022-03-20

    Fixed

    • Remove curl auth on cross-domain redirects to align with the Authorization HTTP header
    • Reject non-HTTP schemes in StreamHandler
    • Set a default ssl.peer_name context in StreamHandler to allow force_ip_resolve
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies php 
    opened by dependabot[bot] 1
  • chore(deps): bump minimist from 1.2.5 to 1.2.6 in /front

    chore(deps): bump minimist from 1.2.5 to 1.2.6 in /front

    Bumps minimist from 1.2.5 to 1.2.6.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps): bump twig/twig from 3.3.7 to 3.3.8 in /back

    chore(deps): bump twig/twig from 3.3.7 to 3.3.8 in /back

    Bumps twig/twig from 3.3.7 to 3.3.8.

    Changelog

    Sourced from twig/twig's changelog.

    3.3.8 (2022-02-04)

    • Fix a security issue when in a sandbox: the sort filter must require a Closure for the arrow parameter
    • Fix deprecation notice on round
    • Fix call to deprecated convertToHtml method
    Commits
    • 972d860 Prepare the 3.3.8 release
    • b265233 Merge branch '2.x' into 3.x
    • fca80b5 Bump version
    • 66baa66 Prepare the 2.14.11 release
    • 9e5ca74 Merge branch '2.x' into 3.x
    • 22b9dc3 bug #3641 Disallow non closures in sort filter when the sanbox mode is enab...
    • 2eb3308 Disallow non closures in sort filter when the sanbox mode is enabled
    • 25d410b Merge branch '2.x' into 3.x
    • e056e63 bug #3638 Fix call to deprecated "convertToHtml" method (jderusse)
    • 779fdd0 Fix call to deprecated "convertToHtml" method
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies php 
    opened by dependabot[bot] 1
  • "make reset" removes *all* docker images

    Hello again, one more friendly FYI.

    I ran make down followed by make reset and it removed every single one of my docker images, not just the ones related to Collect.

    I know this is still under heavy development but with much leniency let me just tell you: This is kind of annoying! to say the least.

    I should've inspected Makefile more than I did. :upside_down_face:

    opened by iwconfig 1
  • chore(deps): bump minimatch from 3.0.4 to 3.1.2 in /front

    chore(deps): bump minimatch from 3.0.4 to 3.1.2 in /front

    Bumps minimatch from 3.0.4 to 3.1.2.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps): bump guzzlehttp/psr7 from 2.1.0 to 2.2.1 in /back

    chore(deps): bump guzzlehttp/psr7 from 2.1.0 to 2.2.1 in /back

    Bumps guzzlehttp/psr7 from 2.1.0 to 2.2.1.

    Release notes

    Sourced from guzzlehttp/psr7's releases.

    2.2.1

    See change log for changes.

    2.2.0

    See change log for changes.

    2.1.2

    See change log for changes.

    2.1.1

    See change log for changes.

    Changelog

    Sourced from guzzlehttp/psr7's changelog.

    2.2.1 - 2022-03-20

    Fixed

    • Correct header value validation

    2.2.0 - 2022-03-20

    Added

    • A more compressive list of mime types
    • Add JsonSerializable to Uri
    • Missing return types

    Fixed

    • Bug MultipartStream no uri metadata
    • Bug MultipartStream with filename for data:// streams
    • Fixed new line handling in MultipartStream
    • Reduced RAM usage when copying streams
    • Updated parsing in Header::normalize()

    2.1.1 - 2022-03-20

    Fixed

    • Validate header values properly
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies php 
    opened by dependabot[bot] 0
  • chore(deps): bump symfony/framework-bundle from 5.4.2 to 5.4.4 in /back

    chore(deps): bump symfony/framework-bundle from 5.4.2 to 5.4.4 in /back

    Bumps symfony/framework-bundle from 5.4.2 to 5.4.4.

    Release notes

    Sourced from symfony/framework-bundle's releases.

    v5.4.4

    Changelog (https://github.com/symfony/framework-bundle/compare/v5.4.3...v5.4.4)

    • no significant changes

    v5.4.3

    Changelog (https://github.com/symfony/framework-bundle/compare/v5.4.2...v5.4.3)

    • bug #45193 Fix missing arguments when a serialization default context is bound (ArnoudThibaut)
    • bug #44998 Allow default cache pools to be overwritten by user (Seldaek)
    • bug #44976 Avoid calling rtrim(null, '/') in AssetsInstallCommand (pavol-tk, GromNaN)
    • bug #44920 Use correct tag for ExpoTransportFactory service (jschaedl)
    Commits
    • d848b8c Merge branch '5.3' into 5.4
    • fef224d Enable CSRF in FORM by default
    • 11b0d38 [FrameworkBundle] Fix missing arguments when a serialization default context ...
    • 2b25bce Merge branch '5.3' into 5.4
    • 4437597 bug #44998 [FrameworkBundle] Allow default cache pools to be overwritten by u...
    • 67f5d9a Merge branch '4.4' into 5.3
    • a7c76d8 [FrameworkBundle] Allow default cache pools to be overwritten by user
    • 5ae3655 [FrameworkBundle] Avoid calling rtrim(null, '/') in AssetsInstallCommand
    • be0d101 Use correct tag for ExpoTransportFactory service
    • 96f50bf Merge branch '5.3' into 5.4
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies php 
    opened by dependabot[bot] 0
Owner
Colllect
Your new bookmark manager. Manage your inspiration and resources into collections.
Colllect
Your self-hosted bookmark archive. Free and open source.

Your self-hosted bookmark archive. Free and open source. Contents About LinkAce Support Setup Contribution About LinkAce LinkAce is a self-hosted arch

Kevin Woblick 1.7k Jan 2, 2023
A visual process builder

DataStory ⚡ visual programming DataStory provides a workbench for designing data flow diagrams. ⚠️ We have moved to an organisation ?? Live Demo data-

Anders Jürisoo 120 Dec 12, 2022
An Alfred 4 workflow for quickly opening directories in Visual Studio Code

Alfred Workflow - Open in Visual Studio Code An Alfred 4 workflow opening files or folders with Visual Studio Code. Note: Alfred Powerpack is required

Daan Hage 2 Jun 27, 2022
🔖 Bookmark app for Nextcloud

Nextcloud Bookmarks Bookmarks app for Nextcloud This app provides you with a web interface for collecting and organizing bookmarks to the places on th

Nextcloud 803 Jan 8, 2023
Sample application to bookmark links, where interface build with Angular.js + Twitter Bootstrap and server powered by PHP with Slim Framework

RESTful Bookmarks PHP Slim TODO: review and update FrontEnd Sample application to bookmark links, where interface build with Angular.js + Twitter Boot

Erko Bridee 50 Dec 15, 2021
PDF API. JSON to PDF. PDF Template Management, Visual HTML Template Editor and API to render PDFS by json data

PDF Template Management, Visual HTML Template Editor and API to render PDFS by json data PDF ENGINE VERSION: development: This is a prerelease version

Ajous Solutions 2 Dec 30, 2022
Laravel Podcast Manager is a complete podcast manager package for Laravel 5.3+ that enables you to manage RSS feeds for your favorite podcasts and listen to the episodes in a seamless UI.

laravelpodcast | A Laravel podcast manager package - v0.0.8 Introduction Laravel Podcast Manager is a complete podcast manager package for Laravel 5.3

Jeremy Kenedy 22 Nov 4, 2022
An amazing Rank and Permissions Manager. The best ranks manager for PocketMine-MP.

?? RankSystem ?? An amazing Rank and Permissions Manager Description: An amazing Rank and Permissions Manager. The best ranks manager for PocketMine-M

null 22 Nov 7, 2022
Laragon MultiPHP per App + PECL Module + Extension manager + Ini Manager

LMPA Laragon MultiPHP per App This tools allow you to run multiple PHP version per app with Laragon, so you can have multiple site running different p

Gilbert Paquin 8 Oct 10, 2022
PPM is a process manager, supercharger and load balancer for modern PHP applications.

PPM - PHP Process Manager PHP-PM is a process manager, supercharger and load balancer for PHP applications. It's based on ReactPHP and works best with

PPM - PHP Process Manager 6.5k Jan 3, 2023
Repman - PHP Repository Manager: packagist proxy and host for private packages

Repman - PHP Repository Manager Repman is a PHP repository manager. Main features: free and open source works as a proxy for packagist.org (speeds up

Repman 438 Jan 2, 2023
A next-generation package manager for the front-end

Duo is a next-generation package manager that blends the best ideas from Component, Browserify and Go to make organizing and writing front-end code qu

Duo 3.4k Dec 28, 2022
COP4331 Class Project 1 - "ConnectUs" virtual contact manager/Rolodex

ConnectUs COP4331 Class Project 1 - "ConnectUs" virtual contact manager/Rolodex Team Members Orion (Project Manager) Eric (Database) Rafael (API/Backe

Orion 3 Dec 9, 2022
Inventory manager - Light Bootstrap Dashboard

Light Bootstrap Dashboard is an admin dashboard template designed to be beautiful and simple. It is built on top of Bootstra

Ranaivonampoizina Mikajy 1 Nov 17, 2021
Very flexible git hook manager for php developers

CaptainHook CaptainHook is an easy to use and very flexible git hook library for php developers. It enables you to configure your git hook actions in

CaptainHook 812 Dec 30, 2022
Composer plugin for Repman - PHP Repository Manager

Repman Composer Plugin Composer plugin for Repman - PHP Repository Manager. Adds a mirror url for all your dependencies without need to update compose

Repman 9 Mar 14, 2022
Google Tag Manager for Magento 2 with Advance Data Layer

Google Tag Manager is a user-friendly, yet powerful and cost-effective solution that is a must-have integration for every Magento store. It simplifies the process of adding and managing third-party JavaScript tags. With dozens of custom events and hundreds of data points our extensions the #1 GTM solution for Magento.

MagePal :: Magento Extensions 241 Dec 29, 2022
Composer Repository Manager for selling Magento 2 extension and offering composer installation for ordered packages.

Magento 2 Composer Repository Credits We got inspired by https://github.com/Genmato. Composer Repository for Magento 2 This extension works as a Magen

EAdesign 18 Dec 16, 2021
Composer registry manager that help to easily switch to the composer repository you want

CRM - Composer Registry Manager Composer Registry Manager can help you easily and quickly switch between different composer repositories. 简体中文 Install

Tao 500 Dec 29, 2022