Skip to content

Commit

Permalink
Merge branch 'release/v3.3.19'
Browse files Browse the repository at this point in the history
  • Loading branch information
enfoqueNativo committed May 18, 2021
2 parents 6424d82 + 546b06a commit 95929a5
Show file tree
Hide file tree
Showing 13 changed files with 364 additions and 302 deletions.
65 changes: 46 additions & 19 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,57 @@
cache:
key: "$CI_COMMIT_REF_SLUG"
paths:
- ./vendor/
- ./composer

stages:
- dependencias
- qa
- quality

composer:php7.3:
variables:
COMPOSER_CACHE_DIR: ./composer-cache
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""

cache:
key: $CI_COMMIT_REF_SLUG
paths:
- $COMPOSER_CACHE_DIR

.docker:
# https://gitlab.com/gitlab-com/support-forum/issues/4416#note_199451215
image: docker:18.09.7
services:
- docker:18.09.7-dind
tags:
- docker
variables:
# si tag:kubernetes -> DOCKER_HOST: localhost
# si tag:docker -> NO definir DOCKER_HOST
DOCKER_DRIVER: overlay2
DOCKER_BUILDKIT: "1"
before_script:
- echo -n $CI_JOB_TOKEN | docker login -u gitlab-ci-token --password-stdin $CI_REGISTRY


dockercomposer:
stage: dependencias
image: siutoba/docker-web:v1.8
services:
- postgres:11
extends:
- .docker
script:
- composer config cache-files-dir ./composer
- composer install --prefer-dist > /dev/null
- docker pull composer:2.0 || true
- >
docker run --rm
--env COMPOSER_CACHE_DIR
--volume $COMPOSER_CACHE_DIR:$COMPOSER_CACHE_DIR
--volume $PWD:/app
composer:2.0 install --no-scripts --prefer-dist --ignore-platform-reqs
artifacts:
expire_in: 1 month
paths:
- ./vendor/
- ./bin
expire_in: 1 day
sonar:
stage: qa

sonarqube:
stage: quality
tags:
- docker
image: zaquestion/sonarqube-scanner
script:
script:
- sonar-scanner -Dsonar.projectBaseDir=./ -Dsonar.login=$SONAR_TOKEN
allow_failure: true
dependencies: []

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

[CURRENT](https://github.com/SIU-Toba/framework/compare/master...develop)

[3.3.19](https://github.com/SIU-Toba/framework/releases/tag/v3.3.19) (2021-05-18)
- Agrega posibilidad de parametrizar exposicion de atributos SAML via `instalacion.ini`
- Actualizacion de seguridad de paquetes JS:
* CKEditor4: v4.16.0
* JQuery: v3.6.0
* JQuery-migrate: v3.3.0
- Se actualizan los paquetes por seguridad
* phpmailer/phpmailer: v6.4.1
* phpoffice/phpspreadsheet: v1.17.1

[3.3.18](https://github.com/SIU-Toba/framework/releases/tag/v3.3.18) (2021-03-02)
- Bugfix en toba_varios::encriptar_con_sal() que permitia exploit con clave sin hashear

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.18
3.3.19
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"nikic/php-parser": "~4.4",
"onelogin/php-saml": "~3.4",
"paragonie/random-lib": "~2.0",
"phpmailer/phpmailer": "~6.1.0",
"phpmailer/phpmailer": "~6.4.0",
"phpoffice/phpspreadsheet": "^1.0",
"psr/log": "~1.1",
"rospdf/pdf-php": "~0.12",
Expand Down
Loading

0 comments on commit 95929a5

Please sign in to comment.