Skip to content

Commit ae6fb3b

Browse files
authored
Release/v1.1.14 (#1603)
1 parent fcede50 commit ae6fb3b

32 files changed

+118
-219
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.14] - 2025-06-30
9+
10+
### Security
11+
12+
* Resolved exposure to a vulnerability in setuptools and cross-spawn
13+
814
## [1.1.13] - 2025-05-16
915

1016
### Fixed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/awslabs/clickstream-analytics-on-aws/issues), or [recently closed](https://github.com/awslabs/clickstream-analytics-on-aws/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/aws-solutions/clickstream-analytics-on-aws/issues), or [recently closed](https://github.com/aws-solutions/clickstream-analytics-on-aws/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -223,13 +223,13 @@ Upon successfully cloning the repository into your local development environment
223223
├── tsconfig.json
224224
```
225225

226-
[android-sdk]: https://github.com/awslabs/clickstream-android
227-
[swift-sdk]: https://github.com/awslabs/clickstream-swift
228-
[flutter-sdk]: https://github.com/awslabs/clickstream-flutter
229-
[react-native-sdk]: https://github.com/awslabs/clickstream-react-native
230-
[web-sdk]: https://github.com/awslabs/clickstream-web
226+
[android-sdk]: https://github.com/aws-solutions/clickstream-analytics-on-aws-android-sdk
227+
[swift-sdk]: https://github.com/aws-solutions/clickstream-analytics-on-aws-swift-sdk
228+
[flutter-sdk]: https://github.com/aws-solutions/clickstream-analytics-on-aws-flutter-sdk
229+
[react-native-sdk]: https://github.com/aws-solutions/clickstream-analytics-on-aws-react-native-sdk
230+
[web-sdk]: https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk
231231
[wechat-sdk]: https://github.com/awslabs/clickstream-wechat
232-
[http-api]: https://awslabs.github.io/clickstream-analytics-on-aws/en/latest/sdk-manual/http-api/
232+
[http-api]: https://aws-solutions.github.io/clickstream-analytics-on-aws/en/latest/sdk-manual/http-api/
233233
[configure-aws-cli]: https://docs.aws.amazon.com/zh_cn/cli/latest/userguide/cli-chap-configure.html
234234
[aws-cdk]: https://aws.amazon.com/cdk/
235235
[doc-arch]: https://docs.aws.amazon.com/solutions/latest/clickstream-analytics-on-aws/architecture-overview.html

docs/en/architecture-details.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ The data modeling module loads the processed data into lake house. It supports t
6363

6464
The reporting module creates a secure connection to the data warehouse and provisions the out-of-box dashboards in business intelligence Amazon QuickSight.
6565

66-
[clickstream-swift]: https://github.com/awslabs/clickstream-swift
67-
[clickstream-andriod]: https://github.com/awslabs/clickstream-android
68-
[clickstream-web]: https://github.com/awslabs/clickstream-web
69-
[clickstream-flutter]: https://github.com/awslabs/clickstream-flutter
66+
[clickstream-swift]: https://github.com/aws-solutions/clickstream-analytics-on-aws-swift-sdk
67+
[clickstream-andriod]: https://github.com/aws-solutions/clickstream-analytics-on-aws-android-sdk
68+
[clickstream-web]: https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk
69+
[clickstream-flutter]: https://github.com/aws-solutions/clickstream-analytics-on-aws-flutter-sdk
7070
[clickstream-wechat]: https://github.com/awslabs/clickstream-wechat

docs/en/sdk-manual/android.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ ClickstreamAnalytics.getClickStreamConfiguration()
354354
.withCustomDns(CustomOkhttpDns.getInstance());
355355
```
356356

357-
If you want to use custom DNS for network request, you can create your `CustomOkhttpDns` which implementation `okhttp3.Dns`, then configure `.withCustomDns(CustomOkhttpDns.getInstance())` to make it works, you can refer to the [example code](https://github.com/awslabs/clickstream-android/blob/main/clickstream/src/test/java/software/aws/solution/clickstream/IntegrationTest.java#L503-L516) .
357+
If you want to use custom DNS for network request, you can create your `CustomOkhttpDns` which implementation `okhttp3.Dns`, then configure `.withCustomDns(CustomOkhttpDns.getInstance())` to make it works, you can refer to the [example code](https://github.com/aws-solutions/clickstream-analytics-on-aws-android-sdk/blob/main/clickstream/src/test/java/software/aws/solution/clickstream/IntegrationTest.java#L503-L516) .
358358

359359
## Data format definition
360360

@@ -607,13 +607,13 @@ You can use the above preset item attributes, of course, you can also add custom
607607

608608
## Change log
609609

610-
[GitHub change log](https://github.com/awslabs/clickstream-android/releases)
610+
[GitHub change log](https://github.com/aws-solutions/clickstream-analytics-on-aws-android-sdk/releases)
611611

612612
## Sample project
613613
Sample [Android Project](https://github.com/aws-samples/clickstream-sdk-samples/tree/main/android) for SDK integration.
614614

615615
## Reference link
616616

617-
[Source code](https://github.com/awslabs/clickstream-android)
617+
[Source code](https://github.com/aws-solutions/clickstream-analytics-on-aws-android-sdk)
618618

619-
[Project issue](https://github.com/awslabs/clickstream-android/issues)
619+
[Project issue](https://github.com/aws-solutions/clickstream-analytics-on-aws-android-sdk/issues)

docs/en/sdk-manual/flutter.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ For iOS: Refer to [Swift SDK event attributes](./swift.md#event-attributes)
360360
361361
## Change log
362362
363-
[GitHub change log](https://github.com/awslabs/clickstream-flutter/releases)
363+
[GitHub change log](https://github.com/aws-solutions/clickstream-analytics-on-aws-flutter-sdk/releases)
364364
365365
Native SDK version dependencies
366366
@@ -373,6 +373,6 @@ Native SDK version dependencies
373373
374374
## Reference link
375375
376-
[Source code](https://github.com/awslabs/clickstream-flutter)
376+
[Source code](https://github.com/aws-solutions/clickstream-analytics-on-aws-flutter-sdk)
377377
378-
[Project issue](https://github.com/awslabs/clickstream-flutter/issues)
378+
[Project issue](https://github.com/aws-solutions/clickstream-analytics-on-aws-flutter-sdk/issues)

docs/en/sdk-manual/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ In addition, we also provide [HTTP API](./http-api.md) to collect clickstream da
2020

2121
All Clickstream SDKs are open source under Apache 2.0 License in [GitHub][github]. You can customize the SDKs if needed. All contributions are welcome.
2222

23-
[github]: https://github.com/awslabs/?q=clickstream&type=all&language=&sort=
23+
[github]: https://github.com/aws-solutions/?q=clickstream&type=all&language=&sort=

docs/en/sdk-manual/react-native.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ For iOS: Refer to [Swift SDK event attributes](./swift.md#event-attributes)
332332

333333
## Change log
334334

335-
[GitHub change log](https://github.com/awslabs/clickstream-react-native/releases)
335+
[GitHub change log](https://github.com/aws-solutions/clickstream-analytics-on-aws-react-native-sdk/releases)
336336

337337
React Native SDK version dependencies
338338

@@ -346,6 +346,6 @@ Sample [React Native Project](https://github.com/aws-samples/clickstream-sdk-sam
346346

347347
## Reference link
348348

349-
[Source code](https://github.com/awslabs/clickstream-react-native)
349+
[Source code](https://github.com/aws-solutions/clickstream-analytics-on-aws-react-native-sdk)
350350

351-
[Project issue](https://github.com/awslabs/clickstream-react-native/issues)
351+
[Project issue](https://github.com/aws-solutions/clickstream-analytics-on-aws-react-native-sdk/issues)

docs/en/sdk-manual/swift.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ We use **Swift Package Manager(SPM)** to distribute Clickstream Swift SDK, open
2222

2323
1. Copy the Clickstream Swift SDK GitHub repository URL and paste it into the search bar.
2424
```bash
25-
https://github.com/awslabs/clickstream-swift
25+
https://github.com/aws-solutions/clickstream-analytics-on-aws-swift-sdk
2626
```
2727
2. Check the rules for the version of the SDK that you want Swift Package Manager to install, it is recommended to choose **Up to Next Major Version**, then click **Add Package**.
2828
3. Keep the Clickstream product checked as default.
@@ -783,17 +783,17 @@ You can use the above preset item attributes, of course, you can also add custom
783783
784784
## Change log
785785
786-
[GitHub change log](https://github.com/awslabs/clickstream-swift/releases)
786+
[GitHub change log](https://github.com/aws-solutions/clickstream-analytics-on-aws-swift-sdk/releases)
787787
788788
## Sample project
789789
Sample [iOS Project](https://github.com/aws-samples/clickstream-sdk-samples/tree/main/ios) for SDK integration.
790790
791791
## Reference link
792792
793-
[Source code](https://github.com/awslabs/clickstream-swift)
793+
[Source code](https://github.com/aws-solutions/clickstream-analytics-on-aws-swift-sdk)
794794
795-
[Project issue](https://github.com/awslabs/clickstream-swift/issues)
795+
[Project issue](https://github.com/aws-solutions/clickstream-analytics-on-aws-swift-sdk/issues)
796796
797-
[API Documentation](https://awslabs.github.io/clickstream-swift/)
797+
[API Documentation](https://aws-solutions.github.io/clickstream-analytics-on-aws-swift-sdk/)
798798
799-
[ClickstreamObjc Api Reference](https://awslabs.github.io/clickstream-swift/Classes/ClickstreamObjc.html)
799+
[ClickstreamObjc Api Reference](https://aws-solutions.github.io/clickstream-analytics-on-aws-swift-sdk/Classes/ClickstreamObjc.html)

docs/en/sdk-manual/web.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The SDK is based on the amplify-js SDK core library and developed according to t
3434
Your `appId` and `endpoint` are already set up in it, you can also manually add this code snippet and replace the values of appId and endpoint after you registered app to a data pipeline in the Clickstream web console.
3535

3636
=== "Using JS File"
37-
1.Download the `clickstream-web.min.js` from the assets in [GitHub Release](https://github.com/awslabs/clickstream-web/releases) page then copy it into your project.
37+
1.Download the `clickstream-web.min.js` from the assets in [GitHub Release](https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk/releases) page then copy it into your project.
3838
3939
2.Add the following initial code into your `index.html`.
4040

@@ -516,7 +516,7 @@ You can use the above preset item attributes, of course, you can also add custom
516516

517517
## Google Tag Manager integration
518518

519-
1. Download the Clickstream SDK template file (.tpl) from the [SDK Release Page](https://github.com/awslabs/clickstream-web/releases).
519+
1. Download the Clickstream SDK template file (.tpl) from the [SDK Release Page](https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk/releases).
520520

521521
2. Refer to the Google Tag Manager [Import Guide](https://developers.google.com/tag-platform/tag-manager/templates#export_and_import) for instructions on importing the .tpl file as a custom template in your tag manager console.
522522

@@ -534,13 +534,13 @@ You can use the above preset item attributes, of course, you can also add custom
534534

535535
## Change log
536536

537-
[GitHub Change log](https://github.com/awslabs/clickstream-web/releases)
537+
[GitHub Change log](https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk/releases)
538538

539539
## Sample project
540540
Sample [Web Project](https://github.com/aws-samples/clickstream-sdk-samples/tree/main/web) for SDK integration.
541541

542542
## Reference link
543543

544-
[Source code](https://github.com/awslabs/clickstream-web)
544+
[Source code](https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk)
545545

546-
[Project issue](https://github.com/awslabs/clickstream-web/issues)
546+
[Project issue](https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk/issues)

0 commit comments

Comments
 (0)