From f1bda9da51b8d6a873a5619b373a0d23628f908d Mon Sep 17 00:00:00 2001 From: Raul Metsma Date: Fri, 26 Jan 2024 13:28:11 +0200 Subject: [PATCH] Update copyright year WE2-846 Signed-off-by: Raul Metsma --- .github/workflows/build.yml | 8 ++++---- LICENSE | 2 +- src/__tests__/web-eid-test.ts | 2 +- src/config.ts | 2 +- src/errors/ActionPendingError.ts | 2 +- src/errors/ActionTimeoutError.ts | 2 +- src/errors/ContextInsecureError.ts | 2 +- src/errors/ErrorCode.ts | 2 +- src/errors/ExtensionUnavailableError.ts | 2 +- src/errors/MissingParameterError.ts | 2 +- src/errors/NativeFatalError.ts | 2 +- src/errors/NativeInvalidArgumentError.ts | 2 +- src/errors/NativeUnavailableError.ts | 2 +- src/errors/UnknownError.ts | 2 +- src/errors/UserCancelledError.ts | 2 +- src/errors/UserTimeoutError.ts | 2 +- src/errors/VersionInvalidError.ts | 2 +- src/errors/VersionMismatchError.ts | 2 +- src/models/Action.ts | 2 +- src/models/ActionOptions.ts | 2 +- src/models/PendingMessage.ts | 2 +- src/models/RequiresUpdate.ts | 2 +- src/models/SignatureAlgorithm.ts | 2 +- src/models/Versions.ts | 2 +- src/models/message/ExtensionRequest.ts | 2 +- src/models/message/ExtensionResponse.ts | 2 +- src/models/message/LibraryResponse.ts | 2 +- src/models/message/NativeRequest.ts | 2 +- src/models/message/NativeResponse.ts | 2 +- src/services/WebExtensionService.ts | 2 +- src/services/__tests__/WebExtensionService-test.ts | 2 +- src/utils/errorSerializer.ts | 2 +- src/utils/sleep.ts | 2 +- src/web-eid.ts | 2 +- 34 files changed, 37 insertions(+), 37 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7525037..338f061 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,12 +7,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: '14.x' - name: Cache Node.js modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ~/.npm @@ -27,7 +27,7 @@ jobs: - name: Build run: npm run build - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: web-eid-js-${{github.run_number}} path: dist/ diff --git a/LICENSE b/LICENSE index 326ac32..03b6ac6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Estonian Information System Authority +Copyright (c) 2020-2024 Estonian Information System Authority Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/__tests__/web-eid-test.ts b/src/__tests__/web-eid-test.ts index d325bb5..b1a1018 100644 --- a/src/__tests__/web-eid-test.ts +++ b/src/__tests__/web-eid-test.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/config.ts b/src/config.ts index 5853a6e..0a7ea74 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/ActionPendingError.ts b/src/errors/ActionPendingError.ts index a17fc1f..7d15360 100644 --- a/src/errors/ActionPendingError.ts +++ b/src/errors/ActionPendingError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/ActionTimeoutError.ts b/src/errors/ActionTimeoutError.ts index 383afbe..8563dc8 100644 --- a/src/errors/ActionTimeoutError.ts +++ b/src/errors/ActionTimeoutError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/ContextInsecureError.ts b/src/errors/ContextInsecureError.ts index 2eb9f46..93b2350 100644 --- a/src/errors/ContextInsecureError.ts +++ b/src/errors/ContextInsecureError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/ErrorCode.ts b/src/errors/ErrorCode.ts index a443e44..83922c0 100644 --- a/src/errors/ErrorCode.ts +++ b/src/errors/ErrorCode.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/ExtensionUnavailableError.ts b/src/errors/ExtensionUnavailableError.ts index 695a2e2..efe0ad0 100644 --- a/src/errors/ExtensionUnavailableError.ts +++ b/src/errors/ExtensionUnavailableError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/MissingParameterError.ts b/src/errors/MissingParameterError.ts index 8b7e4e4..94bdf61 100644 --- a/src/errors/MissingParameterError.ts +++ b/src/errors/MissingParameterError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/NativeFatalError.ts b/src/errors/NativeFatalError.ts index ebfe66f..237564b 100644 --- a/src/errors/NativeFatalError.ts +++ b/src/errors/NativeFatalError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/NativeInvalidArgumentError.ts b/src/errors/NativeInvalidArgumentError.ts index 2d39ae7..5ef9032 100644 --- a/src/errors/NativeInvalidArgumentError.ts +++ b/src/errors/NativeInvalidArgumentError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/NativeUnavailableError.ts b/src/errors/NativeUnavailableError.ts index 5b0bae1..fc63985 100644 --- a/src/errors/NativeUnavailableError.ts +++ b/src/errors/NativeUnavailableError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/UnknownError.ts b/src/errors/UnknownError.ts index 6291e4a..3af59b5 100644 --- a/src/errors/UnknownError.ts +++ b/src/errors/UnknownError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/UserCancelledError.ts b/src/errors/UserCancelledError.ts index 18285b7..e3083ba 100644 --- a/src/errors/UserCancelledError.ts +++ b/src/errors/UserCancelledError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/UserTimeoutError.ts b/src/errors/UserTimeoutError.ts index a5bf5a9..d4e8573 100644 --- a/src/errors/UserTimeoutError.ts +++ b/src/errors/UserTimeoutError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/VersionInvalidError.ts b/src/errors/VersionInvalidError.ts index ef90212..766c754 100644 --- a/src/errors/VersionInvalidError.ts +++ b/src/errors/VersionInvalidError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors/VersionMismatchError.ts b/src/errors/VersionMismatchError.ts index 407de69..a335bbf 100644 --- a/src/errors/VersionMismatchError.ts +++ b/src/errors/VersionMismatchError.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/Action.ts b/src/models/Action.ts index f1252d2..bef3aec 100644 --- a/src/models/Action.ts +++ b/src/models/Action.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/ActionOptions.ts b/src/models/ActionOptions.ts index 037e8d2..be10006 100644 --- a/src/models/ActionOptions.ts +++ b/src/models/ActionOptions.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/PendingMessage.ts b/src/models/PendingMessage.ts index ab46bea..50a5251 100644 --- a/src/models/PendingMessage.ts +++ b/src/models/PendingMessage.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/RequiresUpdate.ts b/src/models/RequiresUpdate.ts index 1752983..4c8557e 100644 --- a/src/models/RequiresUpdate.ts +++ b/src/models/RequiresUpdate.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/SignatureAlgorithm.ts b/src/models/SignatureAlgorithm.ts index 8bc24b9..0d95cc1 100644 --- a/src/models/SignatureAlgorithm.ts +++ b/src/models/SignatureAlgorithm.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/Versions.ts b/src/models/Versions.ts index f0d433c..943d5a2 100644 --- a/src/models/Versions.ts +++ b/src/models/Versions.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/message/ExtensionRequest.ts b/src/models/message/ExtensionRequest.ts index 296259c..5d786ad 100644 --- a/src/models/message/ExtensionRequest.ts +++ b/src/models/message/ExtensionRequest.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/message/ExtensionResponse.ts b/src/models/message/ExtensionResponse.ts index fa98d6f..f68706c 100644 --- a/src/models/message/ExtensionResponse.ts +++ b/src/models/message/ExtensionResponse.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/message/LibraryResponse.ts b/src/models/message/LibraryResponse.ts index 6f048db..fc96450 100644 --- a/src/models/message/LibraryResponse.ts +++ b/src/models/message/LibraryResponse.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/message/NativeRequest.ts b/src/models/message/NativeRequest.ts index 389979d..420255c 100644 --- a/src/models/message/NativeRequest.ts +++ b/src/models/message/NativeRequest.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/models/message/NativeResponse.ts b/src/models/message/NativeResponse.ts index 1db349e..b3365d2 100644 --- a/src/models/message/NativeResponse.ts +++ b/src/models/message/NativeResponse.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/services/WebExtensionService.ts b/src/services/WebExtensionService.ts index 13dd622..4ce09f7 100644 --- a/src/services/WebExtensionService.ts +++ b/src/services/WebExtensionService.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/services/__tests__/WebExtensionService-test.ts b/src/services/__tests__/WebExtensionService-test.ts index 77e09a4..a34b4bf 100644 --- a/src/services/__tests__/WebExtensionService-test.ts +++ b/src/services/__tests__/WebExtensionService-test.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/utils/errorSerializer.ts b/src/utils/errorSerializer.ts index a735f05..0c505cb 100644 --- a/src/utils/errorSerializer.ts +++ b/src/utils/errorSerializer.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/utils/sleep.ts b/src/utils/sleep.ts index 44216e5..eed4bb3 100644 --- a/src/utils/sleep.ts +++ b/src/utils/sleep.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/web-eid.ts b/src/web-eid.ts index 07d0514..cc3194b 100644 --- a/src/web-eid.ts +++ b/src/web-eid.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal