Skip to content

Commit

Permalink
Prepare changelog for the 2.4.67-rc1
Browse files Browse the repository at this point in the history
Signed-off-by: Jérôme Benoit <[email protected]>
  • Loading branch information
Jérôme Benoit committed May 21, 2021
1 parent e8c165d commit a6524de
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
12 changes: 10 additions & 2 deletions src/app/release-notes/release-notes.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,20 @@ export class ReleaseNotesComponent {
this.releaseNotes = [
{
version: packageJsonVersion,
date: new Date('2021-05-20'),
date: new Date('2021-05-21'),
componentChanges: [
{
name: 'Dashboard',
changes: [
`Add a visual ID field to badge`,
`Various fixes to the billing dashboard UI`,
`Add billing invoices detailed description support`,
`Add assets information refresh interval support`,
`Add notification support for billing payment failure`,
`Fix badge ID support to search filter`,
`Fix consumption computation from MeterValues Current.Import measurand`,
`Fix organizations read permission for admin role with also site admin role`,
`Allow site admin role to view transaction badge ID if done on their site`,
`Add a visual ID field to badge record`,
`Fix badges CSV import/export`,
`Fix user site assignment`,
`Server side german translation update`,
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/central-server.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { StatusCodes } from 'http-status-codes';
import { BehaviorSubject, EMPTY, Observable, TimeoutError, of, throwError } from 'rxjs';
import { catchError, switchMap } from 'rxjs/operators';
import SafeUrlAssembler from 'safe-url-assembler';
import { OicpEndpoint } from 'types/oicp/OICPEndpoint';

import { Asset, AssetConsumption } from '../types/Asset';
import { BillingInvoice, BillingPaymentMethod, BillingTax } from '../types/Billing';
Expand All @@ -24,6 +23,7 @@ import { AssetInError, ChargingStationInError, TransactionInError } from '../typ
import { Log } from '../types/Log';
import { OcpiEndpoint } from '../types/ocpi/OCPIEndpoint';
import { OCPPResetType } from '../types/ocpp/OCPP';
import { OicpEndpoint } from '../types/oicp/OICPEndpoint';
import { RefundReport } from '../types/Refund';
import { RegistrationToken } from '../types/RegistrationToken';
import { ServerAction, ServerRoute } from '../types/Server';
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/config.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import Landscape, { LandscapeType } from 'types/configuration/Landscape';

import AdvancedConfiguration from '../types/configuration/AdvancedConfiguration';
import AssetConfiguration from '../types/configuration/AssetConfiguration';
Expand All @@ -11,6 +10,7 @@ import CompanyConfiguration from '../types/configuration/CompanyConfiguration';
import { Configuration } from '../types/configuration/Configuration';
import Debug from '../types/configuration/Debug';
import FrontEndConfiguration from '../types/configuration/FrontEndConfiguration';
import Landscape, { LandscapeType } from '../types/configuration/Landscape';
import LocalesConfiguration from '../types/configuration/LocalesConfiguration';
import SiteAreaConfiguration from '../types/configuration/SiteAreaConfiguration';
import SiteConfiguration from '../types/configuration/SiteConfiguration';
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/locale.service.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Injectable } from '@angular/core';
import { TranslateService } from '@ngx-translate/core';
import { BehaviorSubject } from 'rxjs';
import { Utils } from 'utils/Utils';

import { KeyValue } from '../types/GlobalType';
import { UserToken } from '../types/User';
import { Utils } from '../utils/Utils';
import { CentralServerService } from './central-server.service';
import { ConfigService } from './config.service';

Expand Down
3 changes: 2 additions & 1 deletion src/app/services/message.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Injectable } from '@angular/core';
import { TranslateService } from '@ngx-translate/core';
import { ActionsResponse } from 'types/DataResult';

import { ActionsResponse } from '../types/DataResult';

declare let $: any;

Expand Down
4 changes: 2 additions & 2 deletions src/app/services/stripe.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export class StripeService {
}

public async initializeStripe(): Promise<Stripe> {
if ( !StripeService.stripeFacade ) {
if (!StripeService.stripeFacade) {
const billingSettings = await this.loadBillingConfiguration();
if ( billingSettings?.stripe?.publicKey ) {
if (billingSettings?.stripe?.publicKey) {
loadStripe.setLoadParameters({ advancedFraudSignals: false });
StripeService.stripeFacade = await loadStripe(billingSettings.stripe.publicKey);
}
Expand Down
2 changes: 1 addition & 1 deletion src/assets/configs-aws

0 comments on commit a6524de

Please sign in to comment.