akamai-edgegrid 3.5.2 → 3.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release notes
2
2
 
3
+ ## 3.5.3 (Apr 09, 2025)
4
+
5
+ ### Features/Enhancements
6
+
7
+ * Updated various dependencies.
8
+
3
9
  ## 3.5.2 (Dec 05, 2024)
4
10
 
5
11
  ### Features/Enhancements
package/LICENSE CHANGED
@@ -176,7 +176,7 @@ recommend that a file or class name and description of purpose be included on
176
176
  the same "printed page" as the copyright notice for easier identification within
177
177
  third-party archives.
178
178
 
179
- Copyright 2024 Akamai Technologies, Inc. All rights reserved.
179
+ Copyright 2025 Akamai Technologies, Inc. All rights reserved.
180
180
 
181
181
  Licensed under the Apache License, Version 2.0 (the "License");
182
182
  you may not use these files except in compliance with the License.
package/README.md CHANGED
@@ -232,7 +232,7 @@ To report an issue or make a suggestion, create a new [GitHub issue](https://git
232
232
 
233
233
  ## License
234
234
 
235
- Copyright 2024 Akamai Technologies, Inc. All rights reserved.
235
+ Copyright 2025 Akamai Technologies, Inc. All rights reserved.
236
236
 
237
237
  Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
238
238
 
@@ -9,6 +9,9 @@ To run any of the files:
9
9
  1. Append the path to your `.edgerc`. The default is set to the home directory.
10
10
  2. Provide the section heading for the set of credentials you'd like to use. The default is `default`.
11
11
  3. For update and delete operations, replace the dummy `credentialId` with your valid `credentialId`.
12
+
13
+ > **Important:** Don't use the credentials you're actively using when running the update (inactivation) and delete operations. Otherwise, you'll block your access to the Akamai APIs.
14
+
12
15
  4. Open a Terminal or shell instance and run the .js file.
13
16
 
14
17
  ```shell
@@ -8,7 +8,7 @@
8
8
  //
9
9
  // 2. Add the `credentialId` from the update example to the path. You can only delete inactive credentials. Sending the request on an active set will return a 400. Use the update credentials example for deactivation.
10
10
  //
11
- // **Important:** Don't use your actual credentials for this operation. Otherwise, you'll block your access to the Akamai APIs.
11
+ // **Important:** Don't use the credentials you're actively using when deleting a set of credentials. Otherwise, you'll block your access to the Akamai APIs.
12
12
  //
13
13
  // 3. Open a Terminal or shell instance and run "node example/delete-credentials.js".
14
14
  //
@@ -10,6 +10,8 @@
10
10
  //
11
11
  // 3. Edit the `expiresOn` date to today's date. Optionally, you can change the `description` value.
12
12
  //
13
+ // **Important:** Don't use the credentials you're actively using when inactivating a set of credentials. Otherwise, you'll block your access to the Akamai APIs.
14
+ //
13
15
  // 4. Open a Terminal or shell instance and run "node example/update-credentials.js".
14
16
  //
15
17
  // A successful call returns an object with modified credentials.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akamai-edgegrid",
3
- "version": "3.5.2",
3
+ "version": "3.5.3",
4
4
  "description": "Authentication handler for the Akamai OPEN EdgeGrid Authentication scheme in Node.js",
5
5
  "main": "index.js",
6
6
  "scripts": {