]> Piment Noir Git Repositories - e-mobility-charging-stations-simulator.git/commitdiff
chore: update copyright year range
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 1 Sep 2025 18:15:43 +0000 (20:15 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 1 Sep 2025 18:15:43 +0000 (20:15 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
25 files changed:
README.md
REUSE.toml
src/charging-station/AutomaticTransactionGenerator.ts
src/charging-station/Bootstrap.ts
src/charging-station/ChargingStation.ts
src/charging-station/ChargingStationWorker.ts
src/charging-station/ocpp/1.6/OCPP16IncomingRequestService.ts
src/charging-station/ocpp/1.6/OCPP16RequestService.ts
src/charging-station/ocpp/1.6/OCPP16ResponseService.ts
src/charging-station/ocpp/1.6/OCPP16ServiceUtils.ts
src/charging-station/ocpp/2.0/OCPP20IncomingRequestService.ts
src/charging-station/ocpp/2.0/OCPP20RequestService.ts
src/charging-station/ocpp/2.0/OCPP20ResponseService.ts
src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts
src/exception/OCPPError.ts
src/performance/PerformanceStatistics.ts
src/performance/storage/JsonFileStorage.ts
src/performance/storage/MikroOrmStorage.ts
src/performance/storage/MongoDBStorage.ts
src/performance/storage/Storage.ts
src/performance/storage/StorageFactory.ts
src/start.ts
src/utils/AsyncLock.ts
src/utils/ElectricUtils.ts
src/worker/WorkerSet.ts

index f94bbbdf9a2b038559255bb30aaf0ca7d74e53dd..72ed4af16058505ca26f11a6777c0a4d47612e38 100644 (file)
--- a/README.md
+++ b/README.md
@@ -944,4 +944,4 @@ We as members, contributors, and leaders pledge to make participation in our com
 
 ## Licensing
 
-Copyright 2020-2024 SAP SE or an SAP affiliate company and e-mobility-charging-stations-simulator contributors. Please see our [LICENSE](./LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/e-mobility-charging-stations-simulator).
+Copyright 2020-2025 SAP SE or an SAP affiliate company and e-mobility-charging-stations-simulator contributors. Please see our [LICENSE](./LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/e-mobility-charging-stations-simulator).
index 9c2b5f9952d960989d7e0fc851eba8ffd4f741ff..0c7f2403c5ac4253e63ba2883522afdf05e5afad 100644 (file)
@@ -7,5 +7,5 @@ SPDX-PackageComment = "The code in this project may include calls to APIs (\"API
 [[annotations]]
 path = "**"
 precedence = "aggregate"
-SPDX-FileCopyrightText = "2021-2024 SAP SE or an SAP affiliate company and e-mobility-charging-stations-simulator contributors"
+SPDX-FileCopyrightText = "2021-2025 SAP SE or an SAP affiliate company and e-mobility-charging-stations-simulator contributors"
 SPDX-License-Identifier = "Apache-2.0"
index ebe543aed48ab7e46c7e6b15fd36c4872da29637..e9d9eba66f2d5b4b17d6fc6bde15c6baf3f59764 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import { hoursToMilliseconds, secondsToMilliseconds } from 'date-fns'
 import { randomInt } from 'node:crypto'
index 1932f34b60cd12a7542ff9ca406c64d87c1e8fd2..c60f200bdf0d0646b9f1e5ea6179d14bf520476b 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { Worker } from 'node:worker_threads'
 
index 5b93b0bb08b14371e2e63f47a9e751210ee0978a..4c55961195f493c79de79a66c2a6bae664d2bc9d 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import { millisecondsToSeconds, secondsToMilliseconds } from 'date-fns'
 import { hash, randomInt } from 'node:crypto'
index 73c816a32aac597f68b92ba16e440a10483fa1a3..f850a3cd7d0a9921919f51b8c454edce26d9309a 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import { parentPort } from 'node:worker_threads'
 import { ThreadWorker } from 'poolifier'
index 9fbf6a69d78ad0d2cab99106292fbeac8e280a8e..9ebf8aa0281a254a50f47d02989d29f10b61fc3e 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { ValidateFunction } from 'ajv'
 
index 5c096532df4a5ebc3e8db6a3f20ba4b2e6282b1e..1b6ed2906cbead1ddbc8d6368f7c7051438af6f7 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { ValidateFunction } from 'ajv'
 
index 553e0ae4096f832e876ab59ca5688dc532875f45..871249c5309e01aad6683a5aaab2736de3e1af77 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { ValidateFunction } from 'ajv'
 
index 844672853923cee35a276442f3497ba10c4644f3..0d55122b43bd199459335ff6d2d3208b24a744f1 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { JSONSchemaType } from 'ajv'
 
index 3be92e9e863af639aeab6f2cd73b93c1a16cfef5..23f4c024ef5bbb4c3979ea1c99405364f9a1fb31 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { ValidateFunction } from 'ajv'
 
index e44693658c909b91c6a369d924f1b366a9c610fb..1e9253c9a7affe4156b2870c64e085f493b2bed1 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { ValidateFunction } from 'ajv'
 
index 5a4b62b81316026597ee750b8aa148818ef6bcd4..93d03cc905c59481653b7335aec07e40f0301db1 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { ValidateFunction } from 'ajv'
 
index 82bd9f133a0a54426ccea7465edbd0bbe2fd5479..aa947ae53365b4c2fe5fedcf0f738b4c202505b1 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { JSONSchemaType } from 'ajv'
 
index ece0283b81218d2bb95f5683dbed26c3bf843a5f..a64e2c235207b1ab0666fc11eaf7f20c58f68ae0 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { ErrorType, IncomingRequestCommand, JsonType, RequestCommand } from '../types/index.js'
 
index 6d862f69a6338172833d7c0e14481bb779eb23b0..518ec8c402c0a0672bb78a5810eb71b879301b84 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { URL } from 'node:url'
 
index bc1d45383ee9649b7f57e8bf796725cf9ac65a3c..6103235e86da7fcb3086e407f3db5c9b1e834fe7 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import { closeSync, existsSync, mkdirSync, openSync, writeSync } from 'node:fs'
 import { dirname } from 'node:path'
index f9998a0d71797a119548af3f14014bc16b205faf..dbf4ef6ff7edee979f936d0e71113975e3fb41c2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import { type Options as MariaDbOptions, MikroORM as MariaDbORM } from '@mikro-orm/mariadb'
 import { type Options as SqliteOptions, MikroORM as SqliteORM } from '@mikro-orm/sqlite'
index f092351afba5bb21def418cede3ff6f15218b959..f11e8f2577e8e69a612ed0b56dc9d97dcd9a007c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import { MongoClient } from 'mongodb'
 
index 5abe052dd524aa3d9af2ba0534772e887e9513de..b7711f21cc7d1c063fb0c5d0746e558fc8255695 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import { URL } from 'node:url'
 
index 277e6420420135f98b87729f637b3f29bf127787..c7d243736739a9adb5570d53b6023243ccf5c9f2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import type { Storage } from './Storage.js'
 
index 7c42c4d205682073c4d23c04d7d2a3eff15add97..a28d1e91522ed590ce777a4154088ed16274ac34 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import chalk from 'chalk'
 
index 8fad063b443ac8873d39a212dbea11a85d7b94ab..4e2c815127d1b2a21942ebd3a074303e3ae94601 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import { Queue } from 'mnemonist'
 
index 6c3d710312466a8b4a136d5d913d270c9468e170..6057234225a48389c4473012b2b1d09a838704c3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 /**
  * Rationale: https://wiki.piment-noir.org/doku.php/en:cs:modelling_multi-phased_electrical_system_interconnexion
index 89e20bb71288d559a667edbabce275ae140a57bf..bdaa108d45a073f096b4dcb1cac232c0347f5d1c 100644 (file)
@@ -1,4 +1,4 @@
-// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
+// Partial Copyright Jerome Benoit. 2021-2025. All Rights Reserved.
 
 import { randomUUID } from 'node:crypto'
 import { EventEmitterAsyncResource } from 'node:events'