Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
PravinPK authored Jan 17, 2024
2 parents b65f9d4 + ce5dfa5 commit 8912d28
Show file tree
Hide file tree
Showing 51 changed files with 2,020 additions and 557 deletions.
4 changes: 3 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ updates:
# Check the npm registry for updates every day (weekdays)
schedule:
interval: "daily"
allow:
- dependency-name: "@adobe/gatsby-theme-aio"
versioning-strategy: increase
open-pull-requests-limit: 25
labels:
- "dependencies"
ignore:
# Ignore updates to package
- dependency-name: "gatsby"
- dependency-name: "gatsby"
66 changes: 53 additions & 13 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,21 @@
*/
module.exports = {
siteMetadata: {
versions: [{
title: 'Latest version',
path: '/client-sdks/',
selected: true
},
{
title: 'Previous versions',
path: '/client-sdks/previous-versions/'
}
],
pages: [
{
title: "Versions",
menu: [
{
title: "Latest version",
path: "/home",
selected: true
},
{
title: "Previous versions",
path: '/previous-versions/'
}
]
},
{
title: "Home",
path: "/home"
Expand Down Expand Up @@ -125,6 +129,16 @@ module.exports = {
title: "Validation",
path: "/edge/edge-network/validation"
},
{
title: "Tutorials",
path: "/edge/edge-network/tutorials",
pages: [
{
title: "Datastream config overrides using rules",
path: "/edge/edge-network/tutorials/datastream-config-override-rules"
}
]
},
{
title: "Release notes",
path: "/edge/edge-network/release-notes"
Expand Down Expand Up @@ -717,8 +731,8 @@ module.exports = {
path: "/resources/faq"
},
{
title: "ACP SDKs end-of-support",
path: "/resources/acp-end-of-support"
title: "SDKs end-of-support announcements",
path: "/resources/sdks-end-of-support"
},
{
title: "Adobe Mobile Library (v4) end-of-support",
Expand Down Expand Up @@ -755,6 +769,32 @@ module.exports = {
}

]
},{
title: "Migration",
path: "/resources/migration",
pages: [{
title: "Android",
path: "/resources/migration/android",
pages: [{
title: "Migrate to 2.x SDKs",
path: "/resources/migration/android/migrate-to-2x"
}
]
},
{
title: "iOS",
path: "/resources/migration/ios",
pages: [{
title: "Migrate to 4.x SDKs",
path: "/resources/migration/ios/migrate-to-4x"
},
{
title: "Migrate to 3.x SDKs",
path: "/resources/migration/ios/migrate-to-3x"
},
]
}
]
},
{
title: "User guides",
Expand Down Expand Up @@ -806,4 +846,4 @@ module.exports = {
},
plugins: [`@adobe/gatsby-theme-aio`],
pathPrefix: process.env.PATH_PREFIX || '/client-sdks/'
};
};
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@
"url": "https://github.com/icaraps"
},
"dependencies": {
"@adobe/gatsby-theme-aio": "^4.10.5",
"@adobe/gatsby-theme-aio": "^4.10.7",
"gatsby": "4.22.0",
"react": "^18.2.0",
"react-dom": "^17.0.2"
},
"resolutions": {
"sharp": "0.33.0",
"gatsby-sharp": "1.12.0"
},
"scripts": {
"start": "gatsby build && gatsby serve",
"start:prefix": "gatsby build --prefix-paths && gatsby serve --prefix-paths",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- Release notes
---

# Release Notes
# Release notes

## October 5, 2023

Expand Down
2 changes: 1 addition & 1 deletion src/pages/edge/adobe-journey-optimizer/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
- Release notes
---

# Release Notes
# Release notes

## September 28, 2023

Expand Down
2 changes: 1 addition & 1 deletion src/pages/edge/consent-for-edge-network/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
- Release notes
---

# Release Notes
# Release notes

## June 1, 2023

Expand Down
9 changes: 9 additions & 0 deletions src/pages/edge/edge-network/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,15 @@ See [MobileCore.resetIdentities](../../home/base/mobile-core/api-reference.md#re

Sends an Experience event to Adobe Experience Platform Edge Network.

<InlineAlert variant="info" slots="text"/>

Starting with `Edge` extension version **2.4.0** (Android) and **4.3.0** (iOS), the `sendEvent` API supports optional datastream overrides. This allows you to adjust your datastreams without the need for new ones or modifications to existing settings.

The process involves two steps:

1. Define your Datastream configuration overrides on the [datastream configuration page](https://experienceleague.adobe.com/docs/experience-platform/datastreams/configure.html).
2. Send these overrides to the Edge Network using the `sendEvent` API.

<TabsBlock orientation="horizontal" slots="heading, content" repeat="2"/>

Android
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 13 additions & 1 deletion src/pages/edge/edge-network/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,19 @@ keywords:
- Release notes
---

# Release Notes
# Release notes

## October 27, 2023

### iOS Edge 4.3.0

* Added support to customize datastream configurations on a per-event basis using the sendEvent API.
* Improved logging on connection failure.

### Android Edge 2.4.0

* Added support to customize datastream configurations on a per-event basis using the sendEvent API.
* Improved logging on connection failure.

## September 1, 2023

Expand Down
Loading

0 comments on commit 8912d28

Please sign in to comment.