Skip to content

Commit

Permalink
Merge branch 'release/2.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Pinxteren committed Oct 4, 2018
2 parents d2aaf27 + 02b9c74 commit ab761e0
Show file tree
Hide file tree
Showing 49 changed files with 4,133 additions and 1,955 deletions.
38 changes: 0 additions & 38 deletions .rmt.yml

This file was deleted.

16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 2.1.1
Changes on the registration page.

- inline JS logic converted to typescript.
- Stop polling for status when an error or session is expired.

## 2.1.0

- Show styled error page for routes authentication, registration, cancel page when no AuthNRequest is active.

Changes on the authentication page.

- Stop polling for status when an error or authentication token is expired.
- Disabled automatic page refresh when authentication token is expired.
- Move logic for authentication request to client-side (fixes timeouts on push notification name resolvers).

## 2.0.1
The most notable changes are
- A user agent pattern can be set to ensure the users tiqr app is of the correct vendor.
Expand Down
22 changes: 3 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,25 +148,6 @@ Authentication can also be done in 'offline' mode, so you need to fill in your '

``` ./bin/console test:authentication --offline=true ./<qr_file.png>```

Release instructions project
============================

The projects follow semantic versioning. To create a new release perform the following steps:

1. Merge feature branch in development branch.

2. Merge development branch in master branch.

3. Checkout and update (pull) master branch

4. Create version with RMT

```bash
./RMT release
```

5. Release the new version on Github [Releases](https://github.com/OpenConext/Stepup-gssp-example/releases)

User storage
============
Currently we support three user storage solutions. Which are file system storage, ldap and database storage. The
Expand Down Expand Up @@ -232,6 +213,9 @@ tiqr_library_options:
attributes: null
```

# Release strategy
Please read: https://github.com/OpenConext/Stepup-Deploy/wiki/Release-Management fro more information on the release strategy used in Stepup projects.

Other resources
======================

Expand Down
2 changes: 1 addition & 1 deletion ansible/files/xdebug.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ xdebug.coverage_enable=1
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_connect_back=0
xdebug.remote_host=192.168.17.1
xdebug.remote_host=192.168.18.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_log=/tmp/xdebug.log
Expand Down
3 changes: 2 additions & 1 deletion ansible/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- name: openmicroscopy.ssl-certificate
- name: reallyenglish.ntpd
- name: geerlingguy.nodejs
- name: geerlingguy.java
- name: geerlingguy.java
- name: openmicroscopy.nginx-ssl-selfsigned
3 changes: 3 additions & 0 deletions app/Resources/translations/messages.en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ stepup.error.support_page.text: Please try again or visit <a href="%support_url%
stepup.error.generic_error:
title: Oops!
description: Something went wrong. Please try again.
stepup.error.no_active_authentrequest:
title: Oops!
description: No active authentication request.

stepup.error.timestamp: Time
stepup.error.hostname: Application
Expand Down
3 changes: 3 additions & 0 deletions app/Resources/translations/messages.nl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ stepup.error.support_page.text: Bezoek <a href="%support_url%" target="_blank">d
stepup.error.generic_error:
title: Oeps!
description: Er is iets mis gegaan. Probeer het opnieuw.
stepup.error.no_active_authentrequest:
title: Oeps!
description: Geen active authenticatie aanvraag.

stepup.error.timestamp: Tijd
stepup.error.hostname: Applicatie
Expand Down
3 changes: 1 addition & 2 deletions app/config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ framework:
trusted_hosts: ~
session:
# https://symfony.com/doc/current/reference/configuration/framework.html#handler-id
handler_id: session.handler.native_file
save_path: null
handler_id: ~
fragments: ~
http_method_override: true
assets: ~
Expand Down
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"php": ">=5.5.9",
"incenteev/composer-parameter-handler": "^2.0",
"kairos/phpqrcode": "^1.0",
"liip/rmt": "^1.2",
"openconext/monitor-bundle": "^1.0",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^3.0.2",
Expand Down Expand Up @@ -73,12 +72,14 @@
"@lint",
"@static-analysis",
"@phpunit",
"@security-tests"
"@security-tests",
"@jest"
],

"lint": ["@lint-php", "@lint-yml", "@lint-composer"],
"lint": ["@lint-php", "@lint-yml", "@lint-composer", "@lint-ts"],
"lint-php": "vendor/bin/parallel-lint app src",
"lint-yml": "bin/console lint:yaml app/config",
"lint-ts": "yarn tslint --project tsconfig.json",
"lint-composer": "composer validate",

"static-analysis": ["@license-headers", "@phpmd", "@phpcs", "@phpcpd"],
Expand Down Expand Up @@ -106,6 +107,10 @@
"./node_modules/.bin/encore"
],

"jest": [
"./node_modules/.bin/jest"
],

"frontend-install": [
"yarn install"
],
Expand Down
Loading

0 comments on commit ab761e0

Please sign in to comment.