Skip to content

Commit

Permalink
[RELEASE] 2.0.0.RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexGuironnetRTE committed Feb 1, 2021
1 parent c215e66 commit fffed07
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 17 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SNAPSHOT
2.0.0.RELEASE
4 changes: 2 additions & 2 deletions config/dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- "89:8080"
- "90:9990"
web-ui:
image: "lfeoperatorfabric/of-web-ui:SNAPSHOT"
image: "lfeoperatorfabric/of-web-ui:2.0.0.RELEASE"
#user: ${USER_ID}:${USER_GID}
ports:
- "2002:80"
Expand All @@ -38,6 +38,6 @@ services:
- "./nginx.conf:/etc/nginx/conf.d/default.conf"
- "./loggingResults:/etc/nginx/html/logging"
ext-app:
image: "lfeoperatorfabric/of-external-app:SNAPSHOT"
image: "lfeoperatorfabric/of-external-app:2.0.0.RELEASE"
ports:
- "8090:8090"
12 changes: 6 additions & 6 deletions config/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:
# - "90:9990"
users:
container_name: users
image: "lfeoperatorfabric/of-users-business-service:SNAPSHOT"
image: "lfeoperatorfabric/of-users-business-service:2.0.0.RELEASE"
user: ${USER_ID}:${USER_GID}
ports:
- "2103:8080"
Expand All @@ -40,7 +40,7 @@ services:
- "./common-docker.yml:/config/common-docker.yml"
businessconfig:
container_name: businessconfig
image: "lfeoperatorfabric/of-businessconfig-business-service:SNAPSHOT"
image: "lfeoperatorfabric/of-businessconfig-business-service:2.0.0.RELEASE"
depends_on:
- mongodb
user: ${USER_ID}:${USER_GID}
Expand All @@ -55,7 +55,7 @@ services:
- "./businessconfig-docker.yml:/config/application-docker.yml"
cards-publication:
container_name: cards-publication
image: "lfeoperatorfabric/of-cards-publication-business-service:SNAPSHOT"
image: "lfeoperatorfabric/of-cards-publication-business-service:2.0.0.RELEASE"
depends_on:
- mongodb
user: ${USER_ID}:${USER_GID}
Expand All @@ -69,7 +69,7 @@ services:
- "./cards-publication-docker.yml:/config/application-docker.yml"
cards-consultation:
container_name: cards-consultation
image: "lfeoperatorfabric/of-cards-consultation-business-service:SNAPSHOT"
image: "lfeoperatorfabric/of-cards-consultation-business-service:2.0.0.RELEASE"
user: ${USER_ID}:${USER_GID}
ports:
- "2104:8080"
Expand All @@ -80,7 +80,7 @@ services:
- "./common-docker.yml:/config/common-docker.yml"
- "./cards-consultation-docker.yml:/config/application-docker.yml"
web-ui:
image: "lfeoperatorfabric/of-web-ui:SNAPSHOT"
image: "lfeoperatorfabric/of-web-ui:2.0.0.RELEASE"
ports:
- "2002:80"
depends_on:
Expand All @@ -93,6 +93,6 @@ services:
- "./nginx.conf:/etc/nginx/conf.d/default.conf"
ext-app:
# External application example, must not be activated in production mode
image: "lfeoperatorfabric/of-external-app:SNAPSHOT"
image: "lfeoperatorfabric/of-external-app:2.0.0.RELEASE"
ports:
- "8090:8090"
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
description: OperatorFabric BusinessconfigParty Management API
version: SNAPSHOT
version: 2.0.0.RELEASE
title: Businessconfig Management
termsOfService: ''
contact:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
description: OperatorFabric Card Consumer Service
version: SNAPSHOT
version: 2.0.0.RELEASE
title: Card Management API
termsOfService: ''
contact:
Expand Down
2 changes: 1 addition & 1 deletion services/core/users/src/main/modeling/swagger.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
description: OperatorFabric User Management API
version: SNAPSHOT
version: 2.0.0.RELEASE
title: User Management
termsOfService: ''
contact:
Expand Down
62 changes: 57 additions & 5 deletions src/docs/asciidoc/docs/release_notes.adoc
Original file line number Diff line number Diff line change
@@ -1,14 +1,66 @@
// Copyright (c) 2018-2020 RTE (http://www.rte-france.com)
// Copyright (c) 2018-2021 RTE (http://www.rte-france.com)
// See AUTHORS.txt
// This document is subject to the terms of the Creative Commons Attribution 4.0 International license.
// If a copy of the license was not distributed with this
// file, You can obtain one at https://creativecommons.org/licenses/by/4.0/.
// SPDX-License-Identifier: CC-BY-4.0

= Version 2.0.0.RELEASE

== Overview

We decided to make this a major version because in addition to providing new features, it also substancially changes (and hopefully improves!) the user experience (*new global style for the UI* and layout changes for some screens).

The following features introduced as beta in previous versions are now *production-ready*:

- User Cards
- Agenda
- Logging
- Monitoring

This version also introduces a *notification filter management* interface for users (see below for details).

== Features

- *Filter notification screen for user* (OC-1218, OC-1219, OC-1275, OC-1360): users can now filter the card they received in the feed with a configuration screen accessible throught the right menu
- *Events representation in time* (OC-1241, OC-1242, OC-1299): handle repeating events & remove bubble for business period end.
- [OC-1229] Send card to user using group of entities
- [OC-1272] Add the possibility to show ack button only if action is disabled for the user. In consequence, the configuration of the acknowledgement feature has changed (link:https://opfab.github.io/documentation/current/docs/single_page_doc.html#_migration_guide_from_release_1_8_0_to_release_2_0_0[see migration documentation]).
- [OC-1277] Add the possibility to set business menu visibility depending on group membership (link:https://opfab.github.io/documentation/current/reference_doc/#menu_entries[see documentation])
- [OC-1289] Do not show child cards on the UI archive panel
- [OC-1200] Add update reponse button when there is already a reponse for the entity
- *User cards (Free Message)* (OC-1279, OC-1295, OC-1195): feature enhancement and changes to the card-sending form

== Tasks

=== Technical

- [OC-1060] Upgrade to Java 11
- [OC-1285] Update backend dependencies to last versions
- [OC-824] DockerTagSnapshot task shouldn't tag latest as well

=== Documentation

- [OC-1206] Add config parameters for date and time rendering in the documentation
- [OC-1234] Update documentation regarding entities and groups description
- [OC-1286] Updated Kafka documentation
- [OC-840], [OC-1298] Modify Getting Started documentation
- [OC-1256] Add documentation for groups of entities
- [OC-1101] Add user card documentation
- [OC-1139] Add in documentation : describe notion of processes groups

=== Misc

- [OC-1250] Make externalRecipients-url param in cards-publication.yml not mandatory
- [OC-1276] Remove double state definition in process endpoint
- [OC-1183] Set login to lowercase
- [OC-1309] Template communication improvement

== Bugs

- [OC-1355] Bug in creation/edit user with multiselect component
- [OC-1363] Start UI even if no processes defined (add a warning in the log)
- [OC-654] Correct deprecated code in cards-consultation

= Version SNAPSHOT

//The release notes are managed in an outside repository to avoid constantly having conflicts when merging PRs on the
//develop branch. See https://github.com/opfab/release-notes/.
//The content from this repository is then pasted back to this file during the release process.

0 comments on commit fffed07

Please sign in to comment.